libtool-patches
[Top][All Lists]
Advanced

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

Re: Mac OSX 10.3.x and libtool1.5.14


From: Peter O'Gorman
Subject: Re: Mac OSX 10.3.x and libtool1.5.14
Date: Fri, 04 Mar 2005 23:32:48 +0900
User-agent: Mozilla Thunderbird 1.0 (Macintosh/20041206)

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Ralf Wildenhues wrote:
| * Peter O'Gorman wrote on Fri, Mar 04, 2005 at 01:23:04PM CET:
|
|>Ralf Wildenhues wrote:
|>|
|>| Do you know the difference between Apple's supplied `libtool' and GNU
|>| libtool, called `glibtool' on those systems (I believe)?
|>|
|>| Are your problems related to the thread at
|>| http://lists.gnu.org/archive/html/libtool/2005-03/msg00008.html ?
|>
|>Yes, he did ./configure --prefix=/usr and make install and overwrote his
|>apple supplied (entirely orthogonal) libtool. To recover from this it is
|>necessary to reinstall the developer tools (xcode tools).
|
|
| Thank you for this information.
|
|
|>Yeah, I guess I could patch configure.ac to make --program-prefix=g the
|>default on darwin.
|
|
| Might not be entirely unreasonable.  Just make it overridable and
| document it.  :)

Okay to apply and forward port?

Peter
- --
Peter O'Gorman - http://www.pogma.com
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.0 (Darwin)

iQCVAwUBQihxjriDAg3OZTLPAQIkrAP+I8SyfZ0I7gpPbAVKc4Higwa8l9JZS9Uo
Yups7p3A9hV6F1di+QL5+yyH9+ZmgaxSEQjh3w813ArxvOdEs9FFF+F+M4Sr8/7a
pFwUInGkooEIVDlUSiv6P+X7s0Rf2rkfp7oBjcrKIpwgcjqrSJe0cZIBG+jFCGSk
XPqzycD4GrA=
=ilh0
-----END PGP SIGNATURE-----
Index: ChangeLog
2005-04-04  Peter O'Gorman  <address@hidden>

        * configure.ac [darwin]: Set program_transform_name to install the
        libtool script as glibtool on darwin.
        * NEWS: Document it.

from  Gary V. Vaughan  <address@hidden>
Index: NEWS
===================================================================
RCS file: /cvsroot/libtool/libtool/NEWS,v
retrieving revision 1.109.2.26
diff -u -r1.109.2.26 NEWS
--- NEWS 12 Feb 2005 13:54:43 -0000 1.109.2.26
+++ NEWS 4 Mar 2005 14:30:27 -0000
@@ -1,6 +1,8 @@
 NEWS - list of user-visible changes between releases of GNU Libtool
 
 New in 1.5.15a: 2005-??-??; CVS version 1.5.15a, Libtool team:
+* Install libtool as glibtool on darwin unless a different transformation
+  was specified.
 * Bug Fixes.
 
 New in 1.5.14: 2005-02-12; CVS version 1.5.13a, Libtool team:
Index: configure.ac
===================================================================
RCS file: /cvsroot/libtool/libtool/configure.ac,v
retrieving revision 1.14.2.20
diff -u -r1.14.2.20 configure.ac
--- configure.ac 12 Feb 2005 13:54:43 -0000 1.14.2.20
+++ configure.ac 4 Mar 2005 14:30:27 -0000
@@ -133,6 +133,15 @@
 AC_PROG_LIBTOOL
 
 
+## ----------------------------------------------- ##
+## Change libtool -> glibtool at install on darwin ##
+## if no other transformations were specifeid      ##
+## ----------------------------------------------- ##
+case ${program_prefix}${program_suffix}${program_transform_name}${host_os} in
+     NONENONEs,x,x,darwin*) 
+                           program_transform_name=[s,libtool\$\$,glibtool,]
+                           ;;
+esac
 
 ## -------- ##
 ## Outputs. ##

reply via email to

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