summaryrefslogtreecommitdiff
path: root/Zend/acconfig.h
diff options
context:
space:
mode:
authorSascha Schumann <sas@php.net>2000-01-12 19:52:33 +0000
committerSascha Schumann <sas@php.net>2000-01-12 19:52:33 +0000
commitbf7b292db9dff978e054215b61e3a0c4ba4f72c1 (patch)
tree4d6bcf87029a5652b9608211d6bdc15ed9e5e369 /Zend/acconfig.h
parentda67577ed35f7edaac383952d1c8438c8e632eaf (diff)
downloadphp-git-bf7b292db9dff978e054215b61e3a0c4ba4f72c1.tar.gz
Move dl stuff from acconfig.h into zend.h. That allows us finer control
when it comes to suppressing dlfcn.h.
Diffstat (limited to 'Zend/acconfig.h')
-rw-r--r--Zend/acconfig.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/Zend/acconfig.h b/Zend/acconfig.h
index 2ddee4eb16..a6de7d427c 100644
--- a/Zend/acconfig.h
+++ b/Zend/acconfig.h
@@ -25,9 +25,6 @@
#undef ZEND_DEBUG
-/* Define if you want to enable bc style precision math support */
-#define WITH_BCMATH 0
-
/* Define if you want to enable memory limit support */
#define MEMORY_LIMIT 0
@@ -55,21 +52,6 @@
/* Define if you have stdiostream.h */
#undef HAVE_STDIOSTREAM_H
-#ifdef HAVE_DLFCN_H
-# include <dlfcn.h>
-#endif
-
-#if defined(HAVE_LIBDL) && defined(RTLD_NOW)
-# define DL_LOAD(libname) dlopen(libname, RTLD_NOW)
-# define DL_UNLOAD dlclose
-# define DL_FETCH_SYMBOL dlsym
-# define DL_HANDLE void *
-# define ZEND_EXTENSIONS_SUPPORT 1
-#else
-# define DL_HANDLE void *
-# define ZEND_EXTENSIONS_SUPPORT 0
-#endif
-
#if ZEND_BROKEN_SPRINTF
int zend_sprintf(char *buffer, const char *format, ...);
#else