svn commit: trunk/uClibc/libpthread

sjhill at uclibc.org sjhill at uclibc.org
Sat Oct 1 17:34:43 UTC 2005


Author: sjhill
Date: 2005-10-01 10:34:42 -0700 (Sat, 01 Oct 2005)
New Revision: 11723

Log:
Again, I need to cut down on my merge times and this last set of changes to the makefile structure is killing me. Sorry to put more native thread stuff in, but it cannot be activated in the trunk, so there is no harm.


Modified:
   trunk/uClibc/libpthread/Makefile


Changeset:
Modified: trunk/uClibc/libpthread/Makefile
===================================================================
--- trunk/uClibc/libpthread/Makefile	2005-10-01 17:06:33 UTC (rev 11722)
+++ trunk/uClibc/libpthread/Makefile	2005-10-01 17:34:42 UTC (rev 11723)
@@ -19,12 +19,19 @@
 TOPDIR=../
 include $(TOPDIR)Rules.mak
 
+ifeq ($(strip $(UCLIBC_HAS_THREADS_NATIVE)),y)
+ALL_SUBDIRS = nptl nptl_db
+DIRS = nptl
+ifeq ($(strip $(PTHREADS_DEBUG_SUPPORT)),y)
+	DIRS += nptl_db
+endif
+else
 ALL_SUBDIRS = linuxthreads linuxthreads_db
-
-DIRS=linuxthreads
+DIRS = linuxthreads
 ifeq ($(strip $(PTHREADS_DEBUG_SUPPORT)),y)
-	DIRS+=linuxthreads_db
+        DIRS += linuxthreads_db
 endif
+endif
 
 all: subdirs
 




More information about the uClibc-cvs mailing list