49 lines
826 B
Plaintext
49 lines
826 B
Plaintext
|
dnl Process this file with autoconf to produce a configure script.
|
||
|
|
||
|
AC_PREREQ(2.59)
|
||
|
|
||
|
AC_INIT([minimal],[1.2.5],[vslavik@fastmail.fm])
|
||
|
|
||
|
AC_CONFIG_SRCDIR([minimal.cpp])
|
||
|
|
||
|
AC_CANONICAL_BUILD
|
||
|
AC_CANONICAL_HOST
|
||
|
AC_CANONICAL_TARGET
|
||
|
|
||
|
|
||
|
|
||
|
AM_OPTIONS_WXCONFIG
|
||
|
|
||
|
|
||
|
|
||
|
dnl Checks for programs.
|
||
|
AC_PROG_AWK
|
||
|
AC_PROG_INSTALL
|
||
|
AC_PROG_LN_S
|
||
|
AC_PROG_RANLIB
|
||
|
AC_PROG_CC
|
||
|
AC_PROG_CXX
|
||
|
AC_PROG_CXXCPP
|
||
|
|
||
|
|
||
|
|
||
|
AM_PATH_WXCONFIG(2.4.1, WXFOUND=1)
|
||
|
|
||
|
if test "$WXFOUND" != 1; then
|
||
|
AC_MSG_ERROR([
|
||
|
Please check that wx-config is in path, the directory
|
||
|
where wxWindows libraries are installed (returned by
|
||
|
'wx-config --libs' command) is in LD_LIBRARY_PATH or
|
||
|
equivalent variable and wxWindows is version 2.4.0 or above.
|
||
|
])
|
||
|
fi
|
||
|
|
||
|
AC_BAKEFILE([m4_include(autoconf_inc.m4)])
|
||
|
|
||
|
|
||
|
AC_CONFIG_FILES([
|
||
|
Makefile
|
||
|
])
|
||
|
|
||
|
AC_OUTPUT
|