mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-04-23 15:33:43 +00:00
* GSWExtensions.framework/GSWLongResponsePage.m
([GSWLongResponsePage threadExited:]): Replace NSThreadExiting with NSThreadWillExitNotification. ([GSWLongResponsePage _perform:]): Ditto. * GSWeb.framework/GNUmakefile: Depend on GDL2 when applicable. * GSWeb.framework/Makefile.preamble.in: Add dependency on GSANTLER and -baseadd when applicable. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@18698 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
4381de6b49
commit
13dd609d5e
4 changed files with 18 additions and 3 deletions
|
@ -13,6 +13,15 @@
|
|||
* GSWeb.framework/NSData+Compress.m ([NSData deflate]):
|
||||
Remove dependancy on GNUstep extenstions.
|
||||
* GSWeb.framework/stacktrace.m: Add test for __MACH__.
|
||||
|
||||
* GSWExtensions.framework/GSWLongResponsePage.m
|
||||
([GSWLongResponsePage threadExited:]): Replace NSThreadExiting
|
||||
with NSThreadWillExitNotification.
|
||||
([GSWLongResponsePage _perform:]): Ditto.
|
||||
|
||||
* GSWeb.framework/GNUmakefile: Depend on GDL2 when applicable.
|
||||
* GSWeb.framework/Makefile.preamble.in: Add dependency on
|
||||
GSANTLER and -baseadd when applicable.
|
||||
|
||||
2004-02-26 David Ayers <d.ayers@inode.at>
|
||||
|
||||
|
|
|
@ -136,7 +136,7 @@ RCS_ID("$Id$")
|
|||
// NSDebugMLLog(@"low",@"adaptorThread=%@",adaptorThread);
|
||||
// [threadDict removeObjectForKey:GSWThreadKey_DefaultAdaptorThread];
|
||||
[[NSNotificationCenter defaultCenter] removeObserver:self
|
||||
name:NSThreadExiting//NSThreadWillExitNotification
|
||||
name:NSThreadWillExitNotification
|
||||
object:thread];
|
||||
LOGObjectFnStopC("GSWLongResponsePage");
|
||||
return nil; //??
|
||||
|
@ -150,7 +150,7 @@ RCS_ID("$Id$")
|
|||
arp = [NSAutoreleasePool new];
|
||||
[[NSNotificationCenter defaultCenter] addObserver:self
|
||||
selector:@selector(threadExited:)
|
||||
name:NSThreadExiting//NSThreadWillExitNotification
|
||||
name:NSThreadWillExitNotification
|
||||
object:[NSThread currentThread]];
|
||||
NS_DURING
|
||||
{
|
||||
|
|
|
@ -28,6 +28,9 @@ GNUSTEP_MAKEFILES = $(GNUSTEP_SYSTEM_ROOT)/Makefiles
|
|||
|
||||
GNUSTEP_LOCAL_ADDITIONAL_MAKEFILES=../gsweb.make
|
||||
include $(GNUSTEP_MAKEFILES)/common.make
|
||||
ifeq ($(GDL2),yes)
|
||||
include $(GNUSTEP_MAKEFILES)/Auxiliary/gdl2.make
|
||||
endif
|
||||
|
||||
include ../Version
|
||||
include ../config.mak
|
||||
|
|
|
@ -64,7 +64,10 @@ ADDITIONAL_CFLAGS = -DUSE_BUILTIN
|
|||
ADDITIONAL_INCLUDE_DIRS = -I./$(GNUSTEP_TARGET_DIR) @XML_CFLAGS@
|
||||
|
||||
# Additional LDFLAGS to pass to the linker
|
||||
LIBRARIES_DEPEND_UPON += @AUX_LIBS@
|
||||
LIBRARIES_DEPEND_UPON += -lGSANTLR @AUX_LIBS@
|
||||
ifneq ($(FOUNDATION_LIB),gnu)
|
||||
LIBRARIES_DEPEND_UPON += -lgnustep-baseadd
|
||||
endif
|
||||
|
||||
# Additional library directories the linker should search
|
||||
ADDITIONAL_LIB_DIRS =
|
||||
|
|
Loading…
Reference in a new issue