svn commit: r438574 - head/devel/liberasurecode/files

Roman Bogorodskiy novel at FreeBSD.org
Sat Apr 15 03:24:24 UTC 2017


Author: novel
Date: Sat Apr 15 03:24:23 2017
New Revision: 438574
URL: https://svnweb.freebsd.org/changeset/ports/438574

Log:
  devel/liberasurecode: fix build on CURRENT
  
  Even though there's a configure switch "--disable-werror" to disable
  -Werror in CFLAGS, it's still hardcoded for some targets and
  causes build failure on CURRENT, so remove this hardcode.
  
  PR:		218629
  Submitted by:	maintainer

Added:
  head/devel/liberasurecode/files/patch-src_Makefile.am   (contents, props changed)

Added: head/devel/liberasurecode/files/patch-src_Makefile.am
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/liberasurecode/files/patch-src_Makefile.am	Sat Apr 15 03:24:23 2017	(r438574)
@@ -0,0 +1,11 @@
+--- src/Makefile.am.orig	2017-04-14 13:42:39 UTC
++++ src/Makefile.am
+@@ -28,7 +28,7 @@ liberasurecode_la_SOURCES = \
+ 		builtin/rs_vand/rs_galois.c \
+ 		backends/shss/shss.c
+ 
+-liberasurecode_la_CPPFLAGS = -Werror @GCOV_FLAGS@
++liberasurecode_la_CPPFLAGS = @GCOV_FLAGS@
+ liberasurecode_la_LIBADD = \
+ 		builtin/null_code/libnullcode.la -lpthread -lm @GCOV_LDFLAGS@ \
+ 		builtin/xor_codes/libXorcode.la -lpthread -lm @GCOV_LDFLAGS@ \


More information about the svn-ports-all mailing list