Update to 20100312
This commit is contained in:
parent
cd5f255ad1
commit
38e1077100
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=250975
4 changed files with 19 additions and 7 deletions
|
@ -6,7 +6,7 @@
|
|||
#
|
||||
|
||||
PORTNAME= clamav
|
||||
PORTVERSION= 20100308
|
||||
PORTVERSION= 20100312
|
||||
CATEGORIES= security
|
||||
MASTER_SITES= http://www.clamav.net/snapshot/ \
|
||||
LOCAL/garga/clamav-devel
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
MD5 (clamav-devel-20100308.tar.gz) = f28152f96e0ad5825b9a1744a5ca1a1f
|
||||
SHA256 (clamav-devel-20100308.tar.gz) = b1aaf0b99d6202640926c29316b8e2b4676d8884a891270852d7e3ed3042eb0e
|
||||
SIZE (clamav-devel-20100308.tar.gz) = 20760962
|
||||
MD5 (clamav-devel-20100312.tar.gz) = 7c60908f05f16cefd82fdcd0c14cafe9
|
||||
SHA256 (clamav-devel-20100312.tar.gz) = 0fab972ede5e40e15ab6056ab2224c0a448db6f2710561c8af63c57e23d463d8
|
||||
SIZE (clamav-devel-20100312.tar.gz) = 20938701
|
||||
|
|
|
@ -0,0 +1,12 @@
|
|||
--- ./libclamav/c++/llvm/lib/Target/X86/X86ISelLowering.cpp.orig 2010-03-12 11:04:55.000000000 -0300
|
||||
+++ ./libclamav/c++/llvm/lib/Target/X86/X86ISelLowering.cpp 2010-03-12 11:06:58.000000000 -0300
|
||||
@@ -9795,7 +9795,8 @@
|
||||
AsmPieces[2] == "${0:w}" &&
|
||||
IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
|
||||
AsmPieces.clear();
|
||||
- SplitString(IA->getConstraintString().substr(5), AsmPieces, ",");
|
||||
+ const std::string &Constraints = IA->getConstraintString();
|
||||
+ SplitString(StringRef(Constraints).substr(5), AsmPieces, ",");
|
||||
std::sort(AsmPieces.begin(), AsmPieces.end());
|
||||
if (AsmPieces.size() == 4 &&
|
||||
AsmPieces[0] == "~{cc}" &&
|
|
@ -13,13 +13,13 @@ include/clamav.h
|
|||
include/clamav-config.h
|
||||
lib/libclamav.la
|
||||
lib/libclamav.so
|
||||
lib/libclamav.so.6
|
||||
lib/libclamav.so.7
|
||||
%%UNRAR%%lib/libclamunrar.la
|
||||
%%UNRAR%%lib/libclamunrar.so
|
||||
%%UNRAR%%lib/libclamunrar.so.6
|
||||
%%UNRAR%%lib/libclamunrar.so.7
|
||||
%%UNRAR%%lib/libclamunrar_iface.la
|
||||
%%UNRAR%%lib/libclamunrar_iface.so
|
||||
%%UNRAR%%lib/libclamunrar_iface.so.6
|
||||
%%UNRAR%%lib/libclamunrar_iface.so.7
|
||||
libdata/pkgconfig/libclamav.pc
|
||||
@unexec if cmp -s %D/etc/clamd.conf %D/etc/clamd.conf.default; then rm -f %D/etc/clamd.conf; fi
|
||||
etc/clamd.conf.default
|
||||
|
|
Loading…
Reference in a new issue