User: james
Date: 06/06/06 02:18:42
Modified: xemacs ChangeLog configure.ac configure
Log:
Change "if -z" to "if test -z".
<m33bejjfyf.fsf(a)jerrypc.cs.usu.edu>
Revision Changes Path
1.506 +4 -0 XEmacs/xemacs/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/ChangeLog,v
retrieving revision 1.505
retrieving revision 1.506
diff -u -p -r1.505 -r1.506
--- ChangeLog 2006/05/23 13:18:50 1.505
+++ ChangeLog 2006/06/06 00:18:28 1.506
@@ -1,3 +1,7 @@
+2006-06-05 Jerry James <james(a)xemacs.org>
+
+ * configure.ac: Change "if -z" to "if test -z".
+
2006-05-23 Stephen J. Turnbull <stephen(a)xemacs.org>
* configure.ac: Look for debugger init file templates in etc/, not
1.43 +1 -1 XEmacs/xemacs/configure.ac
Index: configure.ac
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/configure.ac,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -p -r1.42 -r1.43
--- configure.ac 2006/05/23 13:18:50 1.42
+++ configure.ac 2006/06/06 00:18:29 1.43
@@ -2220,7 +2220,7 @@ if test -z "$with_optimization"; then
# If user set --with-cflags-optimization, use it to unilaterally
# determine whether optimization should be enabled.
if test "$cflags_optimization_specified" = "yes" ; then
- if -z "$with_cflags_optimization" ; then
+ if test -z "$with_cflags_optimization" ; then
with_optimization=no
else
with_optimization=yes
1.282 +6 -6 XEmacs/xemacs/configure
Index: configure
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/configure,v
retrieving revision 1.281
retrieving revision 1.282
diff -u -p -r1.281 -r1.282
--- configure 2006/05/27 18:30:48 1.281
+++ configure 2006/06/06 00:18:29 1.282
@@ -9133,7 +9133,7 @@ if test -z "$with_optimization"; then
# If user set --with-cflags-optimization, use it to unilaterally
# determine whether optimization should be enabled.
if test "$cflags_optimization_specified" = "yes" ; then
- if -z "$with_cflags_optimization" ; then
+ if test -z "$with_cflags_optimization" ; then
with_optimization=no
else
with_optimization=yes
@@ -16440,7 +16440,7 @@ ac_x_header_dirs='
/usr/openwin/share/include'
if test "$ac_x_includes" = no; then
- # Guess where to find include files, by looking for Intrinsic.h.
+ # Guess where to find include files, by looking for Xlib.h.
# First, try using that file with no special directory specified.
cat >conftest.$ac_ext <<_ACEOF
/* confdefs.h. */
@@ -16448,7 +16448,7 @@ _ACEOF
cat confdefs.h >>conftest.$ac_ext
cat >>conftest.$ac_ext <<_ACEOF
/* end confdefs.h. */
-#include <X11/Intrinsic.h>
+#include <X11/Xlib.h>
_ACEOF
if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"")
>&5
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
@@ -16475,7 +16475,7 @@ else
sed 's/^/| /' conftest.$ac_ext >&5
for ac_dir in $ac_x_header_dirs; do
- if test -r "$ac_dir/X11/Intrinsic.h"; then
+ if test -r "$ac_dir/X11/Xlib.h"; then
ac_x_includes=$ac_dir
break
fi
@@ -16496,11 +16496,11 @@ _ACEOF
cat confdefs.h >>conftest.$ac_ext
cat >>conftest.$ac_ext <<_ACEOF
/* end confdefs.h. */
-#include <X11/Intrinsic.h>
+#include <X11/Xlib.h>
int
main ()
{
-XtMalloc (0)
+XrmInitialize ()
;
return 0;
}
Show replies by date