2006-02-19 Randolph Chung <tausq@debian.org>
[deliverable/binutils-gdb.git] / mmalloc / configure.in
... / ...
CommitLineData
1dnl Autoconf configure script for MMALLOC, the GNU mmemory allocator.
2dnl Copyright 2000 Free Software Foundation, Inc.
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 2 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, write to the Free Software
18dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19dnl Process this file with autoconf to produce a configure script.
20
21AC_PREREQ(2.12.1)dnl
22AC_INIT(mmalloc.c)
23
24AC_PROG_CC
25AC_PROG_INSTALL
26AC_CHECK_TOOL(AR, ar)
27AC_CHECK_TOOL(RANLIB, ranlib, :)
28
29AC_FUNC_MMAP
30AC_CHECK_HEADERS(limits.h stddef.h unistd.h)
31
32BFD_NEED_DECLARATION(sbrk)
33BFD_NEED_DECLARATION(getpagesize)
34
35AC_OUTPUT(Makefile)
This page took 0.050138 seconds and 4 git commands to generate.