mirror of
https://github.com/octoleo/lsyncd.git
synced 2025-01-07 17:14:03 +00:00
7b8b13316c
Reduce the number of header files checked in configure. Source code doesn't really use the output, and we're linux specific. Other configure.in parts are fixed to use m4 features rather than relying on shell features.
16 lines
279 B
Plaintext
16 lines
279 B
Plaintext
AC_INIT(lsyncd.c)
|
|
m4_define(LSYNCD_PACKAGE,lsyncd)
|
|
m4_define(LSYNCD_VERSION,1.0)
|
|
AM_INIT_AUTOMAKE(LSYNCD_PACKAGE,LSYNCD_VERSION)
|
|
|
|
AM_MAINTAINER_MODE
|
|
|
|
AC_PROG_CC
|
|
AC_PROG_LIBTOOL
|
|
AC_PROG_INSTALL
|
|
AC_CHECK_HEADERS([sys/inotify.h])
|
|
|
|
AC_CONFIG_HEADERS([config.h])
|
|
|
|
AC_OUTPUT(Makefile)
|