search for: xauto

Displaying 3 results from an estimated 3 matches for "xauto".

Did you mean: auto
2007 Oct 29
2
autoconf test for building dtrace USDT probes?
...eeded to build Xserver dtrace probes) AC_ARG_WITH(dtrace, AS_HELP_STRING([--with-dtrace=PATH], [Enable dtrace probes (default: enabled if dtrace found)]), [WDTRACE=$withval], [WDTRACE=auto]) if test "x$WDTRACE" = "xyes" -o "x$WDTRACE" = "xauto" ; then AC_PATH_PROG(DTRACE, [dtrace], [not_found], [$PATH:/usr/sbin]) if test "x$DTRACE" = "xnot_found" ; then if test "x$WDTRACE" = "xyes" ; then AC_MSG_FAILURE([dtrace requested but not found])...
2008 Feb 17
1
--disable-ipv6 does not work
...============================================= --- configure.in.org 2008-02-16 15:35:53.000000000 +0100 +++ configure.in 2008-02-17 01:30:21.675931789 +0100 @@ -23,8 +23,8 @@ AC_ARG_ENABLE(ipv6, [ --enable-ipv6 Enable IPv6 support (auto)], - if test x$withval = xno || test x$withval = xauto; then - want_ipv6=$withval + if test x$enableval = xno || test x$enableval = xauto; then + want_ipv6=$enableval else want_ipv6=yes fi, ============================================================ Heiko Schlichting | Freie Universit?t Berlin heiko at FU-Berlin.DE | Zentraleinr...
2014 Oct 23
0
[PATCH] Make building of glamor optional
...t]) + if test "x$found_glamor_header" = xyes && pkg-config --exists "xorg-server >= 1.15.99.901" + then + AC_DEFINE(HAVE_GLAMOR, 1, [Build support for glamor acceleration]) + AC_MSG_RESULT([yes]) + else + AC_MSG_RESULT([no]) + if test "x$GLAMOR" != "xauto"; then + AC_MSG_ERROR([failed to find required Xorg headers for glamor]) + fi + fi fi + AC_CONFIG_FILES([ Makefile src/Makefile -- 2.0.4