You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
308 B
20 lines
308 B
|
|
AC_INIT(configure.in)
|
|
AM_INIT_AUTOMAKE(%{APPNAMELC}, %{VERSION})
|
|
AC_CONFIG_HEADER(config.h)
|
|
|
|
AC_ISC_POSIX
|
|
AC_PROG_CC
|
|
AM_PROG_CC_STDC
|
|
AC_HEADER_STDC
|
|
AC_PROG_CPP
|
|
AC_PROG_CXX
|
|
AC_PROG_CXXCPP
|
|
AM_PROG_LIBTOOL
|
|
|
|
AC_LANG_CPLUSPLUS
|
|
|
|
PKG_CHECK_MODULES([GTKMM], [gtkmm-2.4 >= 2.8.0])
|
|
|
|
AC_OUTPUT(Makefile src/Makefile )
|