From 85d09b936cf34e39d95936da3d26a4401a3a7cae Mon Sep 17 00:00:00 2001 From: ayers Date: Wed, 25 Feb 2004 14:53:21 +0000 Subject: [PATCH] * GSWeb.framework/GSWApplication.h * GSWeb.framework/GSWDeployedBundle.h: Replace objc_thread_t with NSThread * for caching the thread in the instance variable. * GSWeb.framework/Makefile.postamble: Remove config.h during make distclean. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@18666 72102866-910b-0410-8b05-ffd578937521 --- ChangeLog | 9 +++++++++ GSWeb.framework/GSWApplication.h | 4 ++-- GSWeb.framework/GSWDeployedBundle.h | 4 ++-- GSWeb.framework/Makefile.postamble | 2 +- 4 files changed, 14 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index 338c853..efa10e7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2004-02-25 David Ayers + + * GSWeb.framework/GSWApplication.h + * GSWeb.framework/GSWDeployedBundle.h: Replace objc_thread_t + with NSThread * for caching the thread in the instance variable. + + * GSWeb.framework/Makefile.postamble: Remove config.h during + make distclean. + 2004-02-17 David Ayers * GSWeb.framework/GSWApplication.m diff --git a/GSWeb.framework/GSWApplication.h b/GSWeb.framework/GSWApplication.h index d751ffb..3179022 100644 --- a/GSWeb.framework/GSWApplication.h +++ b/GSWeb.framework/GSWApplication.h @@ -68,12 +68,12 @@ extern BOOL WOStrictFlag; NSRecursiveLock* _selfLock; #ifndef NDEBUG int _selfLockn; - objc_thread_t _selfLock_thread_id; + NSThread *_selfLock_thread_id; #endif NSLock* _globalLock; #ifndef NDEBUG int _globalLockn; - objc_thread_t _globalLock_thread_id; + NSThread *_globalLock_thread_id; #endif NSAutoreleasePool* _globalAutoreleasePool; unsigned _pageCacheSize; diff --git a/GSWeb.framework/GSWDeployedBundle.h b/GSWeb.framework/GSWDeployedBundle.h index fea5735..841c7b7 100644 --- a/GSWeb.framework/GSWDeployedBundle.h +++ b/GSWeb.framework/GSWDeployedBundle.h @@ -48,8 +48,8 @@ NSRecursiveLock* _selfLock; #ifndef NDEBUG int _selfLockn; - objc_thread_t _selfLock_thread_id; - objc_thread_t _creation_thread_id; + NSThread *_selfLock_thread_id; + NSThread *_creation_thread_id; #endif }; diff --git a/GSWeb.framework/Makefile.postamble b/GSWeb.framework/Makefile.postamble index 1416103..d729b20 100644 --- a/GSWeb.framework/Makefile.postamble +++ b/GSWeb.framework/Makefile.postamble @@ -72,7 +72,7 @@ after-install:: install-WO-headers # Things to do after distcleaning after-distclean:: - rm -rf Makefile.preamble + rm -f Makefile.preamble $(GNUSTEP_TARGET_DIR)/config.h # Things to do before checking # before-check::