[Modcplusplus-devel] (johnksterling) mod_cplusplus/test/t/conf extra.conf.in
Brought to you by:
gr84b8,
johnksterling
From: Mod C. C. L. <mod...@so...> - 2005-02-27 22:32:14
|
Mod Cplusplus CVS committal Author : johnksterling Project : mod_cplusplus Module : test Dir : mod_cplusplus/test/t/conf Modified Files: extra.conf.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/test/t/conf/extra.conf.in,v retrieving revision 1.14 retrieving revision 1.15 diff -u -3 -r1.14 -r1.15 --- extra.conf.in 1 Feb 2005 17:19:38 -0000 1.14 +++ extra.conf.in 27 Feb 2005 22:32:05 -0000 1.15 @@ -1,8 +1,8 @@ -LoadModule cplusplus_module @CPLUSPLUS_BUILDDIR@/src/.libs/libmod_cplusplus.@SHLIB_EXT@ -LoadCPPHandler test_handler @CPLUSPLUS_BUILDDIR@/example/handler/.libs/libtest_handler.@SHLIB_EXT@ -LoadCPPHandler test_auth @CPLUSPLUS_BUILDDIR@/example/handler/.libs/libtest_handler.@SHLIB_EXT@ -LoadCPPHandler test_output_filter @CPLUSPLUS_BUILDDIR@/example/output_filter/.libs/libtest_output.@SHLIB_EXT@ -LoadCPPHandler test_input_filter @CPLUSPLUS_BUILDDIR@/example/input_filter/.libs/libtest_input.@SHLIB_EXT@ +LoadModule cplusplus_module @CPLUSPLUS_BUILDDIR@/src/.libs/libmod_cplusplus@SHLIB_EXT@ +LoadCPPHandler test_handler @CPLUSPLUS_BUILDDIR@/example/handler/.libs/libtest_handler@SHLIB_EXT@ +LoadCPPHandler test_auth @CPLUSPLUS_BUILDDIR@/example/handler/.libs/libtest_handler@SHLIB_EXT@ +LoadCPPHandler test_output_filter @CPLUSPLUS_BUILDDIR@/example/output_filter/.libs/libtest_output@SHLIB_EXT@ +LoadCPPHandler test_input_filter @CPLUSPLUS_BUILDDIR@/example/input_filter/.libs/libtest_input@SHLIB_EXT@ LogLevel Info <Location /> @@ -38,7 +38,7 @@ Listen 8528 <VirtualHost _default_:8528> -LoadCPPHandler test_protocol @CPLUSPLUS_BUILDDIR@/example/protocol/.libs/libtest_protocol.@SHLIB_EXT@ +LoadCPPHandler test_protocol @CPLUSPLUS_BUILDDIR@/example/protocol/.libs/libtest_protocol@SHLIB_EXT@ AddCPPProtocol test_protocol </VirtualHost> |