Commit 063a4b85 by Zack Weinberg Committed by Zack Weinberg

configure.in: Use 'test a = b' not 'test a == b'.

	* configure.in: Use 'test a = b' not 'test a == b'.
	* configure: Regen.

From-SVN: r34624
parent 6650a443
2000-06-20 Zack Weinberg <zack@wolery.cumb.org> 2000-06-20 Zack Weinberg <zack@wolery.cumb.org>
* configure.in: Use 'test a = b' not 'test a == b'.
* configure: Regen.
* Makefile.in (fix-header): Link with $(LIBS) not $(HOST_LIBS). * Makefile.in (fix-header): Link with $(LIBS) not $(HOST_LIBS).
* Makefile.in: Remove all references to HOST_INTLLIBS. * Makefile.in: Remove all references to HOST_INTLLIBS.
......
...@@ -1445,7 +1445,7 @@ for ac_kw in inline __inline__ __inline; do ...@@ -1445,7 +1445,7 @@ for ac_kw in inline __inline__ __inline; do
#include "confdefs.h" #include "confdefs.h"
int main() { int main() {
} $ac_kw foo() { } int $ac_kw foo() {
; return 0; } ; return 0; }
EOF EOF
if { (eval echo configure:1452: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then if { (eval echo configure:1452: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
...@@ -6923,7 +6923,7 @@ fi ...@@ -6923,7 +6923,7 @@ fi
# if cross compiling, disable NLS support. # if cross compiling, disable NLS support.
# It's not worth the trouble, at least for now. # It's not worth the trouble, at least for now.
if test "${build}" != "${host}" && test "x$enable_nls" == "xyes"; then if test "${build}" != "${host}" && test "x$enable_nls" = "xyes"; then
echo "configure: warning: Disabling NLS support for canadian cross compiler." 1>&2 echo "configure: warning: Disabling NLS support for canadian cross compiler." 1>&2
enable_nls=no enable_nls=no
fi fi
...@@ -6983,7 +6983,7 @@ else ...@@ -6983,7 +6983,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;
...@@ -7124,7 +7124,7 @@ else ...@@ -7124,7 +7124,7 @@ else
#include "confdefs.h" #include "confdefs.h"
#include <alloca.h> #include <alloca.h>
int main() { int main() {
char *p = alloca(2 * sizeof(int)); void *p = alloca(2 * sizeof(int));
; return 0; } ; return 0; }
EOF EOF
if { (eval echo configure:7131: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then if { (eval echo configure:7131: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
......
...@@ -4117,7 +4117,7 @@ AC_ARG_ENABLE(nls, ...@@ -4117,7 +4117,7 @@ AC_ARG_ENABLE(nls,
# if cross compiling, disable NLS support. # if cross compiling, disable NLS support.
# It's not worth the trouble, at least for now. # It's not worth the trouble, at least for now.
if test "${build}" != "${host}" && test "x$enable_nls" == "xyes"; then if test "${build}" != "${host}" && test "x$enable_nls" = "xyes"; then
AC_MSG_WARN(Disabling NLS support for canadian cross compiler.) AC_MSG_WARN(Disabling NLS support for canadian cross compiler.)
enable_nls=no enable_nls=no
fi fi
......
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