Adding double quotes around values in test expression
authorKwok-Koon Cheung <baddog@src.gnome.org>
Fri, 28 Sep 2001 21:03:02 +0000 (21:03 +0000)
committerKwok-Koon Cheung <baddog@src.gnome.org>
Fri, 28 Sep 2001 21:03:02 +0000 (21:03 +0000)
ChangeLog
ChangeLog.pre-2-0
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
configure.in

index 16fb08e..54c8808 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-09-29  Abel Cheung  <maddog@linux.org.hk>
+
+       * configure.in: Add quotes around test values. This fixes a minor
+         annoying warning if platform is not win32.
+
 2001-09-27  Manish Singh  <yosh@gimp.org>
 
        * glib/grand.c (g_rand_new): fix typo (#if->#ifdef) so it compiles
index 16fb08e..54c8808 100644 (file)
@@ -1,3 +1,8 @@
+2001-09-29  Abel Cheung  <maddog@linux.org.hk>
+
+       * configure.in: Add quotes around test values. This fixes a minor
+         annoying warning if platform is not win32.
+
 2001-09-27  Manish Singh  <yosh@gimp.org>
 
        * glib/grand.c (g_rand_new): fix typo (#if->#ifdef) so it compiles
index 16fb08e..54c8808 100644 (file)
@@ -1,3 +1,8 @@
+2001-09-29  Abel Cheung  <maddog@linux.org.hk>
+
+       * configure.in: Add quotes around test values. This fixes a minor
+         annoying warning if platform is not win32.
+
 2001-09-27  Manish Singh  <yosh@gimp.org>
 
        * glib/grand.c (g_rand_new): fix typo (#if->#ifdef) so it compiles
index 16fb08e..54c8808 100644 (file)
@@ -1,3 +1,8 @@
+2001-09-29  Abel Cheung  <maddog@linux.org.hk>
+
+       * configure.in: Add quotes around test values. This fixes a minor
+         annoying warning if platform is not win32.
+
 2001-09-27  Manish Singh  <yosh@gimp.org>
 
        * glib/grand.c (g_rand_new): fix typo (#if->#ifdef) so it compiles
index 16fb08e..54c8808 100644 (file)
@@ -1,3 +1,8 @@
+2001-09-29  Abel Cheung  <maddog@linux.org.hk>
+
+       * configure.in: Add quotes around test values. This fixes a minor
+         annoying warning if platform is not win32.
+
 2001-09-27  Manish Singh  <yosh@gimp.org>
 
        * glib/grand.c (g_rand_new): fix typo (#if->#ifdef) so it compiles
index 16fb08e..54c8808 100644 (file)
@@ -1,3 +1,8 @@
+2001-09-29  Abel Cheung  <maddog@linux.org.hk>
+
+       * configure.in: Add quotes around test values. This fixes a minor
+         annoying warning if platform is not win32.
+
 2001-09-27  Manish Singh  <yosh@gimp.org>
 
        * glib/grand.c (g_rand_new): fix typo (#if->#ifdef) so it compiles
index 16fb08e..54c8808 100644 (file)
@@ -1,3 +1,8 @@
+2001-09-29  Abel Cheung  <maddog@linux.org.hk>
+
+       * configure.in: Add quotes around test values. This fixes a minor
+         annoying warning if platform is not win32.
+
 2001-09-27  Manish Singh  <yosh@gimp.org>
 
        * glib/grand.c (g_rand_new): fix typo (#if->#ifdef) so it compiles
index 16fb08e..54c8808 100644 (file)
@@ -1,3 +1,8 @@
+2001-09-29  Abel Cheung  <maddog@linux.org.hk>
+
+       * configure.in: Add quotes around test values. This fixes a minor
+         annoying warning if platform is not win32.
+
 2001-09-27  Manish Singh  <yosh@gimp.org>
 
        * glib/grand.c (g_rand_new): fix typo (#if->#ifdef) so it compiles
index 010b395..31c10bc 100644 (file)
@@ -122,7 +122,7 @@ case "$host" in
     ;;
 esac
 AC_MSG_RESULT([$glib_native_win32])
-AM_CONDITIONAL(OS_WIN32, test x$glib_native_win32 = xyes)
+AM_CONDITIONAL(OS_WIN32, test "$glib_native_win32" = "yes")
 AC_SUBST(G_LIB_WIN32_RESOURCE)
 AC_SUBST(G_MODULE_WIN32_RESOURCE)
 AC_SUBST(G_OBJECT_WIN32_RESOURCE)
@@ -134,10 +134,10 @@ AC_SUBST(GTHREAD_DEF)
 AC_SUBST(TESTGMODULE_EXP)
 
 ms_librarian=no
-if test $glib_native_win32 = yes; then
+if test "$glib_native_win32" = "yes"; then
   AC_CHECK_PROG(ms_librarian, lib.exe, yes, no)
 fi
-AM_CONDITIONAL(MS_LIB_AVAILABLE, test $ms_librarian = yes)
+AM_CONDITIONAL(MS_LIB_AVAILABLE, test x$ms_librarian = xyes)
 
 GLIB_AC_DIVERT_BEFORE_HELP([
 # figure debugging default, prior to $ac_help setup
@@ -577,7 +577,7 @@ extern int sys_nerr;
 sys_errlist[sys_nerr-1][0] = 0;
 ], glib_ok=yes, glib_ok=no)
 AC_MSG_RESULT($glib_ok)
-if test $glib_ok = no; then
+if test "$glib_ok" = "no"; then
     AC_DEFINE(NO_SYS_ERRLIST,1,[global 'sys_errlist' not found])
 fi
 
@@ -588,7 +588,7 @@ extern char *sys_siglist[];
 exit (sys_siglist[0]);
 ], glib_ok=yes, glib_ok=no)
 AC_MSG_RESULT($glib_ok)
-if test $glib_ok = no; then
+if test "$glib_ok" = "no"; then
     AC_DEFINE(NO_SYS_SIGLIST,1,[global 'sys_siglist' not found])
 fi
 
@@ -598,7 +598,7 @@ AC_TRY_COMPILE([#include <signal.h>], [
 strlen (sys_siglist[0]);
 ], glib_ok=yes, glib_ok=no)
 AC_MSG_RESULT($glib_ok)
-if test $glib_ok = no; then
+if test "$glib_ok" = "no"; then
     AC_DEFINE(NO_SYS_SIGLIST_DECL,1,[global 'sys_siglist' not declared])
 fi
 
@@ -606,11 +606,11 @@ fi
 AC_MSG_CHECKING([for fd_set])
 AC_TRY_COMPILE([#include <sys/types.h>],
         [fd_set readMask, writeMask;], gtk_ok=yes, gtk_ok=no)
-if test $gtk_ok = yes; then
+if test "$gtk_ok" = "yes"; then
     AC_MSG_RESULT([yes, found in sys/types.h])
 else
     AC_EGREP_HEADER(fd_set, sys/select.h, gtk_ok=yes)
-    if test $gtk_ok = yes; then
+    if test "$gtk_ok" = "yes"; then
        # *** FIXME: give it a different name
         AC_DEFINE(HAVE_SYS_SELECT_H,1,[found fd_set in sys/select.h])
         AC_MSG_RESULT([yes, found in sys/select.h])
@@ -658,7 +658,7 @@ char *p = malloc(10);
 (void) strlcat(p, "bye", 10);
 ], glib_ok=yes, glib_ok=no)
 AC_MSG_RESULT($glib_ok)
-if test $glib_ok = yes; then
+if test "$glib_ok" = "yes"; then
     AC_DEFINE(HAVE_STRLCPY,1,[Have functions strlcpy and strlcat])
 fi