From owner-svn-ports-all@freebsd.org Sat Jul 4 15:17:24 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E023191A6; Sat, 4 Jul 2015 15:17:24 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org (repo.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 B3AFC3877; Sat, 4 Jul 2015 15:17:24 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t64FHO9p057409; Sat, 4 Jul 2015 15:17:24 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t64FHOZB057402; Sat, 4 Jul 2015 15:17:24 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201507041517.t64FHOZB057402@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sat, 4 Jul 2015 15:17:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r391306 - in head/databases/rocksdb: . 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.20 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: Sat, 04 Jul 2015 15:17:25 -0000 Author: marino Date: Sat Jul 4 15:17:23 2015 New Revision: 391306 URL: https://svnweb.freebsd.org/changeset/ports/391306 Log: databases/rocksdb: Unbreak on DragonFly For the third time, disable Werror on this port. For this latest version, that wasn't the only problem with regard to DragonFly -- the endian configuration code was wrong and required a patch to fix. Added: head/databases/rocksdb/files/patch-port_port__posix.h (contents, props changed) Modified: head/databases/rocksdb/Makefile Modified: head/databases/rocksdb/Makefile ============================================================================== --- head/databases/rocksdb/Makefile Sat Jul 4 12:48:52 2015 (r391305) +++ head/databases/rocksdb/Makefile Sat Jul 4 15:17:23 2015 (r391306) @@ -21,6 +21,7 @@ LDFLAGS+= -L${LOCALBASE}/lib USE_CXXSTD= c++11 USE_LDCONFIG= yes USES= compiler:c++11-lib gmake +MAKE_ARGS= DISABLE_WARNING_AS_ERROR=1 GH_ACCOUNT= facebook USE_GITHUB= yes Added: head/databases/rocksdb/files/patch-port_port__posix.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/rocksdb/files/patch-port_port__posix.h Sat Jul 4 15:17:23 2015 (r391306) @@ -0,0 +1,17 @@ +--- port/port_posix.h.orig 2015-06-11 22:49:11 UTC ++++ port/port_posix.h +@@ -25,12 +25,11 @@ + #else + #define PLATFORM_IS_LITTLE_ENDIAN false + #endif +-#elif defined(OS_FREEBSD) ++#elif defined(OS_FREEBSD) || defined(OS_DRAGONFLYBSD) + #include + #include + #define PLATFORM_IS_LITTLE_ENDIAN (_BYTE_ORDER == _LITTLE_ENDIAN) +-#elif defined(OS_OPENBSD) || defined(OS_NETBSD) ||\ +- defined(OS_DRAGONFLYBSD) || defined(OS_ANDROID) ++#elif defined(OS_OPENBSD) || defined(OS_NETBSD) || defined(OS_ANDROID) + #include + #include + #else