mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
- Update to 1.10 [1]
- Remove MD5 checksum from distinfo PR: ports/153523 [1] Submitted by: Hung-Yi Chen <gaod_AT_hychen_DOT_org> (maintainer) [1]
This commit is contained in:
parent
7faad08001
commit
dd7417c07e
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=267355
3 changed files with 14 additions and 20 deletions
|
@ -6,14 +6,16 @@
|
|||
#
|
||||
|
||||
PORTNAME= liblbfgs
|
||||
PORTVERSION= 1.9
|
||||
PORTREVISION= 1
|
||||
PORTVERSION= 1.10
|
||||
CATEGORIES= math
|
||||
MASTER_SITES= http://www.chokkan.org/software/dist/
|
||||
MASTER_SITES= http://cloud.github.com/downloads/chokkan/liblbfgs/
|
||||
|
||||
MAINTAINER= gaod@hychen.org
|
||||
COMMENT= A library of Limited-memory Broyden-Fletcher-Goldfarb-Shanno
|
||||
|
||||
LICENSE= MIT
|
||||
LICENSE_FILE= ${WRKSRC}/COPYING
|
||||
|
||||
GNU_CONFIGURE= yes
|
||||
USE_AUTOTOOLS= autoconf:env
|
||||
|
||||
|
@ -30,7 +32,7 @@ IGNORE= does not install properly on 6.x
|
|||
CONFIGURE_ARGS+= --enable-sse2
|
||||
.endif
|
||||
|
||||
PLIST_FILES= lib/liblbfgs-1.9.so.0.0 lib/liblbfgs.a lib//liblbfgs.la \
|
||||
PLIST_FILES= lib/liblbfgs-1.10.so.0.0 lib/liblbfgs.a lib//liblbfgs.la \
|
||||
lib/liblbfgs.so.0.0 include/lbfgs.h
|
||||
|
||||
PORTDOCS= README INSTALL COPYING AUTHORS ChangeLog NEWS
|
||||
|
|
|
@ -1,3 +1,2 @@
|
|||
MD5 (liblbfgs-1.9.tar.gz) = 311eb920dd3ed777c3fae14e4ae7c9a5
|
||||
SHA256 (liblbfgs-1.9.tar.gz) = 76e2decbb4d05349f83ed81d30318b3af8597c007f447a0f68ff6f9eb8a8b47c
|
||||
SIZE (liblbfgs-1.9.tar.gz) = 318447
|
||||
SHA256 (liblbfgs-1.10.tar.gz) = 4158ab7402b573e5c69d5f6b03c973047a91e16ca5737d3347e3af9c906868cf
|
||||
SIZE (liblbfgs-1.10.tar.gz) = 318739
|
||||
|
|
|
@ -1,19 +1,12 @@
|
|||
--- lib/arithmetic_sse_double.h.orig 2010-06-08 08:17:38.000000000 +0800
|
||||
+++ lib/arithmetic_sse_double.h 2010-06-08 08:19:41.000000000 +0800
|
||||
@@ -26,7 +26,6 @@
|
||||
/* $Id: arithmetic_sse_double.h 65 2010-01-29 12:19:16Z naoaki $ */
|
||||
--- lib/arithmetic_sse_double.h.orig 2010-12-30 02:13:34.000000000 +0800
|
||||
+++ lib/arithmetic_sse_double.h 2010-12-30 02:14:04.000000000 +0800
|
||||
@@ -26,9 +26,6 @@
|
||||
/* $Id$ */
|
||||
|
||||
#include <stdlib.h>
|
||||
-#ifndef __APPLE__
|
||||
-#include <malloc.h>
|
||||
-#endif
|
||||
#include <memory.h>
|
||||
|
||||
#if 1400 <= _MSC_VER
|
||||
@@ -37,6 +36,8 @@
|
||||
#include <emmintrin.h>
|
||||
#endif/*HAVE_EMMINTRIN_H*/
|
||||
|
||||
+#define memalign(A,B) malloc(B)
|
||||
+
|
||||
inline static void* vecalloc(size_t size)
|
||||
{
|
||||
#ifdef _MSC_VER
|
||||
|
|
Loading…
Add table
Reference in a new issue