From bc54ba4e54de50f2c87ab1deac7d6848facaa099 Mon Sep 17 00:00:00 2001 From: Apple Date: Mon, 31 Aug 2009 23:51:38 +0000 Subject: [PATCH] Libsystem-124.1.1.tar.gz --- GNUmakefile | 2 ++ Info.plist | 2 +- libsys/Makefile | 10 +++++++++- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index 816a18f..001973c 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -93,6 +93,8 @@ fake: libc: $(MKDIR) '$(OBJROOT)/libc' $(BSDMAKE) -C libsys install \ + FEATURE_DEBUG_DYLIB=$(FEATURE_DEBUG_DYLIB) \ + FEATURE_PROFILE_DYLIB=$(FEATURE_PROFILE_DYLIB) \ DSTROOT='$(DSTROOT)' \ OBJROOT='$(OBJROOT)/libc' \ SRCROOT='$(SRCROOT)' \ diff --git a/Info.plist b/Info.plist index f5e6dd7..29f80ab 100644 --- a/Info.plist +++ b/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 10.0 + 10.1 CFBundleSignature ???? CarbonLazyValues diff --git a/libsys/Makefile b/libsys/Makefile index 6012907..786c9c5 100644 --- a/libsys/Makefile +++ b/libsys/Makefile @@ -16,7 +16,15 @@ BSDMAKEJ = $(BSDMAKE) -f Makefile -j $(NJOBS) # always a variable dynamic = dynamic -FORMS := debug dynamic profile +FORMS := dynamic + +.if !empty(FEATURE_DEBUG_DYLIB) +FORMS += debug +.endif + +.if !empty(FEATURE_PROFILE_DYLIB) +FORMS += profile +.endif all: build -- 2.45.2