summaryrefslogtreecommitdiff
path: root/Build/source/utils/autosp/autosp-src/configure.ac
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2016-03-07 19:26:54 +0000
committerKarl Berry <karl@freefriends.org>2016-03-07 19:26:54 +0000
commit40d910b7a2d64c93a11bdc1a1de5a9f905e88826 (patch)
tree8784385541cf0351758ff9c375f489af0408c5bc /Build/source/utils/autosp/autosp-src/configure.ac
parent28d6c77b1844979930e27317b27d49d1b08a59a2 (diff)
import new music utility autosp from ctan
git-svn-id: svn://tug.org/texlive/trunk@39962 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils/autosp/autosp-src/configure.ac')
-rw-r--r--Build/source/utils/autosp/autosp-src/configure.ac24
1 files changed, 24 insertions, 0 deletions
diff --git a/Build/source/utils/autosp/autosp-src/configure.ac b/Build/source/utils/autosp/autosp-src/configure.ac
new file mode 100644
index 00000000000..53d21cccd09
--- /dev/null
+++ b/Build/source/utils/autosp/autosp-src/configure.ac
@@ -0,0 +1,24 @@
+AC_PREREQ(2.63)
+AC_INIT([autosp],[2016-01-30],[rdt@cs.queensu.ca])
+AC_CONFIG_AUX_DIR([.])
+AM_INIT_AUTOMAKE
+AC_CONFIG_HEADERS([config.h])
+
+m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
+
+# Checks for programs.
+AC_PROG_CC
+AM_PROG_CC_C_O
+
+# Checks for header files.
+AC_CHECK_HEADERS([stdlib.h string.h stdio.h time.h getopt.h ctype.h limits.h])
+
+# Checks for typedefs, structures, and compiler characteristics.
+AC_HEADER_STDBOOL
+AC_TYPE_SIZE_T
+
+# Checks for library functions.
+AC_CHECK_FUNCS([strstr])
+
+AC_CONFIG_FILES([Makefile])
+AC_OUTPUT