diff options
author | Tim Potter <tpot@samba.org> | 2000-12-06 01:55:19 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2000-12-06 01:55:19 +0000 |
commit | b9df5ca82790f3693a9bc2ddac9b91337a95d738 (patch) | |
tree | 6c7b7c0f8ecad58da6b53cc8353e875ea320d421 | |
parent | 1f6fc3988d452c247a6375d05a924228d73cec66 (diff) | |
download | samba-b9df5ca82790f3693a9bc2ddac9b91337a95d738.tar.gz samba-b9df5ca82790f3693a9bc2ddac9b91337a95d738.tar.bz2 samba-b9df5ca82790f3693a9bc2ddac9b91337a95d738.zip |
Update required after changes to configure.in
(This used to be commit 644aa834e59fc9be9f3c785213729af787b5f90c)
-rwxr-xr-x | source3/configure | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/configure b/source3/configure index 690488dd9a..e96b184a57 100755 --- a/source3/configure +++ b/source3/configure @@ -920,7 +920,7 @@ test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL_PROGRAM}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' -for ac_prog in gawk mawk nawk awk +for ac_prog in mawk gawk nawk awk do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 @@ -1817,7 +1817,7 @@ for ac_kw in inline __inline__ __inline; do #include "confdefs.h" int main() { -} $ac_kw foo() { +} int $ac_kw foo() { ; return 0; } EOF if { (eval echo configure:1824: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then @@ -2958,7 +2958,7 @@ else int main() { /* 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. */ char const *const *ccp; char **p; @@ -3033,7 +3033,7 @@ for ac_kw in inline __inline__ __inline; do #include "confdefs.h" int main() { -} $ac_kw foo() { +} int $ac_kw foo() { ; return 0; } EOF if { (eval echo configure:3040: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then |