1
2
3
4
5
6
7
8
9
|
AC_REVISION($Revision $)
AC_INIT(libconfig, 0.0.4)
AC_CONFIG_HEADER(config.h)
dnl Checks for programs.
AC_PROG_CC
AC_PROG_MAKE_SET
AC_PROG_INSTALL
AC_PROG_LN_S
|
|
|
1
2
3
4
5
6
7
8
9
|
AC_REVISION($Revision $)
AC_INIT(libconfig, 0.0.5)
AC_CONFIG_HEADER(config.h)
dnl Checks for programs.
AC_PROG_CC
AC_PROG_MAKE_SET
AC_PROG_INSTALL
AC_PROG_LN_S
|
24
25
26
27
28
29
30
31
32
33
|
AC_REPLACE_FUNCS(strsep)
AC_CHECK_FUNCS(getpwuid)
dnl Checks for Win32 specific things.
DC_DO_WIN32
DC_GET_SHOBJFLAGS
AC_OUTPUT(Makefile lc_geterrno.3 lc_process.3 lc_register_var.3 lc_geterrstr.3 lc_register_callback.3)
|
>
|
24
25
26
27
28
29
30
31
32
33
34
|
AC_REPLACE_FUNCS(strsep)
AC_CHECK_FUNCS(getpwuid)
dnl Checks for Win32 specific things.
DC_DO_WIN32
dnl This must be last.
DC_GET_SHOBJFLAGS
AC_OUTPUT(Makefile lc_geterrno.3 lc_process.3 lc_register_var.3 lc_geterrstr.3 lc_register_callback.3)
|