• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/examples/hello-c++-qt/
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
7AC_CONFIG_SRCDIR(hello.cc)
8AM_INIT_AUTOMAKE(hello-c++-qt, 0)
9
10AC_PROG_CXX
11FUN_TYPE_BOOL
12AC_CHECK_HEADERS([unistd.h])
13FUN_HEADER_STDCXX
14FUN_CHECK_PTHREAD
15FUN_CHECK_QT(220)
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