Commit 87117f5d authored by Tatsuo Ishii's avatar Tatsuo Ishii

Fix nasty bug in configure.

      STRTOL='strtoul.o' --> STRTOUL='strtoul.o'
parent a276392e
...@@ -2641,7 +2641,7 @@ INSTALL_SHLIB="\${INSTALL} $INSTL_SHLIB_OPTS" ...@@ -2641,7 +2641,7 @@ INSTALL_SHLIB="\${INSTALL} $INSTL_SHLIB_OPTS"
for ac_prog in mawk gawk nawk awk for ac_prog in gawk mawk nawk awk
do do
# Extract the first word of "$ac_prog", so it can be a program name with args. # Extract the first word of "$ac_prog", so it can be a program name with args.
set dummy $ac_prog; ac_word=$2 set dummy $ac_prog; ac_word=$2
...@@ -4999,7 +4999,7 @@ else ...@@ -4999,7 +4999,7 @@ else
int main() { int main() {
/* Ultrix mips cc rejects this. */ /* Ultrix mips cc rejects this. */
typedef int charset[2]; const charset x; typedef int charset[2]; const charset x={0,0};
/* SunOS 4.1.1 cc rejects this. */ /* SunOS 4.1.1 cc rejects this. */
char const *const *ccp; char const *const *ccp;
char **p; char **p;
...@@ -5074,7 +5074,7 @@ for ac_kw in inline __inline__ __inline; do ...@@ -5074,7 +5074,7 @@ for ac_kw in inline __inline__ __inline; do
#include "confdefs.h" #include "confdefs.h"
int main() { int main() {
} $ac_kw foo() { } $ac_kw int foo() {
; return 0; } ; return 0; }
EOF EOF
if { (eval echo configure:5081: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then if { (eval echo configure:5081: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
...@@ -6329,7 +6329,7 @@ EOF ...@@ -6329,7 +6329,7 @@ EOF
else else
echo "$ac_t""no" 1>&6 echo "$ac_t""no" 1>&6
STRTOL='strtoul.o' STRTOUL='strtoul.o'
fi fi
......
...@@ -865,7 +865,7 @@ AC_CHECK_FUNC(strtol, ...@@ -865,7 +865,7 @@ AC_CHECK_FUNC(strtol,
AC_SUBST(STRTOL) AC_SUBST(STRTOL)
AC_CHECK_FUNC(strtoul, AC_CHECK_FUNC(strtoul,
AC_DEFINE(HAVE_STRTOUL), AC_DEFINE(HAVE_STRTOUL),
STRTOL='strtoul.o') STRTOUL='strtoul.o')
AC_SUBST(STRTOUL) AC_SUBST(STRTOUL)
AC_CHECK_FUNC(strcasecmp, AC_CHECK_FUNC(strcasecmp,
AC_DEFINE(HAVE_STRCASECMP), AC_DEFINE(HAVE_STRCASECMP),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment