Minor updates to readline configury
[deliverable/binutils-gdb.git] / gnulib / configure.ac
CommitLineData
c971b7fa 1dnl Autoconf configure script for GDB, the GNU debugger.
42a4f53d 2dnl Copyright (C) 1995-2019 Free Software Foundation, Inc.
c971b7fa
PA
3dnl
4dnl This file is part of GDB.
5dnl
6dnl This program is free software; you can redistribute it and/or modify
7dnl it under the terms of the GNU General Public License as published by
8dnl the Free Software Foundation; either version 3 of the License, or
9dnl (at your option) any later version.
10dnl
11dnl This program is distributed in the hope that it will be useful,
12dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
13dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14dnl GNU General Public License for more details.
15dnl
16dnl You should have received a copy of the GNU General Public License
17dnl along with this program. If not, see <http://www.gnu.org/licenses/>.
18
19dnl Process this file with autoconf to produce a configure script.
20
d0ac1c44
SM
21AC_INIT([libgnu], [UNUSED-VERSION])
22AC_CONFIG_SRCDIR([import/memmem.c])
c971b7fa 23AC_CONFIG_HEADER(config.h:config.in)
33bd0102
CB
24AC_CONFIG_MACRO_DIRS([import/m4])
25AC_CONFIG_MACRO_DIRS([../config])
c971b7fa
PA
26AM_MAINTAINER_MODE
27
28AC_PROG_CC
29AC_USE_SYSTEM_EXTENSIONS
30gl_EARLY
31AM_PROG_CC_STDC
32
73cc7272
TT
33ACX_LARGEFILE
34
35AC_CONFIG_AUX_DIR(..)
c971b7fa
PA
36AC_CANONICAL_SYSTEM
37
38gl_INIT
39
40# We don't use automake, but gnulib does. This line lets us generate
41# its Makefile.in.
33bd0102 42AM_INIT_AUTOMAKE([no-define foreign])
c971b7fa 43
39be3c7e
SM
44AM_SILENT_RULES([yes])
45
c971b7fa
PA
46# --------------------- #
47# Checks for programs. #
48# --------------------- #
49
50AC_PROG_INSTALL
51AC_PROG_LN_S
52AC_PROG_RANLIB
53
54AC_CHECK_TOOL(AR, ar)
55
56# ---------------------- #
57# Checks for libraries. #
58# ---------------------- #
59
60AC_OUTPUT(Makefile import/Makefile,
61[
62case x$CONFIG_HEADERS in
63xconfig.h:config.in)
64echo > stamp-h ;;
65esac
66])
67
68exit 0
This page took 0.733546 seconds and 4 git commands to generate.