1 diff -ru a/nspr/configure b/nspr/configure
2 --- a/a/nspr/configure 2014-09-29 16:50:33.907375937 +0100
3 +++ b/b/nspr/configure 2014-09-29 16:51:59.213931947 +0100
5 AS='$(CC) -x assembler-with-cpp'
6 CFLAGS="$CFLAGS -Wall -fno-common"
7 case "${target_cpu}" in
18 - DSO_LDOPTS='-dynamiclib -compatibility_version 1 -current_version 1 -all_load -install_name @executable_path/$@ -headerpad_max_install_names'
19 + DSO_LDOPTS='-dynamiclib -compatibility_version 1 -current_version 1 -all_load -install_name @__________________________________________________OOO/$@ -headerpad_max_install_names'
21 MKSHLIB='$(CC) $(DSO_LDOPTS) -o $@'
23 diff -ru a/nss/coreconf/Darwin.mk b/nss/coreconf/Darwin.mk
24 --- a/a/nss/coreconf/Darwin.mk 2014-09-29 16:50:22.992304799 +0100
25 +++ b/b/nss/coreconf/Darwin.mk 2014-09-29 16:51:59.214931953 +0100
28 ifeq (,$(filter-out i%86,$(CPU_ARCH)))
30 +ifeq (,$(findstring -arch ,$(CC)))
34 override CPU_ARCH = x86_64
36 OS_REL_CFLAGS = -Di386
37 +ifeq (,$(findstring -arch ,$(CC)))
41 override CPU_ARCH = x86
45 ifeq (arm,$(CPU_ARCH))
46 # Nothing set for arm currently.
48 -OS_REL_CFLAGS = -Dppc
54 ifneq (,$(MACOS_SDK_DIR))
55 + CLANG_VERSION_FULL := $(shell $(CC) -v 2>&1 | grep "clang version" | sed -e "s/^.*clang version[ ]*//" | awk '{ print $$1 }')
56 GCC_VERSION_FULL := $(shell $(CC) -dumpversion)
57 GCC_VERSION_MAJOR := $(shell echo $(GCC_VERSION_FULL) | awk -F. '{ print $$1 }')
58 GCC_VERSION_MINOR := $(shell echo $(GCC_VERSION_FULL) | awk -F. '{ print $$2 }')
59 GCC_VERSION = $(GCC_VERSION_MAJOR).$(GCC_VERSION_MINOR)
60 + ifneq (,$(CLANG_VERSION_FULL))
61 + DARWIN_SDK_CFLAGS = -isysroot $(MACOS_SDK_DIR)
62 + DARWIN_SDK_SHLIBFLAGS = -isysroot $(MACOS_SDK_DIR)
64 - ifeq (,$(filter-out 2 3,$(GCC_VERSION_MAJOR)))
65 + else ifeq (,$(filter-out 2 3,$(GCC_VERSION_MAJOR)))
67 DARWIN_SDK_FRAMEWORKS = -F$(MACOS_SDK_DIR)/System/Library/Frameworks
68 ifneq (,$(shell find $(MACOS_SDK_DIR)/Library/Frameworks -maxdepth 0))
70 # May override this with different compatibility and current version numbers.
71 DARWIN_DYLIB_VERSIONS = -compatibility_version 1 -current_version 1
72 # May override this with -bundle to create a loadable module.
73 -DSO_LDOPTS = -dynamiclib $(DARWIN_DYLIB_VERSIONS) -install_name @executable_path/$(notdir $@) -headerpad_max_install_names
74 +DSO_LDOPTS = -dynamiclib $(DARWIN_DYLIB_VERSIONS) -install_name @__________________________________________________OOO/$(notdir $@) -headerpad_max_install_names
77 OS_CFLAGS += --coverage
78 diff -ru a/nss/Makefile b/nss/Makefile
79 --- a/a/nss/Makefile 2014-09-29 16:50:22.990304789 +0100
80 +++ b/b/nss/Makefile 2014-09-29 16:51:59.207931908 +0100
82 ifeq ($(OS_TARGET),WIN95)
83 NSPR_CONFIGURE_OPTS += --enable-win32-target=WIN95
86 +NSPR_CONFIGURE_OPTS += --with-macos-sdk=$(MACOS_SDK_DIR)
89 NSPR_CONFIGURE_OPTS += --enable-debug-rtl