Install gettext-0.18.1.1.tar.gz
[msysgit.git] / mingw / share / doc / gettext / examples / hello-objc-gnome / configure.ac
blob9c64efe29e680a0bed2059c2b183c58e9bb348c7
1 dnl Example for use of GNU gettext.
2 dnl This file is in the public domain.
3 dnl
4 dnl Configuration file - processed by autoconf.
6 AC_INIT
7 AC_CONFIG_SRCDIR(hello.m)
8 AM_INIT_AUTOMAKE(hello-objc-gnome, 0)
10 AC_PROG_CC
11 AC_SUBST([OBJC],["$CC"])
12 AC_SUBST([OBJCFLAGS],["$CFLAGS"])
14 GNOME_INIT
15 OBGNOME_INCLUDES=
16 obgnome_prefix=`obgnome-config --prefix`
17 if test -n "$obgnome_prefix"; then
18   OBGNOME_INCLUDES="-I $obgnome_prefix/include"
20 AC_SUBST([OBGNOME_INCLUDES])
22 AC_CHECK_HEADERS([unistd.h])
23 AM_GNU_GETTEXT([external])
24 AM_GNU_GETTEXT_VERSION(0.15)
26 AC_CONFIG_FILES([Makefile])
27 AC_CONFIG_FILES([m4/Makefile])
28 AC_CONFIG_FILES([po/Makefile.in])
29 AC_OUTPUT