Thread: [Modcplusplus-devel] (johnksterling) mod_cplusplus configure.in
Brought to you by:
gr84b8,
johnksterling
|
From: Mod C. C. L. <mod...@so...> - 2002-08-27 02:25:47
|
Mod Cplusplus CVS committal Author : johnksterling Module : mod_cplusplus Dir : mod_cplusplus Modified Files: configure.in Log Message: update to apache 2.0.40 =================================================================== RCS file: /cvsroot/modcplusplus/mod_cplusplus/configure.in,v retrieving revision 1.10 retrieving revision 1.11 diff -u -3 -r1.10 -r1.11 --- configure.in 19 Jun 2002 14:24:43 -0000 1.10 +++ configure.in 27 Aug 2002 02:25:47 -0000 1.11 @@ -1,5 +1,5 @@ AC_INIT(src/mod_cplusplus.c) -AM_INIT_AUTOMAKE(mod_cplusplus, 1.0.2) +AM_INIT_AUTOMAKE(mod_cplusplus, 1.0.3) AC_PROG_CC AC_PROG_CXX |
|
From: Mod C. C. L. <mod...@so...> - 2002-08-27 03:36:21
|
Mod Cplusplus CVS committal Author : johnksterling Module : mod_cplusplus Dir : mod_cplusplus Modified Files: configure.in Log Message: now mod_cplusplus runs on OS X with apache. only need to softlink glibtoolize to libtoolize. =================================================================== RCS file: /cvsroot/modcplusplus/mod_cplusplus/configure.in,v retrieving revision 1.11 retrieving revision 1.12 diff -u -3 -r1.11 -r1.12 --- configure.in 27 Aug 2002 02:25:47 -0000 1.11 +++ configure.in 27 Aug 2002 03:35:51 -0000 1.12 @@ -33,6 +33,9 @@ ]) AC_CHECK_LIB(stdc++, __ti7ostream, LIB_STDCPP="-lstdc++") + if test "$LIB_STDCPP" == "" ; then + CPPFLAGS="$CPPFLAGS -DNO_STDCPP" + fi CPLUSPLUS_BUILDDIR=`pwd` CPPFLAGS="$CPPFLAGS -g -I$CPLUSPLUS_BUILDDIR/include" |
|
From: Mod C. C. L. <mod...@so...> - 2003-08-14 15:17:41
|
Mod Cplusplus CVS committal Author : johnksterling Module : mod_cplusplus Dir : mod_cplusplus Modified Files: configure.in Log Message: fix up some compile problems and get the test suite almost running again =================================================================== RCS file: /cvsroot/modcplusplus/mod_cplusplus/configure.in,v retrieving revision 1.12 retrieving revision 1.13 diff -u -3 -r1.12 -r1.13 --- configure.in 27 Aug 2002 03:35:51 -0000 1.12 +++ configure.in 14 Aug 2003 15:04:38 -0000 1.13 @@ -5,6 +5,12 @@ AC_PROG_CXX AM_PROG_LIBTOOL +dnl hack to get shlib extension +AC_MSG_CHECKING(what the shared library extension is) +SHLIB_EXT=`echo /usr/lib/libc.* | sed -e 's@.*\.@@'` +AC_MSG_RESULT($SHLIB_EXT) +AC_SUBST(SHLIB_EXT) + AC_MSG_CHECKING(for httpd) AC_ARG_WITH(httpd, [ --with-httpd Specify path to httpd source directory ], [ |
|
From: Mod C. C. L. <mod...@so...> - 2003-08-15 23:48:04
|
Mod Cplusplus CVS committal Author : johnksterling Module : mod_cplusplus Dir : mod_cplusplus Modified Files: configure.in Log Message: update version =================================================================== RCS file: /cvsroot/modcplusplus/mod_cplusplus/configure.in,v retrieving revision 1.13 retrieving revision 1.14 diff -u -3 -r1.13 -r1.14 --- configure.in 14 Aug 2003 15:04:38 -0000 1.13 +++ configure.in 15 Aug 2003 23:20:38 -0000 1.14 @@ -1,5 +1,5 @@ AC_INIT(src/mod_cplusplus.c) -AM_INIT_AUTOMAKE(mod_cplusplus, 1.0.3) +AM_INIT_AUTOMAKE(mod_cplusplus, 1.1.0) AC_PROG_CC AC_PROG_CXX |
|
From: Mod C. C. L. <mod...@so...> - 2003-08-18 01:31:01
|
Mod Cplusplus CVS committal
Author : johnksterling
Module : mod_cplusplus
Dir : mod_cplusplus
Modified Files:
configure.in
Log Message:
add hack to link in the libs if were in gcc 3.2
===================================================================
RCS file: /cvsroot/modcplusplus/mod_cplusplus/configure.in,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -3 -r1.14 -r1.15
--- configure.in 15 Aug 2003 23:20:38 -0000 1.14
+++ configure.in 18 Aug 2003 01:21:40 -0000 1.15
@@ -38,7 +38,7 @@
AC_MSG_ERROR(--with-httpd not given)
])
-AC_CHECK_LIB(stdc++, __ti7ostream, LIB_STDCPP="-lstdc++")
+AC_CHECK_LIB(stdc++, __gxx_personality_v0, LIB_STDCPP="-lstdc++")
if test "$LIB_STDCPP" == "" ; then
CPPFLAGS="$CPPFLAGS -DNO_STDCPP"
fi
|
|
From: Mod C. C. L. <mod...@so...> - 2003-08-20 10:06:12
|
Mod Cplusplus CVS committal Author : johnksterling Module : mod_cplusplus Dir : mod_cplusplus Modified Files: configure.in Log Message: perform replacement =================================================================== RCS file: /cvsroot/modcplusplus/mod_cplusplus/configure.in,v retrieving revision 1.15 retrieving revision 1.16 diff -u -3 -r1.15 -r1.16 --- configure.in 18 Aug 2003 01:21:40 -0000 1.15 +++ configure.in 20 Aug 2003 01:36:54 -0000 1.16 @@ -50,4 +50,4 @@ AC_SUBST(CFLAGS) AC_SUBST(LIB_STDCPP) -AC_OUTPUT(Makefile src/Makefile example/Makefile example/handler/Makefile example/input_filter/Makefile example/output_filter/Makefile example/protocol/Makefile test/Makefile test/t/conf/extra.conf) +AC_OUTPUT(Makefile src/Makefile example/Makefile example/handler/Makefile example/input_filter/Makefile example/output_filter/Makefile example/protocol/Makefile test/Makefile test/t/conf/extra.conf docs/Makefile) |
|
From: Mod C. C. L. <mod...@so...> - 2004-05-12 01:34:36
|
Mod Cplusplus CVS committal
Author : johnksterling
Module : mod_cplusplus
Dir : mod_cplusplus
Modified Files:
configure.in
Log Message:
we were not able to build against an installation with apr separate from apache. Submitted by William F. Dowling <wil...@th...>
===================================================================
RCS file: /cvsroot/modcplusplus/mod_cplusplus/configure.in,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -3 -r1.17 -r1.18
--- configure.in 7 May 2004 23:26:24 -0000 1.17
+++ configure.in 12 May 2004 01:34:23 -0000 1.18
@@ -5,6 +5,7 @@
AC_PROG_CXX
AM_PROG_LIBTOOL
+AC_CONFIG_HEADERS(config.h)
dnl hack to get shlib extension
AC_MSG_CHECKING(what the shared library extension is)
SHLIB_EXT=`echo /usr/lib/libc.* | sed -e 's@.*\.@@'`
@@ -33,14 +34,25 @@
else
AC_MSG_RESULT($searchfile not found)
fi
- AC_MSG_CHECKING(for alternative default packaging)
- searchfile="$withval/include/apache2/httpd.h"
+ AC_MSG_CHECKING(for alternative default packaging)
+ searchfile="$withval/include/apache2/httpd.h"
if test -f $searchfile ; then
HTTPD_DIR=`cd $withval; pwd`
CPPFLAGS="$CPPFLAGS -I$HTTPD_DIR/include/apache2"
else
AC_MSG_RESULT($searchfile not found)
fi
+ AC_MSG_CHECKING(for apr.h)
+ AC_ARG_WITH(apr_path, [ --with-apr_path Specify path to apr include directory ],
+ [
+ if test ! -f $withval/apr.h; then
+ AC_MSG_ERROR($withval not a valid path to apr.h)
+ else
+ CPPFLAGS="$CPPFLAGS -I$withval"
+ AC_MSG_RESULT(found $withval/apr.h)
+ fi
+ ],)
+
AC_MSG_RESULT(found $HTTPD_DIR)
],[
|
|
From: Mod C. C. L. <mod...@so...> - 2004-11-26 18:53:54
|
Mod Cplusplus CVS committal
Author : johnksterling
Module : mod_cplusplus
Dir : mod_cplusplus
Modified Files:
configure.in
Log Message:
more fixups using apxs
===================================================================
RCS file: /cvsroot/modcplusplus/mod_cplusplus/configure.in,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -3 -r1.20 -r1.21
--- configure.in 26 Nov 2004 18:39:26 -0000 1.20
+++ configure.in 26 Nov 2004 18:53:46 -0000 1.21
@@ -75,12 +75,12 @@
AC_ARG_WITH(apxs, [ --with-apxs Specify path to apxs ],
[
if test -f $withval; then
- inc=`$withval -q INCLUDEDIR`
+ INCLUDE_DIR=`$withval -q INCLUDEDIR`
HTTPD_DIR=`$withval -q PREFIX`
CONF_DIR=`$withval -q SYSCONFDIR`
MODULES_DIR=`$withval -q LIBEXECDIR`
APXS=$withval
- CPPFLAGS="$CPPFLAGS -I$inc"
+ CPPFLAGS="$CPPFLAGS -I$INCLUDE_DIR"
AC_MSG_RESULT(found $withval)
else
AC_MSG_RESULT($withval not found)
@@ -91,8 +91,8 @@
CONF_DIR=`$withval -q SYSCONFDIR`
MODULES_DIR=`$withval -q LIBEXECDIR`
APXS=$withval
- inc=`$withval -q INCLUDEDIR`
- CPPFLAGS="$CPPFLAGS -I$inc"
+ INCLUDE_DIR=`$withval -q INCLUDEDIR`
+ CPPFLAGS="$CPPFLAGS -I$INCLUDE_DIR"
else
AC_MSG_ERROR($withval not found. APXS installation cannot be located!)
fi
@@ -109,6 +109,7 @@
AC_SUBST(CPLUSPLUS_BUILDDIR)
AC_SUBST(MODULES_DIR)
+AC_SUBST(INCLUDE_DIR)
AC_SUBST(CONF_DIR)
AC_SUBST(APXS)
AC_SUBST(CFLAGS)
|
|
From: Mod C. C. L. <mod...@so...> - 2004-11-27 03:36:29
|
Mod Cplusplus CVS committal
Author : johnksterling
Module : mod_cplusplus
Dir : mod_cplusplus
Modified Files:
configure.in
Log Message:
ok, finally clean up the other things in the configure script and derive everything from apxs.
===================================================================
RCS file: /cvsroot/modcplusplus/mod_cplusplus/configure.in,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -3 -r1.21 -r1.22
--- configure.in 26 Nov 2004 18:53:46 -0000 1.21
+++ configure.in 27 Nov 2004 03:36:18 -0000 1.22
@@ -12,93 +12,43 @@
AC_MSG_RESULT($SHLIB_EXT)
AC_SUBST(SHLIB_EXT)
-AC_MSG_CHECKING(for httpd)
-AC_ARG_WITH(httpd, [ --with-httpd Specify path to httpd source directory ],
-[
- if test ! -f $withval/build/config_vars.mk; then
- AC_MSG_ERROR($withval not a valid source or shadow dir)
- fi
-
- if grep AP_DEBUG "$withval/build/config_vars.mk" > /dev/null; then
- CPPFLAGS="$CPPFLAGS -DAP_DEBUG"
- fi
- if grep AP_HAVE_DESIGNATED_INITIALIZER "$withval/build/config_vars.mk" > /dev/null; then
- CPPFLAGS="$CPPFLAGS -DAP_HAVE_DESIGNATED_INITIALIZER"
- fi
-
- AC_MSG_CHECKING(for standard packaging)
- searchfile="$withval/include/httpd.h"
- if test -f $searchfile ; then
- AC_MSG_RESULT(found $searchfile)
- HTTPD_DIR=`cd $withval; pwd`
- CPPFLAGS="$CPPFLAGS -I$HTTPD_DIR/include"
- else
- AC_MSG_RESULT($searchfile not found)
- AC_MSG_CHECKING(for alternative default packaging)
- searchfile="$withval/include/apache2/httpd.h"
- if test -f $searchfile ; then
- AC_MSG_RESULT(found $searchfile)
- HTTPD_DIR="$withval"
- CPPFLAGS="$CPPFLAGS -I$withval/include/apache2"
- else
- AC_MSG_RESULT($searchfile not found)
- searchfile="/usr/include/apache2/httpd.h"
- if test -f $searchfile ; then
- AC_MSG_RESULT(found $searchfile)
- HTTPD_DIR="/usr"
- CPPFLAGS="$CPPFLAGS -I/usr/include/apache2"
- else
- AC_MSG_ERROR($searchfile not found. Apache2 installation cannot be located!)
- fi
- fi
- fi
- AC_MSG_CHECKING(for apr.h)
- AC_ARG_WITH(apr_path, [ --with-apr_path Specify path to apr include directory ],
- [
- if test -f $withval/apr.h; then
- CPPFLAGS="$CPPFLAGS -I$withval"
- AC_MSG_RESULT(found $withval/apr.h)
- else
- AC_MSG_RESULT($withval not found)
- withval="/usr/include/apr-0/apr.h"
- if test -f $withval ; then
- AC_MSG_RESULT(found $withval)
- CPPFLAGS="$CPPFLAGS -I/usr/include/apr-0"
- else
- AC_MSG_ERROR($withval not found. APR installation cannot be located!)
- fi
- fi
- ],)
- AC_MSG_RESULT(found $HTTPD_DIR)
-],)
AC_MSG_CHECKING(for apxs)
AC_ARG_WITH(apxs, [ --with-apxs Specify path to apxs ],
[
if test -f $withval; then
- INCLUDE_DIR=`$withval -q INCLUDEDIR`
+ apache_inc=`$withval -q INCLUDEDIR`
+ apr_inc=`$withval -q APR_INCLUDEDIR`
+ apu_inc=`$withval -q APU_INCLUDEDIR`
+ INCLUDES="-I$apache_inc -I$apr_inc -I$apu_inc"
HTTPD_DIR=`$withval -q PREFIX`
CONF_DIR=`$withval -q SYSCONFDIR`
MODULES_DIR=`$withval -q LIBEXECDIR`
APXS=$withval
- CPPFLAGS="$CPPFLAGS -I$INCLUDE_DIR"
+ CPPFLAGS="$CPPFLAGS $INCLUDES"
AC_MSG_RESULT(found $withval)
else
AC_MSG_RESULT($withval not found)
withval="$withval/apxs"
if test -f $withval ; then
AC_MSG_RESULT(found $withval)
+ apache_inc=`$withval -q INCLUDEDIR`
+ apr_inc=`$withval -q APR_INCLUDEDIR`
+ apu_inc=`$withval -q APU_INCLUDEDIR`
+ INCLUDES="-I$apache_inc -I$apr_inc -I$apu_inc"
HTTPD_DIR=`$withval -q PREFIX`
CONF_DIR=`$withval -q SYSCONFDIR`
MODULES_DIR=`$withval -q LIBEXECDIR`
APXS=$withval
- INCLUDE_DIR=`$withval -q INCLUDEDIR`
- CPPFLAGS="$CPPFLAGS -I$INCLUDE_DIR"
+ CPPFLAGS="$CPPFLAGS $INCLUDES"
else
AC_MSG_ERROR($withval not found. APXS installation cannot be located!)
fi
fi
],)
+if test "$INCLUDES" == "" ; 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
AC_CHECK_LIB(stdc++, __gxx_personality_v0, LIB_STDCPP="-lstdc++")
if test "$LIB_STDCPP" == "" ; then
@@ -109,7 +59,7 @@
AC_SUBST(CPLUSPLUS_BUILDDIR)
AC_SUBST(MODULES_DIR)
-AC_SUBST(INCLUDE_DIR)
+AC_SUBST(INCLUDES)
AC_SUBST(CONF_DIR)
AC_SUBST(APXS)
AC_SUBST(CFLAGS)
|
|
From: Mod C. C. L. <mod...@so...> - 2005-01-26 09:10:36
|
Mod Cplusplus CVS committal
Author : johnksterling
Module : mod_cplusplus
Dir : mod_cplusplus
Modified Files:
configure.in
Log Message:
apply a couple of compile warning fixes
===================================================================
RCS file: /cvsroot/modcplusplus/mod_cplusplus/configure.in,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -3 -r1.22 -r1.23
--- configure.in 27 Nov 2004 03:36:18 -0000 1.22
+++ configure.in 26 Jan 2005 09:09:58 -0000 1.23
@@ -55,7 +55,7 @@
CPPFLAGS="$CPPFLAGS -DNO_STDCPP"
fi
CPLUSPLUS_BUILDDIR=`pwd`
-CPPFLAGS="$CPPFLAGS -g -I$CPLUSPLUS_BUILDDIR/include"
+CPPFLAGS="$CPPFLAGS -Werror -g -I$CPLUSPLUS_BUILDDIR/include"
AC_SUBST(CPLUSPLUS_BUILDDIR)
AC_SUBST(MODULES_DIR)
|
|
From: Mod C. C. L. <mod...@so...> - 2005-02-27 22:31:36
|
Mod Cplusplus CVS committal Author : johnksterling Module : mod_cplusplus Dir : mod_cplusplus Modified Files: configure.in Log Message: fix configure to properly detect shared library extensions using shrext variable of libtool. patch submitted by Joerg Hundermarck <jo...@hi...> =================================================================== RCS file: /cvsroot/modcplusplus/mod_cplusplus/configure.in,v retrieving revision 1.23 retrieving revision 1.24 diff -u -3 -r1.23 -r1.24 --- configure.in 26 Jan 2005 09:09:58 -0000 1.23 +++ configure.in 27 Feb 2005 22:31:25 -0000 1.24 @@ -8,8 +8,11 @@ AC_CONFIG_HEADERS(config.h) dnl hack to get shlib extension AC_MSG_CHECKING(what the shared library extension is) -SHLIB_EXT=`echo /usr/lib/libc.* | sed -e 's@.*\.@@'` +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. ) +fi AC_SUBST(SHLIB_EXT) AC_MSG_CHECKING(for apxs) |
|
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) |
|
From: Mod C. C. L. <mod...@so...> - 2005-07-29 01:49:50
|
Mod Cplusplus CVS committal Author : johnksterling Module : mod_cplusplus Dir : mod_cplusplus Modified Files: configure.in Log Message: fix configure to properly include all directories if apr/apu are in different places. patch submitted by Jean-Francois Adam <jfadam> =================================================================== RCS file: /cvsroot/modcplusplus/mod_cplusplus/configure.in,v retrieving revision 1.26 retrieving revision 1.27 diff -u -3 -r1.26 -r1.27 --- configure.in 26 Mar 2005 13:24:26 -0000 1.26 +++ configure.in 29 Jul 2005 01:49:42 -0000 1.27 @@ -27,7 +27,7 @@ cxxflags=`$withval -q CXXFLAGS` extra_cppflags=`$withval -q EXTRA_CPPFLAGS` extra_cflags=`$withval -q EXTRA_CFLAGS` - INCLUDES="-I$apache_inc -I$apr_inc -I$apu_inc" + INCLUDES="-I$apache_inc -I$apr_inc -I$apu_inc -I$apr_inc -I$apu_inc" HTTPD_DIR=`$withval -q PREFIX` CONF_DIR=`$withval -q SYSCONFDIR` MODULES_DIR=`$withval -q LIBEXECDIR` |
|
From: Michael S. <ms...@ca...> - 2005-07-29 10:31:36
|
Mod Cplusplus CVS List wrote: > Mod Cplusplus CVS committal > > Author : johnksterling > Module : mod_cplusplus > Dir : mod_cplusplus > > > > Modified Files: > configure.in > > > Log Message: > fix configure to properly include all directories if apr/apu are in different places. patch submitted by Jean-Francois Adam <jfadam> > =================================================================== > RCS file: /cvsroot/modcplusplus/mod_cplusplus/configure.in,v > retrieving revision 1.26 > retrieving revision 1.27 > diff -u -3 -r1.26 -r1.27 > --- configure.in 26 Mar 2005 13:24:26 -0000 1.26 > +++ configure.in 29 Jul 2005 01:49:42 -0000 1.27 > @@ -27,7 +27,7 @@ > cxxflags=`$withval -q CXXFLAGS` > extra_cppflags=`$withval -q EXTRA_CPPFLAGS` > extra_cflags=`$withval -q EXTRA_CFLAGS` > - INCLUDES="-I$apache_inc -I$apr_inc -I$apu_inc" > + INCLUDES="-I$apache_inc -I$apr_inc -I$apu_inc -I$apr_inc -I$apu_inc" > HTTPD_DIR=`$withval -q PREFIX` > CONF_DIR=`$withval -q SYSCONFDIR` > MODULES_DIR=`$withval -q LIBEXECDIR` I have created a Gentoo mod_cplusplus-1.6_pre20050729.ebuild using a snapshot from current CVS. With the change above mod_cplusplus now builds fine on Gentoo. The ebuild, including earlier versions, can be found here: http://sipx-wiki.calivia.com/svn/sipx-ebuilds/www-apache/mod_cplusplus/ I've posted the ebuild here as well: http://bugs.gentoo.org/show_bug.cgi?id=100684 Mike |
|
From: John S. <jo...@st...> - 2005-07-29 11:31:13
|
Thanks Mike! John On Jul 29, 2005, at 6:29 AM, Michael Steinmann wrote: > Mod Cplusplus CVS List wrote: >> Mod Cplusplus CVS committal >> Author : johnksterling >> Module : mod_cplusplus >> Dir : mod_cplusplus >> Modified Files: >> configure.in Log Message: >> fix configure to properly include all directories if apr/apu are in >> different places. patch submitted by Jean-Francois Adam <jfadam> >> =================================================================== >> RCS file: /cvsroot/modcplusplus/mod_cplusplus/configure.in,v >> retrieving revision 1.26 >> retrieving revision 1.27 >> diff -u -3 -r1.26 -r1.27 >> --- configure.in 26 Mar 2005 13:24:26 -0000 1.26 >> +++ configure.in 29 Jul 2005 01:49:42 -0000 1.27 >> @@ -27,7 +27,7 @@ >> cxxflags=`$withval -q CXXFLAGS` >> extra_cppflags=`$withval -q EXTRA_CPPFLAGS` >> extra_cflags=`$withval -q EXTRA_CFLAGS` >> - INCLUDES="-I$apache_inc -I$apr_inc -I$apu_inc" >> + INCLUDES="-I$apache_inc -I$apr_inc -I$apu_inc -I$apr_inc >> -I$apu_inc" >> HTTPD_DIR=`$withval -q PREFIX` >> CONF_DIR=`$withval -q SYSCONFDIR` >> MODULES_DIR=`$withval -q LIBEXECDIR` > > > I have created a Gentoo mod_cplusplus-1.6_pre20050729.ebuild using a > snapshot from current CVS. With the change above mod_cplusplus now > builds fine on Gentoo. > > The ebuild, including earlier versions, can be found here: > http://sipx-wiki.calivia.com/svn/sipx-ebuilds/www-apache/mod_cplusplus/ > > I've posted the ebuild here as well: > http://bugs.gentoo.org/show_bug.cgi?id=100684 > > Mike > > > ------------------------------------------------------- > SF.Net email is Sponsored by the Better Software Conference & EXPO > September > 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices > Agile & Plan-Driven Development * Managing Projects & Teams * Testing > & QA > Security * Process Improvement & Measurement * > http://www.sqe.com/bsce5sf > _______________________________________________ > Modcplusplus-devel mailing list > Mod...@li... > https://lists.sourceforge.net/lists/listinfo/modcplusplus-devel > |
|
From: Mod C. C. L. <mod...@so...> - 2005-08-07 20:37:17
|
Mod Cplusplus CVS committal
Author : johnksterling
Module : mod_cplusplus
Dir : mod_cplusplus
Modified Files:
configure.in
Log Message:
fix final warnings (which were implicit on some platforms) and make sure we always use -Wall so no matter what the default warning level is, everyone sees all warnings (they are already treated as errors).
===================================================================
RCS file: /cvsroot/modcplusplus/mod_cplusplus/configure.in,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -3 -r1.27 -r1.28
--- configure.in 29 Jul 2005 01:49:42 -0000 1.27
+++ configure.in 7 Aug 2005 20:36:49 -0000 1.28
@@ -67,7 +67,7 @@
CPPFLAGS="$CPPFLAGS -DNO_STDCPP"
fi
CPLUSPLUS_BUILDDIR=`pwd`
-CPPFLAGS="$CPPFLAGS -Werror -g -I$CPLUSPLUS_BUILDDIR/include"
+CPPFLAGS="$CPPFLAGS -Wall -Werror -g -I$CPLUSPLUS_BUILDDIR/include"
AC_SUBST(CPLUSPLUS_BUILDDIR)
AC_SUBST(MODULES_DIR)
|
|
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
|