| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 
 | Description: debianization
 Meant to maintain a minimal debian/rules, to fix warnings,
 to address Debian specific stuff in general.
Origin: debian
Forwarded: not-needed
Author: Jerome Benoit <calculus@rezozer.net>
Last-Update: 2023-07-09
--- a/configure.ac
+++ b/configure.ac
@@ -9,7 +9,7 @@
 AC_CONFIG_AUX_DIR([build-aux])
 AC_CONFIG_SRCDIR([src/bliss_C.h])
 AC_CONFIG_HEADERS([bliss_config.h])
-AM_SILENT_RULES([yes])
+AM_SILENT_RULES([no])
 AM_INIT_AUTOMAKE([foreign])
 AM_MAINTAINER_MODE([])
 
--- a/Makefile.am
+++ b/Makefile.am
@@ -27,6 +27,7 @@
 	$(top_srcdir)/src/bliss.cc
 
 bliss_CXXFLAGS = \
+	-DBLISS_COMPILED_DATE="\"Debian $(DEB_PKG_VERSION)\"" \
 	-D BLISS_USE_GMP \
 	-I $(top_builddir)/include \
 	$(GMP_CFLAGS)
 |