You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by zw...@apache.org on 2011/04/14 21:13:51 UTC

svn commit: r1092443 - /trafficserver/traffic/trunk/configure.ac

Author: zwoop
Date: Thu Apr 14 19:13:51 2011
New Revision: 1092443

URL: http://svn.apache.org/viewvc?rev=1092443&view=rev
Log:
TS-735 Disable ccache by default, use with --enable-ccache

Modified:
    trafficserver/traffic/trunk/configure.ac

Modified: trafficserver/traffic/trunk/configure.ac
URL: http://svn.apache.org/viewvc/trafficserver/traffic/trunk/configure.ac?rev=1092443&r1=1092442&r2=1092443&view=diff
==============================================================================
--- trafficserver/traffic/trunk/configure.ac (original)
+++ trafficserver/traffic/trunk/configure.ac Thu Apr 14 19:13:51 2011
@@ -330,13 +330,13 @@ AC_ARG_ENABLE([posix-cap],
 AC_MSG_RESULT([$enable_posix_cap])
 
 #
-# Disable ccache explicitly (it's enabled by default, if it exists)
+# Enble ccache explicitly (it's disabled by default, because of build problems in some cases)
 #
-AC_MSG_CHECKING([whether to explicitly disable ccache])
+AC_MSG_CHECKING([whether to enable ccache])
 AC_ARG_ENABLE([ccache],
-  [AS_HELP_STRING([--disable-ccache],[Disable ccache from being used])],
+  [AS_HELP_STRING([--enable-ccache],[Enable ccache (can cause bad builds)])],
   [],
-  [enable_ccache="yes"]
+  [enable_ccache="no"]
 )
 AC_MSG_RESULT([$enable_ccache])
 
@@ -428,7 +428,7 @@ REAL_CXXFLAGS="${CXXFLAGS}"
 AC_PROG_CC
 AC_PROG_CXX
 
-# Check for ccache (unless disabled explicitly)
+# Check for ccache (if explicitly enabled)
 if test "x$enable_ccache" = "xyes"; then
     AC_CHECK_PROG([CCACHE],[ccache],[ccache],[])
     if test "x${CCACHE}" = "xccache"; then