From: Erez Zadok Date: Sun, 14 Aug 2005 15:33:15 +0000 (+0000) Subject: * configure.in: sinclude([vers.m4]) version number file. X-Git-Tag: before-clocktime-fixes~34 X-Git-Url: https://git.fsl.cs.stonybrook.edu/?a=commitdiff_plain;h=5d3593bcdb18508588f8cf3bae013e7e75fdf881;p=am-utils-6.0.git * configure.in: sinclude([vers.m4]) version number file. * vers.m4: new file to separate version number out of configure.in, useful for nightly snapshot script to generate nightly version string. * Makefile.am (EXTRA_DIST_M4): include vers.m4 in distro. The function sun_entry2amd's parameters were expanded to include --- diff --git a/ChangeLog b/ChangeLog index 2abfbed..3fbd7f5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +2005-08-14 Erez Zadok + + * configure.in: sinclude([vers.m4]) version number file. + + * vers.m4: new file to separate version number out of + configure.in, useful for nightly snapshot script to generate + nightly version string. + + * Makefile.am (EXTRA_DIST_M4): include vers.m4 in distro. + 2005-08-14 Daniel P. Ottavio * amd/info_file.c: add key to sun_entry2amd()'s parameters @@ -13,7 +23,7 @@ * amd/info_nisplus.c: add key to sun_entry2amd()'s parameters * amd/sun_map.c: New functions to support sun translation to amd. - The function sun_entry2amd's parameters where expanded to include + The function sun_entry2amd's parameters were expanded to include the key value. sun_entry_2amd() now returns NULL on error. * amd/sun_map.h: Expand sun_entry2amd's parameters to include key @@ -23,7 +33,7 @@ of the list of options for each entry. The previous way was not working properly so now we just look for the 'fstype' keyword in each option. If it exists we copy its key value. - + 2005-08-11 Erez Zadok * amd/sun_map_parse.y: instead of using a custom FOO_alloc() diff --git a/Makefile.am b/Makefile.am index 238a14c..5f3c164 100644 --- a/Makefile.am +++ b/Makefile.am @@ -26,6 +26,8 @@ SUBDIRS = \ # additional files to add to the distribution tar file # m4/aclocal EXTRA_DIST_M4 = \ + vers.m4 \ + \ m4/GNUmakefile \ m4/amdgrep \ m4/amindent \ diff --git a/configure.in b/configure.in index 73179f2..64be017 100644 --- a/configure.in +++ b/configure.in @@ -12,7 +12,9 @@ dnl ###################################################################### dnl INITIALIZATION dnl AC_INIT dnl new init style: PACKAGE, VERSION, BUG-REPORTING-ADDRESS -AC_INIT([am-utils],[6.2a1],[https://bugzilla.am-utils.org/ or am-utils@am-utils.org]) +AC_INIT([am-utils], + sinclude([vers.m4]), + [https://bugzilla.am-utils.org/ or am-utils@am-utils.org]) AC_MSG_NOTICE(*** INITIALIZATION ***) AC_CONFIG_SRCDIR([amd/amd.c]) AM_CONFIG_HEADER(config.h) @@ -53,7 +55,7 @@ AH_BOTTOM([ dnl dnl AC_CONFIG_AUX_DIR(m4) AC_PREREQ(2.52) -AC_REVISION($Revision: 1.110 $) +AC_REVISION($Revision: 1.111 $) AC_COPYRIGHT([Copyright (c) 1997-2005 Erez Zadok]) dnl find out system type AC_MSG_NOTICE(*** SYSTEM TYPES ***)