diff options
author | Alexis Ballier <aballier@gentoo.org> | 2010-10-23 02:01:05 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2010-10-23 02:01:05 +0000 |
commit | 1edffeef516fc845636562a65e683e8838929998 (patch) | |
tree | 84b04789645f94a9507d752c96efe7522a549680 /app-text/teckit/files | |
parent | version bump (diff) | |
download | historical-1edffeef516fc845636562a65e683e8838929998.tar.gz historical-1edffeef516fc845636562a65e683e8838929998.tar.bz2 historical-1edffeef516fc845636562a65e683e8838929998.zip |
Do not mix CFLAGS and CXXFLAGS, bug #338110
Package-Manager: portage-2.2_rc99/cvs/Linux x86_64
Diffstat (limited to 'app-text/teckit/files')
-rw-r--r-- | app-text/teckit/files/teckit-2.5.1-mixcflagscxxflags.patch | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/app-text/teckit/files/teckit-2.5.1-mixcflagscxxflags.patch b/app-text/teckit/files/teckit-2.5.1-mixcflagscxxflags.patch new file mode 100644 index 000000000000..5a290f45133b --- /dev/null +++ b/app-text/teckit/files/teckit-2.5.1-mixcflagscxxflags.patch @@ -0,0 +1,16 @@ +No need to pass CFLAGS twice, esp. if they are used to feed g++ +Bug #338110 + +Index: TECkit_2_5_1/configure.ac +=================================================================== +--- TECkit_2_5_1.orig/configure.ac ++++ TECkit_2_5_1/configure.ac +@@ -76,7 +76,7 @@ noexpat_CFLAGS="$CFLAGS" + noexpat_LIBS="$LIBS" + AC_CHECK_LIB(expat, XML_ExpatVersion) + AM_CONDITIONAL(SYSTEM_EXPAT, test x$ac_cv_lib_expat_XML_ExpatVersion = xyes) +-expat_CFLAGS="$CFLAGS" ++expat_CFLAGS="" + expat_LIBS="$LIBS" + CFLAGS="$noexpat_CFLAGS" + LIBS="$noexpat_LIBS" |