libtool-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

libtoolize, ln -s and DJGPP 2.03


From: Richard Dawe
Subject: libtoolize, ln -s and DJGPP 2.03
Date: Thu, 06 Feb 2003 23:26:41 +0000

Hello.

(I finally found the bug in the DJGPP port of automake and now bootstrap
works for me. Thanks for the help.)

DJGPP 2.03 does not support symlinks. This means that 'ln -s' will fail.

autoconf has a test for 'ln -s' that falls back on to other programs,
when 'ln -s' fails. libtoolize has a variable for 'ln -s'. The patch
below modifies libtoolize to use the result of the autoconf test.

If you want to get 1.5 out the door, perhaps you could defer this
to 1.5.1. I'll be sending some more DJGPP-related patches sometime.

Bye, Rich =]

Index: ChangeLog
===================================================================
RCS file: /cvsroot/libtool/libtool/ChangeLog,v
retrieving revision 1.1187
diff -p -u -3 -r1.1187 ChangeLog
--- ChangeLog   6 Feb 2003 04:51:20 -0000       1.1187
+++ ChangeLog   6 Feb 2003 23:19:29 -0000
@@ -1,3 +1,8 @@
+2003-02-06  Richard Dawe  <address@hidden>
+
+       * libtoolize.in: Use the program found by AC_PROG_LN_S
+       to create symlinks.
+
 2003-02-05  Robert Boehne  <address@hidden>
 
        * libtool.m4 (AC_CHECK_LIBM): Search for a real symbol in
Index: libtoolize.in
===================================================================
RCS file: /cvsroot/libtool/libtool/libtoolize.in,v
retrieving revision 1.19
diff -p -u -3 -r1.19 libtoolize.in
--- libtoolize.in       19 Nov 2002 09:42:39 -0000      1.19
+++ libtoolize.in       6 Feb 2003 23:19:30 -0000
@@ -43,7 +43,7 @@ ltdl_m4="$aclocaldir/ltdl.m4"
 dry_run=no
 help="Try \`$progname --help' for more information."
 rm="rm -f"
-ln_s="ln -s"
+ln_s="@LN_S@"
 cp="cp -f"
 mkdir="mkdir"
 





reply via email to

[Prev in Thread] Current Thread [Next in Thread]