diff options
author | Sascha Schumann <sas@php.net> | 2001-06-15 12:53:20 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2001-06-15 12:53:20 +0000 |
commit | e843e8c5f0330e01fc672d9f0e33999c03f9c97a (patch) | |
tree | 33adc7cd37dcd59623b9b2e4a987b44907502f6e /sapi/apache/config.m4 | |
parent | 35f8d4cb449c8f3c4dc33b693361b5137ff21cac (diff) | |
download | php-git-e843e8c5f0330e01fc672d9f0e33999c03f9c97a.tar.gz |
Move PHP_TARGET_RDYNAMIC check to global acinclude.m4 and use it
in thttpd's config.m4.
Diffstat (limited to 'sapi/apache/config.m4')
-rw-r--r-- | sapi/apache/config.m4 | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/sapi/apache/config.m4 b/sapi/apache/config.m4 index 69e9580634..3cdb95566b 100644 --- a/sapi/apache/config.m4 +++ b/sapi/apache/config.m4 @@ -1,14 +1,5 @@ dnl ## -*- sh -*- -AC_DEFUN(PHP_APACHE_CHECK_RDYNAMIC,[ - if test -n "$GCC"; then - dnl we should use a PHP-specific macro here - TSRM_CHECK_GCC_ARG(-rdynamic, gcc_rdynamic=yes) - if test "$gcc_rdynamic" = "yes"; then - PHP_LDFLAGS="$PHP_LDFLAGS -rdynamic" - fi - fi -]) AC_MSG_CHECKING(for Apache module support via DSO through APXS) AC_ARG_WITH(apxs, @@ -231,7 +222,7 @@ AC_ARG_WITH(mod_charset, ]) if test -n "$APACHE_MODULE"; then - PHP_APACHE_CHECK_RDYNAMIC + PHP_TARGET_RDYNAMIC $php_shtool mkdir -p sapi/apache PHP_OUTPUT(sapi/apache/libphp4.module) PHP_BUILD_STATIC |