It appears that our "Makefile.in" won't work with the scripts generated

by pre-2.13 "autoconf", and there may be other problems with pre-2.12
"autoconf" as well; require "autoconf" 2.13 or later.

svn path=/trunk/; revision=1187
This commit is contained in:
Guy Harris 1999-12-03 07:04:54 +00:00
parent d2ebea8481
commit 93fdf81217
2 changed files with 27 additions and 4 deletions

View File

@ -1,7 +1,18 @@
# $Id: configure.in,v 1.61 1999/11/29 05:35:01 gram Exp $
dnl Process this file with autoconf to produce a configure script.
# $Id: configure.in,v 1.62 1999/12/03 07:02:48 guy Exp $
dnl
dnl Process this file with autoconf 2.13 or later to produce a
dnl configure script; 2.12 doesn't generate a "configure" script that
dnl defines SHELL, and "Makefile.in" has
dnl
dnl SHELL = @SHELL@
dnl
dnl which requires it to be defined - and there may be other problems
dnl with pre-2.13 "autoconf" as well.
dnl
AC_INIT(etypes.h)
AC_PREREQ(2.13)
AM_INIT_AUTOMAKE(ethereal, 0.7.9)
dnl Check for CPU / vendor / OS

View File

@ -1,6 +1,18 @@
# $Id: configure.in,v 1.16 1999/10/14 03:50:51 itojun Exp $
dnl Process this file with autoconf to produce a configure script.
# $Id: configure.in,v 1.17 1999/12/03 07:04:54 guy Exp $
dnl
dnl Process this file with autoconf 2.13 or later to produce a
dnl configure script; 2.12 doesn't generate a "configure" script that
dnl defines SHELL, and "Makefile.in" has
dnl
dnl SHELL = @SHELL@
dnl
dnl which requires it to be defined - and there may be other problems
dnl with pre-2.13 "autoconf" as well.
dnl
AC_INIT(wtap.c)
AC_PREREQ(2.13)
AM_INIT_AUTOMAKE(libwtap.a, 0.0.0)
AM_CONFIG_HEADER(config.h)