all remaining *.c *.h files from hp merge.
[deliverable/binutils-gdb.git] / gprof / configure.in
... / ...
CommitLineData
1dnl Process this file with autoconf to produce a configure script.
2AC_PREREQ(2.5)dnl
3AC_INIT(gprof.c)
4
5AC_CANONICAL_SYSTEM
6
7AM_INIT_AUTOMAKE(gprof, 2.9.4)
8
9AM_PROG_LIBTOOL
10
11dnl For simplicity, we use the BFD configuration file for most
12dnl things. However, we also need our own configuration file for
13dnl the automake PACKAGE and VERSION macros. We don't name it
14dnl config.h, to avoid any possible confusion with the bfd config.h.
15AM_CONFIG_HEADER(gconfig.h:gconfig.in)
16
17AC_PROG_CC
18AM_PROG_INSTALL
19
20AC_ISC_POSIX
21
22ALL_LINGUAS=
23CY_GNU_GETTEXT
24
25dnl We need to set BSD44_FORMAT on a host which uses the additional
26dnl header fields. This is an attempt to do that. I can't think of a
27dnl good feature test for this.
28case "${target}" in
29*-*-bsd4.4* | *-*-netbsd* | *-*-freebsd* | *-*-openbsd* \
30| *-*-cygwin* | *-*-mingw32 | *-*-win32 )
31 AC_DEFINE(BSD44_FORMAT)
32 ;;
33esac
34
35AM_MAINTAINER_MODE
36AM_CYGWIN32
37AM_EXEEXT
38
39AC_OUTPUT(Makefile po/Makefile.in:po/Make-in,
40[sed -e '/POTFILES =/r po/POTFILES' po/Makefile.in > po/Makefile])
This page took 0.021441 seconds and 4 git commands to generate.