mirror of
https://github.com/octoleo/lsyncd.git
synced 2024-11-13 16:46:27 +00:00
33 lines
380 B
Plaintext
33 lines
380 B
Plaintext
|
AC_INIT(lsyncd.c)
|
||
|
PACKAGE=lsyncd
|
||
|
VERSION=1.0
|
||
|
AM_INIT_AUTOMAKE($PACKAGE,$VERSION)
|
||
|
|
||
|
AM_MAINTAINER_MODE
|
||
|
|
||
|
AC_PROG_CC
|
||
|
AC_PROG_LIBTOOL
|
||
|
AC_PROG_INSTALL
|
||
|
AC_CHECK_HEADERS(\
|
||
|
sys/types.h \
|
||
|
sys/stat.h \
|
||
|
sys/wait.h \
|
||
|
sys/inotify.h \
|
||
|
stdio.h \
|
||
|
stdlib.h \
|
||
|
stdarg.h \
|
||
|
stdbool.h \
|
||
|
string.h \
|
||
|
unistd.h \
|
||
|
errno.h \
|
||
|
time.h \
|
||
|
dirent.h \
|
||
|
getopt.h
|
||
|
)
|
||
|
|
||
|
AC_CONFIG_HEADERS(\
|
||
|
config.h
|
||
|
)
|
||
|
|
||
|
AC_OUTPUT(Makefile)
|