Sophie

Sophie

distrib > Mandriva > 2008.1 > x86_64 > media > main-release > by-pkgid > 8687d34fdaebc45b38e16d29a4190db0 > files > 1282

gettext-devel-0.17-1mdv2008.1.x86_64.rpm

dnl Example for use of GNU gettext.
dnl This file is in the public domain.
dnl
dnl Configuration file - processed by autoconf.

AC_INIT
AC_CONFIG_SRCDIR(hello.ycp)
AM_INIT_AUTOMAKE(hello-ycp, 0)

dnl Check for availability of YaST's engine.
test -f /usr/lib/YaST2/bin/y2base || {
  echo "*** Essential program y2base not found" 1>&2
  exit 1
}

dnl The installed program must know where to find its message catalogs.
dnl Unfortunately, YaST hard codes the message catalog directory.
localedir=/usr/share/YaST2/locale
AC_SUBST(localedir)

dnl Support for the po directory.
AM_PO_SUBDIRS

AC_CONFIG_FILES([Makefile])
AC_CONFIG_FILES([m4/Makefile])
AC_CONFIG_FILES([po/Makefile], [AM_POSTPROCESS_PO_MAKEFILE])
AC_OUTPUT