• 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-objc-gnome/
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.m)
8AM_INIT_AUTOMAKE(hello-objc-gnome, 0)
9
10AC_PROG_CC
11AC_SUBST([OBJC],["$CC"])
12AC_SUBST([OBJCFLAGS],["$CFLAGS"])
13
14GNOME_INIT
15OBGNOME_INCLUDES=
16obgnome_prefix=`obgnome-config --prefix`
17if test -n "$obgnome_prefix"; then
18  OBGNOME_INCLUDES="-I $obgnome_prefix/include"
19fi
20AC_SUBST([OBGNOME_INCLUDES])
21
22AC_CHECK_HEADERS([unistd.h])
23AM_GNU_GETTEXT([external])
24AM_GNU_GETTEXT_VERSION(0.15)
25
26AC_CONFIG_FILES([Makefile])
27AC_CONFIG_FILES([m4/Makefile])
28AC_CONFIG_FILES([po/Makefile.in])
29AC_OUTPUT
30