summaryrefslogtreecommitdiff
path: root/ext/standard/dl.c
diff options
context:
space:
mode:
authorSam Ruby <rubys@php.net>2000-03-25 15:57:04 +0000
committerSam Ruby <rubys@php.net>2000-03-25 15:57:04 +0000
commit6a7bc777caf15a0c1952b7c9ee3d43041c6d7ec6 (patch)
tree3f932645796cebcebd669126cfce3b9278995f70 /ext/standard/dl.c
parent1e4e9b34e26ed6cc7c5bca642f8cd809168a2f9d (diff)
downloadphp-git-6a7bc777caf15a0c1952b7c9ee3d43041c6d7ec6.tar.gz
Dynamically load java support, for better error messages
Diffstat (limited to 'ext/standard/dl.c')
-rw-r--r--ext/standard/dl.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/ext/standard/dl.c b/ext/standard/dl.c
index 4a2357f967..68f58614d9 100644
--- a/ext/standard/dl.c
+++ b/ext/standard/dl.c
@@ -25,14 +25,6 @@
#ifdef HAVE_LIBDL
#include <stdlib.h>
#include <stdio.h>
-#ifndef RTLD_LAZY
-#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>