On Tue, 01 May 2012 20:23:38 +0100, Jon TURNEY <[email protected]> wrote:
> Ryan Pavlik (3): > configure.ac: auto-disable MITSHM if we lack IPC This patch is broken, HAVE_SYSV_IPC is a config.h entry, not a configure.ac variable. This seems to fix it for me: diff --git a/configure.ac b/configure.ac index d6771ef..6a41ea8 100644 --- a/configure.ac +++ b/configure.ac @@ -1003,7 +1003,7 @@ if test "x$COMPOSITE" = xyes; then fi if test "x$MITSHM" = xauto; then - MITSHM="$HAVE_SYSV_IPC" + MITSHM="$ac_cv_sysv_ipc" fi AM_CONDITIONAL(MITSHM, [test "x$MITSHM" = xyes]) if test "x$MITSHM" = xyes; then -- [email protected]
pgpx6H3Kaohya.pgp
Description: PGP signature
_______________________________________________ [email protected]: X.Org development Archives: http://lists.x.org/archives/xorg-devel Info: http://lists.x.org/mailman/listinfo/xorg-devel
