Commit 4f0ba3f0 4f0ba3f06baf86df828e56b583c255188efd5ff9 by Sergey Poznyakoff

(LTLIBOBJS hack): escape [ and ]

1 parent f9b91972
2002-02-16 Sergey Poznyakoff
* configure.in (LTLIBOBJS hack): escape '[' and ']'
2002-02-15 Jeff Bailey <jbailey@outpost.dnsalias.org>
* configure.in: Hack to make AC_REPLACE_FUNCS refer to .lo instead
......
......@@ -337,9 +337,9 @@ CPPFLAGS="$CPPFLAGS -DSYSCONFDIR=\\\"\$(sysconfdir)\\\""
dnl This is really UGLY! This works around a libtool/autoconf bug that only
dnl allows LIBOBJS to contain .o, not .lo for libtool.
LTLIBOBJS=`echo "$LIBOBJS" | sed 's/\.[^.]* /.lo /g;s/\.[^.]*$/.lo/'`
LTLIBOBJS=`echo "$LIBOBJS" | sed 's/\.[[^.]]* /.lo /g;s/\.[[^.]]*$/.lo/'`
AC_SUBST(LTLIBOBJS)
LTALLOCA=`echo "$ALLOCA" | sed 's/\.[^.]* /.lo /g;s/\.[^.]*$/.lo/'`
LTALLOCA=`echo "$ALLOCA" | sed 's/\.[[^.]]* /.lo /g;s/\.[[^.]]*$/.lo/'`
AC_SUBST(LTALLOCA)
dnl Output Makefiles
......@@ -351,4 +351,4 @@ AC_OUTPUT(Makefile mailutils.spec include/Makefile include/mailutils/Makefile
frm/Makefile sieve/Makefile messages/Makefile scripts/Makefile
libmu_scm/Makefile guimb/Makefile guimb/scm/Makefile
readmsg/Makefile
MySql/Makefile comsat/Makefile mail.local/Makefile)
MySql/Makefile comsat/Makefile mail.local/Makefile mh/Makefile)
......