Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 15 Jul 2014 14:21:30 +0000 (UTC)
From:      Tijl Coosemans <tijl@FreeBSD.org>
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
Message-ID:  <201407151421.s6FELUKQ096125@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <netdb.h>
  #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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201407151421.s6FELUKQ096125>