summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMart Raudsepp <leio@gentoo.org>2008-06-01 15:21:59 +0000
committerMart Raudsepp <leio@gentoo.org>2008-06-01 15:21:59 +0000
commit66be869546226040235ed348ee94f77481d7e27c (patch)
tree05aa0a0f33d1134ce85d8875aa7407381b73f5ed /gnome-extra/gnome-games/files
parentAdd patch to fix building examples with GCC 4.3. See bug #224453. (diff)
downloadgentoo-2-66be869546226040235ed348ee94f77481d7e27c.tar.gz
gentoo-2-66be869546226040235ed348ee94f77481d7e27c.tar.bz2
gentoo-2-66be869546226040235ed348ee94f77481d7e27c.zip
Version bump for bug fixes. Remove old
(Portage version: 2.1.5.2)
Diffstat (limited to 'gnome-extra/gnome-games/files')
-rw-r--r--gnome-extra/gnome-games/files/gnome-games-2.17.92-guile-switch.patch52
1 files changed, 0 insertions, 52 deletions
diff --git a/gnome-extra/gnome-games/files/gnome-games-2.17.92-guile-switch.patch b/gnome-extra/gnome-games/files/gnome-games-2.17.92-guile-switch.patch
deleted file mode 100644
index bfeeece2814f..000000000000
--- a/gnome-extra/gnome-games/files/gnome-games-2.17.92-guile-switch.patch
+++ /dev/null
@@ -1,52 +0,0 @@
-diff --exclude-from=/home/dang/bin/scripts/diffrc -up -ruN gnome-games-2.17.92.orig/configure.in gnome-games-2.17.92/configure.in
---- gnome-games-2.17.92.orig/configure.in 2007-02-27 00:12:12.000000000 -0500
-+++ gnome-games-2.17.92/configure.in 2007-02-28 17:12:32.000000000 -0500
-@@ -35,23 +35,31 @@ dnl Checking for the header file is basi
- dnl out if the _development_ files are present. guile-config returns
- dnl a value regardless of what is actually installed. The problem
- dnl with this is if the header ever gets moved to a non-default location.
--AC_CHECK_HEADER([libguile.h], [GUILE_PRESENT=yes], [GUILE_PRESENT=no])
--if test "$GUILE_PRESENT" = "yes" ; then
-- GUILE_CFLAGS=`guile-config compile`
-- GUILE_LDFLAGS=`guile-config link`
-- AC_SUBST(GUILE_CFLAGS)
-- AC_SUBST(GUILE_LDFLAGS)
-- dnl On 64-bit machines guile < 1.6.5 causes a crash in aisleriot.
-- dnl But since 1.6.5 is only a few months old as I write this we
-- dnl will be more lenient with 32-bit machines.
-- if uname -m | grep 64 ; then
-- GUILE_TARGET="1.6.5"
-- else
-- GUILE_TARGET="1.6.0"
-- fi
-- if test `guile -c '(if (string<? (version) (cadr (command-line))) (display "no") (display "yes")) (newline)' $GUILE_TARGET` != yes ; then
-- GUILE_PRESENT="no"
-- AC_MSG_WARN([Your version of guile is too old, please install a recent guile package (>= $GUILE_TARGET)])
-+AC_MSG_CHECKING([whether guile support is requested])
-+AC_ARG_ENABLE([guile],
-+ AS_HELP_STRING([--enable-guile],[Enable guile use for Aisleriot (default=yes)]),
-+ [enable_guile=$enableval],
-+ [enable_guile=yes])
-+AC_MSG_RESULT([$enable_guile])
-+if test x$enable_guile = xyes; then
-+ AC_CHECK_HEADER([libguile.h], [GUILE_PRESENT=yes], [GUILE_PRESENT=no])
-+ if test "$GUILE_PRESENT" = "yes" ; then
-+ GUILE_CFLAGS=`guile-config compile`
-+ GUILE_LDFLAGS=`guile-config link`
-+ AC_SUBST(GUILE_CFLAGS)
-+ AC_SUBST(GUILE_LDFLAGS)
-+ dnl On 64-bit machines guile < 1.6.5 causes a crash in aisleriot.
-+ dnl But since 1.6.5 is only a few months old as I write this we
-+ dnl will be more lenient with 32-bit machines.
-+ if uname -m | grep 64 ; then
-+ GUILE_TARGET="1.6.5"
-+ else
-+ GUILE_TARGET="1.6.0"
-+ fi
-+ if test `guile -c '(if (string<? (version) (cadr (command-line))) (display "no") (display "yes")) (newline)' $GUILE_TARGET` != yes ; then
-+ GUILE_PRESENT="no"
-+ AC_MSG_WARN([Your version of guile is too old, please install a recent guile package (>= $GUILE_TARGET)])
-+ fi
- fi
- fi
- AM_CONDITIONAL([HAVE_GUILE], [test "x$GUILE_PRESENT" = xyes])