1 | dnl Configuration for the autoconf-lib-link directory of GNU gettext |
---|
2 | dnl Copyright (C) 1995-1999, 2000-2003 Free Software Foundation, Inc. |
---|
3 | dnl |
---|
4 | dnl This program is free software; you can redistribute it and/or modify |
---|
5 | dnl it under the terms of the GNU General Public License as published by |
---|
6 | dnl the Free Software Foundation; either version 2, or (at your option) |
---|
7 | dnl any later version. |
---|
8 | dnl |
---|
9 | dnl This program is distributed in the hope that it will be useful, |
---|
10 | dnl but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
11 | dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
12 | dnl GNU General Public License for more details. |
---|
13 | dnl |
---|
14 | dnl You should have received a copy of the GNU General Public License |
---|
15 | dnl along with this program; if not, write to the Free Software |
---|
16 | dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
---|
17 | |
---|
18 | dnl Process this file with autoconf to produce a configure script. |
---|
19 | |
---|
20 | AC_PREREQ(2.57) |
---|
21 | AC_INIT |
---|
22 | AC_CONFIG_SRCDIR(tests/rpath-1a) |
---|
23 | AC_CONFIG_AUX_DIR(../config) |
---|
24 | . $srcdir/../version.sh |
---|
25 | AM_INIT_AUTOMAKE(autoconf-lib-link, $VERSION_NUMBER) |
---|
26 | |
---|
27 | dnl Checks for programs. |
---|
28 | AC_PROG_CC |
---|
29 | AC_PROG_INSTALL |
---|
30 | |
---|
31 | dnl Check for host type. |
---|
32 | AC_CANONICAL_HOST |
---|
33 | |
---|
34 | dnl Checks for UNIX variants that set DEFS, |
---|
35 | |
---|
36 | dnl Checks for compiler output filename suffixes. |
---|
37 | AC_OBJEXT |
---|
38 | AC_EXEEXT |
---|
39 | |
---|
40 | dnl Check for build configuration. |
---|
41 | AC_LIBTOOL_WIN32_DLL |
---|
42 | AC_PROG_LIBTOOL |
---|
43 | |
---|
44 | dnl Checks for libraries. |
---|
45 | |
---|
46 | dnl Checks for header files. |
---|
47 | |
---|
48 | dnl Checks for typedefs, structures, and compiler characteristics. |
---|
49 | |
---|
50 | dnl Checks for library functions. |
---|
51 | |
---|
52 | dnl Checks for tests/rpathcfg. |
---|
53 | AC_SUBST(GCC) |
---|
54 | AC_SUBST(LD) |
---|
55 | AC_SUBST(with_gnu_ld) |
---|
56 | |
---|
57 | aclocaldir='${datadir}/aclocal' |
---|
58 | AC_SUBST(aclocaldir) |
---|
59 | |
---|
60 | AC_CONFIG_FILES([Makefile], |
---|
61 | [FIX_MAKEFILE_DISTRIB]) |
---|
62 | |
---|
63 | AC_CONFIG_FILES([m4/Makefile]) |
---|
64 | |
---|
65 | AC_CONFIG_FILES([tests/Makefile]) |
---|
66 | |
---|
67 | AC_OUTPUT |
---|