From: Gary V. Vaughan Date: Sat, 22 Sep 2001 14:35:03 +0000 (+0000) Subject: * libtool.m4 (_LT_AC_FILE_LTDLL_C): Be carefule that the start X-Git-Tag: release-1-4d~22 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e40a0838917401576e2dbf4d67145991b76f9688;p=thirdparty%2Flibtool.git * libtool.m4 (_LT_AC_FILE_LTDLL_C): Be carefule that the start marker searched for by sed must start in column 0. (_LT_AC_FILE_IMPGEN_C): Ditto. Reported by Tor Lillqvist --- diff --git a/ChangeLog b/ChangeLog index 534993047..c0bbbd2c6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2001-09-22 Gary V. Vaughan + + * libtool.m4 (_LT_AC_FILE_LTDLL_C): Be carefule that the start + marker searched for by sed must start in column 0. + (_LT_AC_FILE_IMPGEN_C): Ditto. + Reported by Tor Lillqvist + 2001-09-22 Tor Lillqvist * libtool.m4 [mingw* cygwin*]: Small improvement for mingw-hosted diff --git a/libtool.m4 b/libtool.m4 index c568ebc9f..a360490ac 100644 --- a/libtool.m4 +++ b/libtool.m4 @@ -5094,8 +5094,9 @@ fi # _LT_AC_FILE_LTDLL_C # ------------------- -AC_DEFUN([_LT_AC_FILE_LTDLL_C], -[# /* ltdll.c starts here */ +# Be careful that the start marker always follows a newline. +AC_DEFUN([_LT_AC_FILE_LTDLL_C], [ +# /* ltdll.c starts here */ # #define WIN32_LEAN_AND_MEAN # #include # #undef WIN32_LEAN_AND_MEAN @@ -5133,8 +5134,9 @@ AC_DEFUN([_LT_AC_FILE_LTDLL_C], # _LT_AC_FILE_IMPGEN_C # -------------------- -AC_DEFUN([_LT_AC_FILE_IMPGEN_C], -[# /* impgen.c starts here */ +# Be careful that the start marker always follows a newline. +AC_DEFUN([_LT_AC_FILE_IMPGEN_C], [ +# /* impgen.c starts here */ # /* Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc. # # This file is part of GNU libtool.