dnl Copyright (c) 2003, 2004 Christian Persch dnl dnl This program is free software; you can redistribute it and/or modify it dnl under the terms of the GNU General Public License as published by the dnl Free Software Foundation; either version 2 of the License, or (at your dnl option) any later version. dnl dnl This program is distributed in the hope that it will be useful, but dnl WITHOUT ANY WARRANTY; without even the implied warranty of dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU dnl General Public License for more details. dnl dnl You should have received a copy of the GNU General Public License along dnl with this program; if not, write to the Free Software Foundation, Inc., dnl 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA dnl dnl $Id$ AC_INIT([ISO Codes],[1.7],[],[iso-codes]) AC_REVISION([$Revision$]) dnl FIXME debug why this doesn't work; it substs an '' for VERSION dnl until then, use PACKAGE_VERSION instead. dnl AC_PREREQ([2.59]i, "${PACKAGE_VERSION}") AM_INIT_AUTOMAKE([dist-bzip2 foreign]) AM_MAINTAINER_MODE AC_SUBST([ACLOCAL_AMFLAGS], ["\${ACLOCAL_FLAGS}"]) AC_PROG_INSTALL AC_PROG_MAKE_SET AC_PATH_PROG([MSGMERGE],[msgmerge]) AC_PATH_PROG([MSGFMT],[msgfmt]) AC_MSG_CHECKING([if $MSGFMT is GNU msgfmt]) gnu_msgfmt=no MSGFMT_FLAGS= if $MSGFMT --version 2>&1 | grep GNU > /dev/null; then gnu_msgfmt=yes MSGFMT_FLAGS="--verbose --check" fi AC_MSG_RESULT($gnu_msgfmt) AC_SUBST(MSGFMT_FLAGS) DOMAINS="iso_15924 iso_3166 iso_4217 iso_639 iso_3166_2 iso_639_3" AC_SUBST([DOMAINS]) AC_CONFIG_FILES([ Makefile iso-codes.pc iso_15924/Makefile iso_3166/Makefile iso_3166/iso_3166_2/Makefile iso_4217/Makefile iso_639/Makefile iso_639/iso_639_3/Makefile notes/Makefile ]) AC_OUTPUT