1 2 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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
Description: <short summary of the patch>
TODO: Put a short summary on the line above and replace this paragraph
with a longer explanation of this change. Complete the meta-information
with other relevant fields (see below for details). To make it easier, the
information below has been extracted from the changelog. Adjust it or drop
it.
.
cxref (1.6e-5) unstable; urgency=medium
.
* Bug fix: "please make the build reproducible - non-reproducible
timestamp in build log", thanks to Philip Rinn (Closes: #1014877).
rm cxref.log from cxref-doc package.
* Bug fix: "please rebuild with dh_elpa 2.x", thanks to David Bremner
(Closes: #973966). Remove build-dep on dh-elpa for now.
* Bug fix: "cxref FTCBFS: uses AC_TRY_COMPILE", thanks to Helmut Grohne
(Closes: #962163). Apply AC_TRY_COMPILE patch
* tempfile -> mktemp in cxref-cpp-wrap
Author: Camm Maguire <camm@debian.org>
Bug-Debian: https://bugs.debian.org/962163
Bug-Debian: https://bugs.debian.org/973966
Bug-Debian: https://bugs.debian.org/1014877
---
The information above should follow the Patch Tagging Guidelines, please
checkout https://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:
Origin: (upstream|backport|vendor|other), (<patch-url>|commit:<commit-id>)
Bug: <upstream-bugtracker-url>
Bug-Debian: https://bugs.debian.org/<bugnumber>
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
Forwarded: (no|not-needed|<patch-forwarded-url>)
Applied-Upstream: <version>, (<commit-url>|commit:<commid-id>)
Reviewed-By: <name and email of someone who approved/reviewed the patch>
Last-Update: 2024-05-06
--- cxref-1.6e.orig/cpp/Makefile.in
+++ cxref-1.6e/cpp/Makefile.in
@@ -115,5 +115,6 @@ version.o : version.c
cxref-cpp.defines : cxref-cpp-configure
./cxref-cpp-configure $(CC) -o $@
+ ! [ -e ../debian/cxref-cpp-supplement.defines ] || cat ../debian/cxref-cpp-supplement.defines >> $@
########
--- cxref-1.6e.orig/doc/Makefile.in
+++ cxref-1.6e/doc/Makefile.in
@@ -98,8 +98,8 @@ faq-html : $(srcdir)/FAQ $(srcdir)/FAQ-h
readme : $(srcdir)/README.c
[ -f README.c ] || cp $(srcdir)/README.c .
- ../src/cxref -D_Float128='long double' -O. -NREADME-TMP -xref README.c
- ../src/cxref -D_Float128='long double' -O. -NREADME-TMP -xref README.c -latex -html-src -rtf -sgml
+ ../src/cxref -O. -NREADME-TMP -xref README.c
+ ../src/cxref -O. -NREADME-TMP -xref README.c -latex -html-src -rtf -sgml
mv README.c.tex README_c.tex
[ "x$(LATEX)" = "x" ] || $(LATEX) $(srcdir)/README.tex > /dev/null 2>&1
[ "x$(LATEX)" = "x" ] || $(LATEX) $(srcdir)/README.tex
|