[In order for any reply to be added to the PR database, ]
[you need to include <[EMAIL PROTECTED]> in the Cc line ]
[and leave the subject line UNCHANGED. This is not done]
[automatically because of the potential for mail loops. ]
Synopsis: Error in running sh config
State-Changed-From-To: open-closed
State-Changed-By: rse
State-Changed-When: Mon Jun 29 05:06:28 PDT 1998
State-Changed-Why:
There was a bug in src/Configure which leads to
the incorrect DSO flag guessing on your platform.
As a workaround either apply the appended patch
(and then send us the guessed DSO flags) or
just remove the --enable-shared option from your
configuration steps.
Index: src/Configure
===================================================================
RCS file: /e/apache/REPOS/apache-1.3/src/Configure,v
retrieving revision 1.268
diff -u -r1.268 Configure
--- Configure 1998/06/17 13:34:02 1.268
+++ Configure 1998/06/29 11:59:02
@@ -999,9 +999,9 @@
if [ ".`$PERL -V:dlsrc 2>/dev/null | grep dlopen`" != . ]; then
# ...and actually uses the dlopen-style interface,
# so we can guess the flags from its knowledge
- CFLAGS_SHLIB="`perl -V:cccdlflags | cut -d\' -f2`"
- LDFLAGS_SHLIB="`perl -V:lddlflags | cut -d\' -f2`"
- LDFLAGS_SHLIB_EXPORT="`perl -V:ccdlflags | cut -d\' -f2`"
+ CFLAGS_SHLIB="`$PERL -V:cccdlflags | cut -d\' -f2`"
+ LDFLAGS_SHLIB="`$PERL -V:lddlflags | cut -d\' -f2`"
+ LDFLAGS_SHLIB_EXPORT="`$PERL -V:ccdlflags | cut -d\' -f2`"
# but additionally we have to inform the
# user that we are just guessing the flags
echo ""