2004-08-03 Mike Stump * config/darwin-c.c: Don't search in "/Local/Library/Frameworks" for frameworks. * doc/invoke.texi (Darwin Options): Update to reflect above. Doing diffs in .: *** ./config/darwin-c.c.~1~ Tue Aug 3 13:55:37 2004 --- ./config/darwin-c.c Tue Aug 3 14:02:13 2004 *************** static const char *framework_defaults [] *** 417,423 **** { "/System/Library/Frameworks", "/Library/Frameworks", - "/Local/Library/Frameworks", }; --- 417,422 ---- *** ./doc/invoke.texi.~1~ Tue Aug 3 13:59:42 2004 --- ./doc/invoke.texi Tue Aug 3 14:01:38 2004 *************** framework. A subframework should not ha *** 6917,6924 **** 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 @code{#include }, where @samp{Framework} denotes the name of the framework and header.h is found in the @samp{"PrivateHeaders"} or @samp{"Headers"} directory. --- 6917,6924 ---- 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"} and ! @samp{"/Library/Frameworks"}. An example include looks like @code{#include }, where @samp{Framework} denotes the name of the framework and header.h is found in the @samp{"PrivateHeaders"} or @samp{"Headers"} directory. --------------