[Modcplusplus-devel] (johnksterling) mod_cplusplus configure.in
Brought to you by:
gr84b8,
johnksterling
From: Mod C. C. L. <mod...@so...> - 2005-03-26 13:14:12
|
Mod Cplusplus CVS committal Author : johnksterling Module : mod_cplusplus Dir : mod_cplusplus Modified Files: configure.in Log Message: default the shlib extension for platforms this trick does not work on (seems like most of them :) =================================================================== RCS file: /cvsroot/modcplusplus/mod_cplusplus/configure.in,v retrieving revision 1.24 retrieving revision 1.25 diff -u -3 -r1.24 -r1.25 --- configure.in 27 Feb 2005 22:31:25 -0000 1.24 +++ configure.in 26 Mar 2005 13:14:02 -0000 1.25 @@ -9,10 +9,11 @@ dnl hack to get shlib extension AC_MSG_CHECKING(what the shared library extension is) eval SHLIB_EXT=\"$shrext\" -AC_MSG_RESULT($SHLIB_EXT) if test "$SHLIB_EXT" == "" ; then - AC_MSG_ERROR(could not determine shared library extension. libtool shrext does not work on your platform. ) + AC_MSG_RESULT(could not determine shared library extension. Defaulting to .so) + SHLIB_EXT=".so" fi +AC_MSG_RESULT($SHLIB_EXT) AC_SUBST(SHLIB_EXT) AC_MSG_CHECKING(for apxs) |