* 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
This commit is contained in:
ayers 2004-02-25 14:53:21 +00:00
parent 8c0a3efa9f
commit 85d09b936c
4 changed files with 14 additions and 5 deletions

View file

@ -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
};