1
0
mirror of https://github.com/php/php-src.git synced 2026-04-21 06:51:18 +02:00

- Fix compile problem on FreeBSD.

This commit is contained in:
Andi Gutmans
2000-03-18 16:16:15 +00:00
parent 8b8077709e
commit e88bde0a73

View File

@@ -26,8 +26,14 @@
#include <stdlib.h>
#include <stdio.h>
#ifndef RTLD_LAZY
# define RTLD_LAZY 1 /* Solaris 1, FreeBSD's (2.1.7.1 and older) */
#define RTLD_LAZY 1 /* Solaris 1, FreeBSD's (2.1.7.1 and older) */
#endif
#ifndef RTLD_NOW /* Fixes compile problem on FreeBSD */
#define RTLD_NOW RTLD_LAZY
#endif
#if HAVE_STRING_H
#include <string.h>
#else