r3334 - trunk/varnish-cache

des at projects.linpro.no des at projects.linpro.no
Mon Oct 20 20:33:15 CEST 2008


Author: des
Date: 2008-10-20 20:33:15 +0200 (Mon, 20 Oct 2008)
New Revision: 3334

Modified:
   trunk/varnish-cache/configure.ac
Log:
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.


Modified: trunk/varnish-cache/configure.ac
===================================================================
--- trunk/varnish-cache/configure.ac	2008-10-20 18:19:06 UTC (rev 3333)
+++ trunk/varnish-cache/configure.ac	2008-10-20 18:33:15 UTC (rev 3334)
@@ -110,7 +110,7 @@
 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 @@
 	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 @@
     [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 @@
 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 @@
 	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'




More information about the varnish-commit mailing list