From a661b629eb90808c1e9405e44e1d779b5870f01d Mon Sep 17 00:00:00 2001 From: Marcus Brinkmann Date: Tue, 12 Jul 2005 23:01:06 +0000 Subject: 2005-07-12 Guillem Jover * configure: Regenerated. * i386/configure: Regenerated. * Drivers.macros (AC_DRIVER_CLASS): Use AH_TEMPLATE. (AC_DRIVER): Set the value for the AC_DEFINE and AC_DEFINE_UNQUOTED to 1. * aclocal.m4 (AC_PROG_CC_LOCAL, AC_PROG_CC_WORKS_LOCAL): Removed. * version.m4: New file. * Makefile.in: Use PACKAGE_VERSION, not VERSION. * doc/Makefile.in: Likewise. * version.c.in: Likewise. Use PACKAGE_NAME, not "GNUmach". * i386/linux/Makefile.in (configure): Change its source to configure.ac. * aclocal.m4: Add missing quotations. * Drivers.macros: Likewise. * configure.in: Likewise. Include version.m4 and use PACKAGE and VERSION m4 macros from it. * i386/configure.in: Likewise. (AC_INIT): Use new syntax and move source check to AC_CONFIG_SRCDIR. * i386/linux/configure.ac: Likewise. Use m4_sinclude, not sinclude. * linux/configure.in: Likewise. * i386/configure.in: Update AC_DEFINE to the new three argument form. * i386/linux/configure.ac: Move AC_DEFINE inside AC_ARG_ENABLE. * configure.in: Use AC_CONFIG_LINKS, not AC_LINK_FILES. * linux/configure.in: Likewise. * i386/configure.in: Call AC_CONFIG_FILES and use the new form of AC_OUTPUT. * i386/linux/configure.ac: Likewise. * linux/configure.in: Likewise * configure.in: Use AS_HELP_STRING in AC_ARG_ENABLE help strings. * Drivers.macros: Likewise. * i386/configure.in: Likewise. * i386/linux/configure.ac: Likewise. 2005-07-12 Neal H. Walfield * configure.in: Update to use autoconf 2.57. Do not error out if host_os is not GNU. Update AC_DEFINEs to the required three argument form. Don't call AC_CHECK_TOOL(CC, gcc) and AC_PROG_CC_LOCAL, just use AC_PROG_CC. AC_SUBST(LDFLAGS). Refactor AC_CONFIG_SUBDIRS to not do variable substitution. Call AC_CONFIG_FILES and use the new form of AC_OUTPUT. * i386/configure.in: Require autoconf 2.57. * linux/configure.in: Likewise. * i386/linux/Drivers.in: Move from here... * i386/linux/configure.ac: ... to here to conform to the environment autoreconf expects. (hurd_host_CPU): New macro. Call AC_PROG_CC, not AC_PROG_CC_LOCAL. AC_SUBST(LD_FLAGS). (flashpoint): Update AC_DEFINE to the new three argument form. * Drivers.macros (AC_DRIVER): Update AC_DEFINE to the new three argument form. --- Drivers.macros | 27 +++++++++++++++------------ configure.in | 59 ++++++++++++++++++++++++++++------------------------------ 2 files changed, 43 insertions(+), 43 deletions(-) diff --git a/Drivers.macros b/Drivers.macros index ae0a6b3..5fa1db4 100644 --- a/Drivers.macros +++ b/Drivers.macros @@ -13,15 +13,16 @@ dnl "AS IS" CONDITION. THE FREE SOFTWARE FOUNDATION DISCLAIMS ANY dnl LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE dnl USE OF THIS SOFTWARE. -AC_SUBST(device_drivers) +AC_SUBST([device_drivers]) dnl AC_DRIVER_ALIAS(alias, canonical) makes --enable-alias have the dnl same effect as --enable-canonical. -AC_DEFUN(AC_DRIVER_ALIAS, [ +AC_DEFUN([AC_DRIVER_ALIAS], [ [#] Checking for alias [$1] -AC_ARG_ENABLE([$1],, -enable_[$2]="$enable_[$1]" +AC_ARG_ENABLE([$1], + AS_HELP_STRING([--enable-$1], [enable driver alias $1 for $2]), + [enable_$2="$enable_$1"] )]) dnl AC_DRIVER_CLASS(name,option,files) defines a class of drivers. If @@ -30,9 +31,10 @@ dnl by the user, then set the specified option with AC_DEFINE and add dnl the specified files to the output variable `device_drivers'. This dnl macro must precede the use of any corresponding AC_DRIVER macros. -AC_DEFUN(AC_DRIVER_CLASS, [ -driver_class_[$1]_option=[$2] -driver_class_[$1]_files="[$3]" +AC_DEFUN([AC_DRIVER_CLASS], [ +AH_TEMPLATE([$2], [Driver Class $1]) +driver_class_$1_option=$2 +driver_class_$1_files="$3" ]) dnl AC_DRIVER(name,option,files [,class]) detects option --enable-name. If @@ -40,16 +42,17 @@ dnl it's set, then `option' is defined with AC_DEFINE, and files is dnl added to the output variable `device_drivers'. The driver is of class dnl `class'; see the comments on AC_DRIVER_CLASS for more information. -AC_DEFUN(AC_DRIVER, [ +AC_DEFUN([AC_DRIVER], [ [#] Checking for device driver option [$1] -AC_ARG_ENABLE([$1],, +AC_ARG_ENABLE([$1], +AS_HELP_STRING([--enable-$1], [enable driver $1]), [ if test "x$enableval" != xno; then -AC_DEFINE([$2]) +AC_DEFINE([$2], [1], [$1]) device_drivers="$device_drivers [$3]" if test "${driver_class_[$4]_selected+set}" != set; then driver_class_[$4]_selected=yes - AC_DEFINE_UNQUOTED($driver_class_[$4]_option) + AC_DEFINE_UNQUOTED([$driver_class_$4_option], [1]) device_drivers="$device_drivers $driver_class_[$4]_files" fi fi -)]) +])]) diff --git a/configure.in b/configure.in index b845204..b6691f5 100644 --- a/configure.in +++ b/configure.in @@ -1,5 +1,5 @@ dnl Configure script for GNU Mach. -dnl Copyright 1997, 1998, 1999 Free Software Foundation, Inc. +dnl Copyright 1997, 1998, 1999, 2004 Free Software Foundation, Inc. dnl Permission to use, copy, modify and distribute this software and its dnl documentation is hereby granted, provided that both the copyright @@ -12,11 +12,11 @@ dnl "AS IS" CONDITION. THE FREE SOFTWARE FOUNDATION DISCLAIMS ANY dnl LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE dnl USE OF THIS SOFTWARE. -AC_INIT(kern/ipc_kobject.c) -AC_PREREQ(2.12) +m4_include([version.m4]) -VERSION=1.3 -AC_SUBST(VERSION) +AC_INIT([PACKAGE], [VERSION], [bug-hurd@gnu.org], [gnumach]) +AC_CONFIG_SRCDIR([kern/ipc_kobject.c]) +AC_PREREQ(2.57) # # Deduce output var `systype' from configuration parms. @@ -28,27 +28,23 @@ i[[3456]]86) systype=i386 ;; *) AC_MSG_ERROR([unsupported CPU type]) ;; esac -case "$host_os" in -gnu*) ;; -*) AC_MSG_ERROR([sorry, this is the gnu os, not $host_os]) ;; -esac - -AC_SUBST(systype) -AC_SUBST(cross_compiling) +AC_SUBST([systype]) +AC_SUBST([cross_compiling]) # Default prefix is / for the kernel. -AC_PREFIX_DEFAULT() +AC_PREFIX_DEFAULT([]) # # Options # -AC_ARG_ENABLE(kdb, -[ --enable-kdb enable use of in-kernel debugger], -[test "x$enableval" = xno || AC_DEFINE(MACH_KDB)]) +AC_ARG_ENABLE([kdb], +AS_HELP_STRING([--enable-kdb], [enable use of in-kernel debugger]), +[test "x$enableval" = xno || AC_DEFINE([MACH_KDB], [1], [enable use of in-kernel debugger])]) -AC_ARG_ENABLE(kmsg, -[ --enable-kmsg enable use of kmsg device [default=yes]], -[test "x$enableval" = xno || AC_DEFINE(MACH_KMSG)], [AC_DEFINE(MACH_KMSG)]) +AC_ARG_ENABLE([kmsg], +AS_HELP_STRING([--enable-kmsg], [enable use of kmsg device [[default=yes]]]), +[test "x$enableval" = xno || AC_DEFINE([MACH_KMSG], [], [enable use of kmsg device])], + [AC_DEFINE([MACH_KMSG], [], [enable use of kmsg device])]) # # Programs @@ -56,23 +52,24 @@ AC_ARG_ENABLE(kmsg, AC_PROG_INSTALL AC_PROG_AWK +AC_PROG_CC -AC_CHECK_TOOL(CC, gcc) -# That check handles cross-compilation well, but AC_PROG_CC tests for GCC -# and sets default CFLAGS nicely for us, so do that too. -AC_PROG_CC_LOCAL - -AC_CHECK_TOOL(LD, ld) -AC_CHECK_TOOL(NM, nm) +AC_CHECK_TOOL([LD], [ld]) +AC_SUBST([LDFLAGS]) +AC_CHECK_TOOL([NM], [nm]) -AC_CHECK_TOOL(MIG, mig, mig) +AC_CHECK_TOOL([MIG], [mig], [mig]) # Set up `machine' link in build directory for easier header file location. -AC_LINK_FILES(${systype}/${systype},machine) +AC_CONFIG_LINKS([machine:${systype}/${systype}]) + +AC_CONFIG_SUBDIRS([linux]) # Do machine-specific configuration last so that it can override anything # set above if necessary. +if test "$systype" = i386; then + AC_CONFIG_SUBDIRS([i386]) +fi -AC_CONFIG_SUBDIRS(linux ${systype}) - -AC_OUTPUT(Makefile version.c doc/Makefile) +AC_CONFIG_FILES([Makefile version.c doc/Makefile]) +AC_OUTPUT -- cgit v1.2.3