Author: pgollucci
Date: Wed Sep 13 02:16:41 2006
New Revision: 442915
URL: http://svn.apache.org/viewvc?view=rev&rev=442915
Log:
libtool version 1.5.x on Sun OS (tested 5.10)
have a typo
shrext='.so'
this should be
shrext_cmds='.so'
since no version of libtool gets this correct, we
manually edit ./libtool after it is generated to correct this,
but only on Sun OS.
Modified:
httpd/apreq/trunk/CHANGES
httpd/apreq/trunk/acinclude.m4
Modified: httpd/apreq/trunk/CHANGES
URL:
http://svn.apache.org/viewvc/httpd/apreq/trunk/CHANGES?view=diff&rev=442915&r1=442914&r2=442915
==============================================================================
--- httpd/apreq/trunk/CHANGES (original)
+++ httpd/apreq/trunk/CHANGES Wed Sep 13 02:16:41 2006
@@ -4,6 +4,11 @@
@section v2_09 Changes with libapreq2-2.09 (under developement)
+- Build [Philip M. Gollucci]
+ SunOS (Solaris)
+ Code around bug in libtool (at least in 1.5.18, 1.5.20, 1.5.22)
+ causing mod_apreq2 to be built instead of mod_apreq2.so
+
- C API [Philip M. Gollucci]
Fix comparison signed vs unsigned comparison
in apreq_fwritev() on SunOS/gcc where iovec.iov_len is a long.
Modified: httpd/apreq/trunk/acinclude.m4
URL:
http://svn.apache.org/viewvc/httpd/apreq/trunk/acinclude.m4?view=diff&rev=442915&r1=442914&r2=442915
==============================================================================
--- httpd/apreq/trunk/acinclude.m4 (original)
+++ httpd/apreq/trunk/acinclude.m4 Wed Sep 13 02:16:41 2006
@@ -265,6 +265,10 @@
AC_SUBST(PERL_OPTS)
AC_SUBST(MM_OPTS)
AC_SUBST(TAR)
+
+ if test "x$OS" = "xsolaris"; then
+ $PERL -pi -e 's,^shrext=,shrext_cmds=,' libtool
+ fi
])
dnl APR_CONFIG_NICE(filename)