Install gettext-0.18.1.1.tar.gz
[msysgit.git] / mingw / share / doc / gettext / examples / hello-ycp / configure.ac
blob91bba931826858c70c1c255522a6f9d59102095f
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.ycp)
8 AM_INIT_AUTOMAKE(hello-ycp, 0)
10 dnl Check for availability of YaST's engine.
11 test -f /usr/lib/YaST2/bin/y2base || {
12   echo "*** Essential program y2base not found" 1>&2
13   exit 1
16 dnl The installed program must know where to find its message catalogs.
17 dnl Unfortunately, YaST hard codes the message catalog directory.
18 localedir=/usr/share/YaST2/locale
19 AC_SUBST(localedir)
21 dnl Support for the po directory.
22 AM_PO_SUBDIRS
24 AC_CONFIG_FILES([Makefile])
25 AC_CONFIG_FILES([m4/Makefile])
26 AC_CONFIG_FILES([po/Makefile], [AM_POSTPROCESS_PO_MAKEFILE])
27 AC_OUTPUT