diff options
author | Arun Raghavan <ford_prefect@gentoo.org> | 2008-07-27 18:05:34 +0000 |
---|---|---|
committer | Arun Raghavan <ford_prefect@gentoo.org> | 2008-07-27 18:05:34 +0000 |
commit | 5b75d12503cda4359ae9d90bb1acedb2912066d2 (patch) | |
tree | a8773af344bff577842e261c0047ace2be4050a9 /gnome-extra/quick-lounge-applet/files | |
parent | Add --without-mpicc because auto-deps are bad and some MPI implementation pro... (diff) | |
download | gentoo-2-5b75d12503cda4359ae9d90bb1acedb2912066d2.tar.gz gentoo-2-5b75d12503cda4359ae9d90bb1acedb2912066d2.tar.bz2 gentoo-2-5b75d12503cda4359ae9d90bb1acedb2912066d2.zip |
Bump to 2.12.5. Primarily bug fixes. Also pull in an upstream patch to fix configure.in cruft.
(Portage version: 2.2_rc3/cvs/Linux 2.6.26 i686)
Diffstat (limited to 'gnome-extra/quick-lounge-applet/files')
-rw-r--r-- | gnome-extra/quick-lounge-applet/files/quick-lounge-applet-2.12.5-configure-fixes.patch | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/gnome-extra/quick-lounge-applet/files/quick-lounge-applet-2.12.5-configure-fixes.patch b/gnome-extra/quick-lounge-applet/files/quick-lounge-applet-2.12.5-configure-fixes.patch new file mode 100644 index 000000000000..57cc2d41e130 --- /dev/null +++ b/gnome-extra/quick-lounge-applet/files/quick-lounge-applet-2.12.5-configure-fixes.patch @@ -0,0 +1,50 @@ +diff -urNp quick-lounge-applet-2.12.5-orig/configure.in quick-lounge-applet-2.12.5/configure.in +--- quick-lounge-applet-2.12.5-orig/configure.in 2008-07-27 22:08:29.000000000 +0530 ++++ quick-lounge-applet-2.12.5/configure.in 2008-07-27 22:09:44.000000000 +0530 +@@ -7,7 +7,7 @@ AC_CONFIG_SRCDIR(src/quick-lounge.c) + AM_INIT_AUTOMAKE([1.9 foreign no-dist-gzip dist-bzip2]) + AC_CONFIG_HEADERS([config.h]) + +-LT_PROG_LIBTOOL ++AM_PROG_LIBTOOL + + dnl ========================================================================== + dnl +@@ -53,37 +53,6 @@ PKG_CHECK_MODULES(QL, \ + AC_SUBST(QL_CFLAGS) + AC_SUBST(QL_LIBS) + +-# +-# If Pango included the shared library dependencies from X11 in +-# the pkg-config output, then we use that (to avoid duplicates). +-# but if they were omitted to avoid binary compatibility problems +-# then we need to repeat the checks. +-# +-if $PKG_CONFIG --exists pangoxft ; then +- PANGO_PACKAGES="pangox pangoxft" +-else +- PANGO_PACKAGES="pangox" +-fi +- +-x_libs="`$PKG_CONFIG --libs $PANGO_PACKAGES`" +-case x_libs in +- *-lX11*) pango_omitted_x_deps=no ;; +- *) pango_omitted_x_deps=yes ;; +-esac +- +-if test $pango_omitted_x_deps = yes ; then +- AC_PATH_XTRA +- +- if test x$no_x = xyes ; then +- AC_MSG_ERROR([X development libraries not found]) +- else +- X_LIBS="$X_PRE_LIBS $X_LIBS -lX11 $X_EXTRA_LIBS" +- fi +-fi +- +-AC_CHECK_LIB(Xau, XauFileName, [X_LIBS="$X_LIBS -lXau"]) +- +-AC_SUBST(X_LIBS) + + dnl ****************************** + |