summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Ruppert <idl0r@gentoo.org>2009-09-06 21:36:03 +0000
committerChristian Ruppert <idl0r@gentoo.org>2009-09-06 21:36:03 +0000
commitd8bb2288dd26da2e7869e716d96886d0a6772298 (patch)
tree4476610cb2bf510161ea7968aa6a9696bdbf2d9d /dev-python/pygobject/files
parentLinux-info cleanup (bug #283320): This package actually makes kernel modules. (diff)
downloadgentoo-2-d8bb2288dd26da2e7869e716d96886d0a6772298.tar.gz
gentoo-2-d8bb2288dd26da2e7869e716d96886d0a6772298.tar.bz2
gentoo-2-d8bb2288dd26da2e7869e716d96886d0a6772298.zip
Remove unused patch.
(Portage version: 2.2_rc40/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/pygobject/files')
-rw-r--r--dev-python/pygobject/files/pygobject-2.14.0-libffi-magic.patch40
1 files changed, 0 insertions, 40 deletions
diff --git a/dev-python/pygobject/files/pygobject-2.14.0-libffi-magic.patch b/dev-python/pygobject/files/pygobject-2.14.0-libffi-magic.patch
deleted file mode 100644
index 9c5554739eac..000000000000
--- a/dev-python/pygobject/files/pygobject-2.14.0-libffi-magic.patch
+++ /dev/null
@@ -1,40 +0,0 @@
---- pygobject-2.14.0/configure.ac 2007/11/12 00:09:09 1.1
-+++ pygobject-2.14.0/configure.ac 2007/11/12 00:22:35
-@@ -129,10 +129,33 @@ AC_SUBST([pygobject_CODEGEN_DEFINES])
-
- dnl libffi
- AC_MSG_CHECKING(for ffi.h)
--AC_TRY_CPP([#include <ffi.h>], pygobject_ffi_h=yes, pygobject_ffi_h=no)
--if test $pygobject_ffi_h = yes; then
-- AC_DEFINE(HAVE_FFI_H,1,[Have ffi.h include file])
-- FFI_LIBS="-lffi"
-+AC_ARG_WITH(libffi,
-+ AC_HELP_STRING([--without-libffi], [Disable libffi support]),
-+ with_libffi=$withval,
-+ with_libffi=auto)
-+if test x"$with_libffi" = xno ; then
-+ pygobject_ffi_h=disabled
-+else
-+ AC_TRY_CPP([#include <ffi.h>], pygobject_ffi_h=yes, pygobject_ffi_h=no)
-+ if test $pygobject_ffi_h = yes; then
-+ AC_DEFINE(HAVE_FFI_H,1,[Have ffi.h include file])
-+ save_LIBS=$LIBS
-+ if test x"$with_libffi" = xyes || test x"$with_libffi" = xauto; then
-+ other_LIBS=
-+ else
-+ other_LIBS=$with_libffi
-+ fi
-+ AC_SEARCH_LIBS(ffi_call,ffi,,AC_MSG_ERROR([libffi not found]),$other_LIBS)
-+ if test x$"ac_cv_search_ffi_call" = x"none required" ; then
-+ FFI_LIBS=$other_LIBS
-+ else
-+ FFI_LIBS="$ac_cv_search_ffi_call $other_LIBS"
-+ fi
-+ LIBS=$save_LIBS
-+ fi
-+fi
-+if test x"$with_libffi" = xyes && test x"$pygobject_ffi_h" != xyes ; then
-+ AC_MSG_ERROR([libffi requested, but ffi.h not found])
- fi
- AC_MSG_RESULT([$pygobject_ffi_h])
- AM_CONDITIONAL(HAVE_LIBFFI, test "$pygobject_ffi_h" = "yes")