mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-20 05:17:54 +00:00
4b173045e9
Woo... It seems the glibc guys finally decided that tarballs were not deprecated, in fact. The patchset was vampirised from Gentoo (kudos, guys!), and applies to glibc+ports, so that's why it's been added as a patchset against ports, not against glibc.
26 lines
1.1 KiB
Diff
26 lines
1.1 KiB
Diff
Respect environment CPPFLAGS when we run ./configure so we can inject
|
|
random -D things without having to set CFLAGS/ASFLAGS
|
|
|
|
diff -durN glibc-2.10.1.orig/Makeconfig glibc-2.10.1/Makeconfig
|
|
--- glibc-2.10.1.orig/Makeconfig 2009-05-09 23:57:56.000000000 +0200
|
|
+++ glibc-2.10.1/Makeconfig 2009-11-13 00:49:41.000000000 +0100
|
|
@@ -672,6 +672,7 @@
|
|
$(foreach lib,$(libof-$(basename $(@F))) \
|
|
$(libof-$(<F)) $(libof-$(@F)),$(CPPFLAGS-$(lib))) \
|
|
$(CPPFLAGS-$(<F)) $(CPPFLAGS-$(@F)) $(CPPFLAGS-$(basename $(@F)))
|
|
+CPPFLAGS += $(CPPFLAGS-config)
|
|
override CFLAGS = -std=gnu99 $(gnu89-inline-CFLAGS) \
|
|
$(filter-out %frame-pointer,$(+cflags)) $(+gccwarn-c) \
|
|
$(sysdep-CFLAGS) $(CFLAGS-$(suffix $@)) $(CFLAGS-$(<F)) \
|
|
diff -durN glibc-2.10.1.orig/config.make.in glibc-2.10.1/config.make.in
|
|
--- glibc-2.10.1.orig/config.make.in 2009-05-09 17:59:38.000000000 +0200
|
|
+++ glibc-2.10.1/config.make.in 2009-11-13 00:49:41.000000000 +0100
|
|
@@ -103,6 +103,7 @@
|
|
CXX = @CXX@
|
|
BUILD_CC = @BUILD_CC@
|
|
CFLAGS = @CFLAGS@
|
|
+CPPFLAGS-config = @CPPFLAGS@
|
|
ASFLAGS-config = @ASFLAGS_config@
|
|
AR = @AR@
|
|
RANLIB = @RANLIB@
|