summaryrefslogtreecommitdiff
path: root/devel/ffcall
diff options
context:
space:
mode:
authorjperkin <jperkin>2014-05-14 11:13:04 +0000
committerjperkin <jperkin>2014-05-14 11:13:04 +0000
commit7163e9508535a9c77bdfe950378f184baafd3ec7 (patch)
treefc8bea4ec3a72189ff32478023a9a900725f808d /devel/ffcall
parent3c8d213730bf4d1b4dcbb20f632e97780e9891dc (diff)
downloadpkgsrc-7163e9508535a9c77bdfe950378f184baafd3ec7.tar.gz
Pass correct CFLAGS to the manual SunOS x86_64 build, fixes unresolved symbols.
Bump PKGREVISION.
Diffstat (limited to 'devel/ffcall')
-rw-r--r--devel/ffcall/Makefile4
-rw-r--r--devel/ffcall/distinfo4
-rw-r--r--devel/ffcall/patches/patch-ae4
3 files changed, 6 insertions, 6 deletions
diff --git a/devel/ffcall/Makefile b/devel/ffcall/Makefile
index dcdce6c1c28..5cb58ad4894 100644
--- a/devel/ffcall/Makefile
+++ b/devel/ffcall/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.28 2014/04/08 04:19:16 hiramatsu Exp $
+# $NetBSD: Makefile,v 1.29 2014/05/14 11:13:04 jperkin Exp $
DISTNAME= ffcall-1.10
-PKGREVISION= 2
+PKGREVISION= 3
CATEGORIES= devel
MASTER_SITES= http://www.haible.de/bruno/gnu/ \
${MASTER_SITE_GNUSTEP:=libs/}
diff --git a/devel/ffcall/distinfo b/devel/ffcall/distinfo
index 3a96f41280a..61f279fb038 100644
--- a/devel/ffcall/distinfo
+++ b/devel/ffcall/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.9 2014/05/12 13:05:21 jperkin Exp $
+$NetBSD: distinfo,v 1.10 2014/05/14 11:13:04 jperkin Exp $
SHA1 (ffcall-1.10.tar.gz) = 6b4fdc7bd38b434bbf3d65508a3d117fc8b349f3
RMD160 (ffcall-1.10.tar.gz) = 910af54fae0b992ceb5620f155e301827d2e03c5
@@ -6,7 +6,7 @@ Size (ffcall-1.10.tar.gz) = 914870 bytes
SHA1 (patch-aa) = 13250616ed04a1a2135d7638dd6a83f86e635188
SHA1 (patch-ab) = 7e4b587a080af5530c7bd883a71b614162522320
SHA1 (patch-ad) = 4cfba7c4ce9fb709d1e857433c5caad293ca9c29
-SHA1 (patch-ae) = 120d3104aa4e06a0dcc3119719998e0f260ffb79
+SHA1 (patch-ae) = 091132edde5d4360cdc3f0e72cc58833c6487181
SHA1 (patch-af) = bec1789b42136929742e7bbaa73b88aaf102da6d
SHA1 (patch-ag) = b21d51fc1d78d81a4f7a99183ca1033675ff04ac
SHA1 (patch-ah) = 07781ee5caef0ca98e9f15c504fee0b43a111245
diff --git a/devel/ffcall/patches/patch-ae b/devel/ffcall/patches/patch-ae
index bfdc4759fda..387028648dc 100644
--- a/devel/ffcall/patches/patch-ae
+++ b/devel/ffcall/patches/patch-ae
@@ -1,4 +1,4 @@
-$NetBSD: patch-ae,v 1.3 2014/05/12 13:05:21 jperkin Exp $
+$NetBSD: patch-ae,v 1.4 2014/05/14 11:13:04 jperkin Exp $
Don't use pre-generated assembly on SunOS.
@@ -26,7 +26,7 @@ Don't use pre-generated assembly on SunOS.
vacall-x86_64.lo : $(srcdir)/vacall-x86_64.s
- $(LIBTOOL_COMPILE) $(CC) @GCC_X_NONE@ -c $(srcdir)/vacall-x86_64.s
+ case "$(OS)" in \
-+ solaris*) xnone="-I../../vacall"; exten="c";; \
++ solaris*) xnone="-I../../vacall -DREENTRANT -D__x86_64__=1"; exten="c";; \
+ *) xnone="@GCC_X_NONE@"; exten="s";; \
+ esac; \
+ $(LIBTOOL_COMPILE) $(CC) $${xnone} -c $(srcdir)/vacall-x86_64.$${exten}