• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1dnl Example for use of GNU gettext.
2dnl This file is in the public domain.
3dnl
4dnl Configuration file - processed by autoconf.
5
6AC_INIT([hello-c++-wxwidgets], [0], , [hello-c++-wxwidgets])
7AC_CONFIG_SRCDIR([hello.cc])
8AM_INIT_AUTOMAKE([1.11])
9
10AC_PROG_CXX
11AC_CHECK_HEADERS([unistd.h])
12
13AM_OPTIONS_WXCONFIG
14AM_PATH_WXCONFIG([2.6.0], [], [AC_MSG_ERROR([wxWidgets not found])])
15AC_LIB_LINKFLAGS_FROM_LIBS([WX_LDADD], [$WX_LIBS])
16
17dnl Support for the po directory.
18AM_PO_SUBDIRS
19
20AC_CONFIG_FILES([Makefile])
21AC_CONFIG_FILES([m4/Makefile])
22AC_CONFIG_FILES([po/Makefile], [AM_POSTPROCESS_PO_MAKEFILE])
23AC_OUTPUT
24