Displaying 2 results from an estimated 2 matches for "am_cond_if".
2013 May 08
1
[PATCH] opusfile configury fixes.
...sioning for libtool.
dnl Please update these for releases.
@@ -29,6 +28,10 @@
AC_SUBST(OP_LT_REVISION)
AC_SUBST(OP_LT_AGE)
+AC_CANONICAL_HOST
+AM_PROG_LIBTOOL
+AM_PROG_CC_C_O
+
CC_CHECK_CFLAGS_APPEND(
[-std=c89 -pedantic -Wall -Wextra -Wno-parentheses -Wno-long-long])
@@ -62,15 +65,15 @@
AM_COND_IF(OP_WIN32,
AS_IF([test "x$enable_http" != "xno"],
- AC_CHECK_HEADER([winsock2.h],,
+ AC_CHECK_HEADER([winsock2.h],[],
AC_MSG_WARN([HTTP support requires a Winsock socket library.])
- enable_http=no
+ enable_http=no, []
)
),
AS_IF([test "x...
2012 Sep 04
2
[PATCH] valgrind: Support for ioctls used by Xen toolstack processes.
...xen,
+ [ --with-xen= Specify location of Xen headers],
+ XEN_CFLAGS=-I$withval
+)
+AC_SUBST(XEN_CFLAGS)
+
+AM_CONDITIONAL([ENABLE_XEN], [test x$vg_cv_xen = xyes])
+if test x"$vg_cv_xen" = xyes; then
+ AC_DEFINE([ENABLE_XEN], 1, [configured to support Xen])
+fi
+
## We AM_COND_IF here instead of automake "if" in mpi/Makefile.am so that we can
## use these values in the check for a functioning mpicc.
##
diff --git a/coregrind/Makefile.am b/coregrind/Makefile.am
index 01015a7..58a7dce 100644
--- a/coregrind/Makefile.am
+++ b/coregrind/Makefile.am
@@ -224,6 +224,7...