From owner-svn-ports-all@FreeBSD.ORG Wed Feb 18 08:51:46 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 96FEE8E2; Wed, 18 Feb 2015 08:51:46 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 67DC774D; Wed, 18 Feb 2015 08:51:46 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t1I8pkHF048043; Wed, 18 Feb 2015 08:51:46 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t1I8pk04048042; Wed, 18 Feb 2015 08:51:46 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201502180851.t1I8pk04048042@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Wed, 18 Feb 2015 08:51:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r379202 - head/devel/libcli/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Feb 2015 08:51:46 -0000 Author: marino Date: Wed Feb 18 08:51:45 2015 New Revision: 379202 URL: https://svnweb.freebsd.org/changeset/ports/379202 QAT: https://qat.redports.org/buildarchive/r379202/ Log: devel/libcli: Disable -Werror to restore build on DragonFly This port includes which generates a warning on DF. PR: 197330 Submitted by: marino@ Approved by: maintainer timeout (tj@) Modified: head/devel/libcli/files/patch-Makefile Modified: head/devel/libcli/files/patch-Makefile ============================================================================== --- head/devel/libcli/files/patch-Makefile Wed Feb 18 08:47:39 2015 (r379201) +++ head/devel/libcli/files/patch-Makefile Wed Feb 18 08:51:45 2015 (r379202) @@ -1,5 +1,5 @@ ---- ./Makefile.orig 2012-06-07 06:51:30.000000000 +0200 -+++ ./Makefile 2012-11-07 09:01:50.707823595 +0100 +--- Makefile.orig 2012-06-07 04:51:30 UTC ++++ Makefile @@ -1,23 +1,21 @@ UNAME = $(shell sh -c 'uname -s 2>/dev/null || echo not') DESTDIR = @@ -16,7 +16,7 @@ -OPTIM = -O3 -CFLAGS += $(DEBUG) $(OPTIM) -Wall -std=c99 -pedantic -Wformat-security -Wno-format-zero-length -Werror -Wwrite-strings -Wformat -fdiagnostics-show-option -Wextra -Wsign-compare -Wcast-align -Wno-unused-parameter +CC ?= gcc -+CFLAGS += -Wall -Wformat-security -Wno-format-zero-length -Werror -Wwrite-strings -Wformat -fdiagnostics-show-option -Wextra -Wsign-compare -Wcast-align -Wno-unused-parameter ++CFLAGS += -Wall -Wformat-security -Wno-format-zero-length -Wwrite-strings -Wformat -fdiagnostics-show-option -Wextra -Wsign-compare -Wcast-align -Wno-unused-parameter LDFLAGS += -shared LIBPATH += -L. @@ -28,7 +28,7 @@ LIBS = -lcrypt endif -@@ -26,8 +24,9 @@ +@@ -26,8 +24,9 @@ all: $(LIB) clitest $(LIB): libcli.o $(CC) -o $(LIB).$(MAJOR).$(MINOR).$(REVISION) $^ $(LDFLAGS) $(LIBS) -rm -f $(LIB) $(LIB).$(MAJOR).$(MINOR) @@ -40,7 +40,7 @@ %.o: %.c $(CC) $(CPPFLAGS) $(CFLAGS) -fPIC -o $@ -c $< -@@ -48,8 +47,9 @@ +@@ -48,8 +47,9 @@ install: $(LIB) install -m 0644 libcli.h $(DESTDIR)$(PREFIX)/include install -m 0755 $(LIB).$(MAJOR).$(MINOR).$(REVISION) $(DESTDIR)$(PREFIX)/lib cd $(DESTDIR)$(PREFIX)/lib && \