From 0fd1303c60ac5d906b54ee29b244f431a8249d18 Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Tue, 09 Apr 2019 23:02:39 -0400 Subject: configure.ac, config.sh.in: Drop check for date with %s --- (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index b0c026b..f486c94 100644 --- a/configure.ac +++ b/configure.ac @@ -164,37 +164,6 @@ AC_ARG_WITH( fi ] ) -AC_ARG_WITH( - [date], - [AS_HELP_STRING([--with-date=PATH], - [path to date utility with `%s' format specifier])], - dnl This `dnl' is needed to workaround Vim syntax highlighting. - [ - case "${withval}" in - 'yes'|'') - AC_MSG_ERROR( - [--with-date requires an argument]) - ;; - 'no') - AC_MSG_ERROR([date is required]) - ;; - *) - DATE="${withval}" - AC_SUBST([DATE]) - ;; - esac - ], - [ - AC_PATH_PROG([DATE], [date]) - if test -z "${DATE}"; then - AC_MSG_ERROR([date not found]) - fi - ] -) -dnl Ugh, quadrigraphs. -case "$(date '+%s' 2>/dev/null)" in *@<:@!0-9@:>@*|'') - AC_MSG_ERROR([${DATE} doesn't support the `%s' format sequence]) -esac AC_CONFIG_FILES([Makefile]) AC_CONFIG_FILES([config.sh]) -- cgit v0.9.1