diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rwxr-xr-x | configure | 42 | ||||
-rw-r--r-- | configure.ac | 4 |
3 files changed, 35 insertions, 16 deletions
@@ -1,3 +1,8 @@ +2004-02-16 Ben Elliston <bje@wasabisystems.com> + + * configure.ac: Update AC_INIT and AM_INIT_AUTOMAKE invocations. + * configure: Regenerate. + 2004-02-09 Ben Elliston <bje@wasabisystems.com> * doc/runtest.1: Improve some wording. Update last revision date. @@ -1,6 +1,8 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.59. +# Generated by GNU Autoconf 2.59 for GNU DejaGnu 1.4.4. +# +# Report bugs to <bug-dejagnu@gnu.org>. # # Copyright (C) 2003 Free Software Foundation, Inc. # This configure script is free software; the Free Software Foundation @@ -265,13 +267,12 @@ SHELL=${CONFIG_SHELL-/bin/sh} : ${ac_max_here_lines=38} # Identity of this package. -PACKAGE_NAME= -PACKAGE_TARNAME= -PACKAGE_VERSION= -PACKAGE_STRING= -PACKAGE_BUGREPORT= +PACKAGE_NAME='GNU DejaGnu' +PACKAGE_TARNAME='dejagnu' +PACKAGE_VERSION='1.4.4' +PACKAGE_STRING='GNU DejaGnu 1.4.4' +PACKAGE_BUGREPORT='bug-dejagnu@gnu.org' -ac_unique_file="runtest.exp" ac_subdirs_all="$ac_subdirs_all example/calc example/hello" ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO AMTAR install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot MAINTAINER_MODE_TRUE MAINTAINER_MODE_FALSE MAINT CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE CXX CXXFLAGS ac_ct_CXX CXXDEPMODE am__fastdepCXX_TRUE am__fastdepCXX_FALSE DOCBOOK2DVI DOCBOOK2PDF DOCBOOK2HTML EXPECT subdirs LIBOBJS LTLIBOBJS' ac_subst_files='' @@ -746,7 +747,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures this package to adapt to many kinds of systems. +\`configure' configures GNU DejaGnu 1.4.4 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -807,7 +808,9 @@ _ACEOF fi if test -n "$ac_init_help"; then - + case $ac_init_help in + short | recursive ) echo "Configuration of GNU DejaGnu 1.4.4:";; + esac cat <<\_ACEOF Optional Features: @@ -831,6 +834,7 @@ Some influential environment variables: Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. +Report bugs to <bug-dejagnu@gnu.org>. _ACEOF fi @@ -926,6 +930,8 @@ fi test -n "$ac_init_help" && exit 0 if $ac_init_version; then cat <<\_ACEOF +GNU DejaGnu configure 1.4.4 +generated by GNU Autoconf 2.59 Copyright (C) 2003 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation @@ -938,7 +944,7 @@ cat >&5 <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by $as_me, which was +It was created by GNU DejaGnu $as_me 1.4.4, which was generated by GNU Autoconf 2.59. Invocation command line was $ $0 $@ @@ -1266,6 +1272,14 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu + + + + + + + + am__api_version="1.8" ac_aux_dir= for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do @@ -1564,8 +1578,8 @@ fi # Define the identity of the package. - PACKAGE=dejagnu - VERSION=1.4.4 + PACKAGE='dejagnu' + VERSION='1.4.4' cat >>confdefs.h <<_ACEOF @@ -3994,7 +4008,7 @@ _ASBOX } >&5 cat >&5 <<_CSEOF -This file was extended by $as_me, which was +This file was extended by GNU DejaGnu $as_me 1.4.4, which was generated by GNU Autoconf 2.59. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -4052,7 +4066,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF ac_cs_version="\\ -config.status +GNU DejaGnu config.status 1.4.4 configured by $0, generated by GNU Autoconf 2.59, with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\" diff --git a/configure.ac b/configure.ac index 93857cc..9b2f6a0 100644 --- a/configure.ac +++ b/configure.ac @@ -1,8 +1,8 @@ dnl Process this file with autoconf to produce a configure script. AC_PREREQ(2.50) -AC_INIT([runtest.exp]) -AM_INIT_AUTOMAKE([dejagnu], 1.4.4) +AC_INIT([GNU DejaGnu], 1.4.4, [bug-dejagnu@gnu.org]) +AM_INIT_AUTOMAKE AM_MAINTAINER_MODE AC_PROG_MAKE_SET |