diff options
author | Sascha Schumann <sas@php.net> | 1999-12-30 02:59:53 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 1999-12-30 02:59:53 +0000 |
commit | f2f8d38efa3ccbaa05affaf8fcab24786ef452de (patch) | |
tree | c546807d61a77a191f89056212a4c40c63f0e83b /ext/session/config.m4 | |
parent | 6bf3529919cf60389797a107cab16c826df3e68f (diff) | |
download | php-git-f2f8d38efa3ccbaa05affaf8fcab24786ef452de.tar.gz |
Integration of -ng changes. Changes:
- added support for externally built modules,
- improved support for in-tree shared modules,
- fixed diversion bugs,
- configure displays some informative messages,
- faster static build
(libtool isn't used anymore for compiling non-PIC objects),
- dependencies comparable to automake's without requiring GNU make or GCC,
- working make clean for non-GNU makes.
Diffstat (limited to 'ext/session/config.m4')
-rw-r--r-- | ext/session/config.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/session/config.m4 b/ext/session/config.m4 index 8db20b3324..4ce652e693 100644 --- a/ext/session/config.m4 +++ b/ext/session/config.m4 @@ -20,7 +20,7 @@ AC_ARG_WITH(mm, AC_ADD_LIBRARY_WITH_PATH(mm, $MM_DIR/lib) AC_ADD_INCLUDE($MM_DIR/include) - AC_DEFINE(HAVE_LIBMM, 1) + AC_DEFINE(HAVE_LIBMM, 1, [Whether you have libmm]) RESULT=yes PHP_EXTENSION(ps_mm) fi @@ -33,7 +33,7 @@ AC_ARG_ENABLE(trans-sid, [ --enable-trans-sid Enable transparent session id propagation], [ if test "$enableval" = "yes" ; then - AC_DEFINE(TRANS_SID, 1) + AC_DEFINE(TRANS_SID, 1, [Whether you want transparent session id propagation]) RESULT=yes fi ]) |