You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@apache.org on 2009/11/11 16:50:50 UTC

svn commit: r834923 - /httpd/mod_fcgid/trunk/configure.apxs

Author: trawick
Date: Wed Nov 11 15:50:49 2009
New Revision: 834923

URL: http://svn.apache.org/viewvc?rev=834923&view=rev
Log:
/usr/xpg4/bin/awk is a better choice than nawk on Solaris
(one issue: nawk on some Solaris levels is missing toupper/tolower,
breaking addloadmodule.awk)

Submitted by: Hans Werner Strube <strube physik3.gwdg.de>

Modified:
    httpd/mod_fcgid/trunk/configure.apxs

Modified: httpd/mod_fcgid/trunk/configure.apxs
URL: http://svn.apache.org/viewvc/httpd/mod_fcgid/trunk/configure.apxs?rev=834923&r1=834922&r2=834923&view=diff
==============================================================================
--- httpd/mod_fcgid/trunk/configure.apxs (original)
+++ httpd/mod_fcgid/trunk/configure.apxs Wed Nov 11 15:50:49 2009
@@ -41,8 +41,8 @@
 httpd_conffile=`$APXS -q exp_sysconfdir`/`$APXS -q progname`.conf
 
 echo "Selecting a suitable awk"
-# find the most suitable awk in PATH, allowing user to override with AWK
-for a in gawk mawk nawk; do
+# find the most suitable awk, allowing user to override with AWK
+for a in gawk mawk /usr/xpg4/bin/awk nawk; do
     if test -z "$AWK"; then
         if $a '{print}' <$0 >/dev/null 2>&1; then
             AWK=$a