summaryrefslogtreecommitdiff
path: root/acinclude.m4
diff options
context:
space:
mode:
authorKristian Köhntopp <kk@php.net>2000-03-11 22:05:41 +0000
committerKristian Köhntopp <kk@php.net>2000-03-11 22:05:41 +0000
commit1aba4ea9d0d602a652687047e0e8ab2895aae955 (patch)
tree31dd58e121c4a3adf627aaba205db24cce4db28c /acinclude.m4
parent649d8721dbddc225a0330a0d9ed7750287dbcd18 (diff)
downloadphp-git-1aba4ea9d0d602a652687047e0e8ab2895aae955.tar.gz
- Added additional DEFER macro.
- First stab at porting the recode module. Still having problems with the _ex() functions, they core - why?
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m412
1 files changed, 11 insertions, 1 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index 7b5f4c6c60..7aa50266f2 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -295,7 +295,7 @@ AC_DEFUN(AC_ADD_LIBRARY,[
dnl
dnl AC_ADD_LIBRARY_DEFER(library[, append])
dnl
-dnl add a library to the link line (defferred)
+dnl add a library to the link line (deferred)
AC_DEFUN(AC_ADD_LIBRARY_DEFER,[
AC_PHP_ONCE(LIBRARY, $1, [
ifelse($#, 1, DLIBS="-l$1 $DLIBS", DLIBS="$DLIBS -l$1")
@@ -312,6 +312,16 @@ AC_DEFUN(AC_ADD_LIBRARY_WITH_PATH,[
AC_ADD_LIBRARY($1)
])
+dnl
+dnl AC_ADD_LIBRARY_DEFER_WITH_PATH(library, path)
+dnl
+dnl add a library to the link line (deferred)
+dnl and path to linkpath/runpath (not deferred)
+dnl
+AC_DEFUN(AC_ADD_LIBRARY_DEFER_WITH_PATH,[
+ AC_ADD_LIBPATH($2)
+ AC_ADD_LIBRARY_DEFER($1)
+])
AC_DEFUN(AM_SET_LIBTOOL_VARIABLE,[
LIBTOOL='$(SHELL) $(top_builddir)/libtool $1'