From: Apple Date: Mon, 31 Aug 2009 23:51:38 +0000 (+0000) Subject: Libsystem-124.1.1.tar.gz X-Git-Tag: mac-os-x-1061^0 X-Git-Url: https://git.saurik.com/apple/libsystem.git/commitdiff_plain/bc54ba4e54de50f2c87ab1deac7d6848facaa099?ds=inline Libsystem-124.1.1.tar.gz --- 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