View | Details | Raw Unified | Return to bug 182370
Collapse All | Expand All

(-)lightning/Makefile (-1 / +1 lines)
Lines 2-8 Link Here
2
# $FreeBSD: devel/lightning/Makefile 327724 2013-09-20 17:13:42Z bapt $
2
# $FreeBSD: devel/lightning/Makefile 327724 2013-09-20 17:13:42Z bapt $
3
3
4
PORTNAME=	lightning
4
PORTNAME=	lightning
5
PORTVERSION=	2.0.0
5
PORTVERSION=	2.0.1
6
CATEGORIES=	devel
6
CATEGORIES=	devel
7
MASTER_SITES=	GNU
7
MASTER_SITES=	GNU
8
MASTER_SITE_SUBDIR=	${PORTNAME}
8
MASTER_SITE_SUBDIR=	${PORTNAME}
(-)lightning/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (lightning-2.0.0.tar.gz) = e41736c5c6c40eeb194e3f9fec3209e86f07f9471d0aacc5d35c1c8e55621054
1
SHA256 (lightning-2.0.1.tar.gz) = 6513a793937db5b1df62a8cf75ad2195143107efdab914d69f77e3fc6e4e81b1
2
SIZE (lightning-2.0.0.tar.gz) = 852571
2
SIZE (lightning-2.0.1.tar.gz) = 861965
(-)lightning/files/patch-configure (-19 lines)
Lines 1-19 Link Here
1
--- configure.orig	2013-08-23 21:12:43.000000000 +0300
2
+++ configure	2013-08-25 15:53:56.000000000 +0300
3
@@ -11650,6 +11650,7 @@
4
 fi
5
 
6
 case "$host_os" in
7
+    *freebsd*)	SHLIB=""	    ;;
8
     *hpux*)		SHLIB="-ldld"	;;
9
     *)			SHLIB="-ldl"	;;
10
 esac
11
@@ -11657,7 +11658,7 @@
12
 
13
 cpu=
14
 case "$target_cpu" in
15
-    i?86|x86_64)	cpu=x86		;;
16
+    i?86|x86_64|amd64)	cpu=x86		;;
17
     *arm*)		cpu=arm		;;
18
     *mips*)		cpu=mips	;;
19
     *powerpc*)		cpu=ppc		;;
(-)lightning/files/patch-include-lightning.h (-11 lines)
Lines 1-11 Link Here
1
--- include/lightning.h.orig	2013-09-02 13:38:10.000000000 +0300
2
+++ include/lightning.h	2013-09-02 14:57:27.000000000 +0300
3
@@ -38,7 +38,7 @@
4
 #    define __WORDSIZE		WORDSIZE
5
 #  elif defined(__SIZEOF_POINTER__)		/* ppc aix */
6
 #    define __WORDSIZE		(__SIZEOF_POINTER__ << 3)
7
-#  elif defined(_ILP32)				/* hppa hp-ux */
8
+#  elif defined(_ILP32) || defined(__i386__)	/* hppa hp-ux, i386 gcc 4.2 */
9
 #    define __WORDSIZE		32
10
 #  elif defined(_LP64)				/* ia64 hp-ux (with cc +DD64) */
11
 #    define __WORDSIZE		64

Return to bug 182370