aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorMike Stump <mrs@apple.com>2004-08-03 21:26:16 +0000
committerMike Stump <mrs@gcc.gnu.org>2004-08-03 21:26:16 +0000
commit3e558e8064098d41b3047591e41fed68b018888e (patch)
treeb6ae08207c5c6df9e74a5cb518225e99aeefa869 /gcc
parenta0fac73d2b6a463a96c93d8ea37d1c33e605aa93 (diff)
downloadgcc-3e558e8064098d41b3047591e41fed68b018888e.zip
gcc-3e558e8064098d41b3047591e41fed68b018888e.tar.gz
gcc-3e558e8064098d41b3047591e41fed68b018888e.tar.bz2
darwin-c.c: Don't search in "/Local/Library/Frameworks" for frameworks.
* config/darwin-c.c: Don't search in "/Local/Library/Frameworks" for frameworks. * doc/invoke.texi (Darwin Options): Update to reflect above. From-SVN: r85507
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/config/darwin-c.c1
-rw-r--r--gcc/doc/invoke.texi4
3 files changed, 8 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 2825c79..16eacaf 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,9 @@
+2004-08-03 Mike Stump <mrs@apple.com>
+
+ * config/darwin-c.c: Don't search in "/Local/Library/Frameworks"
+ for frameworks.
+ * doc/invoke.texi (Darwin Options): Update to reflect above.
+
2004-08-03 Roger Sayle <roger@eyesopen.com>
PR middle-end/16790
diff --git a/gcc/config/darwin-c.c b/gcc/config/darwin-c.c
index 281d166..f15aafb 100644
--- a/gcc/config/darwin-c.c
+++ b/gcc/config/darwin-c.c
@@ -417,7 +417,6 @@ static const char *framework_defaults [] =
{
"/System/Library/Frameworks",
"/Library/Frameworks",
- "/Local/Library/Frameworks",
};
diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi
index d620f48..ce26d58 100644
--- a/gcc/doc/invoke.texi
+++ b/gcc/doc/invoke.texi
@@ -6917,8 +6917,8 @@ framework. A subframework should not have the same name as a
framework, a warning will be issued if this is violated. Currently a
subframework cannot have subframeworks, in the future, the mechanism
may be extended to support this. The standard frameworks can be found
-in @samp{"/System/Library/Frameworks"}, @samp{"/Library/Frameworks"}
-and @samp{"/Local/Library/Frameworks"}. An example include looks like
+in @samp{"/System/Library/Frameworks"} and
+@samp{"/Library/Frameworks"}. An example include looks like
@code{#include <Framework/header.h>}, where @samp{Framework} denotes
the name of the framework and header.h is found in the
@samp{"PrivateHeaders"} or @samp{"Headers"} directory.