diff options
author | Paul Smith <psmith@gnu.org> | 2000-06-23 15:55:46 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2000-06-23 15:55:46 +0000 |
commit | fcbfe98cbe7d6332ee0673f685b280f7c019cd44 (patch) | |
tree | 59b557454953a9650f4f4795d5a5d0b5d50bc0dd /configure.in | |
parent | cbe92a2241253145fbd11e32ed1f7efcb31ba91c (diff) | |
download | gunmake-fcbfe98cbe7d6332ee0673f685b280f7c019cd44.tar.gz |
* Fix -q so it works more correctly.
* Don't print "nothing to do" messages for ":" commands
* Update the version to 3.79.1
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 2f61d24..56346f0 100644 --- a/configure.in +++ b/configure.in @@ -3,7 +3,7 @@ AC_REVISION([$Id$]) AC_PREREQ(2.13)dnl dnl Minimum Autoconf version required. AC_INIT(vpath.c)dnl dnl A distinctive file to look for in srcdir. -AM_INIT_AUTOMAKE(make, 3.79.0.2) +AM_INIT_AUTOMAKE(make, 3.79.1) AM_CONFIG_HEADER(config.h) dnl Regular configure stuff @@ -45,7 +45,17 @@ dnl Handle internationalization ALL_LINGUAS="de es fr ja ko nl pl pt_BR ru" pds_WITH_GETTEXT -AC_STRUCT_ST_MTIM_NSEC + +dnl See if the user wants nsec timestamps + +AC_ARG_ENABLE(nsec-timestamps, + [ --disable-nsec-timestamps disable use of sub-second timestamps], + [make_cv_nsec_timestamps="$enableval"], + [make_cv_nsec_timestamps="yes"]) + +if test "x$make_cv_nsec_timestamps" != xno; then + AC_STRUCT_ST_MTIM_NSEC +fi jm_AC_TYPE_UINTMAX_T AC_SUBST(LIBOBJS) |