mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-25 20:32:33 +00:00
9 lines
403 B
Plaintext
9 lines
403 B
Plaintext
AC_ARG_WITH([build-timestamp],
|
|
AC_HELP_STRING([--without-build-timestamp],[Don't include build timestamp in version information]),
|
|
[ with_build_timestamp=${withval} ],
|
|
[ with_build_timestamp=yes ])
|
|
|
|
if test "$with_build_timestamp" != "no" ; then
|
|
AC_DEFINE(HAVE_BUILD_TIMESTAMP, [1], [Define if the build timestamp should be included in the version information])
|
|
fi
|