123456789101112131415161718192021222324 |
- --- nss-3.15.2.orig/nss/coreconf/Linux.mk 2013-09-25 15:57:55.000000000 +0200
- +++ nss-3.15.2/nss/coreconf/Linux.mk 2013-09-27 19:08:33.000000000 +0200
- @@ -16,9 +16,9 @@ ifeq ($(USE_PTHREADS),1)
- IMPL_STRATEGY = _PTH
- endif
-
- -CC = gcc
- -CCC = g++
- -RANLIB = ranlib
- +CC ?= gcc
- +CCC ?= g++
- +RANLIB ?= ranlib
-
- DEFAULT_COMPILER = gcc
-
- @@ -144,7 +144,7 @@ DSO_LDOPTS = -shared $(ARCHFLAG)
- # we don't use -z defs there.
- ZDEFS_FLAG = -Wl,-z,defs
- DSO_LDOPTS += $(if $(findstring 2.11.90.0.8,$(shell ld -v)),,$(ZDEFS_FLAG))
- -LDFLAGS += $(ARCHFLAG)
- +#LDFLAGS += $(ARCHFLAG)
-
- # On Maemo, we need to use the -rpath-link flag for even the standard system
- # library directories.
|