public
Description: End of Line FOrmatter
Homepage: http://thegeekinside.net/blog/archives/26
Clone URL: git://github.com/thegeekinside/elfo.git
elfo / configure.ac
100644 28 lines (20 sloc) 0.63 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
 
AC_PREREQ(2.59)
AC_INIT(elfo, 0.5.0RC2, thegeek@thegeekinside.net)
AM_INIT_AUTOMAKE(elfo, 0.5.0RC2)
AC_CONFIG_SRCDIR([src/elfo.c])
 
# Checks for programs.
AC_PROG_CC
 
# Checks for libraries.
 
# Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS([stdlib.h string.h unistd.h])
 
# Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
 
# Checks for library functions.
AC_FUNC_STAT
AC_FUNC_UTIME_NULL
AC_CHECK_FUNCS([utime])
 
AC_CONFIG_FILES([Makefile src/Makefile])
AC_OUTPUT