You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
762 B

  1. diff -u --recursive vips-8.10.2-vanilla/configure.ac vips-8.10.2/configure.ac
  2. --- vips-8.10.2-vanilla/configure.ac 2020-10-12 11:43:59.000000000 -0500
  3. +++ vips-8.10.2/configure.ac 2020-11-19 12:16:45.187129100 -0600
  4. @@ -26,7 +26,11 @@
  5. VIPS_MINOR_VERSION=vips_minor_version()
  6. VIPS_MICRO_VERSION=vips_micro_version()
  7. VIPS_VERSION=vips_version()
  8. -VIPS_VERSION_STRING=$VIPS_VERSION-`date -u -r $srcdir/ChangeLog`
  9. +if test "x$SOURCE_DATE_EPOCH" = "x"; then
  10. + VIPS_VERSION_STRING=$VIPS_VERSION-`date -u -r ChangeLog`
  11. +else
  12. + VIPS_VERSION_STRING=$VIPS_VERSION-`LC_ALL=C date --utc --date="@$SOURCE_DATE_EPOCH"`
  13. +fi
  14. # libtool library versioning ... not user-visible (except as part of the
  15. # library file name) and does not correspond to major/minor/micro above