meta-sdf-options 0.22: configure.ac & README

Index: ChangeLog from Akim Demaille <akim@epita.fr> * configure.ac: Ask for Autoconf 2.56 and Automake 1.7.7. Check that XT is defined. * README: s/can not/cannot/. Index: README --- README Sat, 21 Jun 2003 19:44:55 +0200 vasseu_c (meta-sdf-option/48_README 1.3 644) +++ README Tue, 30 Sep 2003 17:38:21 +0200 akim (meta-sdf-option/48_README 1.3 644) @@ -55,6 +55,6 @@ Installation ------------ -$ ./configure --with-xt=<PATH> +$ ./configure --with-xt=<PATH> # e.g., --with-xt=/usr on Debian GNU/Linux $ make $ make install Index: configure.ac --- configure.ac Fri, 13 Jun 2003 06:08:04 +0200 vasseu_c (meta-sdf-option/9_configure. 1.6 640) +++ configure.ac Tue, 30 Sep 2003 17:37:28 +0200 akim (meta-sdf-option/9_configure. 1.6 640) @@ -1,15 +1,19 @@ -# Autoconf 2.53 needed so that buggy PATH_SEPARATOR is fixed. -AC_PREREQ(2.53) +AC_PREREQ(2.56) -AC_INIT(sdf-option, 0.1) +AC_INIT([sdf-option], 0.1) # Auxiliary files -AC_CONFIG_AUX_DIR(config) -AC_CONFIG_FILES(config/Makefile) +AC_CONFIG_AUX_DIR([config]) +AC_CONFIG_FILES([config/Makefile]) -AM_INIT_AUTOMAKE([foreign 1.6 dist-bzip2]) +AM_INIT_AUTOMAKE([foreign 1.7.7 dist-bzip2]) +# There are some tools we really want. USE_XT_PACKAGES +if test "$XT" = NONE; then + AC_MSG_ERROR([XT is undefined. Did you specify --with-xt=PATH?]) +fi + AC_PROG_CC AC_PROG_INSTALL
participants (1)
-
Akim Demaille