diff options
author | Christian Faulhammer <fauli@gentoo.org> | 2009-06-09 18:38:56 +0000 |
---|---|---|
committer | Christian Faulhammer <fauli@gentoo.org> | 2009-06-09 18:38:56 +0000 |
commit | f141737c84e80e5abe8908c28514a34edd8dc1b6 (patch) | |
tree | f780f0852d4c141d11ae06ed54c80f0321a2609f /dev-libs/qof/files | |
parent | Fixing virtualbox dep for #272264 (diff) | |
download | gentoo-2-f141737c84e80e5abe8908c28514a34edd8dc1b6.tar.gz gentoo-2-f141737c84e80e5abe8908c28514a34edd8dc1b6.tar.bz2 gentoo-2-f141737c84e80e5abe8908c28514a34edd8dc1b6.zip |
version bump, ported to EAPI 2 and played around with econf switches. This is a new SLOT as API/ABI compatability is not guaranteed (app-office/gnotime fails with it anyway)
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'dev-libs/qof/files')
-rw-r--r-- | dev-libs/qof/files/qof-0.8.0-remove_spurious_CFLAGS.patch | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/dev-libs/qof/files/qof-0.8.0-remove_spurious_CFLAGS.patch b/dev-libs/qof/files/qof-0.8.0-remove_spurious_CFLAGS.patch new file mode 100644 index 000000000000..56c217592e2f --- /dev/null +++ b/dev-libs/qof/files/qof-0.8.0-remove_spurious_CFLAGS.patch @@ -0,0 +1,57 @@ +--- configure.orig 2009-06-09 19:15:07.000384982 +0200 ++++ configure 2009-06-09 19:17:31.320384334 +0200 +@@ -22653,18 +22653,18 @@ + $as_echo_n "checking what extra warning flags to pass to the C compiler... " >&6; } + if test ${GCC}x = yesx; then + warnFLAGS= +- CFLAGS="${CFLAGS} -g2 -Wall" ++ CFLAGS="${CFLAGS}" + # Check whether --enable-error-on-warning was given. + if test "${enable_error_on_warning+set}" = set; then + enableval=$enable_error_on_warning; case "${enableval}" in +- yes) warnFLAGS="${warnFLAGS} -Werror" ;; ++ yes) warnFLAGS="${warnFLAGS}" ;; + no) ;; + *) { { $as_echo "$as_me:$LINENO: error: bad value ${enableval} for --enable-error-on-warning" >&5 + $as_echo "$as_me: error: bad value ${enableval} for --enable-error-on-warning" >&2;} + { (exit 1); exit 1; }; } ;; + esac + else +- warnFLAGS="${warnFLAGS} -Werror" ++ warnFLAGS="${warnFLAGS}" + fi + + GCC_VERSION=`${CC} -dumpversion` +@@ -22672,10 +22672,10 @@ + # This is gcc >= 3.x.x + if test `echo ${GCC_VERSION} | cut -d. -f2` -ge 4; then + # This is gcc >= 3.4.x +- warnFLAGS="${warnFLAGS} -Wdeclaration-after-statement" ++ warnFLAGS="${warnFLAGS}" + else if test `echo ${GCC_VERSION} | cut -d. -f1` -ge 4; then + # This is gcc == 4.x.x +- warnFLAGS="${warnFLAGS} -Wdeclaration-after-statement -Wno-pointer-sign" ++ warnFLAGS="${warnFLAGS}" + fi + fi + fi +@@ -22693,19 +22693,6 @@ + enableval=$enable_compile_warnings; set_compile_warnings=yes + fi + +- +-if test "$GCC" = "yes" -a "$set_compile_warnings" != "no"; then +- warnFLAGS="$warnFLAGS -Wcast-align -Wsign-compare \ +- -Wmissing-prototypes -Wmissing-declarations -Werror -Wmissing-include-dirs \ +- -Wstrict-prototypes -Winline -Wnested-externs -Wpointer-arith \ +- -Wmissing-field-initializers" +-# LDFLAGS="$LDFLAGS -Wl,-z,defs" +-fi +- +- +- +- +- + DATADIR=`eval echo $datadir` + QSF_SCHEMA_DIR=`eval echo $DATADIR`"/xml/qof/qsf" + |