Version up.
[jben2_gui.git] / configure.ac
blobb024c73752370e6855e37b63147795fb50c6bf16
1 #                                               -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
4 AC_PREREQ([2.67])
5 AC_INIT([J-Ben 2 BETA],
6         [1.9.4],
7         [general at vultaire dot net],
8         [jben],
9         [http://jben.vultaire.net/])
10 AM_INIT_AUTOMAKE([foreign])
11 AC_CONFIG_SRCDIR([c/kpengine/jstroke.h])
12 AC_CONFIG_HEADERS([config.h])
14 # Checks for programs.
15 AC_PROG_CC
16 AM_PROG_CC_C_O
18 # Checks for libraries.
20 # Checks for header files.
21 AC_CHECK_HEADERS([stdlib.h string.h])
22 # Others: stdio.h, ctype.h, windows.h (windows only)
24 # Checks for typedefs, structures, and compiler characteristics.
25 AC_HEADER_STDBOOL
27 # Checks for library functions.
28 AC_FUNC_MALLOC
29 AC_FUNC_REALLOC
30 AC_CHECK_FUNCS([strdup strtol])
32 AC_CONFIG_FILES([Makefile
33                  c/Makefile
34                  c/kpengine/Makefile
35                  data/Makefile
36                  python/Makefile
37                  python/jben/configure.py])
38 AC_OUTPUT