source: git/xalloc/configure.ac @ 280286e

spielwiese
Last change on this file since 280286e was 280286e, checked in by Jan Engelhardt <jengelh@…>, 11 years ago
build: resolve automake 1.12 warnings /usr/share/automake-1.12/am/ltlibrary.am: warning: 'libomalloc.la': linking libtool libraries using a non-POSIX archiver requires 'AM_PROG_AR' in 'configure.ac'
  • Property mode set to 100644
File size: 529 bytes
Line 
1AC_INIT([xalloc], [3.1.2.sw])
2AC_CONFIG_SRCDIR(dummy.c)
3AC_CONFIG_MACRO_DIR([../m4])
4
5AC_CONFIG_AUX_DIR([.])
6
7AM_MAINTAINER_MODE
8AM_INIT_AUTOMAKE([-Wall foreign subdir-objects]) # -Wno-extra-portability -Werror silent-rules
9m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES])
10m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
11
12
13AC_PROG_MAKE_SET
14AC_PROG_CC
15AC_PROG_CPP
16
17AC_PROG_LN_S
18AC_PROG_INSTALL
19AM_PROG_CC_C_O
20
21AC_C_CONST
22AC_C_INLINE
23
24LT_INIT
25
26AM_CONDITIONAL(WANT_DEBUG, test x"${ENABLE_DEBUG}" == xyes)
27
28AC_CONFIG_FILES([Makefile])
29AC_OUTPUT
30
Note: See TracBrowser for help on using the repository browser.