diff options
author | Tristan Heaven <nyhm@gentoo.org> | 2008-06-01 15:55:52 +0000 |
---|---|---|
committer | Tristan Heaven <nyhm@gentoo.org> | 2008-06-01 15:55:52 +0000 |
commit | 7fc5999bf6446234b1301ebdfd1ed317131d7ab4 (patch) | |
tree | e0cd3cbbc743cdf7aa6fc0f8f43af3a6cced8a9d /media-libs/allegro/files | |
parent | Version bump for bug fixes. Remove old (diff) | |
download | gentoo-2-7fc5999bf6446234b1301ebdfd1ed317131d7ab4.tar.gz gentoo-2-7fc5999bf6446234b1301ebdfd1ed317131d7ab4.tar.bz2 gentoo-2-7fc5999bf6446234b1301ebdfd1ed317131d7ab4.zip |
Fix autoconf-2.62 failure, bug #218208; Install liballeg.so symlink, bug #220955
(Portage version: 2.2_pre7/cvs/Linux 2.6.25.4 Intel(R) Core(TM)2 Duo CPU E6750 @ 2.66GHz)
Diffstat (limited to 'media-libs/allegro/files')
-rw-r--r-- | media-libs/allegro/files/allegro-4.2.2-autoconf.patch | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/media-libs/allegro/files/allegro-4.2.2-autoconf.patch b/media-libs/allegro/files/allegro-4.2.2-autoconf.patch new file mode 100644 index 000000000000..b6f60f3f01e9 --- /dev/null +++ b/media-libs/allegro/files/allegro-4.2.2-autoconf.patch @@ -0,0 +1,48 @@ +--- aclocal.m4 ++++ aclocal.m4 +@@ -193,7 +193,6 @@ + dnl Variables: + dnl allegro_sv_procfs=(yes|no) + dnl +-AC_MSG_CHECKING(for System V sys/procfs) + AC_DEFUN(ALLEGRO_ACTEST_SV_PROCFS, [ + AC_CHECK_HEADER(sys/procfs.h, [ + AC_TRY_COMPILE( +@@ -209,7 +208,6 @@ + [allegro_sv_procfs=no] + ]) + ]) +-AC_MSG_RESULT($allegro_sv_procfs) + + dnl + dnl Test if sys/procfs.h tells us argc/argv. +@@ -217,7 +215,6 @@ + dnl Variables: + dnl allegro_procfs_argcv=(yes|no) + dnl +-AC_MSG_CHECKING(if sys/procfs.h tells us argc/argv) + AC_DEFUN(ALLEGRO_ACTEST_PROCFS_ARGCV, [ + AC_TRY_COMPILE( + [#include <sys/procfs.h>], +@@ -226,7 +223,6 @@ + [allegro_procfs_argcv=no] + ) + ]) +-AC_MSG_RESULT($allegro_procfs_argcv) + + dnl + dnl Test for getexecname() on Solaris +@@ -234,13 +230,11 @@ + dnl Variables: + dnl allegro_sys_getexecname=(yes|no) + dnl +-AC_MSG_CHECKING(for getexecname) + AC_DEFUN(ALLEGRO_ACTEST_SYS_GETEXECNAME, + [AC_CHECK_LIB(c, getexecname, + [allegro_sys_getexecname=yes], + [allegro_sys_getexecname=no])] + ) +-AC_MSG_RESULT($allegro_sys_getexecname) + + dnl + dnl Test for X-Windows support. |