| 1 |
# -*- Autoconf -*-
|
| 2 |
# Process this file with autoconf to produce a configure script.
|
| 3 |
|
| 4 |
AC_PREREQ(2.59)
|
| 5 |
AC_INIT(stardata-common, 0.4, franciscomanuel.garcia@hispalinux.es)
|
| 6 |
AC_CONFIG_SRCDIR(config.h.in)
|
| 7 |
#AC_CONFIG_HEADER(config.h)
|
| 8 |
|
| 9 |
# Checks for programs.
|
| 10 |
AC_PROG_CC
|
| 11 |
|
| 12 |
# Checks for libraries.
|
| 13 |
|
| 14 |
# Checks for header files.
|
| 15 |
AC_HEADER_DIRENT
|
| 16 |
AC_HEADER_STDC
|
| 17 |
AC_CHECK_HEADERS(stdlib.h string.h)
|
| 18 |
|
| 19 |
AC_PROG_MAKE_SET
|
| 20 |
AC_ARG_PROGRAM
|
| 21 |
AC_PROG_INSTALL
|
| 22 |
|
| 23 |
|
| 24 |
# Checks for typedefs, structures, and compiler characteristics.
|
| 25 |
AC_C_CONST
|
| 26 |
|
| 27 |
# Checks for library functions.
|
| 28 |
AC_FUNC_CLOSEDIR_VOID
|
| 29 |
|
| 30 |
|
| 31 |
AM_AUTOMAKE_VERSION(1.4-p6)
|
| 32 |
AM_INIT_AUTOMAKE
|
| 33 |
|
| 34 |
AC_CONFIG_FILES([Makefile
|
| 35 |
doc/Makefile
|
| 36 |
src/Makefile])
|
| 37 |
AC_OUTPUT
|
| 38 |
|