* build fix for cygwin
[deliverable/binutils-gdb.git] / mmalloc / configure.in
CommitLineData
9365c12c
AC
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.
c906108c 19dnl Process this file with autoconf to produce a configure script.
9365c12c 20
c906108c
SS
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
9365c12c 30AC_CHECK_HEADERS(limits.h stddef.h unistd.h)
c906108c 31
dfcd3bfb 32BFD_NEED_DECLARATION(sbrk)
ff4e7bb2 33BFD_NEED_DECLARATION(getpagesize)
dfcd3bfb 34
c906108c 35AC_OUTPUT(Makefile)
This page took 0.036966 seconds and 4 git commands to generate.