]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* ltmain.in [darwin]: Allow -framework foo through when given on
authorPeter O'Gorman <peter@pogma.com>
Sat, 29 Jan 2005 13:00:57 +0000 (13:00 +0000)
committerPeter O'Gorman <peter@pogma.com>
Sat, 29 Jan 2005 13:00:57 +0000 (13:00 +0000)
the command line.

ChangeLog
ltmain.in

index e236e07a95845accdf87dfd1a2326827470362a7..36d514635d8bafaa8cb47e30397e4d0e4d7df52a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-01-29  Peter O'Gorman  <peter@pogma.com>
+
+       * ltmain.in [darwin]: Allow -framework foo through when given on
+       the command line.
+
 2005-01-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
 
        * tests/Makefile.am: also re-export CPP, F77, FFLAGS, CXX,
index 12bf5b9ba1537a4ae1af447493eb04f260f3b9dc..c8d30bb73d4ef6746a4b4fce3aa412c11c81f814 100644 (file)
--- a/ltmain.in
+++ b/ltmain.in
@@ -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