From owner-svn-ports-all@FreeBSD.ORG Tue Jul 15 14:21:31 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9BC5AD0C; Tue, 15 Jul 2014 14:21:31 +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 7CA0D2B59; Tue, 15 Jul 2014 14:21:31 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6FELVx7096129; Tue, 15 Jul 2014 14:21:31 GMT (envelope-from tijl@svn.freebsd.org) Received: (from tijl@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6FELUKQ096125; Tue, 15 Jul 2014 14:21:30 GMT (envelope-from tijl@svn.freebsd.org) Message-Id: <201407151421.s6FELUKQ096125@svn.freebsd.org> From: Tijl Coosemans Date: Tue, 15 Jul 2014 14:21:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r361924 - in head: devel/libantlr3c devel/libantlr3c/files net/belle-sip 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 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: Tue, 15 Jul 2014 14:21:31 -0000 Author: tijl Date: Tue Jul 15 14:21:30 2014 New Revision: 361924 URL: http://svnweb.freebsd.org/changeset/ports/361924 QAT: https://qat.redports.org/buildarchive/r361924/ Log: - Add a patch to devel/libantlr3c to define ANTLR3_USE_64BIT on 64-bit architectures and bump dependent ports - Patch configure to respect CFLAGS Added: head/devel/libantlr3c/files/patch-antlr3config.h.in (contents, props changed) Modified: head/devel/libantlr3c/Makefile head/devel/libantlr3c/files/patch-configure head/net/belle-sip/Makefile Modified: head/devel/libantlr3c/Makefile ============================================================================== --- head/devel/libantlr3c/Makefile Tue Jul 15 14:07:09 2014 (r361923) +++ head/devel/libantlr3c/Makefile Tue Jul 15 14:21:30 2014 (r361924) @@ -3,6 +3,7 @@ PORTNAME= libantlr3c PORTVERSION= 3.4 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://www.antlr3.org/download/C/ Added: head/devel/libantlr3c/files/patch-antlr3config.h.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libantlr3c/files/patch-antlr3config.h.in Tue Jul 15 14:21:30 2014 (r361924) @@ -0,0 +1,13 @@ +--- antlr3config.h.in.orig ++++ antlr3config.h.in +@@ -4,7 +4,9 @@ + #undef ANTLR3_NODEBUGGER + + /* Define if 64 bit mode required */ +-#undef ANTLR3_USE_64BIT ++#ifdef _LP64 ++#define ANTLR3_USE_64BIT ++#endif + + /* Define to 1 if you have the `accept' function. */ + #undef HAVE_ACCEPT Modified: head/devel/libantlr3c/files/patch-configure ============================================================================== --- head/devel/libantlr3c/files/patch-configure Tue Jul 15 14:07:09 2014 (r361923) +++ head/devel/libantlr3c/files/patch-configure Tue Jul 15 14:21:30 2014 (r361924) @@ -1,6 +1,14 @@ --- configure.orig 2014-06-29 05:47:03.653220480 +0600 +++ configure 2014-06-29 05:52:37.044197079 +0600 -@@ -10721,7 +10721,7 @@ +@@ -10657,7 +10657,6 @@ + ;; + esac + +-CFLAGS="$CCFLAGS64 $CPPCMNTFLAGS $OPTIMFLAGS $DEBUGFLAGS $WARNFLAGS" + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CFLAGS" >&5 + $as_echo "$CFLAGS" >&6; } + +@@ -10721,7 +10720,7 @@ # Checks for header files. $ac_includes_default @@ -9,7 +17,7 @@ do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "#ifdef HAVE_SYS_TYPES_H -@@ -10736,6 +10736,10 @@ +@@ -10736,6 +10735,10 @@ #ifdef HAVE_NETDB_H # include #endif @@ -20,7 +28,7 @@ " if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF -@@ -10818,23 +10822,6 @@ +@@ -10818,23 +10821,6 @@ done Modified: head/net/belle-sip/Makefile ============================================================================== --- head/net/belle-sip/Makefile Tue Jul 15 14:07:09 2014 (r361923) +++ head/net/belle-sip/Makefile Tue Jul 15 14:21:30 2014 (r361924) @@ -2,6 +2,7 @@ PORTNAME= belle-sip PORTVERSION= 1.3.0 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= SAVANNAH/linphone/${PORTNAME}/:source1 \ http://www.antlr3.org/download/:source2