1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
AC_INIT(libconfig, 0.2.6)
AC_CONFIG_HEADER(config.h)
dnl Find out about the host OS
DC_CHK_OS_INFO
dnl Checks for programs.
AC_PROG_CC
AC_PROG_MAKE_SET
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_RANLIB
AC_AIX
AC_CHECK_TOOL(AR, ar, true)
DC_DO_TYPE(uint64_t, unsigned, 8)
|
<
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
AC_INIT(libconfig, 0.2.6)
AC_CONFIG_HEADER(config.h)
dnl Find out about the host OS
DC_CHK_OS_INFO
dnl Checks for programs.
AC_PROG_CC
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_RANLIB
AC_AIX
AC_CHECK_TOOL(AR, ar, true)
DC_DO_TYPE(uint64_t, unsigned, 8)
|