blob: df3dc15626d64bc5ab1c84c3fe2309503ceca8e4 (
plain)
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
|
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.59)
AC_INIT(musixflx, 0.83, ross.mitchell@csiro.au)
AM_INIT_AUTOMAKE
AC_CONFIG_SRCDIR([musixflx.c])
AC_CONFIG_HEADER([config.h])
# Checks for programs.
AC_PROG_CC
# Checks for libraries.
# Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS([stdlib.h string.h])
# Checks for typedefs, structures, and compiler characteristics.
# Checks for library functions.
AC_CHECK_FUNCS([strchr strrchr])
AC_CONFIG_FILES([Makefile])
AC_OUTPUT
|