1999-05-03 07:29:11 +00:00
|
|
|
dnl Process this file with autoconf to produce a configure script.
|
|
|
|
dnl
|
2015-01-01 14:15:26 +00:00
|
|
|
dnl Copyright (C) 2012-2015 Free Software Foundation, Inc.
|
2012-12-17 16:56:12 +00:00
|
|
|
dnl
|
|
|
|
dnl This file is free software; you can redistribute it and/or modify
|
|
|
|
dnl it under the terms of the GNU General Public License as published by
|
|
|
|
dnl the Free Software Foundation; either version 3 of the License, or
|
|
|
|
dnl (at your option) any later version.
|
|
|
|
dnl
|
|
|
|
dnl This program is distributed in the hope that it will be useful,
|
|
|
|
dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
dnl GNU General Public License for more details.
|
|
|
|
dnl
|
|
|
|
dnl You should have received a copy of the GNU General Public License
|
|
|
|
dnl along with this program; see the file COPYING3. If not see
|
|
|
|
dnl <http://www.gnu.org/licenses/>.
|
|
|
|
dnl
|
|
|
|
|
2008-08-24 03:13:05 +00:00
|
|
|
AC_PREREQ(2.59)
|
2014-07-04 02:05:16 +00:00
|
|
|
m4_include([../bfd/version.m4])
|
|
|
|
AC_INIT([binutils], BFD_VERSION)
|
2008-08-24 03:13:05 +00:00
|
|
|
AC_CONFIG_SRCDIR(ar.c)
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2008-08-24 03:13:05 +00:00
|
|
|
AC_CANONICAL_TARGET
|
2000-09-07 21:08:51 +00:00
|
|
|
AC_ISC_POSIX
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2014-07-04 02:05:16 +00:00
|
|
|
AM_INIT_AUTOMAKE
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2007-04-14 20:38:13 +00:00
|
|
|
AC_PROG_CC
|
|
|
|
AC_GNU_SOURCE
|
2008-08-15 08:31:52 +00:00
|
|
|
AC_USE_SYSTEM_EXTENSIONS
|
2009-03-31 08:08:33 +00:00
|
|
|
|
2008-08-24 03:13:05 +00:00
|
|
|
LT_INIT
|
2014-08-14 04:16:09 +00:00
|
|
|
ACX_LARGEFILE
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
AC_ARG_ENABLE(targets,
|
|
|
|
[ --enable-targets alternative target configurations],
|
|
|
|
[case "${enableval}" in
|
2008-08-24 03:13:05 +00:00
|
|
|
yes | "") AC_MSG_ERROR(enable-targets option must specify target names or 'all')
|
1999-05-03 07:29:11 +00:00
|
|
|
;;
|
|
|
|
no) enable_targets= ;;
|
|
|
|
*) enable_targets=$enableval ;;
|
|
|
|
esac])dnl
|
|
|
|
|
2011-12-21 19:39:11 +00:00
|
|
|
AC_ARG_ENABLE(deterministic-archives,
|
|
|
|
[AS_HELP_STRING([--enable-deterministic-archives],
|
|
|
|
[ar and ranlib default to -D behavior])], [
|
|
|
|
if test "${enableval}" = no; then
|
|
|
|
default_ar_deterministic=0
|
|
|
|
else
|
|
|
|
default_ar_deterministic=1
|
|
|
|
fi], [default_ar_deterministic=0])
|
|
|
|
|
|
|
|
AC_DEFINE_UNQUOTED(DEFAULT_AR_DETERMINISTIC, $default_ar_deterministic,
|
|
|
|
[Should ar and ranlib use -D behavior by default?])
|
|
|
|
|
2014-10-31 10:10:37 +00:00
|
|
|
AC_ARG_ENABLE(default-strings-all,
|
|
|
|
[AS_HELP_STRING([--disable-default-strings-all],
|
|
|
|
[strings defaults to --data behavior])], [
|
|
|
|
if test "${enableval}" = no; then
|
|
|
|
default_strings_all=0
|
|
|
|
else
|
|
|
|
default_strings_all=1
|
|
|
|
fi], [default_strings_all=1])
|
|
|
|
|
|
|
|
AC_DEFINE_UNQUOTED(DEFAULT_STRINGS_ALL, $default_strings_all,
|
|
|
|
[Should strings use -a behavior by default?])
|
|
|
|
|
2005-07-01 15:19:47 +00:00
|
|
|
AM_BINUTILS_WARNINGS
|
2011-12-21 19:39:11 +00:00
|
|
|
|
2008-08-24 03:13:05 +00:00
|
|
|
AC_CONFIG_HEADERS(config.h:config.in)
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2012-05-17 15:13:28 +00:00
|
|
|
AH_VERBATIM([00_CONFIG_H_CHECK],
|
|
|
|
[/* Check that config.h is #included before system headers
|
|
|
|
(this works only for glibc, but that should be enough). */
|
2012-11-05 12:26:11 +00:00
|
|
|
#if defined(__GLIBC__) && !defined(__FreeBSD_kernel__) && !defined(__CONFIG_H__)
|
2012-05-17 15:13:28 +00:00
|
|
|
# error config.h must be #included before system headers
|
2012-11-05 12:26:11 +00:00
|
|
|
#endif
|
|
|
|
#define __CONFIG_H__ 1])
|
2012-05-17 15:13:28 +00:00
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
if test -z "$target" ; then
|
|
|
|
AC_MSG_ERROR(Unrecognized target system type; please check config.sub.)
|
|
|
|
fi
|
|
|
|
if test -z "$host" ; then
|
|
|
|
AC_MSG_ERROR(Unrecognized host system type; please check config.sub.)
|
|
|
|
fi
|
|
|
|
|
|
|
|
AC_PROG_YACC
|
|
|
|
AM_PROG_LEX
|
|
|
|
|
2012-10-26 15:27:18 +00:00
|
|
|
ALL_LINGUAS="bg da es fi fr id it ja ro ru rw sk sv tr uk vi zh_CN zh_TW hr"
|
2006-05-31 15:14:46 +00:00
|
|
|
ZW_GNU_GETTEXT_SISTER_DIR
|
|
|
|
AM_PO_SUBDIRS
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
AM_MAINTAINER_MODE
|
2006-12-11 15:09:46 +00:00
|
|
|
AM_CONDITIONAL(GENINSRC_NEVER, false)
|
1999-05-03 07:29:11 +00:00
|
|
|
AC_EXEEXT
|
1999-06-22 22:50:22 +00:00
|
|
|
if test -n "$EXEEXT"; then
|
|
|
|
AC_DEFINE(HAVE_EXECUTABLE_SUFFIX, 1,
|
|
|
|
[Does the platform use an executable suffix?])
|
|
|
|
fi
|
Based on patches from Mumit Khan <khan@xraylith.wisc.EDU>:
* configure.in: Define EXECUTABLE_SUFFIX.
* dlltool.c: Include "dyn-string.h". Include <stdarg.h> based on
ANSI_PROTOTYPES, not __STDC__.
(outfile): Remove.
(gen_exp_file): Change uses of outfile to use alloca.
(make_one_lib_file, make_head, make_tail): Likewise.
(gen_lib_file): Likewise.
(look_for_prog): New static function.
(deduce_name): Rewrite to use look_for_prog.
(mcore_elf_gen_out_file): Use dyn_string_t rather than outfile.
* dllwrap.c: Don't include <stdio.h>, <errno.h>, <string.h>,
<stdlib.h>, or <unistd.h>. Include <sys/stat.h> and either
<stdarg.h> or <varargs.h>.
(driver_name): Initialize to NULL, not "gcc".
(dlltool_name): Initialize to NULL, not "dlltool".
(display, inform, look_for_prog, deduce_name): New static
functions.
(usage): Mention -mno-cygwin.
(OPTION_MNO_CYGWIN): Define.
(main): Handle -mno-cygwin. Deduce driver_name and dlltool_name.
* resrc.c (look_for_default): Make static. Remove unused local
path. Check using EXECUTABLE_SUFFIX.
(read_rc_file): Allocate enough space to hold EXECUTABLE_SUFFIX.
* Makefile.am: Rebuild dependencies.
(dllwrap_LDADD): Add $(INTLLIBS).
* configure, Makefile.in, config.in: Rebuild.
1999-06-22 20:39:46 +00:00
|
|
|
AC_DEFINE_UNQUOTED(EXECUTABLE_SUFFIX, "${EXEEXT}",
|
|
|
|
[Suffix used for executables, if any.])
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
# host-specific stuff:
|
|
|
|
|
|
|
|
HDEFINES=
|
|
|
|
|
|
|
|
. ${srcdir}/../bfd/configure.host
|
|
|
|
|
|
|
|
AC_SUBST(HDEFINES)
|
|
|
|
AR=${AR-ar}
|
|
|
|
AC_SUBST(AR)
|
|
|
|
AC_PROG_RANLIB
|
|
|
|
AC_PROG_INSTALL
|
|
|
|
|
|
|
|
BFD_CC_FOR_BUILD
|
|
|
|
|
1999-08-08 18:09:48 +00:00
|
|
|
DEMANGLER_NAME=c++filt
|
|
|
|
case "${host}" in
|
|
|
|
*-*-go32* | *-*-msdos*)
|
|
|
|
DEMANGLER_NAME=cxxfilt
|
|
|
|
esac
|
|
|
|
AC_SUBST(DEMANGLER_NAME)
|
|
|
|
|
2014-12-11 05:32:35 +00:00
|
|
|
AC_CHECK_SIZEOF([long])
|
|
|
|
AC_CHECK_TYPES([long long], [AC_CHECK_SIZEOF(long long)])
|
|
|
|
|
2012-10-30 12:44:58 +00:00
|
|
|
AC_CHECK_HEADERS(string.h strings.h stdlib.h unistd.h fcntl.h sys/file.h limits.h locale.h sys/param.h wchar.h)
|
1999-05-03 07:29:11 +00:00
|
|
|
AC_HEADER_SYS_WAIT
|
2012-05-11 14:25:30 +00:00
|
|
|
ACX_HEADER_STRING
|
1999-05-03 07:29:11 +00:00
|
|
|
AC_FUNC_ALLOCA
|
2012-04-05 08:43:41 +00:00
|
|
|
AC_CHECK_FUNCS(sbrk utimes setmode getc_unlocked strcoll setlocale)
|
2006-10-13 09:43:29 +00:00
|
|
|
AC_CHECK_FUNC([mkstemp],
|
|
|
|
AC_DEFINE([HAVE_MKSTEMP], 1,
|
|
|
|
[Define to 1 if you have the `mkstemp' function.]))
|
|
|
|
AC_CHECK_FUNC([mkdtemp],
|
|
|
|
AC_DEFINE([HAVE_MKDTEMP], 1,
|
|
|
|
[Define to 1 if you have the `mkdtemp' function.]))
|
2012-10-30 12:44:58 +00:00
|
|
|
AC_MSG_CHECKING([for mbstate_t])
|
|
|
|
AC_TRY_COMPILE([#include <wchar.h>],
|
|
|
|
[mbstate_t teststate;],
|
|
|
|
have_mbstate_t=yes, have_mbstate_t=no)
|
|
|
|
AC_MSG_RESULT($have_mbstate_t)
|
|
|
|
if test x"$have_mbstate_t" = xyes; then
|
|
|
|
AC_DEFINE(HAVE_MBSTATE_T,1,[Define if mbstate_t exists in wchar.h.])
|
|
|
|
fi
|
2001-12-04 10:11:22 +00:00
|
|
|
|
1999-06-12 15:20:21 +00:00
|
|
|
# Some systems have frexp only in -lm, not in -lc.
|
2000-02-26 00:59:51 +00:00
|
|
|
AC_SEARCH_LIBS(frexp, m)
|
1999-06-12 15:20:21 +00:00
|
|
|
|
2012-04-05 08:43:41 +00:00
|
|
|
AM_LC_MESSAGES
|
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
AC_MSG_CHECKING(for time_t in time.h)
|
|
|
|
AC_CACHE_VAL(bu_cv_decl_time_t_time_h,
|
2008-08-24 03:13:05 +00:00
|
|
|
[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include <time.h>], [time_t i;])],
|
1999-05-03 07:29:11 +00:00
|
|
|
bu_cv_decl_time_t_time_h=yes, bu_cv_decl_time_t_time_h=no)])
|
|
|
|
AC_MSG_RESULT($bu_cv_decl_time_t_time_h)
|
|
|
|
if test $bu_cv_decl_time_t_time_h = yes; then
|
|
|
|
AC_DEFINE([HAVE_TIME_T_IN_TIME_H], 1,
|
|
|
|
[Is the type time_t defined in <time.h>?])
|
|
|
|
fi
|
|
|
|
|
|
|
|
AC_MSG_CHECKING(for time_t in sys/types.h)
|
|
|
|
AC_CACHE_VAL(bu_cv_decl_time_t_types_h,
|
2008-08-24 03:13:05 +00:00
|
|
|
[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include <sys/types.h>], [time_t i;])],
|
1999-05-03 07:29:11 +00:00
|
|
|
bu_cv_decl_time_t_types_h=yes, bu_cv_decl_time_t_types_h=no)])
|
|
|
|
AC_MSG_RESULT($bu_cv_decl_time_t_types_h)
|
|
|
|
if test $bu_cv_decl_time_t_types_h = yes; then
|
|
|
|
AC_DEFINE([HAVE_TIME_T_IN_TYPES_H], 1,
|
|
|
|
[Is the type time_t defined in <sys/types.h>?])
|
|
|
|
fi
|
|
|
|
|
2005-03-31 14:40:41 +00:00
|
|
|
AC_MSG_CHECKING(for a known getopt prototype in unistd.h)
|
|
|
|
AC_CACHE_VAL(bu_cv_decl_getopt_unistd_h,
|
2008-08-24 03:13:05 +00:00
|
|
|
[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include <unistd.h>], [extern int getopt (int, char *const*, const char *);])],
|
2005-03-31 14:40:41 +00:00
|
|
|
bu_cv_decl_getopt_unistd_h=yes, bu_cv_decl_getopt_unistd_h=no)])
|
|
|
|
AC_MSG_RESULT($bu_cv_decl_getopt_unistd_h)
|
|
|
|
if test $bu_cv_decl_getopt_unistd_h = yes; then
|
|
|
|
AC_DEFINE([HAVE_DECL_GETOPT], 1,
|
|
|
|
[Is the prototype for getopt in <unistd.h> in the expected format?])
|
|
|
|
fi
|
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
# Under Next 3.2 <utime.h> apparently does not define struct utimbuf
|
|
|
|
# by default.
|
|
|
|
AC_MSG_CHECKING([for utime.h])
|
|
|
|
AC_CACHE_VAL(bu_cv_header_utime_h,
|
2008-08-24 03:13:05 +00:00
|
|
|
[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include <sys/types.h>
|
1999-05-03 07:29:11 +00:00
|
|
|
#ifdef HAVE_TIME_H
|
|
|
|
#include <time.h>
|
|
|
|
#endif
|
|
|
|
#include <utime.h>],
|
2008-08-24 03:13:05 +00:00
|
|
|
[struct utimbuf s;])],
|
1999-05-03 07:29:11 +00:00
|
|
|
bu_cv_header_utime_h=yes, bu_cv_header_utime_h=no)])
|
|
|
|
AC_MSG_RESULT($bu_cv_header_utime_h)
|
|
|
|
if test $bu_cv_header_utime_h = yes; then
|
|
|
|
AC_DEFINE(HAVE_GOOD_UTIME_H, 1, [Does <utime.h> define struct utimbuf?])
|
|
|
|
fi
|
|
|
|
|
2013-04-05 04:13:41 +00:00
|
|
|
AC_CHECK_DECLS([environ, fprintf, getc_unlocked, getenv,
|
|
|
|
sbrk, snprintf, stpcpy, strnlen, strstr, vsnprintf])
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2015-03-31 12:55:46 +00:00
|
|
|
# Link in zlib if we can. This allows us to read compressed debug
|
|
|
|
# sections. This is used only by readelf.c (objdump uses bfd for
|
|
|
|
# reading compressed sections).
|
|
|
|
AM_ZLIB
|
2008-07-10 01:32:23 +00:00
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
BFD_BINARY_FOPEN
|
|
|
|
|
|
|
|
# target-specific stuff:
|
|
|
|
|
|
|
|
# Canonicalize the secondary target names.
|
|
|
|
if test -n "$enable_targets"; then
|
|
|
|
for targ in `echo $enable_targets | sed 's/,/ /g'`
|
|
|
|
do
|
1999-09-14 23:29:35 +00:00
|
|
|
result=`$ac_config_sub $targ 2>/dev/null`
|
1999-05-03 07:29:11 +00:00
|
|
|
if test -n "$result"; then
|
|
|
|
canon_targets="$canon_targets $result"
|
|
|
|
else
|
|
|
|
# Allow targets that config.sub doesn't recognize, like "all".
|
|
|
|
canon_targets="$canon_targets $targ"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
* Makefile.am: Add LIBICONV to windres.
* acinclude.m4: Added missing "lib-*.m4" and "lt*.m4" files.
* configure.in: Add AC_CHECK_HEADER for iconv.h and use AM_ICONV.
* config.in: Add ICONV defines.
* aclocal: Regenerate.
* confugure: Regenerate.
* winduni.c: (local_iconv_map codepages, wind_language_t, languages, unicode_is$
(ascii_from_unicode): Use codepage_from_unicode.
(ascii_from_unicode): Use unicode_from_codepage.
Use for cygwin windows API for unicode transformation.
* winduni.h: (CP_ACP, CP_UTF7, CP_UTF8, CP_OEM, CP_UTF16): New macros.
(wind_language_t, local_iconv_map): New types.
(wind_find_language_by_id, wind_find_language_by_codepage,
(unicode_is_valid_codepage, wind_find_codepage_info, unicode_from_codepage, c$
2007-06-05 13:10:30 +00:00
|
|
|
AC_CHECK_HEADER(iconv.h)
|
|
|
|
AM_ICONV
|
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
all_targets=false
|
|
|
|
BUILD_NLMCONV=
|
|
|
|
NLMCONV_DEFS=
|
|
|
|
BUILD_SRCONV=
|
|
|
|
BUILD_DLLTOOL=
|
|
|
|
DLLTOOL_DEFS=
|
2007-02-02 13:59:54 +00:00
|
|
|
DLLTOOL_DEFAULT=
|
1999-05-03 07:29:11 +00:00
|
|
|
BUILD_WINDRES=
|
2007-06-19 13:24:33 +00:00
|
|
|
BUILD_WINDMC=
|
1999-05-03 07:29:11 +00:00
|
|
|
BUILD_DLLWRAP=
|
|
|
|
BUILD_MISC=
|
2007-02-28 01:29:32 +00:00
|
|
|
BUILD_INSTALL_MISC=
|
2001-01-09 20:25:31 +00:00
|
|
|
OBJDUMP_DEFS=
|
2011-05-16 12:22:13 +00:00
|
|
|
OBJDUMP_PRIVATE_VECTORS=
|
|
|
|
OBJDUMP_PRIVATE_OFILES=
|
|
|
|
od_vectors=
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
for targ in $target $canon_targets
|
|
|
|
do
|
|
|
|
if test "x$targ" = "xall"; then
|
|
|
|
all_targets=true
|
|
|
|
BUILD_NLMCONV='$(NLMCONV_PROG)$(EXEEXT)'
|
|
|
|
BUILD_SRCONV='$(SRCONV_PROG)'
|
|
|
|
NLMCONV_DEFS="-DNLMCONV_I386 -DNLMCONV_ALPHA -DNLMCONV_POWERPC -DNLMCONV_SPARC"
|
2007-02-28 01:29:32 +00:00
|
|
|
BUILD_MISC="${BUILD_MISC} "'bin2c$(EXEEXT_FOR_BUILD)'
|
2007-10-16 16:05:41 +00:00
|
|
|
BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
|
|
|
|
BUILD_WINDMC='$(WINDMC_PROG)$(EXEEXT)'
|
|
|
|
BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
|
|
|
|
if test -z "$DLLTOOL_DEFAULT"; then
|
|
|
|
DLLTOOL_DEFAULT="-DDLLTOOL_DEFAULT_I386"
|
|
|
|
fi
|
|
|
|
DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_I386"
|
|
|
|
BUILD_DLLWRAP='$(DLLWRAP_PROG)$(EXEEXT)'
|
2011-05-16 12:22:13 +00:00
|
|
|
od_vectors="$od_vectors objdump_private_desc_xcoff"
|
1999-05-03 07:29:11 +00:00
|
|
|
else
|
|
|
|
case $targ in
|
|
|
|
changequote(,)dnl
|
2011-12-21 19:39:11 +00:00
|
|
|
i[3-7]86*-*-netware*)
|
1999-05-03 07:29:11 +00:00
|
|
|
changequote([,])dnl
|
|
|
|
BUILD_NLMCONV='$(NLMCONV_PROG)$(EXEEXT)'
|
|
|
|
NLMCONV_DEFS="$NLMCONV_DEFS -DNLMCONV_I386"
|
|
|
|
;;
|
|
|
|
alpha*-*-netware*)
|
|
|
|
BUILD_NLMCONV='$(NLMCONV_PROG)$(EXEEXT)'
|
|
|
|
NLMCONV_DEFS="$NLMCONV_DEFS -DNLMCONV_ALPHA"
|
|
|
|
;;
|
|
|
|
powerpc*-*-netware*)
|
|
|
|
BUILD_NLMCONV='$(NLMCONV_PROG)$(EXEEXT)'
|
|
|
|
NLMCONV_DEFS="$NLMCONV_DEFS -DNLMCONV_POWERPC"
|
|
|
|
;;
|
|
|
|
sparc*-*-netware*)
|
|
|
|
BUILD_NLMCONV='$(NLMCONV_PROG)$(EXEEXT)'
|
|
|
|
NLMCONV_DEFS="$NLMCONV_DEFS -DNLMCONV_SPARC"
|
|
|
|
;;
|
|
|
|
esac
|
2011-05-16 12:22:13 +00:00
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
case $targ in
|
|
|
|
*-*-hms*) BUILD_SRCONV='$(SRCONV_PROG)' ;;
|
|
|
|
esac
|
2011-05-16 12:22:13 +00:00
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
case $targ in
|
2000-12-19 22:22:02 +00:00
|
|
|
arm-epoc-pe*)
|
|
|
|
BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
|
2007-02-02 13:59:54 +00:00
|
|
|
if test -z "$DLLTOOL_DEFAULT"; then
|
|
|
|
DLLTOOL_DEFAULT="-DDLLTOOL_DEFAULT_ARM_EPOC"
|
|
|
|
fi
|
2000-12-19 22:22:02 +00:00
|
|
|
DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_ARM_EPOC -DDLLTOOL_ARM"
|
|
|
|
BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
|
2007-06-19 13:24:33 +00:00
|
|
|
BUILD_WINDMC='$(WINDMC_PROG)$(EXEEXT)'
|
2000-12-19 22:22:02 +00:00
|
|
|
;;
|
2009-06-18 02:11:03 +00:00
|
|
|
arm-wince-pe* | arm-*-wince | arm*-*-cegcc* | arm*-*-mingw32ce*)
|
2006-08-21 08:12:46 +00:00
|
|
|
BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
|
2007-02-02 13:59:54 +00:00
|
|
|
if test -z "$DLLTOOL_DEFAULT"; then
|
|
|
|
DLLTOOL_DEFAULT="-DDLLTOOL_DEFAULT_ARM_WINCE"
|
|
|
|
fi
|
2006-08-21 08:12:46 +00:00
|
|
|
DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_ARM_WINCE -DDLLTOOL_ARM"
|
|
|
|
BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
|
2007-06-19 13:24:33 +00:00
|
|
|
BUILD_WINDMC='$(WINDMC_PROG)$(EXEEXT)'
|
2006-08-21 08:12:46 +00:00
|
|
|
;;
|
|
|
|
arm-*-pe*)
|
1999-05-03 07:29:11 +00:00
|
|
|
BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
|
2007-02-02 13:59:54 +00:00
|
|
|
if test -z "$DLLTOOL_DEFAULT"; then
|
|
|
|
DLLTOOL_DEFAULT="-DDLLTOOL_DEFAULT_ARM"
|
|
|
|
fi
|
1999-05-03 07:29:11 +00:00
|
|
|
DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_ARM"
|
|
|
|
BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
|
2007-06-19 13:24:33 +00:00
|
|
|
BUILD_WINDMC='$(WINDMC_PROG)$(EXEEXT)'
|
1999-08-05 15:35:10 +00:00
|
|
|
;;
|
2013-03-05 11:52:12 +00:00
|
|
|
x86_64-*-mingw* | x86_64-*-cygwin*)
|
2006-09-20 11:35:11 +00:00
|
|
|
BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
|
2007-02-02 13:59:54 +00:00
|
|
|
if test -z "$DLLTOOL_DEFAULT"; then
|
|
|
|
DLLTOOL_DEFAULT="-DDLLTOOL_DEFAULT_MX86_64"
|
|
|
|
fi
|
2006-09-20 11:35:11 +00:00
|
|
|
DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_MX86_64"
|
|
|
|
BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
|
2007-06-19 13:24:33 +00:00
|
|
|
BUILD_WINDMC='$(WINDMC_PROG)$(EXEEXT)'
|
2006-09-20 11:35:11 +00:00
|
|
|
BUILD_DLLWRAP='$(DLLWRAP_PROG)$(EXEEXT)'
|
|
|
|
;;
|
1999-05-03 07:29:11 +00:00
|
|
|
changequote(,)dnl
|
2003-05-16 16:30:27 +00:00
|
|
|
i[3-7]86-*-pe* | i[3-7]86-*-cygwin* | i[3-7]86-*-mingw32** | i[3-7]86-*-netbsdpe*)
|
1999-05-03 07:29:11 +00:00
|
|
|
changequote([,])dnl
|
|
|
|
BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
|
2007-02-02 13:59:54 +00:00
|
|
|
if test -z "$DLLTOOL_DEFAULT"; then
|
|
|
|
DLLTOOL_DEFAULT="-DDLLTOOL_DEFAULT_I386"
|
|
|
|
fi
|
1999-05-03 07:29:11 +00:00
|
|
|
DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_I386"
|
|
|
|
BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
|
2007-06-19 13:24:33 +00:00
|
|
|
BUILD_WINDMC='$(WINDMC_PROG)$(EXEEXT)'
|
1999-05-03 07:29:11 +00:00
|
|
|
BUILD_DLLWRAP='$(DLLWRAP_PROG)$(EXEEXT)'
|
1999-08-05 15:35:10 +00:00
|
|
|
;;
|
2003-05-16 16:30:27 +00:00
|
|
|
changequote(,)dnl
|
|
|
|
i[3-7]86-*-interix)
|
|
|
|
changequote([,])dnl
|
1999-08-05 15:35:10 +00:00
|
|
|
BUILD_DLLTOOL='$(DLLTOOL_PROG)'
|
2007-02-02 13:59:54 +00:00
|
|
|
if test -z "$DLLTOOL_DEFAULT"; then
|
|
|
|
DLLTOOL_DEFAULT="-DDLLTOOL_DEFAULT_I386"
|
|
|
|
fi
|
1999-08-05 15:35:10 +00:00
|
|
|
DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_I386"
|
|
|
|
;;
|
2004-01-02 17:08:05 +00:00
|
|
|
changequote(,)dnl
|
|
|
|
powerpc*-aix5.[01])
|
|
|
|
changequote([,])dnl
|
|
|
|
;;
|
2009-03-14 09:11:38 +00:00
|
|
|
changequote(,)dnl
|
|
|
|
powerpc*-aix[5-9].*)
|
|
|
|
changequote([,])dnl
|
2004-01-02 17:08:05 +00:00
|
|
|
OBJDUMP_DEFS="-DAIX_WEAK_SUPPORT"
|
|
|
|
;;
|
2002-05-08 23:15:36 +00:00
|
|
|
powerpc*-*-pe* | powerpc*-*-cygwin*)
|
1999-05-03 07:29:11 +00:00
|
|
|
BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
|
2007-02-02 13:59:54 +00:00
|
|
|
if test -z "$DLLTOOL_DEFAULT"; then
|
|
|
|
DLLTOOL_DEFAULT="-DDLLTOOL_DEFAULT_PPC"
|
|
|
|
fi
|
1999-05-03 07:29:11 +00:00
|
|
|
DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_PPC"
|
|
|
|
BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
|
2007-06-19 13:24:33 +00:00
|
|
|
BUILD_WINDMC='$(WINDMC_PROG)$(EXEEXT)'
|
1999-08-05 15:35:10 +00:00
|
|
|
;;
|
2007-08-24 15:37:37 +00:00
|
|
|
powerpc*-*-linux* | powerpc*-*-elf* | powerpc*-*-eabi*)
|
2011-05-31 08:54:47 +00:00
|
|
|
case "$BUILD_INSTALL_MISC" in
|
|
|
|
*embedspu*) ;;
|
|
|
|
*) BUILD_INSTALL_MISC="${BUILD_INSTALL_MISC} embedspu"
|
|
|
|
esac
|
2007-01-11 06:24:40 +00:00
|
|
|
;;
|
2002-05-08 23:15:36 +00:00
|
|
|
sh*-*-pe)
|
2000-02-24 19:37:32 +00:00
|
|
|
BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
|
2007-02-02 13:59:54 +00:00
|
|
|
if test -z "$DLLTOOL_DEFAULT"; then
|
|
|
|
DLLTOOL_DEFAULT="-DDLLTOOL_DEFAULT_SH"
|
|
|
|
fi
|
2000-02-24 19:37:32 +00:00
|
|
|
DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_SH"
|
|
|
|
BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
|
2007-06-19 13:24:33 +00:00
|
|
|
BUILD_WINDMC='$(WINDMC_PROG)$(EXEEXT)'
|
2000-02-24 19:37:32 +00:00
|
|
|
;;
|
2007-02-27 08:31:46 +00:00
|
|
|
spu-*-*)
|
2007-02-28 01:29:32 +00:00
|
|
|
BUILD_MISC="${BUILD_MISC} "'bin2c$(EXEEXT_FOR_BUILD)'
|
2007-02-27 08:31:46 +00:00
|
|
|
;;
|
2002-05-08 23:15:36 +00:00
|
|
|
mips*-*-pe)
|
2000-02-24 19:37:32 +00:00
|
|
|
BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
|
2007-02-02 13:59:54 +00:00
|
|
|
if test -z "$DLLTOOL_DEFAULT"; then
|
|
|
|
DLLTOOL_DEFAULT="-DDLLTOOL_DEFAULT_MIPS"
|
|
|
|
fi
|
2000-02-24 19:37:32 +00:00
|
|
|
DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_MIPS"
|
|
|
|
BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
|
2007-06-19 13:24:33 +00:00
|
|
|
BUILD_WINDMC='$(WINDMC_PROG)$(EXEEXT)'
|
2000-02-24 19:37:32 +00:00
|
|
|
;;
|
2003-04-01 10:52:43 +00:00
|
|
|
mcore-*-pe)
|
1999-05-15 15:25:22 +00:00
|
|
|
BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
|
2007-02-02 13:59:54 +00:00
|
|
|
if test -z "$DLLTOOL_DEFAULT"; then
|
|
|
|
DLLTOOL_DEFAULT="-DDLLTOOL_DEFAULT_MCORE"
|
|
|
|
fi
|
1999-05-15 15:25:22 +00:00
|
|
|
DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_MCORE"
|
|
|
|
BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
|
2007-06-19 13:24:33 +00:00
|
|
|
BUILD_WINDMC='$(WINDMC_PROG)$(EXEEXT)'
|
1999-08-05 15:35:10 +00:00
|
|
|
;;
|
2003-04-01 10:52:43 +00:00
|
|
|
mcore-*-elf)
|
1999-05-15 15:25:22 +00:00
|
|
|
BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
|
2007-02-02 13:59:54 +00:00
|
|
|
if test -z "$DLLTOOL_DEFAULT"; then
|
|
|
|
DLLTOOL_DEFAULT="-DDLLTOOL_DEFAULT_MCORE_ELF"
|
|
|
|
fi
|
1999-05-15 15:25:22 +00:00
|
|
|
DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_MCORE_ELF"
|
1999-08-05 15:35:10 +00:00
|
|
|
;;
|
2007-02-05 19:56:32 +00:00
|
|
|
mep-*)
|
|
|
|
OBJDUMP_DEFS="-DSKIP_ZEROES=256 -DSKIP_ZEROES_AT_END=0"
|
|
|
|
;;
|
1999-05-03 07:29:11 +00:00
|
|
|
esac
|
2011-05-16 12:22:13 +00:00
|
|
|
|
|
|
|
# Add objdump private vectors.
|
|
|
|
case $targ in
|
2014-12-08 17:35:24 +00:00
|
|
|
avr-*-*)
|
|
|
|
od_vectors="$od_vectors objdump_private_desc_elf32_avr"
|
|
|
|
;;
|
2011-05-16 12:22:13 +00:00
|
|
|
powerpc-*-aix*)
|
2011-12-13 09:13:15 +00:00
|
|
|
od_vectors="$od_vectors objdump_private_desc_xcoff"
|
|
|
|
;;
|
|
|
|
*-*-darwin*)
|
|
|
|
od_vectors="$od_vectors objdump_private_desc_mach_o"
|
2011-05-16 12:22:13 +00:00
|
|
|
;;
|
|
|
|
esac
|
1999-05-03 07:29:11 +00:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2011-05-16 12:22:13 +00:00
|
|
|
# Uniq objdump private vector, build objdump target ofiles.
|
|
|
|
od_files=
|
|
|
|
f=""
|
|
|
|
for i in $od_vectors ; do
|
|
|
|
case " $f " in
|
|
|
|
*" $i "*) ;;
|
|
|
|
*)
|
|
|
|
f="$f $i"
|
|
|
|
OBJDUMP_PRIVATE_VECTORS="$OBJDUMP_PRIVATE_VECTORS &$i,"
|
|
|
|
case $i in
|
2014-12-08 17:35:24 +00:00
|
|
|
objdump_private_desc_elf32_avr)
|
|
|
|
od_files="$od_files od-elf32_avr" ;;
|
2011-05-16 12:22:13 +00:00
|
|
|
objdump_private_desc_xcoff)
|
|
|
|
od_files="$od_files od-xcoff" ;;
|
2011-12-13 09:13:15 +00:00
|
|
|
objdump_private_desc_mach_o)
|
|
|
|
od_files="$od_files od-macho" ;;
|
2011-05-16 12:22:13 +00:00
|
|
|
*) AC_MSG_ERROR(*** unknown private vector $i) ;;
|
|
|
|
esac
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
# Uniq objdump target ofiles
|
|
|
|
f=""
|
|
|
|
for i in $od_files ; do
|
|
|
|
case " $f " in
|
|
|
|
*" $i "*) ;;
|
|
|
|
*)
|
|
|
|
f="$f $i"
|
|
|
|
OBJDUMP_PRIVATE_OFILES="$OBJDUMP_PRIVATE_OFILES $i.$objext"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
2007-02-02 13:59:54 +00:00
|
|
|
DLLTOOL_DEFS="$DLLTOOL_DEFS $DLLTOOL_DEFAULT"
|
|
|
|
|
2001-08-03 16:27:22 +00:00
|
|
|
if test "${with_windres+set}" = set; then
|
|
|
|
BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
|
|
|
|
fi
|
|
|
|
|
2007-06-19 13:24:33 +00:00
|
|
|
if test "${with_windmc+set}" = set; then
|
|
|
|
BUILD_WINDMC='$(WINDMC_PROG)$(EXEEXT)'
|
|
|
|
fi
|
|
|
|
|
2011-05-16 12:22:13 +00:00
|
|
|
OBJDUMP_DEFS="${OBJDUMP_DEFS} -DOBJDUMP_PRIVATE_VECTORS=\"${OBJDUMP_PRIVATE_VECTORS}\""
|
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
AC_SUBST(NLMCONV_DEFS)
|
|
|
|
AC_SUBST(BUILD_NLMCONV)
|
|
|
|
AC_SUBST(BUILD_SRCONV)
|
|
|
|
AC_SUBST(BUILD_DLLTOOL)
|
|
|
|
AC_SUBST(DLLTOOL_DEFS)
|
|
|
|
AC_SUBST(BUILD_WINDRES)
|
2007-06-19 13:24:33 +00:00
|
|
|
AC_SUBST(BUILD_WINDMC)
|
1999-05-03 07:29:11 +00:00
|
|
|
AC_SUBST(BUILD_DLLWRAP)
|
|
|
|
AC_SUBST(BUILD_MISC)
|
2007-02-28 01:29:32 +00:00
|
|
|
AC_SUBST(BUILD_INSTALL_MISC)
|
2001-01-09 20:25:31 +00:00
|
|
|
AC_SUBST(OBJDUMP_DEFS)
|
2011-05-16 12:22:13 +00:00
|
|
|
AC_SUBST(OBJDUMP_PRIVATE_OFILES)
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
AC_DEFINE_UNQUOTED(TARGET, "${target}", [Configured target name.])
|
|
|
|
|
|
|
|
targ=$target
|
|
|
|
. $srcdir/../bfd/config.bfd
|
|
|
|
if test "x$targ_underscore" = "xyes"; then
|
|
|
|
UNDERSCORE=1
|
|
|
|
else
|
|
|
|
UNDERSCORE=0
|
|
|
|
fi
|
2002-09-17 07:09:47 +00:00
|
|
|
AC_DEFINE_UNQUOTED(TARGET_PREPENDS_UNDERSCORE, $UNDERSCORE,
|
|
|
|
[Define to 1 if user symbol names have a leading underscore, 0 if not.])
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2011-12-21 19:39:11 +00:00
|
|
|
# Emulation
|
2009-09-28 12:48:16 +00:00
|
|
|
targ=$target
|
|
|
|
. ${srcdir}/configure.tgt
|
|
|
|
EMULATION=$targ_emul
|
2011-12-21 19:39:11 +00:00
|
|
|
EMULATION_VECTOR=$targ_emul_vector
|
2002-03-18 12:46:27 +00:00
|
|
|
|
|
|
|
AC_SUBST(EMULATION)
|
|
|
|
AC_SUBST(EMULATION_VECTOR)
|
|
|
|
|
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* Makefile.tpl: Add install-html target.
* Makefile.def: Add install-html target.
* Makefile.in: Regenerate.
* configure.in: Add --with-datarootdir, --with-docdir,
and --with-htmldir options.
* configure: Regenerate.
bfd/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* po/Make-in: Add install-html target.
* Makefile.am: Rename docdir to bfddocdir. Add datarootdir, docdir
htmldir. Add install-html and install-html-recursive targets.
* Makefile.in: Regenerate.
* configure.in: AC_SUBST for datarootdir, docdir and htmldir.
* configure: Regenerate.
bfd/doc/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* Makefile.am: Add install-html and install-html-am targets.
Define datarootdir, docdir and htmldir.
* Makefile.in: Regenerate.
binutils/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* po/Make-in: Add install-html target.
* Makefile.am: Add install-html and install-html-recursive targets.
* Makefile.in: Regenerate.
* configure.in: AC_SUBST datarootdir, docdir and htmldir.
* configure: Regenerate.
* doc/Makefile.am: Add install-html and install-html-am targets.
* doc/Makefile.in: Regenerate.
etc/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* Makefile.in: Add install-html target. Add htmldir,
docdir and datarootdir.
* configure.texi: Document install-html target.
* configure.in: AC_SUBST datarootdir, docdir, htmldir.
* configure: Regenerate.
gas/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* po/Make-in: Add install-html target.
* Makefile.am: Add install-html and install-html-recursive targets.
* Makefile.in: Regenerate.
* configure.in: AC_SUBST datarootdir, docdir, htmldir.
* configure: Regenerate.
* doc/Makefile.am: Add install-html and install-html-am targets.
* doc/Makefile.in: Regenerate.
gprof/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* po/Make-in: Add install-html target.
* Makefile.am: Add install-html, install-html-am and
install-html-recursive targets.
* Makefile.in: Regenerate.
* configure.in: AC_SUBST datarootdir, docdir, htmldir.
* configure: Regenerate.
intl/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* intl/Makefile.in: Add html info and dvi and install-html to .PHONY
Add install-html target.
ld/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* Makefile.am: Add install-html, install-html-am, and
install-html-recursive targets.
* Makefile.in: Regenerate.
* configure.in: AC_SUBST datarootdir, docdir, htmldir.
* configure: Regenerate.
* po/Make-in: Add install-html target.
opcodes/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* Makefile.am: Add install-html target.
* Makefile.in: Regenerate.
2006-04-06 21:49:35 +00:00
|
|
|
# Required for html and install-html
|
|
|
|
AC_SUBST(datarootdir)
|
|
|
|
AC_SUBST(docdir)
|
|
|
|
AC_SUBST(htmldir)
|
2009-02-03 15:54:05 +00:00
|
|
|
AC_SUBST(pdfdir)
|
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* Makefile.tpl: Add install-html target.
* Makefile.def: Add install-html target.
* Makefile.in: Regenerate.
* configure.in: Add --with-datarootdir, --with-docdir,
and --with-htmldir options.
* configure: Regenerate.
bfd/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* po/Make-in: Add install-html target.
* Makefile.am: Rename docdir to bfddocdir. Add datarootdir, docdir
htmldir. Add install-html and install-html-recursive targets.
* Makefile.in: Regenerate.
* configure.in: AC_SUBST for datarootdir, docdir and htmldir.
* configure: Regenerate.
bfd/doc/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* Makefile.am: Add install-html and install-html-am targets.
Define datarootdir, docdir and htmldir.
* Makefile.in: Regenerate.
binutils/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* po/Make-in: Add install-html target.
* Makefile.am: Add install-html and install-html-recursive targets.
* Makefile.in: Regenerate.
* configure.in: AC_SUBST datarootdir, docdir and htmldir.
* configure: Regenerate.
* doc/Makefile.am: Add install-html and install-html-am targets.
* doc/Makefile.in: Regenerate.
etc/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* Makefile.in: Add install-html target. Add htmldir,
docdir and datarootdir.
* configure.texi: Document install-html target.
* configure.in: AC_SUBST datarootdir, docdir, htmldir.
* configure: Regenerate.
gas/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* po/Make-in: Add install-html target.
* Makefile.am: Add install-html and install-html-recursive targets.
* Makefile.in: Regenerate.
* configure.in: AC_SUBST datarootdir, docdir, htmldir.
* configure: Regenerate.
* doc/Makefile.am: Add install-html and install-html-am targets.
* doc/Makefile.in: Regenerate.
gprof/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* po/Make-in: Add install-html target.
* Makefile.am: Add install-html, install-html-am and
install-html-recursive targets.
* Makefile.in: Regenerate.
* configure.in: AC_SUBST datarootdir, docdir, htmldir.
* configure: Regenerate.
intl/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* intl/Makefile.in: Add html info and dvi and install-html to .PHONY
Add install-html target.
ld/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* Makefile.am: Add install-html, install-html-am, and
install-html-recursive targets.
* Makefile.in: Regenerate.
* configure.in: AC_SUBST datarootdir, docdir, htmldir.
* configure: Regenerate.
* po/Make-in: Add install-html target.
opcodes/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* Makefile.am: Add install-html target.
* Makefile.in: Regenerate.
2006-04-06 21:49:35 +00:00
|
|
|
|
2008-08-24 03:13:05 +00:00
|
|
|
AC_CONFIG_FILES(Makefile doc/Makefile po/Makefile.in:po/Make-in)
|
|
|
|
AC_OUTPUT
|