Initial CVS checkin of gold
[deliverable/binutils-gdb.git] / gold / configure.ac
CommitLineData
bae7f79e
ILT
1dnl Process this file with autoconf to produce a configure script.
2
3AC_PREREQ(2.59)
4AC_INIT
5AC_CONFIG_SRCDIR([gold.cc])
6
7AC_CANONICAL_TARGET
8
9AM_INIT_AUTOMAKE(gold, 0.1)
10
11AM_CONFIG_HEADER(config.h:config.in)
12
13AC_PROG_CC
14AC_PROG_CXX
15AC_PROG_INSTALL
16ZW_GNU_GETTEXT_SISTER_DIR
17AM_PO_SUBDIRS
18
19AC_EXEEXT
20
21AM_BINUTILS_WARNINGS
22
23WARN_CXXFLAGS=`echo ${WARN_CFLAGS} | sed -e 's/-Wstrict-prototypes//' -e 's/-Wmissing-prototypes//'`
24AC_SUBST(WARN_CXXFLAGS)
25
26dnl Force support for large files by default. This may need to be
27dnl host dependent. If build == host, we can check getconf LFS_CFLAGS.
28LFS_CXXFLAGS="-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
29AC_SUBST(LFS_CXXFLAGS)
30
31AM_MAINTAINER_MODE
32
33AC_OUTPUT(Makefile po/Makefile.in:po/Make-in)
This page took 0.023828 seconds and 4 git commands to generate.