Skip to content

Commit

Permalink
Patches by Sebastian Reitenbach
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@33338 72102866-910b-0410-8b05-ffd578937521
  • Loading branch information
rfm committed Jun 18, 2011
1 parent 72c9155 commit 05f8f8f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2011-06-18 Sebastian Reitenbach <[email protected]>

* Source/NSObject.m: fix for clang
* SSL/GNUmakefile: don't link libobjc ... depend on gnustep-make

2011-06-18 Richard Frith-Macdonald <[email protected]>

* Headers/Foundation/NSURL.h:
Expand Down
2 changes: 1 addition & 1 deletion SSL/GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ SSL_OBJC_FILES = GSSSLHandle.m
# The principal class in the bundle
SSL_PRINCIPAL_CLASS = GSSSLHandle

SSL_BUNDLE_LIBS = $(SSLLIBS) -lgnustep-base -lobjc
SSL_BUNDLE_LIBS = $(SSLLIBS) -lgnustep-base

SSL_NEEDS_GUI = NO

Expand Down
2 changes: 1 addition & 1 deletion Source/NSObject.m
Original file line number Diff line number Diff line change
Expand Up @@ -1063,7 +1063,7 @@ + (void) initialize
finalize_sel = @selector(finalize);
finalize_imp = class_getMethodImplementation(self, finalize_sel);

#if (defined(__FreeBSD__) || defined(__OpenBSD__)) && defined(__i386__)
#if defined(__FreeBSD__) && defined(__i386__)
// Manipulate the FPU to add the exception mask. (Fixes SIGFPE
// problems on *BSD)
// Note this only works on x86
Expand Down

0 comments on commit 05f8f8f

Please sign in to comment.