liballegro4/allegro-4.2.2-autoconf1.patch

49 lines
1.2 KiB
Diff
Raw Normal View History

--- allegro-4.2.2/aclocal.m4 2007-06-16 03:52:28.000000000 +0200
+++ allegro-4.2.2-gil/aclocal.m4 2008-08-18 18:33:02.000000000 +0200
@@ -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.