diff options
author | Remi Cardona <remi@gentoo.org> | 2010-02-14 23:28:04 +0000 |
---|---|---|
committer | Remi Cardona <remi@gentoo.org> | 2010-02-14 23:28:04 +0000 |
commit | 5ded9fa9043fc7e48c64611614a7f47129ae2b70 (patch) | |
tree | 99b7cfdc362655efaf416f92f29a0eaee243a3b9 /app-office/grisbi/files | |
parent | Version bump, bug #304825. (diff) | |
download | historical-5ded9fa9043fc7e48c64611614a7f47129ae2b70.tar.gz historical-5ded9fa9043fc7e48c64611614a7f47129ae2b70.tar.bz2 historical-5ded9fa9043fc7e48c64611614a7f47129ae2b70.zip |
app-office/grisbi: bump to 0.6.0_rc2, ebuild adapted from bug #304937
Package-Manager: portage-2.2_rc62/cvs/Linux i686
Diffstat (limited to 'app-office/grisbi/files')
-rw-r--r-- | app-office/grisbi/files/0.6.0_rc2-properly-detect-gmodule.patch | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/app-office/grisbi/files/0.6.0_rc2-properly-detect-gmodule.patch b/app-office/grisbi/files/0.6.0_rc2-properly-detect-gmodule.patch new file mode 100644 index 000000000000..d36bcdbc4166 --- /dev/null +++ b/app-office/grisbi/files/0.6.0_rc2-properly-detect-gmodule.patch @@ -0,0 +1,38 @@ +From ad49bfcb6a29dda93170ea14c38d599df2bbf72d Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?R=C3=A9mi=20Cardona?= <remi@gentoo.org> +Date: Sun, 14 Feb 2010 21:39:50 +0100 +Subject: [PATCH 1/2] properly detect gmodule + +This usually doesn't happen unless gcc is configured to force +--as-needed through spec files. +--- + configure.in | 6 +++--- + 1 files changed, 3 insertions(+), 3 deletions(-) + +diff --git a/configure.in b/configure.in +index 972fbc2..e2e84ce 100644 +--- a/configure.in ++++ b/configure.in +@@ -32,7 +32,7 @@ AC_CHECK_LIB(intl,main) + dnl + dnl Standard GTK checks + dnl +-PKG_CHECK_MODULES(GTK, gtk+-2.0 >= 2.2.0 glib-2.0 >= 2.2) ++PKG_CHECK_MODULES(GTK, [gtk+-2.0 >= 2.2.0 glib-2.0 >= 2.2 gmodule-2.0 >= 2.2]) + LDFLAGS="${LDFLAGS} ${GTK_LIBS}" + CFLAGS="${CFLAGS} ${GTK_CFLAGS}" + +@@ -44,8 +44,8 @@ dnl + AC_MSG_CHECKING(whether GLib supports loadable modules) + ac_save_CFLAGS="$CFLAGS" + ac_save_LIBS="$LIBS" +-CFLAGS="$CFLAGS $GLIB_CFLAGS" +-LIBS="$GLIB_LIBS $LIBS" ++CFLAGS="$CFLAGS $GTK_CFLAGS" ++LIBS="$GTK_LIBS $LIBS" + AC_TRY_RUN([ + #include <glib.h> + #include <gmodule.h> +-- +1.6.6.1 + |