| 1 | dnl
|
|---|
| 2 | dnl configure.ac --- autoconf input file for gawk
|
|---|
| 3 | dnl
|
|---|
| 4 | dnl Copyright (C) 1995-2005 the Free Software Foundation, Inc.
|
|---|
| 5 | dnl
|
|---|
| 6 | dnl This file is part of GAWK, the GNU implementation of the
|
|---|
| 7 | dnl AWK Programming Language.
|
|---|
| 8 | dnl
|
|---|
| 9 | dnl GAWK is free software; you can redistribute it and/or modify
|
|---|
| 10 | dnl it under the terms of the GNU General Public License as published by
|
|---|
| 11 | dnl the Free Software Foundation; either version 2 of the License, or
|
|---|
| 12 | dnl (at your option) any later version.
|
|---|
| 13 | dnl
|
|---|
| 14 | dnl GAWK is distributed in the hope that it will be useful,
|
|---|
| 15 | dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|---|
| 16 | dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|---|
| 17 | dnl GNU General Public License for more details.
|
|---|
| 18 | dnl
|
|---|
| 19 | dnl You should have received a copy of the GNU General Public License
|
|---|
| 20 | dnl along with this program; if not, write to the Free Software
|
|---|
| 21 | dnl Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|---|
| 22 | dnl
|
|---|
| 23 |
|
|---|
| 24 | dnl Process this file with autoconf to produce a configure script.
|
|---|
| 25 |
|
|---|
| 26 | AC_INIT([GNU Awk], 3.1.5, [email protected], gawk)
|
|---|
| 27 |
|
|---|
| 28 | # This is a hack. Different versions of install on different systems
|
|---|
| 29 | # are just too different. Chuck it and use install-sh.
|
|---|
|
|---|