Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
refresh patches
· bee79a03
Sascha Steinbiss
authored
Dec 26, 2018
bee79a03
raise C++ version support
· 076de3b2
Sascha Steinbiss
authored
Dec 26, 2018
076de3b2
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
076de3b2
mash (2.1-2) unstable; urgency=medium
* Adjust CXXFLAGS due to new dependency requirements.
-- Sascha Steinbiss <satta@debian.org> Wed, 26 Dec 2018 14:17:06 +0000
mash (2.1-1) unstable; urgency=medium
[ Jelmer Vernooij ]
...
...
debian/patches/capnp0_7.patch
0 → 100644
View file @
076de3b2
Description: raise C++ standard to allow building with capnp 0.7
Author: Sascha Steinbiss <satta@debian.org>
Bug: https://github.com/marbl/Mash/issues/98
Last-Update: 2018-12-26
--- a/configure.ac
+++ b/configure.ac
@@ -33,7 +33,7 @@
AC_MSG_ERROR([Cap'n Proto compiler (capnp) not found.])
fi
-CPPFLAGS="-I$with_capnp/include -std=c++11"
+CPPFLAGS="-I$with_capnp/include -std=c++14"
AC_CHECK_HEADER(capnp/common.h, [result=1], [result=0])
--- a/Makefile.in
+++ b/Makefile.in
@@ -1,4 +1,4 @@
-CXXFLAGS += -O3 -std=c++11 -Isrc -I@capnp@/include -I@mathinc@
+CXXFLAGS += -O3 -std=c++14 -Isrc -I@capnp@/include -I@mathinc@
CPPFLAGS += @amcppflags@
UNAME_S=$(shell uname -s)
debian/patches/drop_memcpy_wrapper.patch
View file @
076de3b2
...
...
@@ -13,7 +13,7 @@ Author: Sascha Steinbiss <satta@debian.org>
endif
SOURCES=\
@@ -3
5
,8 +3
2
,8 @@
@@ -3
6
,8 +3
3
,8 @@
all : mash libmash.a
...
...
@@ -24,7 +24,7 @@ Author: Sascha Steinbiss <satta@debian.org>
libmash.a : $(OBJECTS)
ar -cr libmash.a $(OBJECTS)
@@ -5
0
,9 +4
7
,6 @@
@@ -5
1
,9 +4
8
,6 @@
%.o : %.c++
$(CXX) -c $(CXXFLAGS) $(CPPFLAGS) -o $@ $<
...
...
debian/patches/hardening.patch
View file @
076de3b2
...
...
@@ -3,7 +3,7 @@ Description: add hardening support
Author: Sascha Steinbiss <satta@debian.org>
--- a/Makefile.in
+++ b/Makefile.in
@@ -3
6
,7 +3
6
,7 @@
@@ -3
7
,7 +3
7
,7 @@
all : mash libmash.a
mash : libmash.a src/mash/memcpyWrap.o
...
...
debian/patches/link_dynamically_against_capnp.patch
View file @
076de3b2
...
...
@@ -2,7 +2,7 @@ Description: link dynamically against libcapnp and friends
Author: Sascha Steinbiss <satta@debian.org>
--- a/Makefile.in
+++ b/Makefile.in
@@ -3
2
,8 +3
2
,8 @@
@@ -3
3
,8 +3
3
,8 @@
all : mash libmash.a
...
...
debian/patches/parallel.patch
View file @
076de3b2
...
...
@@ -7,7 +7,7 @@ Author: Adrian Bunk <bunk@debian.org>
--- a/Makefile.in
+++ b/Makefile.in
@@ -4
7
,7 +4
7
,9 @@
@@ -4
8
,7 +4
8
,9 @@
%.o : %.c++
$(CXX) -c $(CXXFLAGS) $(CPPFLAGS) -o $@ $<
...
...
debian/patches/series
View file @
076de3b2
...
...
@@ -3,3 +3,4 @@ use_debian_mathjax.patch
drop_memcpy_wrapper.patch
link_dynamically_against_capnp.patch
parallel.patch
capnp0_7.patch