libtool-patches
[Top][All Lists]
Advanced

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

[PATCH-1.5] darwin -framework


From: Peter O'Gorman
Subject: [PATCH-1.5] darwin -framework
Date: Sat, 29 Jan 2005 00:26:22 +0900
User-agent: Mozilla Thunderbird 1.0 (Macintosh/20041206)

This is something people bug me about often. It is not the same as HEAD/branch-2.0 but would satisfy most darwin users. Okay to commit?

Peter
--
Peter O'Gorman - http://www.pogma.com
Index: ChangeLog
2005-01-28  Peter O'Gorman  <address@hidden>

        * ltmain.in [darwin]: Allow -framework foo through when given on
        the command line.

from  Ralf Wildenhues  <address@hidden>
Index: ltmain.in
===================================================================
RCS file: /cvsroot/libtool/libtool/Attic/ltmain.in,v
retrieving revision 1.334.2.49
diff -u -3 -p -u -r1.334.2.49 ltmain.in
--- ltmain.in 26 Jan 2005 17:41:19 -0000 1.334.2.49
+++ ltmain.in 28 Jan 2005 15:23:31 -0000
@@ -1360,6 +1360,11 @@ EOF
          prev=
          continue
          ;;
+        darwin_framework)
+         compiler_flags="$compiler_flags $arg"
+         prev=
+         continue
+         ;;
        *)
          eval "$prev=\"\$arg\""
          prev=
@@ -1418,6 +1423,12 @@ EOF
        continue
        ;;
 
+      -framework)
+        prev=darwin_framework
+        compiler_flags="$compiler_flags $arg"
+        continue
+        ;;
+
       -inst-prefix-dir)
        prev=inst_prefix
        continue

reply via email to

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