Update of /cvsroot/wisp/wisp
In directory sc8-pr-cvs1:/tmp/cvs-serv28685
Modified Files:
configure.in
Log Message:
improved ordering of AC_CANONICAL_* in configure.in
Index: configure.in
===================================================================
RCS file: /cvsroot/wisp/wisp/configure.in,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -d -r1.72 -r1.73
--- configure.in 18 Sep 2002 21:13:27 -0000 1.72
+++ configure.in 1 Feb 2003 13:12:16 -0000 1.73
@@ -1,20 +1,18 @@
dnl configure.in - autoconf source for the Wisp software suite
dnl
-dnl Copyleft © 2002 by Andres Soolo (di...@us...)
+dnl Copyleft © 2002 by Andres Soolo (di...@us...)
dnl This file is licensed under the GNU GPL v2. If you
dnl don't know what that means, please do read the GPL.
dnl
dnl @(#) $Id$
AC_INIT(src/wisp.c.nepl)
+AC_CANONICAL_HOST
+AC_CANONICAL_TARGET
AM_INIT_AUTOMAKE(wisp, 0.9.9)
-
-dnl Specify configure header file.
AM_CONFIG_HEADER(src/config.h)
dnl Determine the system type.
-AC_CANONICAL_HOST
-AC_CANONICAL_TARGET
case $target in
*-*-linux*) SYSTYPE="LINUX" ;;
*) SYSTYPE="UNKNOWNIX" ;;
@@ -55,7 +53,7 @@
if test "$PERL" = no; then
AC_MSG_ERROR(perl not found)
fi
-test "$NASM" = /usr/bin/nasm && NASM=nasm # æsthetics
+test "$NASM" = /usr/bin/nasm && NASM=nasm # æsthetics
test "$PERL" = /usr/bin/perl && PERL=perl
dnl The dot-usr thingie.
|