diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2017-08-10 09:07:34 +0200 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2017-08-10 09:26:18 +0200 |
commit | f3c576bdbd7d59250f9316b090a4339e5aa6b4ce (patch) | |
tree | abdb4c95f75d8948ffd1f42a810e586e71484209 /dev-libs/protobuf-c/files | |
parent | net-irc/irssi: amd64 stable wrt bug #624100 (diff) | |
download | gentoo-f3c576bdbd7d59250f9316b090a4339e5aa6b4ce.tar.gz gentoo-f3c576bdbd7d59250f9316b090a4339e5aa6b4ce.tar.bz2 gentoo-f3c576bdbd7d59250f9316b090a4339e5aa6b4ce.zip |
dev-libs/protobuf-c: Bump to version 1.3.0
Package-Manager: Portage-2.3.6, Repoman-2.3.3
Diffstat (limited to 'dev-libs/protobuf-c/files')
-rw-r--r-- | dev-libs/protobuf-c/files/protobuf-c-1.3.0-no-build-tests.patch | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/dev-libs/protobuf-c/files/protobuf-c-1.3.0-no-build-tests.patch b/dev-libs/protobuf-c/files/protobuf-c-1.3.0-no-build-tests.patch new file mode 100644 index 000000000000..55116c67e416 --- /dev/null +++ b/dev-libs/protobuf-c/files/protobuf-c-1.3.0-no-build-tests.patch @@ -0,0 +1,30 @@ +https://bugs.gentoo.org/518440 + +avoid compiling tests when we aren't actually testing, especially since it +requires a compiler to execute which fails when cross-compiling + +--- protobuf-c-1.3.0/Makefile.am ++++ protobuf-c-1.3.0/Makefile.am +@@ -150,7 +150,7 @@ + t_generated_code2_test_generated_code2_LDADD = \ + protobuf-c/libprotobuf-c.la + +-noinst_PROGRAMS += \ ++check_PROGRAMS += \ + t/generated-code2/cxx-generate-packed-data + + t_generated_code2_cxx_generate_packed_data_SOURCES = \ +@@ -178,13 +178,6 @@ + t/generated-code2/test-full-cxx-output.inc: t/generated-code2/cxx-generate-packed-data$(EXEEXT) + $(AM_V_GEN)$(top_builddir)/t/generated-code2/cxx-generate-packed-data$(EXEEXT) > $(top_builddir)/t/generated-code2/test-full-cxx-output.inc + +-BUILT_SOURCES += \ +- t/test.pb-c.c t/test.pb-c.h \ +- t/test-full.pb-c.c t/test-full.pb-c.h \ +- t/test-optimized.pb-c.c t/test-optimized.pb-c.h \ +- t/test-full.pb.cc t/test-full.pb.h \ +- t/generated-code2/test-full-cxx-output.inc +- + if BUILD_PROTO3 + + check_PROGRAMS += \ |