mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
fix bug #34835
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@34589 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
899bde1f61
commit
3ce8576080
3 changed files with 14 additions and 11 deletions
21
ChangeLog
21
ChangeLog
|
@ -1,19 +1,26 @@
|
|||
2012-01-10 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* config/pathtls.m4:
|
||||
* config/pathxml.m4:
|
||||
Remove incorrect sed call to tidy flags (as suggested by Felix Geyer
|
||||
in bug #34835).
|
||||
|
||||
2012-01-16 Eric Wasylishen <ewasylishen@gmail.com>
|
||||
|
||||
* Source/NSBundle.m (addBundlePath): Handle nested subdirectories
|
||||
(e.g.
|
||||
[NSBundle pathForLibraryResource: @"Generic-PostScript_Printer-Postscript"
|
||||
ofType: @"ppd"
|
||||
[NSBundle pathForLibraryResource:
|
||||
@"Generic-PostScript_Printer-Postscript" ofType: @"ppd"
|
||||
inDirectory: @"PostScript/PPD"] was previously failing.)
|
||||
|
||||
2012-01-12 10:10 theraven
|
||||
|
||||
* libs/base/trunk/Headers/Foundation/NSException.h: Tweak the
|
||||
exception mismatch handling so that if base is using native exceptions
|
||||
and the user doesn't specify an exception mode then we just don't define
|
||||
the NS_ macros, so code that uses @try etc. compiles without requiring
|
||||
every cc line to specify a long -D flag just to be allowed to #import
|
||||
Foundation.h.
|
||||
exception mismatch handling so that if base is using native exceptions
|
||||
and the user doesn't specify an exception mode then we just don't define
|
||||
the NS_ macros, so code that uses @try etc. compiles without requiring
|
||||
every cc line to specify a long -D flag just to be allowed to #import
|
||||
Foundation.h.
|
||||
|
||||
2012-01-10 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
|
|
|
@ -71,8 +71,6 @@ main()
|
|||
sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
|
||||
tls_config_micro_version=`$TLS_CONFIG $tls_config_args --version | \
|
||||
sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
|
||||
# Strip '-L/usr/lib' off since this is always in the link path.
|
||||
TLS_LIBS=`echo $TLS_LIBS | sed -e 's|-L/usr/lib||'`
|
||||
|
||||
if test "x$enable_tlstest" = "xyes" ; then
|
||||
ac_save_CFLAGS="$CFLAGS"
|
||||
|
|
|
@ -108,8 +108,6 @@ main()
|
|||
sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
|
||||
xml_config_micro_version=`$XML_CONFIG $xml_config_args --version | \
|
||||
sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
|
||||
# Strip '-L/usr/lib' off since this is always in the link path.
|
||||
XML_LIBS=`echo $XML_LIBS | sed -e 's|-L/usr/lib||'`
|
||||
|
||||
if test "x$enable_xmltest" = "xyes" ; then
|
||||
ac_save_CFLAGS="$CFLAGS"
|
||||
|
|
Loading…
Reference in a new issue