| 1 |
# -*- Autoconf -*-
|
| 2 |
# Process this file with autoconf to produce a configure script.
|
| 3 |
|
| 4 |
AC_PREREQ(2.5)
|
| 5 |
AC_INIT(bbsd, 1.0, leaflet@leafok.com)
|
| 6 |
AM_INIT_AUTOMAKE(bbsd, 1.0)
|
| 7 |
AC_CONFIG_SRCDIR([src/])
|
| 8 |
# AC_CONFIG_HEADERS([config.h])
|
| 9 |
AM_INIT_AUTOMAKE
|
| 10 |
|
| 11 |
# Checks for programs.
|
| 12 |
AC_PROG_CC
|
| 13 |
|
| 14 |
# Checks for libraries.
|
| 15 |
|
| 16 |
# Checks for header files.
|
| 17 |
|
| 18 |
# Checks for typedefs, structures, and compiler characteristics.
|
| 19 |
|
| 20 |
# Checks for library functions.
|
| 21 |
|
| 22 |
AC_CONFIG_FILES([Makefile
|
| 23 |
src/Makefile])
|
| 24 |
AC_OUTPUT
|