| configure.ac (ca91c472) | configure.ac (308295db) |
|---|---|
| 1dnl * ************************************************************* 2dnl * 3dnl * Licensed to the Apache Software Foundation (ASF) under one 4dnl * or more contributor license agreements. See the NOTICE file 5dnl * distributed with this work for additional information 6dnl * regarding copyright ownership. The ASF licenses this file 7dnl * to you under the Apache License, Version 2.0 (the 8dnl * "License"); you may not use this file except in compliance --- 970 unchanged lines hidden (view full) --- 979echo "********************************************************************" 980echo "" 981dnl =================================================================== 982dnl Configure pre-requisites. 983dnl =================================================================== 984cat /dev/null > warn 985 986AC_PROG_EGREP | 1dnl * ************************************************************* 2dnl * 3dnl * Licensed to the Apache Software Foundation (ASF) under one 4dnl * or more contributor license agreements. See the NOTICE file 5dnl * distributed with this work for additional information 6dnl * regarding copyright ownership. The ASF licenses this file 7dnl * to you under the Apache License, Version 2.0 (the 8dnl * "License"); you may not use this file except in compliance --- 970 unchanged lines hidden (view full) --- 979echo "********************************************************************" 980echo "" 981dnl =================================================================== 982dnl Configure pre-requisites. 983dnl =================================================================== 984cat /dev/null > warn 985 986AC_PROG_EGREP |
| 987if test -z "$GREP"; then 988GREP=$EGREP 989fi |
|
| 987AC_PROG_AWK 988AC_PATH_PROG( AWK, $AWK) 989if test -z "$AWK"; then 990 AC_MSG_ERROR([install awk to run this script]) 991fi 992 993AC_PATH_PROGS(SED, sed ) 994if test -z "$SED"; then --- 806 unchanged lines hidden (view full) --- 1801 AC_MSG_RESULT([no]) 1802fi 1803AC_SUBST(ENABLE_PCH) 1804 1805dnl =================================================================== 1806dnl Search all the common names for GNU make 1807dnl =================================================================== 1808AC_MSG_CHECKING([for GNU make]) | 990AC_PROG_AWK 991AC_PATH_PROG( AWK, $AWK) 992if test -z "$AWK"; then 993 AC_MSG_ERROR([install awk to run this script]) 994fi 995 996AC_PATH_PROGS(SED, sed ) 997if test -z "$SED"; then --- 806 unchanged lines hidden (view full) --- 1804 AC_MSG_RESULT([no]) 1805fi 1806AC_SUBST(ENABLE_PCH) 1807 1808dnl =================================================================== 1809dnl Search all the common names for GNU make 1810dnl =================================================================== 1811AC_MSG_CHECKING([for GNU make]) |
| 1809for a in "$MAKE" $GNUMAKE make gmake gnumake; do | 1812for a in "$MAKE" "$GNUMAKE" make gmake gnumake; do |
| 1810 $a --version 2> /dev/null | $GREP GNU 2>&1 > /dev/null 1811 if test $? -eq 0; then 1812 GNUMAKE=$a 1813 break 1814 fi 1815done 1816AC_MSG_RESULT($GNUMAKE) 1817if test -z "$GNUMAKE"; then --- 5514 unchanged lines hidden --- | 1813 $a --version 2> /dev/null | $GREP GNU 2>&1 > /dev/null 1814 if test $? -eq 0; then 1815 GNUMAKE=$a 1816 break 1817 fi 1818done 1819AC_MSG_RESULT($GNUMAKE) 1820if test -z "$GNUMAKE"; then --- 5514 unchanged lines hidden --- |