Clean up configure script
This commit is contained in:
parent
40c1f4c35c
commit
a23c5c73be
64
configure.ac
64
configure.ac
|
@ -1,31 +1,14 @@
|
|||
dnl
|
||||
dnl configure.ac Generated by project-setup
|
||||
dnl
|
||||
|
||||
AC_DEFUN([PKG_NAME], [minimodem])
|
||||
AC_DEFUN([PKG_VERSION], [0.22.1])
|
||||
AC_DEFUN([PKG_AUTHOR], [Kamal Mostafa <kamal@whence.com>])
|
||||
AC_DEFUN([PKG_BUGS_TO], [kamal@whence.com])
|
||||
|
||||
|
||||
AC_PREREQ([2.64])
|
||||
AC_INIT([minimodem], [0.22.1], [kamal@whence.com])
|
||||
AC_CONFIG_HEADERS([config.h])
|
||||
AC_CONFIG_SRCDIR([src/Makefile.in])
|
||||
AM_INIT_AUTOMAKE
|
||||
|
||||
AC_INIT(PKG_NAME, PKG_VERSION, PKG_BUGS_TO)
|
||||
|
||||
dnl Release versioning info
|
||||
VERSION=PKG_VERSION
|
||||
VERSION=PACKAGE_VERSION
|
||||
AC_SUBST(VERSION)
|
||||
|
||||
AM_INIT_AUTOMAKE
|
||||
AC_CONFIG_SRCDIR([src/Makefile.in])
|
||||
|
||||
AC_CONFIG_HEADERS([config.h])
|
||||
|
||||
# AC_CONFIG_MACRO_DIR([m4])
|
||||
|
||||
# Checks for programs.
|
||||
# Program Checks
|
||||
AC_PROG_CC
|
||||
# AC_PROG_RANLIB
|
||||
|
||||
# Library Checks
|
||||
AC_SEARCH_LIBS([lroundf], [m])
|
||||
|
@ -80,38 +63,17 @@ AC_DEFINE_UNQUOTED([USE_BENCHMARKS], [$use_benchmarks],
|
|||
[Define to 1 to enable internal benchmarks])
|
||||
|
||||
AC_MSG_RESULT([
|
||||
PKG_NAME PKG_VERSION configuration summary:
|
||||
--with-pulseaudio $with_pulseaudio ($use_pulseaudio)
|
||||
--with-alsa $with_alsa ($use_alsa)
|
||||
--with-sndfile $with_sndfile ($use_sndfile)
|
||||
--with-benchmarks $with_benchmarks ($use_benchmarks)
|
||||
deps_packages: $deps_packages
|
||||
option summary:
|
||||
alsa $with_alsa ($use_alsa)
|
||||
benchmarks $with_benchmarks ($use_benchmarks)
|
||||
pulseaudio $with_pulseaudio ($use_pulseaudio)
|
||||
sndfile $with_sndfile ($use_sndfile)
|
||||
])
|
||||
|
||||
|
||||
# Checks for libraries.
|
||||
PKG_CHECK_MODULES(DEPS, [ $deps_packages ])
|
||||
|
||||
AC_SUBST(DEPS_CFLAGS)
|
||||
AC_SUBST(DEPS_LIBS)
|
||||
PKG_CHECK_MODULES(DEPS, [$deps_packages])
|
||||
|
||||
AC_SUBST([auto_find_tests], ['$(sort $(wildcard *.test))'])
|
||||
|
||||
# Checks for header files.
|
||||
# AC_CHECK_HEADERS([stdlib.h string.h unistd.h])
|
||||
|
||||
# Checks for typedefs, structures, and compiler characteristics.
|
||||
# AC_HEADER_STDBOOL
|
||||
# AC_TYPE_PID_T
|
||||
|
||||
# Checks for library functions.
|
||||
# AC_FUNC_FORK
|
||||
|
||||
AC_CONFIG_FILES([
|
||||
Makefile
|
||||
src/Makefile
|
||||
src/minimodem.1
|
||||
tests/Makefile
|
||||
])
|
||||
# testdata/Makefile
|
||||
AC_CONFIG_FILES([Makefile src/Makefile src/minimodem.1 tests/Makefile])
|
||||
AC_OUTPUT
|
||||
|
|
Loading…
Reference in New Issue