1dnl Example for use of GNU gettext. 2dnl Copyright (C) 2003, 2006 Free Software Foundation, Inc. 3dnl This file is in the public domain. 4dnl 5dnl Configuration file - processed by autoconf. 6 7AC_INIT 8AC_CONFIG_SRCDIR(hello.php) 9AM_INIT_AUTOMAKE(hello-php, 0) 10 11dnl Check for availability of the PHP system. 12AC_PATH_PROG(PHP, php) 13if test -z "$PHP"; then 14 echo "*** Essential program php not found" 1>&2 15 exit 1 16fi 17AC_SUBST(PHP) 18 19dnl The installed program must know where to find its message catalogs. 20dnl Unfortunately, prefix gets only finally determined at the end of configure. 21if test "X$prefix" = "XNONE"; then 22 final_prefix="$ac_default_prefix" 23else 24 final_prefix="$prefix" 25fi 26save_prefix="$prefix" 27prefix="$final_prefix" 28eval "datarootdir=\"${datarootdir}\"" 29eval "localedir=\"${datadir}/locale\"" 30prefix="$save_prefix" 31AC_SUBST(localedir) 32 33dnl Support for the po directory. 34AM_PO_SUBDIRS 35 36AC_CONFIG_FILES([Makefile]) 37AC_CONFIG_FILES([hello:hello.php], [chmod a+x hello]) 38AC_CONFIG_FILES([m4/Makefile]) 39AC_CONFIG_FILES([po/Makefile], [AM_POSTPROCESS_PO_MAKEFILE]) 40AC_OUTPUT 41