From owner-svn-ports-branches@FreeBSD.ORG Sun Jan 5 14:55:53 2014
Return-Path:
Delivered-To: svn-ports-branches@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 C29DCF7A;
Sun, 5 Jan 2014 14:55:53 +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))
(No client certificate requested)
by mx1.freebsd.org (Postfix) with ESMTPS id A316C178D;
Sun, 5 Jan 2014 14:55:53 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s05EtrAN024338;
Sun, 5 Jan 2014 14:55:53 GMT (envelope-from rakuco@svn.freebsd.org)
Received: (from rakuco@localhost)
by svn.freebsd.org (8.14.7/8.14.7/Submit) id s05Etq4A024331;
Sun, 5 Jan 2014 14:55:52 GMT (envelope-from rakuco@svn.freebsd.org)
Message-Id: <201401051455.s05Etq4A024331@svn.freebsd.org>
From: Raphael Kubo da Costa
Date: Sun, 5 Jan 2014 14:55:52 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
svn-ports-branches@freebsd.org
Subject: svn commit: r338781 - in branches/2014Q1/net/vde: . files
X-SVN-Group: ports-branches
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-branches@freebsd.org
X-Mailman-Version: 2.1.17
Precedence: list
List-Id: SVN commit messages for all the branches of the ports tree
List-Unsubscribe: ,
List-Archive:
List-Post:
List-Help:
List-Subscribe: ,
X-List-Received-Date: Sun, 05 Jan 2014 14:55:53 -0000
Author: rakuco
Date: Sun Jan 5 14:55:52 2014
New Revision: 338781
URL: http://svnweb.freebsd.org/changeset/ports/338781
Log:
MFH: r338523
- Fix the build when gcc is not present.
- Support staging.
- Set LICENSE.
- Switch from USE_GMAKE to USES=gmake.
Approved by: portmgr (erwin)
Modified:
branches/2014Q1/net/vde/Makefile
branches/2014Q1/net/vde/files/patch-Makefile
branches/2014Q1/net/vde/files/patch-qemu::Makefile
branches/2014Q1/net/vde/files/patch-slirpvde::Makefile
branches/2014Q1/net/vde/pkg-plist
Directory Properties:
branches/2014Q1/ (props changed)
Modified: branches/2014Q1/net/vde/Makefile
==============================================================================
--- branches/2014Q1/net/vde/Makefile Sun Jan 5 14:16:37 2014 (r338780)
+++ branches/2014Q1/net/vde/Makefile Sun Jan 5 14:55:52 2014 (r338781)
@@ -10,17 +10,15 @@ EXTRACT_SUFX= .tgz
MAINTAINER= ports@FreeBSD.org
COMMENT= User-mode virtual ethernet infrastructure
+LICENSE= GPLv2
+
CONFLICTS= vde2-[0-9]*
-USE_GMAKE= yes
+MAKE_ARGS= CC="${CC}"
USE_LDCONFIG= yes
USE_CSTD= gnu89
+USES= gmake
-NO_STAGE= yes
-.include
-
-CFLAGS+= ${CPPFLAGS} -fPIC
-
-MAN1= dpipe.1 slirpvde.1 vdetaplib.1 vdeq.1 vde_plug.1 vde_switch.1
+CFLAGS+= -fPIC
-.include
+.include
Modified: branches/2014Q1/net/vde/files/patch-Makefile
==============================================================================
--- branches/2014Q1/net/vde/files/patch-Makefile Sun Jan 5 14:16:37 2014 (r338780)
+++ branches/2014Q1/net/vde/files/patch-Makefile Sun Jan 5 14:55:52 2014 (r338781)
@@ -1,5 +1,5 @@
---- Makefile Sat Jan 29 15:02:08 2005
-+++ Makefile Sun Jan 30 13:46:59 2005
+--- Makefile.orig 2004-08-27 10:24:43.000000000 +0300
++++ Makefile 2014-01-03 07:27:47.000000000 +0200
@@ -1,14 +1,15 @@
-TUNTAP = $(shell [ -e /usr/include/linux/if_tun.h ] && echo -DTUNTAP)
+TUNTAP = $(shell [ -e /usr/include/net/if_tun.h ] && echo -DTUNTAP)
@@ -15,9 +15,9 @@
-LIB_DIR ?= /usr/local/lib
-MAN_DIR ?= /usr/local/man
+PREFIX ?= /usr/local
-+BIN_DIR ?= $(PREFIX)/bin
-+LIB_DIR ?= $(PREFIX)/lib
-+MAN_DIR ?= $(PREFIX)/man
++BIN_DIR ?= $(DESTDIR)$(PREFIX)/bin
++LIB_DIR ?= $(DESTDIR)$(PREFIX)/lib
++MAN_DIR ?= $(DESTDIR)$(PREFIX)/man
ifneq ($(TUNTAP),)
OBJS += tuntap.o
Modified: branches/2014Q1/net/vde/files/patch-qemu::Makefile
==============================================================================
--- branches/2014Q1/net/vde/files/patch-qemu::Makefile Sun Jan 5 14:16:37 2014 (r338780)
+++ branches/2014Q1/net/vde/files/patch-qemu::Makefile Sun Jan 5 14:55:52 2014 (r338781)
@@ -1,8 +1,22 @@
---- qemu/Makefile Sat Jan 29 15:02:08 2005
-+++ qemu/Makefile Sun Jan 30 12:59:52 2005
+--- qemu/Makefile.orig 2004-08-27 10:34:33.000000000 +0300
++++ qemu/Makefile 2014-01-03 07:32:14.000000000 +0200
@@ -1,4 +1,4 @@
-ALL: vdeq
+all: vdeq
vdeq.o: vdeq.c ../vde.h
+@@ -6,10 +6,9 @@
+ $(CC) -o vdeq vdeq.o
+
+ install : vdeq
+- install -d $(DESTDIR)$(BIN_DIR)
+- install -s vdeq $(DESTDIR)$(BIN_DIR)
+- rm -f $(DESTDIR)$(BIN_DIR)/vdeqemu
+- ln -s $(DESTDIR)$(BIN_DIR)/vdeq $(DESTDIR)$(BIN_DIR)/vdeqemu
++ install -d $(BIN_DIR)
++ install -s vdeq $(BIN_DIR)
++ ln -sf vdeq $(BIN_DIR)/vdeqemu
+
+ clean:
+ rm -f *.o vdeq
Modified: branches/2014Q1/net/vde/files/patch-slirpvde::Makefile
==============================================================================
--- branches/2014Q1/net/vde/files/patch-slirpvde::Makefile Sun Jan 5 14:16:37 2014 (r338780)
+++ branches/2014Q1/net/vde/files/patch-slirpvde::Makefile Sun Jan 5 14:55:52 2014 (r338781)
@@ -1,5 +1,5 @@
---- slirpvde/Makefile Sat Jan 29 15:02:08 2005
-+++ slirpvde/Makefile Sun Jan 30 14:02:57 2005
+--- slirpvde/Makefile.orig 2004-06-03 18:19:40.000000000 +0300
++++ slirpvde/Makefile 2014-01-03 07:25:37.000000000 +0200
@@ -3,7 +3,7 @@
tcp_timer.o udp.o \
bootp.o
@@ -9,7 +9,7 @@
all: libslirp.a slirpvde
-@@ -34,7 +34,7 @@
+@@ -34,12 +34,12 @@
udp.o: udp.c ip_icmp.h
slirpvde: slirpvde.o libslirp.a
@@ -18,3 +18,10 @@
clean:
rm -rf *.o slirpvde libslirp.a
+
+ install : slirpvde
+- install -d $(DESTDIR)$(BIN_DIR)
+- install -s slirpvde $(DESTDIR)$(BIN_DIR)
++ install -d $(BIN_DIR)
++ install -s slirpvde $(BIN_DIR)
+
Modified: branches/2014Q1/net/vde/pkg-plist
==============================================================================
--- branches/2014Q1/net/vde/pkg-plist Sun Jan 5 14:16:37 2014 (r338780)
+++ branches/2014Q1/net/vde/pkg-plist Sun Jan 5 14:55:52 2014 (r338781)
@@ -6,3 +6,9 @@ bin/vdeq
bin/vdeqemu
bin/vdetap
lib/libvdetap.so
+man/man1/dpipe.1.gz
+man/man1/slirpvde.1.gz
+man/man1/vdetaplib.1.gz
+man/man1/vdeq.1.gz
+man/man1/vde_plug.1.gz
+man/man1/vde_switch.1.gz
From owner-svn-ports-branches@FreeBSD.ORG Sun Jan 5 19:52:21 2014
Return-Path:
Delivered-To: svn-ports-branches@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 20778A96;
Sun, 5 Jan 2014 19:52:21 +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))
(No client certificate requested)
by mx1.freebsd.org (Postfix) with ESMTPS id 0C8E31EA1;
Sun, 5 Jan 2014 19:52:21 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s05JqKZH048366;
Sun, 5 Jan 2014 19:52:20 GMT (envelope-from antoine@svn.freebsd.org)
Received: (from antoine@localhost)
by svn.freebsd.org (8.14.7/8.14.7/Submit) id s05JqKJA048364;
Sun, 5 Jan 2014 19:52:20 GMT (envelope-from antoine@svn.freebsd.org)
Message-Id: <201401051952.s05JqKJA048364@svn.freebsd.org>
From: Antoine Brodin
Date: Sun, 5 Jan 2014 19:52:20 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
svn-ports-branches@freebsd.org
Subject: svn commit: r338820 - in branches/2014Q1/x11-wm/ede: . files
X-SVN-Group: ports-branches
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-branches@freebsd.org
X-Mailman-Version: 2.1.17
Precedence: list
List-Id: SVN commit messages for all the branches of the ports tree
List-Unsubscribe: ,
List-Archive:
List-Post:
List-Help:
List-Subscribe: ,
X-List-Received-Date: Sun, 05 Jan 2014 19:52:21 -0000
Author: antoine
Date: Sun Jan 5 19:52:20 2014
New Revision: 338820
URL: http://svnweb.freebsd.org/changeset/ports/338820
Log:
MFH: r338818
Fix build with clang
PR: ports/184859
Submitted by: KATO Tsuguru
Approved by: portmgr (implicit)
Added:
branches/2014Q1/x11-wm/ede/files/
- copied from r338818, head/x11-wm/ede/files/
Modified:
branches/2014Q1/x11-wm/ede/Makefile
branches/2014Q1/x11-wm/ede/pkg-plist
Directory Properties:
branches/2014Q1/ (props changed)
Modified: branches/2014Q1/x11-wm/ede/Makefile
==============================================================================
--- branches/2014Q1/x11-wm/ede/Makefile Sun Jan 5 19:44:38 2014 (r338819)
+++ branches/2014Q1/x11-wm/ede/Makefile Sun Jan 5 19:52:20 2014 (r338820)
@@ -3,7 +3,7 @@
PORTNAME= ede
PORTVERSION= 2.0
-PORTREVISION= 2
+PORTREVISION= 3
CATEGORIES= x11-wm
MASTER_SITES= SF \
SF/${PORTNAME}/${PORTNAME}lib/${PORTVERSION}:edelib
@@ -16,21 +16,19 @@ COMMENT= Equinox Desktop Environment
LICENSE= GPLv2 LGPL20
LICENSE_COMB= multi
-BUILD_DEPENDS= python:${PORTSDIR}/lang/python \
- doxygen:${PORTSDIR}/devel/doxygen \
+BUILD_DEPENDS= doxygen:${PORTSDIR}/devel/doxygen \
jam:${PORTSDIR}/devel/jam \
- update-mime-database:${PORTSDIR}/misc/shared-mime-info
-LIB_DEPENDS= dbus-1.3:${PORTSDIR}/devel/dbus \
- curl:${PORTSDIR}/ftp/curl \
- startup-notification-1.0:${PORTSDIR}/x11/startup-notification \
- fltk.1:${PORTSDIR}/x11-toolkits/fltk
-RUN_DEPENDS= update-mime-database:${PORTSDIR}/misc/shared-mime-info
+ python:${PORTSDIR}/lang/python
+LIB_DEPENDS= libdbus-1.so:${PORTSDIR}/devel/dbus \
+ libcurl.so:${PORTSDIR}/ftp/curl \
+ libstartup-notification-1.so:${PORTSDIR}/x11/startup-notification \
+ libfltk.so:${PORTSDIR}/x11-toolkits/fltk
OPTIONS_DEFINE= HAL
HAL_DESC= Enable HAL support
+USES= iconv gettext pathfix pkgconfig shared-mime-info
USE_XORG= xcomposite xft xinerama xpm xrandr
-USES= pathfix gettext pkgconfig
USE_PYTHON= yes
USE_FAM= yes
GNU_CONFIGURE= yes
@@ -53,15 +51,16 @@ EDELIB_WRKSRC= ${WRKDIR}/${EDELIB_DISTNA
HAL_LIB_DEPENDS= libhal.so.1:${PORTSDIR}/sysutils/hal
HAL_CONFIGURE_OFF= --disable-hal
-# use multiple make jobs
-_make_jobs= -j${MAKE_JOBS_NUMBER}
-
-NO_STAGE= yes
post-patch:
@${REINPLACE_CMD} -e \
's|/usr/local/share|${LOCALBASE}/share| ; \
/OPTIM_FLAGS=/s|-O2|-fPIC| ; \
s|_daylight=yes|_daylight=no|' ${EDELIB_WRKSRC}/configure
+ @${REINPLACE_CMD} -e \
+ 's| -liconv| ${ICONV_LIB}|' ${WRKSRC}/configure
+ @${REINPLACE_CMD} -e \
+ 's|$$(CC)|@CXX@| ; \
+ s|-lstdc++||' ${WRKSRC}/Jamconfig.in
pre-configure:
@(cd ${EDELIB_WRKSRC} \
@@ -75,14 +74,25 @@ pre-configure:
pre-build:
@(cd ${EDELIB_WRKSRC} \
- && ${LOCALBASE}/bin/jam ${_make_jobs} \
+ && ${LOCALBASE}/bin/jam -j${MAKE_JOBS_NUMBER} \
&& ${LOCALBASE}/bin/jam ${INSTALL_TARGET})
do-build:
- @(cd ${BUILD_WRKSRC} && ${LOCALBASE}/bin/jam ${_make_jobs})
+ @(cd ${BUILD_WRKSRC} && ${LOCALBASE}/bin/jam -j${MAKE_JOBS_NUMBER})
do-install:
- @(cd ${INSTALL_WRKSRC} && ${LOCALBASE}/bin/jam ${INSTALL_TARGET})
- @-update-mime-database ${PREFIX}/share/mime
+ @(cd ${INSTALL_WRKSRC} && ${SETENV} DESTDIR="${STAGEDIR}" \
+ ${LOCALBASE}/bin/jam ${INSTALL_TARGET})
+ @${MKDIR} ${STAGEDIR}${PREFIX}/share/doc/ede-2.0.0/manual/images
+ @(cd ${WRKSRC}/doc/manual/images && ${COPYTREE_SHARE} . \
+ ${STAGEDIR}${PREFIX}/share/doc/ede-2.0.0/manual/images)
+.for i in ede-about ede-autostart ede-bell-conf ede-bug-report ede-crasher \
+ ede-calc ede-conf ede-desktop ede-desktop-conf ede-dialog \
+ ede-keyboard-conf ede-notify-daemon ede-screensaver-conf \
+ ede-image-view ede-launch emountd ede-timedate ede-tip \
+ ede-tip-compiler ede-preferred-applications evoke ede-shutdown \
+ ede-panel ede-menu-spec-test pekwm
+ @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${i}
+.endfor
.include
Modified: branches/2014Q1/x11-wm/ede/pkg-plist
==============================================================================
--- branches/2014Q1/x11-wm/ede/pkg-plist Sun Jan 5 19:44:38 2014 (r338819)
+++ branches/2014Q1/x11-wm/ede/pkg-plist Sun Jan 5 19:52:20 2014 (r338820)
@@ -1555,5 +1555,3 @@ share/xsessions/ede.desktop
@dirrm etc/xdg/ede
@dirrmtry etc/xdg
@dirrm etc/pekwm
-@exec %%LOCALBASE%%/bin/update-mime-database %D/share/mime
-@unexec %%LOCALBASE%%/bin/update-mime-database %D/share/mime
From owner-svn-ports-branches@FreeBSD.ORG Mon Jan 6 15:56:20 2014
Return-Path:
Delivered-To: svn-ports-branches@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
[IPv6:2001:1900:2254:206a::19:1])
(using TLSv1 with cipher ADH-AES256-SHA (256/256 bits))
(No client certificate requested)
by hub.freebsd.org (Postfix) with ESMTPS id 4B9CA9C;
Mon, 6 Jan 2014 15:56:20 +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))
(No client certificate requested)
by mx1.freebsd.org (Postfix) with ESMTPS id 362C41ED4;
Mon, 6 Jan 2014 15:56:20 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s06FuK8Z019163;
Mon, 6 Jan 2014 15:56:20 GMT (envelope-from brooks@svn.freebsd.org)
Received: (from brooks@localhost)
by svn.freebsd.org (8.14.7/8.14.7/Submit) id s06FuI1p019156;
Mon, 6 Jan 2014 15:56:18 GMT (envelope-from brooks@svn.freebsd.org)
Message-Id: <201401061556.s06FuI1p019156@svn.freebsd.org>
From: Brooks Davis
Date: Mon, 6 Jan 2014 15:56:18 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
svn-ports-branches@freebsd.org
Subject: svn commit: r338900 - in branches/2014Q1: devel/llvm34
devel/llvm34/files lang/clang34 lang/clang34/files
X-SVN-Group: ports-branches
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-branches@freebsd.org
X-Mailman-Version: 2.1.17
Precedence: list
List-Id: SVN commit messages for all the branches of the ports tree
List-Unsubscribe: ,
List-Archive:
List-Post:
List-Help:
List-Subscribe: ,
X-List-Received-Date: Mon, 06 Jan 2014 15:56:20 -0000
Author: brooks
Date: Mon Jan 6 15:56:18 2014
New Revision: 338900
URL: http://svnweb.freebsd.org/changeset/ports/338900
Log:
MFH: r338603
Upgrade to 3.4rc3.
Install altivec.h and cpuid.h so it is possible to compile things.
PR: ports/184770, ports/185058
Approved by: portmgr (bapt), portmgr-lurkers (mat)
Deleted:
branches/2014Q1/devel/llvm34/files/patch-svn-195411
Modified:
branches/2014Q1/devel/llvm34/Makefile
branches/2014Q1/devel/llvm34/distinfo
branches/2014Q1/lang/clang34/Makefile
branches/2014Q1/lang/clang34/distinfo
branches/2014Q1/lang/clang34/files/patch-tools_clang_lib_Headers_Makefile
branches/2014Q1/lang/clang34/pkg-plist
Directory Properties:
branches/2014Q1/ (props changed)
Modified: branches/2014Q1/devel/llvm34/Makefile
==============================================================================
--- branches/2014Q1/devel/llvm34/Makefile Mon Jan 6 15:34:53 2014 (r338899)
+++ branches/2014Q1/devel/llvm34/Makefile Mon Jan 6 15:56:18 2014 (r338900)
@@ -1,12 +1,11 @@
# $FreeBSD$
PORTNAME= llvm
-DISTVERSION= 3.4rc2
-PORTREVISION= 1
+DISTVERSION= 3.4rc3
CATEGORIES= devel lang
-MASTER_SITES= http://llvm.org/pre-releases/3.4/rc2/
+MASTER_SITES= http://llvm.org/pre-releases/3.4/rc3/
#MASTER_SITES= http://llvm.org/releases/${PORTVERSION}/
-DISTNAME= ${PORTNAME}.src-${DISTVERSION}-source
+DISTNAME= ${PORTNAME}-${DISTVERSION}.source
PKGNAMESUFFIX= ${LLVM_SUFFIX}
MAINTAINER= brooks@FreeBSD.org
@@ -23,7 +22,6 @@ UNIQUENAME= ${PORTNAME}${LLVM_SUFFIX}
WRKSRC= ${WRKDIR}/llvm.src
USES= gmake perl5
-USE_XZ= yes
GNU_CONFIGURE= yes
GNU_CONFIGURE_PREFIX= ${LLVM_PREFIX}
USE_LDCONFIG= ${LLVM_PREFIX}/lib
Modified: branches/2014Q1/devel/llvm34/distinfo
==============================================================================
--- branches/2014Q1/devel/llvm34/distinfo Mon Jan 6 15:34:53 2014 (r338899)
+++ branches/2014Q1/devel/llvm34/distinfo Mon Jan 6 15:56:18 2014 (r338900)
@@ -1,2 +1,2 @@
-SHA256 (llvm.src-3.4rc2-source.tar.xz) = d9345fe68f1bc60d7aa4d6be559b7fa6d1c16ebfcfb9a8340e6d8beac0f073cc
-SIZE (llvm.src-3.4rc2-source.tar.xz) = 10490924
+SHA256 (llvm-3.4rc3.source.tar.gz) = 606b632e01bd57718f2a4607cbde64a113219e649b55439355404285be83f9cb
+SIZE (llvm-3.4rc3.source.tar.gz) = 15561407
Modified: branches/2014Q1/lang/clang34/Makefile
==============================================================================
--- branches/2014Q1/lang/clang34/Makefile Mon Jan 6 15:34:53 2014 (r338899)
+++ branches/2014Q1/lang/clang34/Makefile Mon Jan 6 15:56:18 2014 (r338900)
@@ -1,9 +1,9 @@
# $FreeBSD$
PORTNAME= clang
-DISTVERSION= 3.4rc2
+DISTVERSION= 3.4rc3
CATEGORIES= lang devel
-MASTER_SITES= http://llvm.org/pre-releases/3.4/rc2/
+MASTER_SITES= http://llvm.org/pre-releases/3.4/rc3/
#MASTER_SITES= http://llvm.org/releases/${PORTVERSION}/
PKGNAMESUFFIX= ${LLVM_SUFFIX}
DISTNAME= ${CLANG_NAME}
@@ -13,10 +13,10 @@ DISTFILES= ${CLANG_SOURCE} \
MAINTAINER= brooks@FreeBSD.org
COMMENT= C, Objective-C, and C++ compiler
-CLANG_NAME= cfe.src-${DISTVERSION}-source
+CLANG_NAME= cfe-${DISTVERSION}.source
CLANG_SOURCE= ${CLANG_NAME}${EXTRACT_SUFX}
CLANG_EXTRACT= cfe.src
-LLVM_NAME= llvm.src-${DISTVERSION}-source
+LLVM_NAME= llvm-${DISTVERSION}.source
LLVM_SOURCE= ${LLVM_NAME}${EXTRACT_SUFX}
LLVM_EXTRACT= llvm.src
LIBNAME= libLLVM-${DISTVERSION:C/rc[0-9]//}.so
@@ -38,7 +38,6 @@ GNU_CONFIGURE_PREFIX= ${LLVM_PREFIX}
USES= gmake perl5
USE_LDCONFIG= yes
USE_PYTHON_BUILD= yes
-USE_XZ= yes
MAKE_ARGS= CLANG_TBLGEN=${WRKSRC}/${RELTYPE}/bin/clang-tblgen \
LLVMIncDir=${LLVM_PREFIX}/include \
Modified: branches/2014Q1/lang/clang34/distinfo
==============================================================================
--- branches/2014Q1/lang/clang34/distinfo Mon Jan 6 15:34:53 2014 (r338899)
+++ branches/2014Q1/lang/clang34/distinfo Mon Jan 6 15:56:18 2014 (r338900)
@@ -1,4 +1,4 @@
-SHA256 (cfe.src-3.4rc2-source.tar.xz) = 406e95d56e9078de51e5a290ab5c2330ccb900a0c6373cd0f0dc86bf1017f0bb
-SIZE (cfe.src-3.4rc2-source.tar.xz) = 7618328
-SHA256 (llvm.src-3.4rc2-source.tar.xz) = d9345fe68f1bc60d7aa4d6be559b7fa6d1c16ebfcfb9a8340e6d8beac0f073cc
-SIZE (llvm.src-3.4rc2-source.tar.xz) = 10490924
+SHA256 (cfe-3.4rc3.source.tar.gz) = 62300ac32551ee333ef21e875f8dd1d2f7275cafc13ad35b7e2df85d284fa6c0
+SIZE (cfe-3.4rc3.source.tar.gz) = 10440545
+SHA256 (llvm-3.4rc3.source.tar.gz) = 606b632e01bd57718f2a4607cbde64a113219e649b55439355404285be83f9cb
+SIZE (llvm-3.4rc3.source.tar.gz) = 15561407
Modified: branches/2014Q1/lang/clang34/files/patch-tools_clang_lib_Headers_Makefile
==============================================================================
--- branches/2014Q1/lang/clang34/files/patch-tools_clang_lib_Headers_Makefile Mon Jan 6 15:34:53 2014 (r338899)
+++ branches/2014Q1/lang/clang34/files/patch-tools_clang_lib_Headers_Makefile Mon Jan 6 15:56:18 2014 (r338900)
@@ -8,7 +8,7 @@ $FreeBSD$
HeaderDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib/clang/$(CLANG_VERSION)/include
-HEADERS := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.h))
-+HEADERS := $(notdir $(wildcard $(PROJ_SRC_DIR)/*intrin*.h) mm3dnow.h mm_malloc.h)
++HEADERS := $(notdir $(wildcard $(PROJ_SRC_DIR)/*intrin*.h) altivec.h cpuid.h mm3dnow.h mm_malloc.h)
OBJHEADERS := $(addprefix $(HeaderDir)/, $(HEADERS))
Modified: branches/2014Q1/lang/clang34/pkg-plist
==============================================================================
--- branches/2014Q1/lang/clang34/pkg-plist Mon Jan 6 15:34:53 2014 (r338899)
+++ branches/2014Q1/lang/clang34/pkg-plist Mon Jan 6 15:56:18 2014 (r338900)
@@ -422,12 +422,14 @@ llvm%%LLVM_SUFFIX%%/include/clang/Toolin
llvm%%LLVM_SUFFIX%%/include/clang/Tooling/Tooling.h
llvm%%LLVM_SUFFIX%%/lib/clang/3.4/include/__wmmintrin_aes.h
llvm%%LLVM_SUFFIX%%/lib/clang/3.4/include/__wmmintrin_pclmul.h
+llvm%%LLVM_SUFFIX%%/lib/clang/3.4/include/altivec.h
llvm%%LLVM_SUFFIX%%/lib/clang/3.4/include/ammintrin.h
llvm%%LLVM_SUFFIX%%/lib/clang/3.4/include/arm_neon.h
llvm%%LLVM_SUFFIX%%/lib/clang/3.4/include/avx2intrin.h
llvm%%LLVM_SUFFIX%%/lib/clang/3.4/include/avxintrin.h
llvm%%LLVM_SUFFIX%%/lib/clang/3.4/include/bmi2intrin.h
llvm%%LLVM_SUFFIX%%/lib/clang/3.4/include/bmiintrin.h
+llvm%%LLVM_SUFFIX%%/lib/clang/3.4/include/cpuid.h
llvm%%LLVM_SUFFIX%%/lib/clang/3.4/include/emmintrin.h
llvm%%LLVM_SUFFIX%%/lib/clang/3.4/include/f16cintrin.h
llvm%%LLVM_SUFFIX%%/lib/clang/3.4/include/fma4intrin.h
From owner-svn-ports-branches@FreeBSD.ORG Tue Jan 7 23:21:36 2014
Return-Path:
Delivered-To: svn-ports-branches@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 4E8F45E3;
Tue, 7 Jan 2014 23:21:36 +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))
(No client certificate requested)
by mx1.freebsd.org (Postfix) with ESMTPS id 201D019FD;
Tue, 7 Jan 2014 23:21:36 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s07NLZmH051871;
Tue, 7 Jan 2014 23:21:35 GMT (envelope-from mat@svn.freebsd.org)
Received: (from mat@localhost)
by svn.freebsd.org (8.14.7/8.14.7/Submit) id s07NLZKU051868;
Tue, 7 Jan 2014 23:21:35 GMT (envelope-from mat@svn.freebsd.org)
Message-Id: <201401072321.s07NLZKU051868@svn.freebsd.org>
From: Mathieu Arnold
Date: Tue, 7 Jan 2014 23:21:35 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
svn-ports-branches@freebsd.org
Subject: svn commit: r339048 - branches/2014Q1/cad/meshlab/files
X-SVN-Group: ports-branches
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-branches@freebsd.org
X-Mailman-Version: 2.1.17
Precedence: list
List-Id: SVN commit messages for all the branches of the ports tree
List-Unsubscribe: ,
List-Archive:
List-Post:
List-Help:
List-Subscribe: ,
X-List-Received-Date: Tue, 07 Jan 2014 23:21:36 -0000
Author: mat
Date: Tue Jan 7 23:21:35 2014
New Revision: 339048
URL: http://svnweb.freebsd.org/changeset/ports/339048
Log:
MFH: r339043
Fix build with gcc47
PR: ports/184565
Submitted by: Christoph Moench-Tegeder
Approved by: maintainer
Approved by: portmgr (implicit)
Added:
branches/2014Q1/cad/meshlab/files/patch-meshlabplugins-decorate_base-colorhistogram.h
- copied unchanged from r339043, head/cad/meshlab/files/patch-meshlabplugins-decorate_base-colorhistogram.h
branches/2014Q1/cad/meshlab/files/patch-vcglib-wrap-gl-trimesh.h
- copied unchanged from r339043, head/cad/meshlab/files/patch-vcglib-wrap-gl-trimesh.h
Deleted:
branches/2014Q1/cad/meshlab/files/patch-vcglib-vcg-space_deprecated_point.h
Modified:
Directory Properties:
branches/2014Q1/ (props changed)
Copied: branches/2014Q1/cad/meshlab/files/patch-meshlabplugins-decorate_base-colorhistogram.h (from r339043, head/cad/meshlab/files/patch-meshlabplugins-decorate_base-colorhistogram.h)
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ branches/2014Q1/cad/meshlab/files/patch-meshlabplugins-decorate_base-colorhistogram.h Tue Jan 7 23:21:35 2014 (r339048, copy of r339043, head/cad/meshlab/files/patch-meshlabplugins-decorate_base-colorhistogram.h)
@@ -0,0 +1,15 @@
+--- ../../meshlab/src/meshlabplugins/decorate_base/colorhistogram.h.orig 2013-11-16 22:04:41.000000000 +0100
++++ ../../meshlab/src/meshlabplugins/decorate_base/colorhistogram.h 2013-11-16 22:04:56.000000000 +0100
+@@ -39,10 +39,11 @@
+ //ScalarType BinWidth(ScalarType v);
+
+ //! Reset histogram data.
++ /* dead code
+ void Clear() {
+ this->::Clear();
+ CV.clear();
+- }
++ } */
+ /*
+ Note that the histogram holds valid bins plus two semi-infinite bins.
+
Copied: branches/2014Q1/cad/meshlab/files/patch-vcglib-wrap-gl-trimesh.h (from r339043, head/cad/meshlab/files/patch-vcglib-wrap-gl-trimesh.h)
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ branches/2014Q1/cad/meshlab/files/patch-vcglib-wrap-gl-trimesh.h Tue Jan 7 23:21:35 2014 (r339048, copy of r339043, head/cad/meshlab/files/patch-vcglib-wrap-gl-trimesh.h)
@@ -0,0 +1,18 @@
+--- ../../vcglib/wrap/gl/trimesh.h.orig 2013-11-16 21:32:47.000000000 +0100
++++ ../../vcglib/wrap/gl/trimesh.h 2013-11-16 21:33:23.000000000 +0100
+@@ -895,6 +895,7 @@
+ #define VCTRACE (void)0
+ //#define VCTRACE TRACE
+
++/* dead code
+ template
+ void Crease(MESH_TYPE &m, typename MESH_TYPE::scalar_type angleRad)
+ {
+@@ -1006,6 +1007,7 @@
+ m.vert.math::Swap(newvert);
+ m.vn=m.vert.size();
+ }
++*/
+
+ /*
+ Secondo tipo di crease angle. ha bisogno del per wedge normal
From owner-svn-ports-branches@FreeBSD.ORG Tue Jan 7 23:22:59 2014
Return-Path:
Delivered-To: svn-ports-branches@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 14C476D7;
Tue, 7 Jan 2014 23:22:59 +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))
(No client certificate requested)
by mx1.freebsd.org (Postfix) with ESMTPS id F3E801A0D;
Tue, 7 Jan 2014 23:22:58 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s07NMwJJ052377;
Tue, 7 Jan 2014 23:22:58 GMT (envelope-from mat@svn.freebsd.org)
Received: (from mat@localhost)
by svn.freebsd.org (8.14.7/8.14.7/Submit) id s07NMwUG052376;
Tue, 7 Jan 2014 23:22:58 GMT (envelope-from mat@svn.freebsd.org)
Message-Id: <201401072322.s07NMwUG052376@svn.freebsd.org>
From: Mathieu Arnold
Date: Tue, 7 Jan 2014 23:22:58 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
svn-ports-branches@freebsd.org
Subject: svn commit: r339049 - branches/2014Q1/math/abacus/files
X-SVN-Group: ports-branches
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-branches@freebsd.org
X-Mailman-Version: 2.1.17
Precedence: list
List-Id: SVN commit messages for all the branches of the ports tree
List-Unsubscribe: ,
List-Archive:
List-Post:
List-Help:
List-Subscribe: ,
X-List-Received-Date: Tue, 07 Jan 2014 23:22:59 -0000
Author: mat
Date: Tue Jan 7 23:22:58 2014
New Revision: 339049
URL: http://svnweb.freebsd.org/changeset/ports/339049
Log:
MFH: r339044
Fix build with gcc47.
PR: ports/184571
Submitted by: Christoph Moench-Tegeder
Approved by: maintainer
Approved by: portmgr (implicit)
Added:
branches/2014Q1/math/abacus/files/patch-Include-standardpool.inc
- copied unchanged from r339044, head/math/abacus/files/patch-Include-standardpool.inc
Modified:
Directory Properties:
branches/2014Q1/ (props changed)
Copied: branches/2014Q1/math/abacus/files/patch-Include-standardpool.inc (from r339044, head/math/abacus/files/patch-Include-standardpool.inc)
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ branches/2014Q1/math/abacus/files/patch-Include-standardpool.inc Tue Jan 7 23:22:58 2014 (r339049, copy of r339044, head/math/abacus/files/patch-Include-standardpool.inc)
@@ -0,0 +1,20 @@
+--- Include/abacus/standardpool.inc.orig 2013-11-16 14:06:39.000000000 +0100
++++ Include/abacus/standardpool.inc 2013-11-16 14:08:30.000000000 +0100
+@@ -129,7 +129,7 @@
+
+ for(int i = 0; i < ABA_POOL::number(); i++)
+ {
+- if(softDeleteConVar(pool_[i]) == 0)
++ if(this->softDeleteConVar(pool_[i]) == 0)
+ {
+ nDeleted++;
+ // consider the case that a slot has been deleted although it was empty
+@@ -179,7 +179,7 @@
+
+ while(nRemoved < maxRemove && !candidates.empty()) {
+ c = candidates.extractMin();
+- hardDeleteConVar(pool_[c]);
++ this->hardDeleteConVar(pool_[c]);
+ nRemoved++;
+ }
+
From owner-svn-ports-branches@FreeBSD.ORG Tue Jan 7 23:23:57 2014
Return-Path:
Delivered-To: svn-ports-branches@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 6A65F7C0;
Tue, 7 Jan 2014 23:23:57 +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))
(No client certificate requested)
by mx1.freebsd.org (Postfix) with ESMTPS id 3C8911A18;
Tue, 7 Jan 2014 23:23:57 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s07NNvvA052736;
Tue, 7 Jan 2014 23:23:57 GMT (envelope-from mat@svn.freebsd.org)
Received: (from mat@localhost)
by svn.freebsd.org (8.14.7/8.14.7/Submit) id s07NNuU0052733;
Tue, 7 Jan 2014 23:23:56 GMT (envelope-from mat@svn.freebsd.org)
Message-Id: <201401072323.s07NNuU0052733@svn.freebsd.org>
From: Mathieu Arnold
Date: Tue, 7 Jan 2014 23:23:56 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
svn-ports-branches@freebsd.org
Subject: svn commit: r339050 - in branches/2014Q1/lang/ratfor: . files
X-SVN-Group: ports-branches
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-branches@freebsd.org
X-Mailman-Version: 2.1.17
Precedence: list
List-Id: SVN commit messages for all the branches of the ports tree
List-Unsubscribe: ,
List-Archive:
List-Post:
List-Help:
List-Subscribe: ,
X-List-Received-Date: Tue, 07 Jan 2014 23:23:57 -0000
Author: mat
Date: Tue Jan 7 23:23:56 2014
New Revision: 339050
URL: http://svnweb.freebsd.org/changeset/ports/339050
Log:
MFH: r339045
Fix build with gcc47
maintainer timeout
PR: ports/184574
Submitted by: Christoph Moench-Tegeder
Approved by: portmgr (implicit)
Modified:
branches/2014Q1/lang/ratfor/Makefile (contents, props changed)
branches/2014Q1/lang/ratfor/files/patch-Makefile (contents, props changed)
Directory Properties:
branches/2014Q1/ (props changed)
Modified: branches/2014Q1/lang/ratfor/Makefile
==============================================================================
--- branches/2014Q1/lang/ratfor/Makefile Tue Jan 7 23:22:58 2014 (r339049)
+++ branches/2014Q1/lang/ratfor/Makefile Tue Jan 7 23:23:56 2014 (r339050)
@@ -26,7 +26,6 @@ USE_FORTRAN= yes
NO_STAGE= yes
post-patch:
@cd ${WRKSRC} ; ${PATCH} --quiet < testw.patch
- @${REINPLACE_CMD} -e 's|%%F77%%|${F77}|' ${WRKSRC}/Makefile
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/ratfor77 ${PREFIX}/bin
Modified: branches/2014Q1/lang/ratfor/files/patch-Makefile
==============================================================================
--- branches/2014Q1/lang/ratfor/files/patch-Makefile Tue Jan 7 23:22:58 2014 (r339049)
+++ branches/2014Q1/lang/ratfor/files/patch-Makefile Tue Jan 7 23:23:56 2014 (r339050)
@@ -1,16 +1,22 @@
---- Makefile~ Sat Jan 13 18:13:44 2007
-+++ Makefile Sat Jan 13 18:14:35 2007
-@@ -28,11 +28,11 @@
+--- Makefile.orig 2013-11-16 17:28:28.000000000 +0100
++++ Makefile 2013-11-16 17:27:51.000000000 +0100
+@@ -26,13 +26,15 @@
+ clean:
+ rm -f *.o *~ ratfor ratfor77 a.out test testw test.f testw.f
- test: ratfor
+-test: ratfor
++test: test.f
++
++test.f: ratfor
./ratfor -o test.f test.r
- f77 -o test test.f
-+ %%F77%% -o test test.f
- testw: ratfor
+-testw: ratfor
++testw: testw.f
++
++testw.f: ratfor
./ratfor -o testw.f testw.r
- f77 -o testw testw.f
-+ %%F77%% -o testw testw.f
tests: test testw
./test
From owner-svn-ports-branches@FreeBSD.ORG Tue Jan 7 23:25:13 2014
Return-Path:
Delivered-To: svn-ports-branches@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
[IPv6:2001:1900:2254:206a::19:1])
(using TLSv1 with cipher ADH-AES256-SHA (256/256 bits))
(No client certificate requested)
by hub.freebsd.org (Postfix) with ESMTPS id 302FBA56;
Tue, 7 Jan 2014 23:25:13 +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))
(No client certificate requested)
by mx1.freebsd.org (Postfix) with ESMTPS id 1C4011A2D;
Tue, 7 Jan 2014 23:25:13 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s07NPCxu053310;
Tue, 7 Jan 2014 23:25:12 GMT (envelope-from mat@svn.freebsd.org)
Received: (from mat@localhost)
by svn.freebsd.org (8.14.7/8.14.7/Submit) id s07NPCej053309;
Tue, 7 Jan 2014 23:25:12 GMT (envelope-from mat@svn.freebsd.org)
Message-Id: <201401072325.s07NPCej053309@svn.freebsd.org>
From: Mathieu Arnold
Date: Tue, 7 Jan 2014 23:25:12 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
svn-ports-branches@freebsd.org
Subject: svn commit: r339053 - branches/2014Q1/textproc/ctpp2/files
X-SVN-Group: ports-branches
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-branches@freebsd.org
X-Mailman-Version: 2.1.17
Precedence: list
List-Id: SVN commit messages for all the branches of the ports tree
List-Unsubscribe: ,
List-Archive:
List-Post:
List-Help:
List-Subscribe: ,
X-List-Received-Date: Tue, 07 Jan 2014 23:25:13 -0000
Author: mat
Date: Tue Jan 7 23:25:12 2014
New Revision: 339053
URL: http://svnweb.freebsd.org/changeset/ports/339053
Log:
MFH: r339046
Fix build with gcc47
maintainer timeout
PR: ports/184575
Submitted by: Christoph Moench-Tegeder
Approved by: portmgr (implicit)
Added:
branches/2014Q1/textproc/ctpp2/files/patch-src-CTPP2FileSourceLoader.cpp
- copied unchanged from r339046, head/textproc/ctpp2/files/patch-src-CTPP2FileSourceLoader.cpp
Modified:
Directory Properties:
branches/2014Q1/ (props changed)
Copied: branches/2014Q1/textproc/ctpp2/files/patch-src-CTPP2FileSourceLoader.cpp (from r339046, head/textproc/ctpp2/files/patch-src-CTPP2FileSourceLoader.cpp)
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ branches/2014Q1/textproc/ctpp2/files/patch-src-CTPP2FileSourceLoader.cpp Tue Jan 7 23:25:12 2014 (r339053, copy of r339046, head/textproc/ctpp2/files/patch-src-CTPP2FileSourceLoader.cpp)
@@ -0,0 +1,10 @@
+--- src/CTPP2FileSourceLoader.cpp.orig 2013-11-16 14:26:59.000000000 +0100
++++ src/CTPP2FileSourceLoader.cpp 2013-11-16 14:27:17.000000000 +0100
+@@ -38,6 +38,7 @@
+ #include
+ #include
+ #include
++#include
+
+ #ifdef WIN32
+ #include /* getcwd */
From owner-svn-ports-branches@FreeBSD.ORG Wed Jan 8 01:07:25 2014
Return-Path:
Delivered-To: svn-ports-branches@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 5FB78922;
Wed, 8 Jan 2014 01:07:25 +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))
(No client certificate requested)
by mx1.freebsd.org (Postfix) with ESMTPS id 4B0F212AC;
Wed, 8 Jan 2014 01:07:25 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0817PkJ095285;
Wed, 8 Jan 2014 01:07:25 GMT (envelope-from garga@svn.freebsd.org)
Received: (from garga@localhost)
by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0817Om8095283;
Wed, 8 Jan 2014 01:07:24 GMT (envelope-from garga@svn.freebsd.org)
Message-Id: <201401080107.s0817Om8095283@svn.freebsd.org>
From: Renato Botelho
Date: Wed, 8 Jan 2014 01:07:24 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
svn-ports-branches@freebsd.org
Subject: svn commit: r339063 - in branches/2014Q1/security/clamav: . files
X-SVN-Group: ports-branches
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-branches@freebsd.org
X-Mailman-Version: 2.1.17
Precedence: list
List-Id: SVN commit messages for all the branches of the ports tree
List-Unsubscribe: ,
List-Archive:
List-Post:
List-Help:
List-Subscribe: ,
X-List-Received-Date: Wed, 08 Jan 2014 01:07:25 -0000
Author: garga
Date: Wed Jan 8 01:07:24 2014
New Revision: 339063
URL: http://svnweb.freebsd.org/changeset/ports/339063
Log:
MFH: r339019
- Add a patch to fix bundled LLVM to build with libc++
- Remove USE_GCC=any
PR: ports/185366
Submitted by: tijl@
Approved by: portmgr-lurker (mat)
Added:
branches/2014Q1/security/clamav/files/patch-libclamav-c++-llvm
- copied unchanged from r339019, head/security/clamav/files/patch-libclamav-c++-llvm
Modified:
branches/2014Q1/security/clamav/Makefile
Directory Properties:
branches/2014Q1/ (props changed)
Modified: branches/2014Q1/security/clamav/Makefile
==============================================================================
--- branches/2014Q1/security/clamav/Makefile Wed Jan 8 00:42:32 2014 (r339062)
+++ branches/2014Q1/security/clamav/Makefile Wed Jan 8 01:07:24 2014 (r339063)
@@ -3,7 +3,7 @@
PORTNAME= clamav
PORTVERSION= 0.98
-PORTREVISION= 2
+PORTREVISION= 3
CATEGORIES= security
MASTER_SITES= SF
@@ -44,7 +44,6 @@ IPV6_CONFIGURE_ENABLE= ipv6
GNU_CONFIGURE= yes
USE_LDCONFIG= yes
-USE_GCC= any
USES= gmake
USE_RC_SUBR= clamav-clamd clamav-freshclam
Copied: branches/2014Q1/security/clamav/files/patch-libclamav-c++-llvm (from r339019, head/security/clamav/files/patch-libclamav-c++-llvm)
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ branches/2014Q1/security/clamav/files/patch-libclamav-c++-llvm Wed Jan 8 01:07:24 2014 (r339063, copy of r339019, head/security/clamav/files/patch-libclamav-c++-llvm)
@@ -0,0 +1,72 @@
+--- libclamav/c++/llvm/lib/Target/SubtargetFeature.cpp.orig
++++ libclamav/c++/llvm/lib/Target/SubtargetFeature.cpp
+@@ -18,6 +18,7 @@
+ #include
+ #include
+ #include
++#include
+ using namespace llvm;
+
+ //===----------------------------------------------------------------------===//
+--- libclamav/c++/llvm/include/llvm/Support/CFG.h.orig
++++ libclamav/c++/llvm/include/llvm/Support/CFG.h
+@@ -27,8 +27,9 @@
+
+ template // Predecessor Iterator
+ class PredIterator : public std::iterator {
+- typedef std::iterator super;
++ Ptr, ptrdiff_t, Ptr*, Ptr*> {
++ typedef std::iterator super;
+ typedef PredIterator Self;
+ USE_iterator It;
+
+@@ -40,6 +41,7 @@
+
+ public:
+ typedef typename super::pointer pointer;
++ typedef typename super::reference reference;
+
+ PredIterator() {}
+ explicit inline PredIterator(Ptr *bb) : It(bb->use_begin()) {
+@@ -50,7 +52,7 @@
+ inline bool operator==(const Self& x) const { return It == x.It; }
+ inline bool operator!=(const Self& x) const { return !operator==(x); }
+
+- inline pointer operator*() const {
++ inline reference operator*() const {
+ assert(!It.atEnd() && "pred_iterator out of range!");
+ return cast(*It)->getParent();
+ }
+@@ -100,10 +102,11 @@
+
+ template // Successor Iterator
+ class SuccIterator : public std::iterator {
++ BB_, ptrdiff_t, BB_*, BB_*> {
+ const Term_ Term;
+ unsigned idx;
+- typedef std::iterator super;
++ typedef std::iterator super;
+ typedef SuccIterator Self;
+
+ inline bool index_is_valid(int idx) {
+@@ -112,6 +115,7 @@
+
+ public:
+ typedef typename super::pointer pointer;
++ typedef typename super::reference reference;
+ // TODO: This can be random access iterator, only operator[] missing.
+
+ explicit inline SuccIterator(Term_ T) : Term(T), idx(0) {// begin iterator
+@@ -142,7 +146,7 @@
+ inline bool operator==(const Self& x) const { return idx == x.idx; }
+ inline bool operator!=(const Self& x) const { return !operator==(x); }
+
+- inline pointer operator*() const { return Term->getSuccessor(idx); }
++ inline reference operator*() const { return Term->getSuccessor(idx); }
+ inline pointer operator->() const { return operator*(); }
+
+ inline Self& operator++() { ++idx; return *this; } // Preincrement
From owner-svn-ports-branches@FreeBSD.ORG Wed Jan 8 01:12:50 2014
Return-Path:
Delivered-To: svn-ports-branches@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
[IPv6:2001:1900:2254:206a::19:1])
(using TLSv1 with cipher ADH-AES256-SHA (256/256 bits))
(No client certificate requested)
by hub.freebsd.org (Postfix) with ESMTPS id EAD19A52;
Wed, 8 Jan 2014 01:12:50 +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))
(No client certificate requested)
by mx1.freebsd.org (Postfix) with ESMTPS id D6871132B;
Wed, 8 Jan 2014 01:12:50 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s081CoKH098616;
Wed, 8 Jan 2014 01:12:50 GMT (envelope-from garga@svn.freebsd.org)
Received: (from garga@localhost)
by svn.freebsd.org (8.14.7/8.14.7/Submit) id s081CoMd098615;
Wed, 8 Jan 2014 01:12:50 GMT (envelope-from garga@svn.freebsd.org)
Message-Id: <201401080112.s081CoMd098615@svn.freebsd.org>
From: Renato Botelho
Date: Wed, 8 Jan 2014 01:12:50 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
svn-ports-branches@freebsd.org
Subject: svn commit: r339064 - branches/2014Q1/security/clamav
X-SVN-Group: ports-branches
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-branches@freebsd.org
X-Mailman-Version: 2.1.17
Precedence: list
List-Id: SVN commit messages for all the branches of the ports tree
List-Unsubscribe: ,
List-Archive:
List-Post:
List-Help:
List-Subscribe: ,
X-List-Received-Date: Wed, 08 Jan 2014 01:12:51 -0000
Author: garga
Date: Wed Jan 8 01:12:50 2014
New Revision: 339064
URL: http://svnweb.freebsd.org/changeset/ports/339064
Log:
MFH: r339021
Fix an old OPTION knob check (WITH_TESTS)
Approved by: portmgr (implicit)
Modified:
branches/2014Q1/security/clamav/Makefile
Directory Properties:
branches/2014Q1/ (props changed)
Modified: branches/2014Q1/security/clamav/Makefile
==============================================================================
--- branches/2014Q1/security/clamav/Makefile Wed Jan 8 01:07:24 2014 (r339063)
+++ branches/2014Q1/security/clamav/Makefile Wed Jan 8 01:12:50 2014 (r339064)
@@ -116,7 +116,7 @@ PLIST_SUB+= CLAMAVUSER=${CLAMAVUSER} \
.if ${PORT_OPTIONS:MLLVM} && ( ${ARCH} == "i386" || ${ARCH} == "amd64" )
CONFIGURE_ARGS+=--enable-llvm
-. if defined(WITH_TESTS)
+. if ${PORT_OPTIONS:MTESTS}
USE_PYTHON_BUILD= yes
. endif
.else
From owner-svn-ports-branches@FreeBSD.ORG Wed Jan 8 01:18:40 2014
Return-Path:
Delivered-To: svn-ports-branches@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
[IPv6:2001:1900:2254:206a::19:1])
(using TLSv1 with cipher ADH-AES256-SHA (256/256 bits))
(No client certificate requested)
by hub.freebsd.org (Postfix) with ESMTPS id 4BE53B4E;
Wed, 8 Jan 2014 01:18:40 +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))
(No client certificate requested)
by mx1.freebsd.org (Postfix) with ESMTPS id 364D11343;
Wed, 8 Jan 2014 01:18:40 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s081Ieis099383;
Wed, 8 Jan 2014 01:18:40 GMT (envelope-from garga@svn.freebsd.org)
Received: (from garga@localhost)
by svn.freebsd.org (8.14.7/8.14.7/Submit) id s081IdUi099377;
Wed, 8 Jan 2014 01:18:39 GMT (envelope-from garga@svn.freebsd.org)
Message-Id: <201401080118.s081IdUi099377@svn.freebsd.org>
From: Renato Botelho
Date: Wed, 8 Jan 2014 01:18:39 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
svn-ports-branches@freebsd.org
Subject: svn commit: r339065 - in branches/2014Q1/security/clamav-devel: .
files
X-SVN-Group: ports-branches
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-branches@freebsd.org
X-Mailman-Version: 2.1.17
Precedence: list
List-Id: SVN commit messages for all the branches of the ports tree
List-Unsubscribe: ,
List-Archive:
List-Post:
List-Help:
List-Subscribe: ,
X-List-Received-Date: Wed, 08 Jan 2014 01:18:40 -0000
Author: garga
Date: Wed Jan 8 01:18:38 2014
New Revision: 339065
URL: http://svnweb.freebsd.org/changeset/ports/339065
Log:
MFH: r339042
- Update to 20140107
- Remove USE_GCC=any and fix build with clang
Approved by: portmgr-lurker (mat)
Added:
branches/2014Q1/security/clamav-devel/files/patch-libclamav-c++-llvm
- copied unchanged from r339042, head/security/clamav-devel/files/patch-libclamav-c++-llvm
branches/2014Q1/security/clamav-devel/files/patch-libclamav__tomsfastmath__mont__fp_montgomery_reduce.c
- copied unchanged from r339042, head/security/clamav-devel/files/patch-libclamav__tomsfastmath__mont__fp_montgomery_reduce.c
branches/2014Q1/security/clamav-devel/files/patch-libclamav__tomsfastmath__mul__fp_mul_comba.c
- copied unchanged from r339042, head/security/clamav-devel/files/patch-libclamav__tomsfastmath__mul__fp_mul_comba.c
branches/2014Q1/security/clamav-devel/files/patch-libclamav__tomsfastmath__sqr__fp_sqr_comba.c
- copied unchanged from r339042, head/security/clamav-devel/files/patch-libclamav__tomsfastmath__sqr__fp_sqr_comba.c
Modified:
branches/2014Q1/security/clamav-devel/Makefile
branches/2014Q1/security/clamav-devel/distinfo
Directory Properties:
branches/2014Q1/ (props changed)
Modified: branches/2014Q1/security/clamav-devel/Makefile
==============================================================================
--- branches/2014Q1/security/clamav-devel/Makefile Wed Jan 8 01:12:50 2014 (r339064)
+++ branches/2014Q1/security/clamav-devel/Makefile Wed Jan 8 01:18:38 2014 (r339065)
@@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= clamav
-PORTVERSION= 20131023
+PORTVERSION= 20140107
CATEGORIES= security
MASTER_SITES= http://www.clamav.net/snapshot/ \
LOCAL/garga/clamav-devel
@@ -45,7 +45,6 @@ IPV6_CONFIGURE_ENABLE= ipv6
USES= gmake
GNU_CONFIGURE= yes
USE_LDCONFIG= yes
-USE_GCC= any
USE_RC_SUBR= clamav-clamd clamav-freshclam
PORTDOCS= *
@@ -120,7 +119,7 @@ PORTSCOUT= ignore:1
.if ${PORT_OPTIONS:MLLVM} && ( ${ARCH} == "i386" || ${ARCH} == "amd64" )
CONFIGURE_ARGS+=--enable-llvm
-. if defined(WITH_TESTS)
+. if ${PORT_OPTIONS:MTESTS}
USE_PYTHON_BUILD= yes
. endif
.else
Modified: branches/2014Q1/security/clamav-devel/distinfo
==============================================================================
--- branches/2014Q1/security/clamav-devel/distinfo Wed Jan 8 01:12:50 2014 (r339064)
+++ branches/2014Q1/security/clamav-devel/distinfo Wed Jan 8 01:18:38 2014 (r339065)
@@ -1,2 +1,2 @@
-SHA256 (clamav-devel-20131023.tar.gz) = 5a5b1e38befc65aec66e8a74208f655ad0257a6ace1244c4bf9943c7581e308f
-SIZE (clamav-devel-20131023.tar.gz) = 37002306
+SHA256 (clamav-devel-20140107.tar.gz) = 2b2d5e7e3ac786dbef77c8e8c43d31c2da0194f5422c2499f8bb8701e91f0705
+SIZE (clamav-devel-20140107.tar.gz) = 36998346
Copied: branches/2014Q1/security/clamav-devel/files/patch-libclamav-c++-llvm (from r339042, head/security/clamav-devel/files/patch-libclamav-c++-llvm)
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ branches/2014Q1/security/clamav-devel/files/patch-libclamav-c++-llvm Wed Jan 8 01:18:38 2014 (r339065, copy of r339042, head/security/clamav-devel/files/patch-libclamav-c++-llvm)
@@ -0,0 +1,72 @@
+--- libclamav/c++/llvm/lib/Target/SubtargetFeature.cpp.orig
++++ libclamav/c++/llvm/lib/Target/SubtargetFeature.cpp
+@@ -18,6 +18,7 @@
+ #include
+ #include
+ #include
++#include
+ using namespace llvm;
+
+ //===----------------------------------------------------------------------===//
+--- libclamav/c++/llvm/include/llvm/Support/CFG.h.orig
++++ libclamav/c++/llvm/include/llvm/Support/CFG.h
+@@ -27,8 +27,9 @@
+
+ template // Predecessor Iterator
+ class PredIterator : public std::iterator {
+- typedef std::iterator super;
++ Ptr, ptrdiff_t, Ptr*, Ptr*> {
++ typedef std::iterator super;
+ typedef PredIterator Self;
+ USE_iterator It;
+
+@@ -40,6 +41,7 @@
+
+ public:
+ typedef typename super::pointer pointer;
++ typedef typename super::reference reference;
+
+ PredIterator() {}
+ explicit inline PredIterator(Ptr *bb) : It(bb->use_begin()) {
+@@ -50,7 +52,7 @@
+ inline bool operator==(const Self& x) const { return It == x.It; }
+ inline bool operator!=(const Self& x) const { return !operator==(x); }
+
+- inline pointer operator*() const {
++ inline reference operator*() const {
+ assert(!It.atEnd() && "pred_iterator out of range!");
+ return cast(*It)->getParent();
+ }
+@@ -100,10 +102,11 @@
+
+ template // Successor Iterator
+ class SuccIterator : public std::iterator {
++ BB_, ptrdiff_t, BB_*, BB_*> {
+ const Term_ Term;
+ unsigned idx;
+- typedef std::iterator super;
++ typedef std::iterator super;
+ typedef SuccIterator Self;
+
+ inline bool index_is_valid(int idx) {
+@@ -112,6 +115,7 @@
+
+ public:
+ typedef typename super::pointer pointer;
++ typedef typename super::reference reference;
+ // TODO: This can be random access iterator, only operator[] missing.
+
+ explicit inline SuccIterator(Term_ T) : Term(T), idx(0) {// begin iterator
+@@ -142,7 +146,7 @@
+ inline bool operator==(const Self& x) const { return idx == x.idx; }
+ inline bool operator!=(const Self& x) const { return !operator==(x); }
+
+- inline pointer operator*() const { return Term->getSuccessor(idx); }
++ inline reference operator*() const { return Term->getSuccessor(idx); }
+ inline pointer operator->() const { return operator*(); }
+
+ inline Self& operator++() { ++idx; return *this; } // Preincrement
Copied: branches/2014Q1/security/clamav-devel/files/patch-libclamav__tomsfastmath__mont__fp_montgomery_reduce.c (from r339042, head/security/clamav-devel/files/patch-libclamav__tomsfastmath__mont__fp_montgomery_reduce.c)
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ branches/2014Q1/security/clamav-devel/files/patch-libclamav__tomsfastmath__mont__fp_montgomery_reduce.c Wed Jan 8 01:18:38 2014 (r339065, copy of r339042, head/security/clamav-devel/files/patch-libclamav__tomsfastmath__mont__fp_montgomery_reduce.c)
@@ -0,0 +1,119 @@
+--- libclamav/tomsfastmath/mont/fp_montgomery_reduce.c.orig 2014-01-07 17:20:37.000000000 -0200
++++ libclamav/tomsfastmath/mont/fp_montgomery_reduce.c 2014-01-07 17:21:17.000000000 -0200
+@@ -30,7 +30,7 @@
+ "movl %%edx,%1 \n\t" \
+ :"=g"(_c[LO]), "=r"(cy) \
+ :"0"(_c[LO]), "1"(cy), "g"(mu), "g"(*tmpm++) \
+-: "%eax", "%edx", "%cc")
++: "%eax", "%edx", "cc")
+
+ #define PROPCARRY \
+ asm( \
+@@ -39,7 +39,7 @@
+ "movzbl %%al,%1 \n\t" \
+ :"=g"(_c[LO]), "=r"(cy) \
+ :"0"(_c[LO]), "1"(cy) \
+-: "%eax", "%cc")
++: "%eax", "cc")
+
+ /******************************************************************/
+ #elif defined(TFM_X86_64)
+@@ -62,7 +62,7 @@
+ "movq %%rdx,%1 \n\t" \
+ :"=g"(_c[LO]), "=r"(cy) \
+ :"0"(_c[LO]), "1"(cy), "r"(mu), "r"(*tmpm++) \
+-: "%rax", "%rdx", "%cc")
++: "%rax", "%rdx", "cc")
+
+ #define INNERMUL8 \
+ asm( \
+@@ -155,7 +155,7 @@
+ \
+ :"=r"(_c), "=r"(cy) \
+ : "0"(_c), "1"(cy), "g"(mu), "r"(tmpm)\
+-: "%rax", "%rdx", "%r10", "%r11", "%cc")
++: "%rax", "%rdx", "%r10", "%r11", "cc")
+
+
+ #define PROPCARRY \
+@@ -165,7 +165,7 @@
+ "movzbq %%al,%1 \n\t" \
+ :"=g"(_c[LO]), "=r"(cy) \
+ :"0"(_c[LO]), "1"(cy) \
+-: "%rax", "%cc")
++: "%rax", "cc")
+
+ /******************************************************************/
+ #elif defined(TFM_SSE2)
+@@ -280,7 +280,7 @@
+ "movzbl %%al,%1 \n\t" \
+ :"=g"(_c[LO]), "=r"(cy) \
+ :"0"(_c[LO]), "1"(cy) \
+-: "%eax", "%cc")
++: "%eax", "cc")
+
+ /******************************************************************/
+ #elif defined(TFM_ARM)
+@@ -300,7 +300,7 @@
+ " MOVCC %0,#0 \n\t" \
+ " UMLAL r0,%0,%3,%4 \n\t" \
+ " STR r0,%1 \n\t" \
+-:"=r"(cy),"=m"(_c[0]):"0"(cy),"r"(mu),"r"(*tmpm++),"1"(_c[0]):"r0","%cc");
++:"=r"(cy),"=m"(_c[0]):"0"(cy),"r"(mu),"r"(*tmpm++),"1"(_c[0]):"r0","cc");
+
+ #define PROPCARRY \
+ asm( \
+@@ -309,7 +309,7 @@
+ " STR r0,%1 \n\t" \
+ " MOVCS %0,#1 \n\t" \
+ " MOVCC %0,#0 \n\t" \
+-:"=r"(cy),"=m"(_c[0]):"0"(cy),"1"(_c[0]):"r0","%cc");
++:"=r"(cy),"=m"(_c[0]):"0"(cy),"1"(_c[0]):"r0","cc");
+
+ /******************************************************************/
+ #elif defined(TFM_PPC32)
+@@ -331,7 +331,7 @@
+ " addc 16,16,18 \n\t" \
+ " addze %0,17 \n\t" \
+ " stw 16,%1 \n\t" \
+-:"=r"(cy),"=m"(_c[0]):"0"(cy),"r"(mu),"r"(tmpm[0]),"1"(_c[0]):"16", "17", "18","%cc"); ++tmpm;
++:"=r"(cy),"=m"(_c[0]):"0"(cy),"r"(mu),"r"(tmpm[0]),"1"(_c[0]):"16", "17", "18","cc"); ++tmpm;
+
+ #define PROPCARRY \
+ asm( \
+@@ -340,7 +340,7 @@
+ " stw 16,%1 \n\t" \
+ " xor %0,%0,%0 \n\t" \
+ " addze %0,%0 \n\t" \
+-:"=r"(cy),"=m"(_c[0]):"0"(cy),"1"(_c[0]):"16","%cc");
++:"=r"(cy),"=m"(_c[0]):"0"(cy),"1"(_c[0]):"16","cc");
+
+ /******************************************************************/
+ #elif defined(TFM_PPC64)
+@@ -362,7 +362,7 @@
+ " addc r16,r16,r18 \n\t" \
+ " addze %0,r17 \n\t" \
+ " sdx r16,0,%1 \n\t" \
+-:"=r"(cy),"=m"(_c[0]):"0"(cy),"r"(mu),"r"(tmpm[0]),"1"(_c[0]):"r16", "r17", "r18","%cc"); ++tmpm;
++:"=r"(cy),"=m"(_c[0]):"0"(cy),"r"(mu),"r"(tmpm[0]),"1"(_c[0]):"r16", "r17", "r18","cc"); ++tmpm;
+
+ #define PROPCARRY \
+ asm( \
+@@ -371,7 +371,7 @@
+ " sdx r16,0,%1 \n\t" \
+ " xor %0,%0,%0 \n\t" \
+ " addze %0,%0 \n\t" \
+-:"=r"(cy),"=m"(_c[0]):"0"(cy),"1"(_c[0]):"r16","%cc");
++:"=r"(cy),"=m"(_c[0]):"0"(cy),"1"(_c[0]):"r16","cc");
+
+ /******************************************************************/
+ #elif defined(TFM_AVR32)
+@@ -401,7 +401,7 @@
+ " st.w %1,r2 \n\t" \
+ " eor %0,%0 \n\t" \
+ " acr %0 \n\t" \
+-:"=r"(cy),"=r"(&_c[0]):"0"(cy),"1"(&_c[0]):"r2","%cc");
++:"=r"(cy),"=r"(&_c[0]):"0"(cy),"1"(&_c[0]):"r2","cc");
+
+ /******************************************************************/
+ #elif defined(TFM_MIPS)
Copied: branches/2014Q1/security/clamav-devel/files/patch-libclamav__tomsfastmath__mul__fp_mul_comba.c (from r339042, head/security/clamav-devel/files/patch-libclamav__tomsfastmath__mul__fp_mul_comba.c)
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ branches/2014Q1/security/clamav-devel/files/patch-libclamav__tomsfastmath__mul__fp_mul_comba.c Wed Jan 8 01:18:38 2014 (r339065, copy of r339042, head/security/clamav-devel/files/patch-libclamav__tomsfastmath__mul__fp_mul_comba.c)
@@ -0,0 +1,38 @@
+--- libclamav/tomsfastmath/mul/fp_mul_comba.c.orig 2014-01-07 17:20:42.000000000 -0200
++++ libclamav/tomsfastmath/mul/fp_mul_comba.c 2014-01-07 17:21:24.000000000 -0200
+@@ -53,7 +53,7 @@
+ "addl %%eax,%0 \n\t" \
+ "adcl %%edx,%1 \n\t" \
+ "adcl $0,%2 \n\t" \
+- :"=r"(c0), "=r"(c1), "=r"(c2): "0"(c0), "1"(c1), "2"(c2), "m"(i), "m"(j) :"%eax","%edx","%cc");
++ :"=r"(c0), "=r"(c1), "=r"(c2): "0"(c0), "1"(c1), "2"(c2), "m"(i), "m"(j) :"%eax","%edx","cc");
+
+ #elif defined(TFM_X86_64)
+ /* x86-64 optimized */
+@@ -88,7 +88,7 @@
+ "addq %%rax,%0 \n\t" \
+ "adcq %%rdx,%1 \n\t" \
+ "adcq $0,%2 \n\t" \
+- :"=r"(c0), "=r"(c1), "=r"(c2): "0"(c0), "1"(c1), "2"(c2), "g"(i), "g"(j) :"%rax","%rdx","%cc");
++ :"=r"(c0), "=r"(c1), "=r"(c2): "0"(c0), "1"(c1), "2"(c2), "g"(i), "g"(j) :"%rax","%rdx","cc");
+
+ #elif defined(TFM_SSE2)
+ /* use SSE2 optimizations */
+@@ -128,7 +128,7 @@
+ "movd %%mm0,%%eax \n\t" \
+ "adcl %%eax,%1 \n\t" \
+ "adcl $0,%2 \n\t" \
+- :"=r"(c0), "=r"(c1), "=r"(c2): "0"(c0), "1"(c1), "2"(c2), "m"(i), "m"(j) :"%eax","%cc");
++ :"=r"(c0), "=r"(c1), "=r"(c2): "0"(c0), "1"(c1), "2"(c2), "m"(i), "m"(j) :"%eax","cc");
+
+ #elif defined(TFM_ARM)
+ /* ARM code */
+@@ -155,7 +155,7 @@
+ " ADDS %0,%0,r0 \n\t" \
+ " ADCS %1,%1,r1 \n\t" \
+ " ADC %2,%2,#0 \n\t" \
+-:"=r"(c0), "=r"(c1), "=r"(c2) : "0"(c0), "1"(c1), "2"(c2), "r"(i), "r"(j) : "r0", "r1", "%cc");
++:"=r"(c0), "=r"(c1), "=r"(c2) : "0"(c0), "1"(c1), "2"(c2), "r"(i), "r"(j) : "r0", "r1", "cc");
+
+ #elif defined(TFM_PPC32)
+ /* For 32-bit PPC */
Copied: branches/2014Q1/security/clamav-devel/files/patch-libclamav__tomsfastmath__sqr__fp_sqr_comba.c (from r339042, head/security/clamav-devel/files/patch-libclamav__tomsfastmath__sqr__fp_sqr_comba.c)
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ branches/2014Q1/security/clamav-devel/files/patch-libclamav__tomsfastmath__sqr__fp_sqr_comba.c Wed Jan 8 01:18:38 2014 (r339065, copy of r339042, head/security/clamav-devel/files/patch-libclamav__tomsfastmath__sqr__fp_sqr_comba.c)
@@ -0,0 +1,277 @@
+--- libclamav/tomsfastmath/sqr/fp_sqr_comba.c.orig 2014-01-07 17:25:18.000000000 -0200
++++ libclamav/tomsfastmath/sqr/fp_sqr_comba.c 2014-01-07 17:25:40.000000000 -0200
+@@ -41,7 +41,7 @@
+ "addl %%eax,%0 \n\t" \
+ "adcl %%edx,%1 \n\t" \
+ "adcl $0,%2 \n\t" \
+- :"=r"(c0), "=r"(c1), "=r"(c2): "0"(c0), "1"(c1), "2"(c2), "m"(i) :"%eax","%edx","%cc");
++ :"=r"(c0), "=r"(c1), "=r"(c2): "0"(c0), "1"(c1), "2"(c2), "m"(i) :"%eax","%edx","cc");
+
+ #define SQRADD2(i, j) \
+ asm( \
+@@ -53,7 +53,7 @@
+ "addl %%eax,%0 \n\t" \
+ "adcl %%edx,%1 \n\t" \
+ "adcl $0,%2 \n\t" \
+- :"=r"(c0), "=r"(c1), "=r"(c2): "0"(c0), "1"(c1), "2"(c2), "m"(i), "m"(j) :"%eax","%edx","%cc");
++ :"=r"(c0), "=r"(c1), "=r"(c2): "0"(c0), "1"(c1), "2"(c2), "m"(i), "m"(j) :"%eax","%edx","cc");
+
+ #define SQRADDSC(i, j) \
+ asm( \
+@@ -62,7 +62,7 @@
+ "movl %%eax,%0 \n\t" \
+ "movl %%edx,%1 \n\t" \
+ "xorl %2,%2 \n\t" \
+- :"=r"(sc0), "=r"(sc1), "=r"(sc2): "0"(sc0), "1"(sc1), "2"(sc2), "g"(i), "g"(j) :"%eax","%edx","%cc");
++ :"=r"(sc0), "=r"(sc1), "=r"(sc2): "0"(sc0), "1"(sc1), "2"(sc2), "g"(i), "g"(j) :"%eax","%edx","cc");
+
+ #define SQRADDAC(i, j) \
+ asm( \
+@@ -71,7 +71,7 @@
+ "addl %%eax,%0 \n\t" \
+ "adcl %%edx,%1 \n\t" \
+ "adcl $0,%2 \n\t" \
+- :"=r"(sc0), "=r"(sc1), "=r"(sc2): "0"(sc0), "1"(sc1), "2"(sc2), "g"(i), "g"(j) :"%eax","%edx","%cc");
++ :"=r"(sc0), "=r"(sc1), "=r"(sc2): "0"(sc0), "1"(sc1), "2"(sc2), "g"(i), "g"(j) :"%eax","%edx","cc");
+
+ #define SQRADDDB \
+ asm( \
+@@ -81,7 +81,7 @@
+ "addl %6,%0 \n\t" \
+ "adcl %7,%1 \n\t" \
+ "adcl %8,%2 \n\t" \
+- :"=r"(c0), "=r"(c1), "=r"(c2) : "0"(c0), "1"(c1), "2"(c2), "r"(sc0), "r"(sc1), "r"(sc2) : "%cc");
++ :"=r"(c0), "=r"(c1), "=r"(c2) : "0"(c0), "1"(c1), "2"(c2), "r"(sc0), "r"(sc1), "r"(sc2) : "cc");
+
+ #elif defined(TFM_X86_64)
+ /* x86-64 optimized */
+@@ -109,7 +109,7 @@
+ "addq %%rax,%0 \n\t" \
+ "adcq %%rdx,%1 \n\t" \
+ "adcq $0,%2 \n\t" \
+- :"=r"(c0), "=r"(c1), "=r"(c2): "0"(c0), "1"(c1), "2"(c2), "g"(i) :"%rax","%rdx","%cc");
++ :"=r"(c0), "=r"(c1), "=r"(c2): "0"(c0), "1"(c1), "2"(c2), "g"(i) :"%rax","%rdx","cc");
+
+ #define SQRADD2(i, j) \
+ asm( \
+@@ -121,7 +121,7 @@
+ "addq %%rax,%0 \n\t" \
+ "adcq %%rdx,%1 \n\t" \
+ "adcq $0,%2 \n\t" \
+- :"=r"(c0), "=r"(c1), "=r"(c2): "0"(c0), "1"(c1), "2"(c2), "g"(i), "g"(j) :"%rax","%rdx","%cc");
++ :"=r"(c0), "=r"(c1), "=r"(c2): "0"(c0), "1"(c1), "2"(c2), "g"(i), "g"(j) :"%rax","%rdx","cc");
+
+ #define SQRADDSC(i, j) \
+ asm( \
+@@ -130,7 +130,7 @@
+ "movq %%rax,%0 \n\t" \
+ "movq %%rdx,%1 \n\t" \
+ "xorq %2,%2 \n\t" \
+- :"=r"(sc0), "=r"(sc1), "=r"(sc2): "0"(sc0), "1"(sc1), "2"(sc2), "g"(i), "g"(j) :"%rax","%rdx","%cc");
++ :"=r"(sc0), "=r"(sc1), "=r"(sc2): "0"(sc0), "1"(sc1), "2"(sc2), "g"(i), "g"(j) :"%rax","%rdx","cc");
+
+ #define SQRADDAC(i, j) \
+ asm( \
+@@ -139,7 +139,7 @@
+ "addq %%rax,%0 \n\t" \
+ "adcq %%rdx,%1 \n\t" \
+ "adcq $0,%2 \n\t" \
+- :"=r"(sc0), "=r"(sc1), "=r"(sc2): "0"(sc0), "1"(sc1), "2"(sc2), "g"(i), "g"(j) :"%rax","%rdx","%cc");
++ :"=r"(sc0), "=r"(sc1), "=r"(sc2): "0"(sc0), "1"(sc1), "2"(sc2), "g"(i), "g"(j) :"%rax","%rdx","cc");
+
+ #define SQRADDDB \
+ asm( \
+@@ -149,7 +149,7 @@
+ "addq %6,%0 \n\t" \
+ "adcq %7,%1 \n\t" \
+ "adcq %8,%2 \n\t" \
+- :"=r"(c0), "=r"(c1), "=r"(c2) : "0"(c0), "1"(c1), "2"(c2), "r"(sc0), "r"(sc1), "r"(sc2) : "%cc");
++ :"=r"(c0), "=r"(c1), "=r"(c2) : "0"(c0), "1"(c1), "2"(c2), "r"(sc0), "r"(sc1), "r"(sc2) : "cc");
+
+ #elif defined(TFM_SSE2)
+
+@@ -181,7 +181,7 @@
+ "movd %%mm0,%%eax \n\t" \
+ "adcl %%eax,%1 \n\t" \
+ "adcl $0,%2 \n\t" \
+- :"=r"(c0), "=r"(c1), "=r"(c2): "0"(c0), "1"(c1), "2"(c2), "m"(i) :"%eax","%cc");
++ :"=r"(c0), "=r"(c1), "=r"(c2): "0"(c0), "1"(c1), "2"(c2), "m"(i) :"%eax","cc");
+
+ #define SQRADD2(i, j) \
+ asm( \
+@@ -197,7 +197,7 @@
+ "addl %%eax,%0 \n\t" \
+ "adcl %%edx,%1 \n\t" \
+ "adcl $0,%2 \n\t" \
+- :"=r"(c0), "=r"(c1), "=r"(c2): "0"(c0), "1"(c1), "2"(c2), "m"(i), "m"(j) :"%eax","%edx","%cc");
++ :"=r"(c0), "=r"(c1), "=r"(c2): "0"(c0), "1"(c1), "2"(c2), "m"(i), "m"(j) :"%eax","%edx","cc");
+
+ #define SQRADDSC(i, j) \
+ asm( \
+@@ -221,7 +221,7 @@
+ "addl %%eax,%0 \n\t" \
+ "adcl %%edx,%1 \n\t" \
+ "adcl $0,%2 \n\t" \
+- :"=r"(sc0), "=r"(sc1), "=r"(sc2): "0"(sc0), "1"(sc1), "2"(sc2), "m"(i), "m"(j) :"%eax","%edx","%cc");
++ :"=r"(sc0), "=r"(sc1), "=r"(sc2): "0"(sc0), "1"(sc1), "2"(sc2), "m"(i), "m"(j) :"%eax","%edx","cc");
+
+ #define SQRADDDB \
+ asm( \
+@@ -231,7 +231,7 @@
+ "addl %6,%0 \n\t" \
+ "adcl %7,%1 \n\t" \
+ "adcl %8,%2 \n\t" \
+- :"=r"(c0), "=r"(c1), "=r"(c2) : "0"(c0), "1"(c1), "2"(c2), "r"(sc0), "r"(sc1), "r"(sc2) : "%cc");
++ :"=r"(c0), "=r"(c1), "=r"(c2) : "0"(c0), "1"(c1), "2"(c2), "r"(sc0), "r"(sc1), "r"(sc2) : "cc");
+
+ #elif defined(TFM_ARM)
+
+@@ -260,7 +260,7 @@
+ " ADDS %0,%0,r0 \n\t" \
+ " ADCS %1,%1,r1 \n\t" \
+ " ADC %2,%2,#0 \n\t" \
+-:"=r"(c0), "=r"(c1), "=r"(c2) : "0"(c0), "1"(c1), "2"(c2), "r"(i) : "r0", "r1", "%cc");
++:"=r"(c0), "=r"(c1), "=r"(c2) : "0"(c0), "1"(c1), "2"(c2), "r"(i) : "r0", "r1", "cc");
+
+ /* for squaring some of the terms are doubled... */
+ #define SQRADD2(i, j) \
+@@ -272,13 +272,13 @@
+ " ADDS %0,%0,r0 \n\t" \
+ " ADCS %1,%1,r1 \n\t" \
+ " ADC %2,%2,#0 \n\t" \
+-:"=r"(c0), "=r"(c1), "=r"(c2) : "0"(c0), "1"(c1), "2"(c2), "r"(i), "r"(j) : "r0", "r1", "%cc");
++:"=r"(c0), "=r"(c1), "=r"(c2) : "0"(c0), "1"(c1), "2"(c2), "r"(i), "r"(j) : "r0", "r1", "cc");
+
+ #define SQRADDSC(i, j) \
+ asm( \
+ " UMULL %0,%1,%6,%7 \n\t" \
+ " SUB %2,%2,%2 \n\t" \
+-:"=r"(sc0), "=r"(sc1), "=r"(sc2) : "0"(sc0), "1"(sc1), "2"(sc2), "r"(i), "r"(j) : "%cc");
++:"=r"(sc0), "=r"(sc1), "=r"(sc2) : "0"(sc0), "1"(sc1), "2"(sc2), "r"(i), "r"(j) : "cc");
+
+ #define SQRADDAC(i, j) \
+ asm( \
+@@ -286,7 +286,7 @@
+ " ADDS %0,%0,r0 \n\t" \
+ " ADCS %1,%1,r1 \n\t" \
+ " ADC %2,%2,#0 \n\t" \
+-:"=r"(sc0), "=r"(sc1), "=r"(sc2) : "0"(sc0), "1"(sc1), "2"(sc2), "r"(i), "r"(j) : "r0", "r1", "%cc");
++:"=r"(sc0), "=r"(sc1), "=r"(sc2) : "0"(sc0), "1"(sc1), "2"(sc2), "r"(i), "r"(j) : "r0", "r1", "cc");
+
+ #define SQRADDDB \
+ asm( \
+@@ -296,7 +296,7 @@
+ " ADDS %0,%0,%3 \n\t" \
+ " ADCS %1,%1,%4 \n\t" \
+ " ADC %2,%2,%5 \n\t" \
+-:"=r"(c0), "=r"(c1), "=r"(c2) : "r"(sc0), "r"(sc1), "r"(sc2), "0"(c0), "1"(c1), "2"(c2) : "%cc");
++:"=r"(c0), "=r"(c1), "=r"(c2) : "r"(sc0), "r"(sc1), "r"(sc2), "0"(c0), "1"(c1), "2"(c2) : "cc");
+
+ #elif defined(TFM_PPC32)
+
+@@ -326,7 +326,7 @@
+ " mulhwu 16,%6,%6 \n\t" \
+ " adde %1,%1,16 \n\t" \
+ " addze %2,%2 \n\t" \
+-:"=r"(c0), "=r"(c1), "=r"(c2):"0"(c0), "1"(c1), "2"(c2), "r"(i):"16","%cc");
++:"=r"(c0), "=r"(c1), "=r"(c2):"0"(c0), "1"(c1), "2"(c2), "r"(i):"16","cc");
+
+ /* for squaring some of the terms are doubled... */
+ #define SQRADD2(i, j) \
+@@ -339,14 +339,14 @@
+ " addc %0,%0,16 \n\t" \
+ " adde %1,%1,17 \n\t" \
+ " addze %2,%2 \n\t" \
+-:"=r"(c0), "=r"(c1), "=r"(c2):"0"(c0), "1"(c1), "2"(c2), "r"(i), "r"(j):"16", "17","%cc");
++:"=r"(c0), "=r"(c1), "=r"(c2):"0"(c0), "1"(c1), "2"(c2), "r"(i), "r"(j):"16", "17","cc");
+
+ #define SQRADDSC(i, j) \
+ asm( \
+ " mullw %0,%6,%7 \n\t" \
+ " mulhwu %1,%6,%7 \n\t" \
+ " xor %2,%2,%2 \n\t" \
+-:"=r"(sc0), "=r"(sc1), "=r"(sc2):"0"(sc0), "1"(sc1), "2"(sc2), "r"(i),"r"(j) : "%cc");
++:"=r"(sc0), "=r"(sc1), "=r"(sc2):"0"(sc0), "1"(sc1), "2"(sc2), "r"(i),"r"(j) : "cc");
+
+ #define SQRADDAC(i, j) \
+ asm( \
+@@ -355,7 +355,7 @@
+ " mulhwu 16,%6,%7 \n\t" \
+ " adde %1,%1,16 \n\t" \
+ " addze %2,%2 \n\t" \
+-:"=r"(sc0), "=r"(sc1), "=r"(sc2):"0"(sc0), "1"(sc1), "2"(sc2), "r"(i), "r"(j):"16", "%cc");
++:"=r"(sc0), "=r"(sc1), "=r"(sc2):"0"(sc0), "1"(sc1), "2"(sc2), "r"(i), "r"(j):"16", "cc");
+
+ #define SQRADDDB \
+ asm( \
+@@ -365,7 +365,7 @@
+ " addc %0,%0,%3 \n\t" \
+ " adde %1,%1,%4 \n\t" \
+ " adde %2,%2,%5 \n\t" \
+-:"=r"(c0), "=r"(c1), "=r"(c2) : "r"(sc0), "r"(sc1), "r"(sc2), "0"(c0), "1"(c1), "2"(c2) : "%cc");
++:"=r"(c0), "=r"(c1), "=r"(c2) : "r"(sc0), "r"(sc1), "r"(sc2), "0"(c0), "1"(c1), "2"(c2) : "cc");
+
+ #elif defined(TFM_PPC64)
+ /* PPC64 */
+@@ -394,7 +394,7 @@
+ " mulhdu r16,%6,%6 \n\t" \
+ " adde %1,%1,r16 \n\t" \
+ " addze %2,%2 \n\t" \
+-:"=r"(c0), "=r"(c1), "=r"(c2):"0"(c0), "1"(c1), "2"(c2), "r"(i):"r16","%cc");
++:"=r"(c0), "=r"(c1), "=r"(c2):"0"(c0), "1"(c1), "2"(c2), "r"(i):"r16","cc");
+
+ /* for squaring some of the terms are doubled... */
+ #define SQRADD2(i, j) \
+@@ -407,14 +407,14 @@
+ " addc %0,%0,r16 \n\t" \
+ " adde %1,%1,r17 \n\t" \
+ " addze %2,%2 \n\t" \
+-:"=r"(c0), "=r"(c1), "=r"(c2):"0"(c0), "1"(c1), "2"(c2), "r"(i), "r"(j):"r16", "r17","%cc");
++:"=r"(c0), "=r"(c1), "=r"(c2):"0"(c0), "1"(c1), "2"(c2), "r"(i), "r"(j):"r16", "r17","cc");
+
+ #define SQRADDSC(i, j) \
+ asm( \
+ " mulld %0,%6,%7 \n\t" \
+ " mulhdu %1,%6,%7 \n\t" \
+ " xor %2,%2,%2 \n\t" \
+-:"=r"(sc0), "=r"(sc1), "=r"(sc2):"0"(sc0), "1"(sc1), "2"(sc2), "r"(i),"r"(j) : "%cc");
++:"=r"(sc0), "=r"(sc1), "=r"(sc2):"0"(sc0), "1"(sc1), "2"(sc2), "r"(i),"r"(j) : "cc");
+
+ #define SQRADDAC(i, j) \
+ asm( \
+@@ -423,7 +423,7 @@
+ " mulhdu r16,%6,%7 \n\t" \
+ " adde %1,%1,r16 \n\t" \
+ " addze %2,%2 \n\t" \
+-:"=r"(sc0), "=r"(sc1), "=r"(sc2):"0"(sc0), "1"(sc1), "2"(sc2), "r"(i), "r"(j):"r16", "%cc");
++:"=r"(sc0), "=r"(sc1), "=r"(sc2):"0"(sc0), "1"(sc1), "2"(sc2), "r"(i), "r"(j):"r16", "cc");
+
+ #define SQRADDDB \
+ asm( \
+@@ -433,7 +433,7 @@
+ " addc %0,%0,%3 \n\t" \
+ " adde %1,%1,%4 \n\t" \
+ " adde %2,%2,%5 \n\t" \
+-:"=r"(c0), "=r"(c1), "=r"(c2) : "r"(sc0), "r"(sc1), "r"(sc2), "0"(c0), "1"(c1), "2"(c2) : "%cc");
++:"=r"(c0), "=r"(c1), "=r"(c2) : "r"(sc0), "r"(sc1), "r"(sc2), "0"(c0), "1"(c1), "2"(c2) : "cc");
+
+
+ #elif defined(TFM_AVR32)
+@@ -501,7 +501,7 @@
+ " add %0,%0,%3 \n\t" \
+ " adc %1,%1,%4 \n\t" \
+ " adc %2,%2,%5 \n\t" \
+-:"=r"(c0), "=r"(c1), "=r"(c2) : "r"(sc0), "r"(sc1), "r"(sc2), "0"(c0), "1"(c1), "2"(c2) : "%cc");
++:"=r"(c0), "=r"(c1), "=r"(c2) : "r"(sc0), "r"(sc1), "r"(sc2), "0"(c0), "1"(c1), "2"(c2) : "cc");
+
+ #elif defined(TFM_MIPS)
+
+@@ -571,7 +571,7 @@
+ " mflo %0 \n\t" \
+ " mfhi %1 \n\t" \
+ " xor %2,%2,%2 \n\t" \
+-:"=r"(sc0), "=r"(sc1), "=r"(sc2):"0"(sc0), "1"(sc1), "2"(sc2), "r"(i),"r"(j) : "%cc");
++:"=r"(sc0), "=r"(sc1), "=r"(sc2):"0"(sc0), "1"(sc1), "2"(sc2), "r"(i),"r"(j) : "cc");
+
+ #define SQRADDAC(i, j) \
+ asm( \
From owner-svn-ports-branches@FreeBSD.ORG Wed Jan 8 10:42:35 2014
Return-Path:
Delivered-To: svn-ports-branches@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 B47988EA;
Wed, 8 Jan 2014 10:42:35 +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))
(No client certificate requested)
by mx1.freebsd.org (Postfix) with ESMTPS id 86BD919CE;
Wed, 8 Jan 2014 10:42:35 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s08AgZO8021236;
Wed, 8 Jan 2014 10:42:35 GMT (envelope-from gahr@svn.freebsd.org)
Received: (from gahr@localhost)
by svn.freebsd.org (8.14.7/8.14.7/Submit) id s08AgZoG021234;
Wed, 8 Jan 2014 10:42:35 GMT (envelope-from gahr@svn.freebsd.org)
Message-Id: <201401081042.s08AgZoG021234@svn.freebsd.org>
From: Pietro Cerutti
Date: Wed, 8 Jan 2014 10:42:35 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
svn-ports-branches@freebsd.org
Subject: svn commit: r339087 - branches/2014Q1
X-SVN-Group: ports-branches
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-branches@freebsd.org
X-Mailman-Version: 2.1.17
Precedence: list
List-Id: SVN commit messages for all the branches of the ports tree
List-Unsubscribe: ,
List-Archive:
List-Post:
List-Help:
List-Subscribe: ,
X-List-Received-Date: Wed, 08 Jan 2014 10:42:35 -0000
Author: gahr
Date: Wed Jan 8 10:42:35 2014
New Revision: 339087
URL: http://svnweb.freebsd.org/changeset/ports/339087
Log:
MFH: r339078
- Fix build on 10 (clang) [1]
- STAGE-clean
PR: 185419[1]
Submitted by: Michael Gmelin
Approved by: portmgr-lurker (mat)
Modified:
Directory Properties:
branches/2014Q1/ (props changed)
From owner-svn-ports-branches@FreeBSD.ORG Wed Jan 8 11:15:22 2014
Return-Path:
Delivered-To: svn-ports-branches@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 5392F54A;
Wed, 8 Jan 2014 11:15:22 +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))
(No client certificate requested)
by mx1.freebsd.org (Postfix) with ESMTPS id 2548F1D72;
Wed, 8 Jan 2014 11:15:22 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s08BFMcj034783;
Wed, 8 Jan 2014 11:15:22 GMT (envelope-from bapt@svn.freebsd.org)
Received: (from bapt@localhost)
by svn.freebsd.org (8.14.7/8.14.7/Submit) id s08BFLON034781;
Wed, 8 Jan 2014 11:15:21 GMT (envelope-from bapt@svn.freebsd.org)
Message-Id: <201401081115.s08BFLON034781@svn.freebsd.org>
From: Baptiste Daroussin
Date: Wed, 8 Jan 2014 11:15:21 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
svn-ports-branches@freebsd.org
Subject: svn commit: r339091 - in branches/2014Q1: security/vuxml www/openx
X-SVN-Group: ports-branches
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-branches@freebsd.org
X-Mailman-Version: 2.1.17
Precedence: list
List-Id: SVN commit messages for all the branches of the ports tree
List-Unsubscribe: ,
List-Archive:
List-Post:
List-Help:
List-Subscribe: ,
X-List-Received-Date: Wed, 08 Jan 2014 11:15:22 -0000
Author: bapt
Date: Wed Jan 8 11:15:21 2014
New Revision: 339091
URL: http://svnweb.freebsd.org/changeset/ports/339091
Log:
MFH: r337204
- mark as FORBIDDEN (zero day SQL vuln)
Security: CVE-2013-7149
Modified:
branches/2014Q1/security/vuxml/vuln.xml
branches/2014Q1/www/openx/Makefile
Directory Properties:
branches/2014Q1/ (props changed)
Modified: branches/2014Q1/security/vuxml/vuln.xml
==============================================================================
--- branches/2014Q1/security/vuxml/vuln.xml Wed Jan 8 11:08:29 2014 (r339090)
+++ branches/2014Q1/security/vuxml/vuln.xml Wed Jan 8 11:15:21 2014 (r339091)
@@ -51,6 +51,42 @@ Note: Please add new entries to the beg
-->
+
+ OpenX -- SQL injection vulnerability
+
+
+ openx
+ 3.0.2
+
+
+
+
+ Revive reports:
+
+ An SQL-injection vulnerability was recently discovered and reported
+ to the Revive Adserver team by Florian Sander. The vulnerability is
+ known to be already exploited to gain unauthorised access to the
+ application using brute force mechanisms, however other kind of
+ attacks might be possible and/or already in use. The risk is rated
+ to be critical as the most common end goal of the attackers is to
+ spread malware to the visitors of all the websites and ad networks
+ that the ad server is being used on.
+ The vulnerability is also present and exploitable in OpenX Source
+ 2.8.11 and earlier versions, potentially back to phpAdsNew 2.0.x.
+
+
+
+
+ http://www.revive-adserver.com/security/revive-sa-2013-001/
+ http://www.kreativrauschen.com/blog/2013/12/18/zero-day-vulnerability-in-openx-source-2-8-11-and-revive-adserver-3-0-1/
+ CVE-2013-7149
+
+
+ 2013-12-20
+ 2013-12-22
+
+
+
cURL library -- cert name check ignore with GnuTLS
Modified: branches/2014Q1/www/openx/Makefile
==============================================================================
--- branches/2014Q1/www/openx/Makefile Wed Jan 8 11:08:29 2014 (r339090)
+++ branches/2014Q1/www/openx/Makefile Wed Jan 8 11:15:21 2014 (r339091)
@@ -11,6 +11,8 @@ COMMENT= Free, opensource ad server in P
LICENSE= GPLv2
+FORBIDDEN= CVE-2013-7149
+
USE_BZIP2= yes
NO_BUILD= yes
SUB_LIST+= PKGNAME=${PKGNAME}
From owner-svn-ports-branches@FreeBSD.ORG Wed Jan 8 11:16:18 2014
Return-Path:
Delivered-To: svn-ports-branches@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 99F4263D;
Wed, 8 Jan 2014 11:16:18 +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))
(No client certificate requested)
by mx1.freebsd.org (Postfix) with ESMTPS id 858A51D88;
Wed, 8 Jan 2014 11:16:18 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s08BGILK034988;
Wed, 8 Jan 2014 11:16:18 GMT (envelope-from bapt@svn.freebsd.org)
Received: (from bapt@localhost)
by svn.freebsd.org (8.14.7/8.14.7/Submit) id s08BGIrK034986;
Wed, 8 Jan 2014 11:16:18 GMT (envelope-from bapt@svn.freebsd.org)
Message-Id: <201401081116.s08BGIrK034986@svn.freebsd.org>
From: Baptiste Daroussin
Date: Wed, 8 Jan 2014 11:16:18 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
svn-ports-branches@freebsd.org
Subject: svn commit: r339092 - branches/2014Q1/security/vuxml
X-SVN-Group: ports-branches
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-branches@freebsd.org
X-Mailman-Version: 2.1.17
Precedence: list
List-Id: SVN commit messages for all the branches of the ports tree
List-Unsubscribe: ,
List-Archive:
List-Post:
List-Help:
List-Subscribe: ,
X-List-Received-Date: Wed, 08 Jan 2014 11:16:18 -0000
Author: bapt
Date: Wed Jan 8 11:16:17 2014
New Revision: 339092
URL: http://svnweb.freebsd.org/changeset/ports/339092
Log:
MFH: r338961
Document OpenSSL 1.0.1e multiple vulnerabilities.
Modified:
branches/2014Q1/security/vuxml/vuln.xml
Directory Properties:
branches/2014Q1/ (props changed)
Modified: branches/2014Q1/security/vuxml/vuln.xml
==============================================================================
--- branches/2014Q1/security/vuxml/vuln.xml Wed Jan 8 11:15:21 2014 (r339091)
+++ branches/2014Q1/security/vuxml/vuln.xml Wed Jan 8 11:16:17 2014 (r339092)
@@ -51,6 +51,39 @@ Note: Please add new entries to the beg
-->
+
+ openssl -- multiple vulnerabilities
+
+
+ openssl
+ 1.0.1_9
+
+
+
+
+ OpenSSL development team reports:
+
+ Major changes between OpenSSL 1.0.1e and OpenSSL 1.0.1f [6 Jan 2014]:
+
+ - Fix for TLS record tampering bug [CVE-2013-4353]
+ - Fix for TLS version checking bug [CVE-2013-6449]
+ - Fix for DTLS retransmission bug [CVE-2013-6450]
+
+
+
+
+
+ CVE-2013-4353
+ CVE-2013-6449
+ CVE-2013-6450
+ http://www.openssl.org/news/openssl-1.0.1-notes.html
+
+
+ 2014-01-06
+ 2014-01-06
+
+
+
OpenX -- SQL injection vulnerability
From owner-svn-ports-branches@FreeBSD.ORG Wed Jan 8 11:18:12 2014
Return-Path:
Delivered-To: svn-ports-branches@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
[IPv6:2001:1900:2254:206a::19:1])
(using TLSv1 with cipher ADH-AES256-SHA (256/256 bits))
(No client certificate requested)
by hub.freebsd.org (Postfix) with ESMTPS id CA62172A;
Wed, 8 Jan 2014 11:18:12 +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))
(No client certificate requested)
by mx1.freebsd.org (Postfix) with ESMTPS id B47261D99;
Wed, 8 Jan 2014 11:18:12 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s08BICNR035323;
Wed, 8 Jan 2014 11:18:12 GMT (envelope-from bapt@svn.freebsd.org)
Received: (from bapt@localhost)
by svn.freebsd.org (8.14.7/8.14.7/Submit) id s08BICEh035322;
Wed, 8 Jan 2014 11:18:12 GMT (envelope-from bapt@svn.freebsd.org)
Message-Id: <201401081118.s08BICEh035322@svn.freebsd.org>
From: Baptiste Daroussin
Date: Wed, 8 Jan 2014 11:18:12 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
svn-ports-branches@freebsd.org
Subject: svn commit: r339093 - branches/2014Q1/security/vuxml
X-SVN-Group: ports-branches
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-branches@freebsd.org
X-Mailman-Version: 2.1.17
Precedence: list
List-Id: SVN commit messages for all the branches of the ports tree
List-Unsubscribe: ,
List-Archive:
List-Post:
List-Help:
List-Subscribe: ,
X-List-Received-Date: Wed, 08 Jan 2014 11:18:13 -0000
Author: bapt
Date: Wed Jan 8 11:18:11 2014
New Revision: 339093
URL: http://svnweb.freebsd.org/changeset/ports/339093
Log:
MFH: r337930
Correct ident for most recent entries. No functional changes.
People, please be aware that we use the FreeBSD Documentation Primer
and that there are style rules we have to follow. If you are in
doubt please consult me and I am more then willing to help.
Hat: secteam
Modified:
branches/2014Q1/security/vuxml/vuln.xml
Directory Properties:
branches/2014Q1/ (props changed)
Modified: branches/2014Q1/security/vuxml/vuln.xml
==============================================================================
--- branches/2014Q1/security/vuxml/vuln.xml Wed Jan 8 11:16:17 2014 (r339092)
+++ branches/2014Q1/security/vuxml/vuln.xml Wed Jan 8 11:18:11 2014 (r339093)
@@ -177,25 +177,23 @@ Note: Please add new entries to the beg
Werner Koch reports:
CVE-2013-4576 has been assigned to this security bug.
-
The paper describes two attacks. The first attack allows
-to distinguish keys: An attacker is able to notice which key is
-currently used for decryption. This is in general not a problem but
-may be used to reveal the information that a message, encrypted to a
-commonly not used key, has been received by the targeted machine. We
-do not have a software solution to mitigate this attack.
-
+ to distinguish keys: An attacker is able to notice which key is
+ currently used for decryption. This is in general not a problem but
+ may be used to reveal the information that a message, encrypted to a
+ commonly not used key, has been received by the targeted machine. We
+ do not have a software solution to mitigate this attack.
The second attack is more serious. It is an adaptive
-chosen ciphertext attack to reveal the private key. A possible
-scenario is that the attacker places a sensor (for example a standard
-smartphone) in the vicinity of the targeted machine. That machine is
-assumed to do unattended RSA decryption of received mails, for example
-by using a mail client which speeds up browsing by opportunistically
-decrypting mails expected to be read soon. While listening to the
-acoustic emanations of the targeted machine, the smartphone will send
-new encrypted messages to that machine and re-construct the private
-key bit by bit. A 4096 bit RSA key used on a laptop can be revealed
-within an hour.
+ chosen ciphertext attack to reveal the private key. A possible
+ scenario is that the attacker places a sensor (for example a standard
+ smartphone) in the vicinity of the targeted machine. That machine is
+ assumed to do unattended RSA decryption of received mails, for example
+ by using a mail client which speeds up browsing by opportunistically
+ decrypting mails expected to be read soon. While listening to the
+ acoustic emanations of the targeted machine, the smartphone will send
+ new encrypted messages to that machine and re-construct the private
+ key bit by bit. A 4096 bit RSA key used on a laptop can be revealed
+ within an hour.
The Samba project reports:
- These are security releases in order to address CVE-2013-4408
+
These are security releases in order to address CVE-2013-4408
(DCE-RPC fragment length field is incorrectly checked) and CVE-2012-6150
(pam_winbind login without require_membership_of restrictions).
@@ -822,12 +820,12 @@ within an hour.
Ruby Gem developers report:
The patch for CVE-2013-4363 was insufficiently verified so the
- combined regular expression for verifying gem version remains
- vulnerable following CVE-2013-4363.
+ combined regular expression for verifying gem version remains
+ vulnerable following CVE-2013-4363.
RubyGems validates versions with a regular expression that is
- vulnerable to denial of service due to backtracking. For specially
- crafted RubyGems versions attackers can cause denial of service
- through CPU consumption.
+ vulnerable to denial of service due to backtracking. For specially
+ crafted RubyGems versions attackers can cause denial of service
+ through CPU consumption.
The Samba project reports:
- Samba 4.0.x before 4.0.11 and 4.1.x before 4.1.1, when LDAP or HTTP is
- provided over SSL, uses world-readable permissions for a private key,
- which allows local users to obtain sensitive information by reading the
- key file, as demonstrated by access to the local filesystem on an AD
- domain controller.
+ Samba 4.0.x before 4.0.11 and 4.1.x before 4.1.1, when LDAP or HTTP is
+ provided over SSL, uses world-readable permissions for a private key,
+ which allows local users to obtain sensitive information by reading the
+ key file, as demonstrated by access to the local filesystem on an AD
+ domain controller.
The Samba project reports:
- Samba versions 3.2.0 and above (all versions of 3.2.x, 3.3.x,
+
Samba versions 3.2.0 and above (all versions of 3.2.x, 3.3.x,
3.4.x, 3.5.x, 3.6.x, 4.0.x and 4.1.x) do not check the underlying
file or directory ACL when opening an alternate data stream.
According to the SMB1 and SMB2+ protocols the ACL on an underlying
@@ -1160,18 +1158,15 @@ within an hour.
A memory corruption vulnerability exists in the post-
authentication sshd process when an AES-GCM cipher
(aes128-gcm@openssh.com or aes256-gcm@openssh.com) is
- selected during kex exchange.
-
- If exploited, this vulnerability might permit code execution
+ selected during kex exchange.
+ If exploited, this vulnerability might permit code execution
with the privileges of the authenticated user and may
therefore allow bypassing restricted shell/command
configurations.
Either upgrade to 6.4 or disable AES-GCM in the server
configuration. The following sshd_config option will disable
- AES-GCM while leaving other ciphers active:
-
- Ciphers aes128-ctr,aes192-ctr,aes256-ctr,aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,aes192-cbc,aes256-cbc
-
+ AES-GCM while leaving other ciphers active:
+ Ciphers aes128-ctr,aes192-ctr,aes256-ctr,aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,aes192-cbc,aes256-cbc