initial commit

This commit is contained in:
2011-11-15 14:41:46 +04:00
commit ff3f30d3a6
11 changed files with 297 additions and 0 deletions

22
configure.ac Normal file
View File

@ -0,0 +1,22 @@
AC_PREREQ([2.68])
AC_INIT(yasnd, 0.1, admin@pinkbyte.ru)
AC_CONFIG_SRCDIR([yasnd.c])
AC_CONFIG_HEADERS([config.h])
AC_LANG([C])
AM_INIT_AUTOMAKE
# Checks for programs.
AC_PROG_CC
# Checks for libraries.
PKG_CHECK_MODULES([gammu], [gammu >= 1.0])
# Checks for header files.
AC_CHECK_HEADERS([fcntl.h stdlib.h string.h syslog.h unistd.h])
# Checks for typedefs, structures, and compiler characteristics.
# Checks for library functions.
AC_CONFIG_FILES([Makefile])
AC_OUTPUT