diff options
author | obrien <obrien@FreeBSD.org> | 2003-12-15 15:45:53 +0800 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2003-12-15 15:45:53 +0800 |
commit | 816dfec8f1ab74cf6b5500a5971cf31de8d35403 (patch) | |
tree | 450fe2a1d2ba20e128cbc1bc407a8012a5d18f13 /lang/gcc41/files | |
parent | 4cedcbaad0534940a018ed0241ac11a03d124893 (diff) | |
download | freebsd-ports-gnome-816dfec8f1ab74cf6b5500a5971cf31de8d35403.tar.gz freebsd-ports-gnome-816dfec8f1ab74cf6b5500a5971cf31de8d35403.tar.zst freebsd-ports-gnome-816dfec8f1ab74cf6b5500a5971cf31de8d35403.zip |
* Deal with GCC's configurary's assumption that /usr/local/{include,lib}
are searched automatically by the compiler by using --with-libiconv-prefix.
W/o --with-libiconv-prefix, 'configure' finds the lib, but not the header.
During the make, neither will be found; a lot of inconsistency here...
* Deal with GCC's configurary's brokenness WRT --with-libiconv-prefix due
not actually passing the found header path to CFLAGS in any way.
Diffstat (limited to 'lang/gcc41/files')
-rw-r--r-- | lang/gcc41/files/patch-gcc-Makefile.in | 5 | ||||
-rw-r--r-- | lang/gcc41/files/patch-gcc-configure | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/lang/gcc41/files/patch-gcc-Makefile.in b/lang/gcc41/files/patch-gcc-Makefile.in new file mode 100644 index 000000000000..9e69d6003011 --- /dev/null +++ b/lang/gcc41/files/patch-gcc-Makefile.in @@ -0,0 +1,5 @@ +--- gcc/Makefile.in.orig Sun Dec 7 18:32:10 2003 ++++ gcc/Makefile.in Sun Dec 14 23:19:41 2003 +@@ -707 +707 @@ +-ALL_CPPFLAGS = $(CPPFLAGS) $(X_CPPFLAGS) $(T_CPPFLAGS) ++ALL_CPPFLAGS = $(CPPFLAGS) $(X_CPPFLAGS) $(T_CPPFLAGS) @CONFIGURE_CPPFLAGS@ diff --git a/lang/gcc41/files/patch-gcc-configure b/lang/gcc41/files/patch-gcc-configure new file mode 100644 index 000000000000..9e9b426276e0 --- /dev/null +++ b/lang/gcc41/files/patch-gcc-configure @@ -0,0 +1,5 @@ +--- gcc/configure.orig Sun Dec 14 22:51:04 2003 ++++ gcc/configure Sun Dec 14 22:51:25 2003 +@@ -8112 +8112 @@ +-s%@CPPFLAGS@%$CPPFLAGS%g ++s%@CONFIGURE_CPPFLAGS@%$CPPFLAGS%g |