From 56a50cc642f1b473da9cec8a1e8595d9a440a829 Mon Sep 17 00:00:00 2001 From: des Date: Mon, 20 Oct 2008 18:33:15 +0000 Subject: [PATCH] Strictly speaking, we should test $target, not $host - although in practice, varnish is not cross-buildable anyway due to the SO_RCVTIMEO / SO_SNDTIMEO tests. git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@3334 d4fa192b-c00b-0410-8231-f00ffab90ce4 --- varnish-cache/configure.ac | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/varnish-cache/configure.ac b/varnish-cache/configure.ac index de987a35..12690460 100644 --- a/varnish-cache/configure.ac +++ b/varnish-cache/configure.ac @@ -110,7 +110,7 @@ AC_CHECK_FUNCS([pthread_mutex_isowned_np]) LIBS="${save_LIBS}" ## This one is tricky, there are multiple versions -case $host in +case $target in *-*-freebsd*) AC_CACHE_CHECK([whether sendfile works], [ac_cv_so_sendfile_works], @@ -144,7 +144,7 @@ case $host in fi ;; *) - AC_MSG_WARN([won't look for sendfile() on $host]) + AC_MSG_WARN([won't look for sendfile() on $target]) ;; esac @@ -178,13 +178,13 @@ AC_ARG_ENABLE(kqueue, [enable_kqueue=yes]) if test "$enable_kqueue" = yes; then - case $host in + case $target in *-*-freebsd* | *-*-darwin9* ) AC_CHECK_FUNCS([kqueue]) ;; *-*-bsd*) # No other BSD has a sufficiently recent implementation - AC_MSG_WARN([won't look for kqueue() on $host]) + AC_MSG_WARN([won't look for kqueue() on $target]) ac_cv_func_kqueue=no ;; esac @@ -330,7 +330,7 @@ AC_ARG_VAR([VCC_CC], [C compiler command line for VCL code]) if test "$ac_cv_env_VCC_CC_set" = "set"; then VCC_CC="$ac_cv_env_VCC_CC_value" else - case $host in + case $target in *-*-solaris*) VCC_CC="cc -Kpic -G -o %o %s" ;; @@ -353,7 +353,7 @@ AS_HELP_STRING([--disable-jemalloc],[do not use jemalloc (default is yes on Linu JEMALLOC_SUBDIR=libjemalloc JEMALLOC_LDADD='$(top_builddir)/lib/libjemalloc/libjemalloc_mt.la' fi], -[case $host in #( +[case $target in #( *-*-linux*) JEMALLOC_SUBDIR=libjemalloc JEMALLOC_LDADD='$(top_builddir)/lib/libjemalloc/libjemalloc_mt.la' -- 2.39.5