You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by ig...@apache.org on 2011/07/17 21:40:02 UTC

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

Author: igalic
Date: Sun Jul 17 19:40:02 2011
New Revision: 1147701

URL: http://svn.apache.org/viewvc?rev=1147701&view=rev
Log:
This fixes autconf failures for strange versions of autoconf, anyway:

configure:1210: error: possibly undefined macro: _m4_text_wrap_word
    If this token and others are legitimate, please use m4_pattern_allow. 
    See the Autoconf documentation.

Also: I'm a genius. Who knew?

Modified:
    trafficserver/traffic/trunk/configure.ac

Modified: trafficserver/traffic/trunk/configure.ac
URL: http://svn.apache.org/viewvc/trafficserver/traffic/trunk/configure.ac?rev=1147701&r1=1147700&r2=1147701&view=diff
==============================================================================
--- trafficserver/traffic/trunk/configure.ac (original)
+++ trafficserver/traffic/trunk/configure.ac Sun Jul 17 19:40:02 2011
@@ -115,7 +115,7 @@ AC_SUBST([build_person])
 AC_SUBST([build_group])
 
 AC_ARG_WITH([user],
-  [AS_HELP_STRING([--with-user],[specify the system user [default: nobody]])],
+  [AS_HELP_STRING([--with-user],[specify the system user [default=nobody]])],
   [
   with_user="$withval"
   ],[
@@ -125,7 +125,7 @@ AC_ARG_WITH([user],
 
 default_group="`id -ng $with_user`"
 AC_ARG_WITH([group],
-  [AS_HELP_STRING([--with-group],[specify the system group [default: nobody]])],
+  [AS_HELP_STRING([--with-group],[specify the system group [default=nobody]])],
   [
   with_group="$withval"
   ],[
@@ -224,7 +224,7 @@ AC_MSG_RESULT([$enable_libev])
 #
 AC_MSG_CHECKING([whether to enable micro-TS])
 AC_ARG_ENABLE([micro],
-  [AS_HELP_STRING([--enable-micro],[enable micro-TS build [default: no]])],
+  [AS_HELP_STRING([--enable-micro],[enable micro-TS build [default=no]])],
   [],
   [enable_micro=no]
 )