[Modcplusplus-devel] (johnksterling) mod_cplusplus configure.in
Brought to you by:
gr84b8,
johnksterling
|
From: Mod C. C. L. <mod...@so...> - 2007-03-31 18:02:21
|
Mod Cplusplus CVS committal
Author : johnksterling
Module : mod_cplusplus
Dir : mod_cplusplus
Modified Files:
configure.in
Log Message:
make the include and shlib detection more reliable on various unix platforms
===================================================================
RCS file: /cvsroot/modcplusplus/mod_cplusplus/configure.in,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -3 -r1.28 -r1.29
--- configure.in 7 Aug 2005 20:36:49 -0000 1.28
+++ configure.in 31 Mar 2007 18:02:20 -0000 1.29
@@ -9,7 +9,7 @@
dnl hack to get shlib extension
AC_MSG_CHECKING(what the shared library extension is)
eval SHLIB_EXT=\"$shrext\"
-if test "$SHLIB_EXT" == "" ; then
+if test "x$SHLIB_EXT" == "x" ; then
AC_MSG_RESULT(could not determine shared library extension. Defaulting to .so)
SHLIB_EXT=".so"
fi
@@ -58,7 +58,7 @@
fi
],)
-if test "$INCLUDES" == "" ; then
+if test "x$INCLUDES" == "x" ; then
AC_MSG_ERROR(could not generate includes with apxs set to "$APXS" - you must specify a valid path to apxs using the --with-apxs flag)
fi
|