Hello!
This patch fixes problems with autoconf-2.49a. It still produces tons of
warnings but no errors.
The errors were caused by calling autoconf macros while non-standard
quotes are in effect. This patch fixed the problem:
=======================
Index: ChangeLog
--- ChangeLog Thu Sep 7 08:22:46 2000
+++ ChangeLog Thu Sep 7 13:36:19 2000
@@ -0,0 +1,5 @@
+2000-09-07 Pavel Roskin <[EMAIL PROTECTED]>
+
+ * libtool.m4 (_LT_AC_LTCONFIG_HACK): fixed incorrect use of
+ changequote
+
Index: libtool.m4
--- libtool.m4 Thu Sep 7 13:30:38 2000
+++ libtool.m4 Thu Sep 7 13:30:57 2000
@@ -597,16 +597,16 @@
## END FIXME
# Check for any special shared library compilation flags.
-changequote(,)dnl
if test -n "$ac_cv_prog_cc_shlib"; then
AC_MSG_WARN([\`$CC' requires \`$ac_cv_prog_cc_shlib' to build shared libraries])
+ changequote(,)dnl
if echo "$old_CC $old_CFLAGS " | egrep -e "[ ]$ac_cv_prog_cc_shlib[ ]"
>/dev/null; then :
+ changequote([,])dnl
else
AC_MSG_WARN([add \`$ac_cv_prog_cc_shlib' to the CC or CFLAGS env variable and
reconfigure])
ac_cv_prog_cc_can_build_shared=no
fi
fi
-changequote([,])dnl
## FIXME: this should be a separate macro
##
=======================
Regards,
Pavel Roskin