]> gcc.gnu.org Git - gcc.git/blob - intl/configure.in
Makefile.in: Update.
[gcc.git] / intl / configure.in
1 AC_PREREQ(2.13)
2 AC_INIT(gettext.c)
3 AC_CONFIG_AUX_DIR(..)
4 AC_CONFIG_HEADER(config.h)
5 AM_GNU_GETTEXT_VERSION(0.12.1)
6 AM_GNU_GETTEXT
7
8 dnl This replaces the extensive use of DEFS in the original Makefile.in.
9 AC_DEFINE_UNQUOTED(LOCALEDIR, "$localedir",
10 [Define to the directory holding the locale files.])
11 AC_DEFINE_UNQUOTED(LOCALE_ALIAS_PATH, "$aliaspath",
12 [Define to the locale alias path.])
13 AC_DEFINE_UNQUOTED(LIBDIR, "$libdir",
14 [Define to the library directory.])
15 AC_DEFINE_UNQUOTED(INSTALLDIR, "$libdir",
16 [Define to the installation directory.])
17 AC_DEFINE(IN_LIBINTL, 1, [Define because this is libintl.])
18 AC_DEFINE(IN_LIBRARY, 1, [Define because this is a library.])
19 AC_DEFINE(DEPENDS_ON_LIBICONV, 1, [Define because we depend on libiconv.])
20 AC_DEFINE(ENABLE_RELOCATABLE, 1, [Define to enable relocation.])
21 AC_DEFINE(NO_XMALLOC, 1, [Define if there is no xmalloc.])
22 AC_DEFINE(set_relocation_prefix, libintl_set_relocation_prefix,
23 [Define this entry point correctly.])
24 AC_DEFINE(relocate, libintl_relocate,
25 [Define this entry point correctly.])
26
27 AC_OUTPUT(Makefile)
This page took 0.037753 seconds and 5 git commands to generate.