Merge from vendor branch OPENSSL:
[dragonfly.git] / contrib / gperf / configure.in
1 dnl autoconf configuration for gperf
2
3 dnl Copyright (C) 1998 Free Software Foundation, Inc.
4 dnl written by Douglas C. Schmidt (schmidt@ics.uci.edu)
5 dnl
6 dnl This file is part of GNU GPERF.
7 dnl
8 dnl GNU GPERF is free software; you can redistribute it and/or modify
9 dnl it under the terms of the GNU General Public License as published by
10 dnl the Free Software Foundation; either version 1, or (at your option)
11 dnl any later version.
12 dnl
13 dnl GNU GPERF is distributed in the hope that it will be useful,
14 dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
15 dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 dnl GNU General Public License for more details.
17 dnl
18 dnl You should have received a copy of the GNU General Public License
19 dnl along with GNU GPERF; see the file COPYING.  If not, write to the
20 dnl Free Software Foundation, 59 Temple Place - Suite 330, Boston,
21 dnl MA 02111-1307, USA.
22
23 AC_INIT(doc/gperf.1)
24 AC_PROG_MAKE_SET
25 dnl This piece of sed script replaces every line containing '@subdir@'
26 dnl by several consecutive lines, each referencing one subdir.
27 extrasub="$extrasub"'
28 /@subdir@/{
29 h
30 g
31 s/@subdir@/lib/
32 p
33 g
34 s/@subdir@/src/
35 p
36 g
37 s/@subdir@/tests/
38 p
39 g
40 s/@subdir@/doc/
41 p
42 d
43 }
44 '
45 AC_OUTPUT(Makefile)
46 AC_OUTPUT_SUBDIRS(lib src tests doc)