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

(-)Makefile (-3 / +12 lines)
Lines 6-12 Link Here
6
#
6
#
7
7
8
PORTNAME=	libjit
8
PORTNAME=	libjit
9
PORTVERSION=	0.0.2
9
PORTVERSION=	0.0.4
10
CATEGORIES=	lang
10
CATEGORIES=	lang
11
MASTER_SITES=	http://www.southern-storm.com.au/download/
11
MASTER_SITES=	http://www.southern-storm.com.au/download/
12
12
Lines 14-23 Link Here
14
COMMENT=	Libjit implements Just-In-Time compilation functionality
14
COMMENT=	Libjit implements Just-In-Time compilation functionality
15
15
16
USE_GMAKE=	yes
16
USE_GMAKE=	yes
17
GNU_CONFIGURE=	yes
17
USE_INC_LIBTOOL_VER=13
18
USE_REINPLACE=	yes
19
20
INSTALLS_SHLIB=	yes
21
18
INFO=		libjit
22
INFO=		libjit
19
MAN3=		libjit.3
23
MAN3=		libjit.3
20
INSTALLS_SHLIB=	yes
21
24
22
.include <bsd.port.pre.mk>
25
.include <bsd.port.pre.mk>
23
26
Lines 25-28 Link Here
25
BROKEN=		"Does not compile on amd64"
28
BROKEN=		"Does not compile on amd64"
26
.endif
29
.endif
27
30
31
post-configure:
32
.if ${OSVERSION} >=	502123
33
	@${REINPLACE_CMD} -e 's|$$pic_flag -DPIC||' \
34
		${WRKSRC}/libtool
35
.endif
36
28
.include <bsd.port.post.mk>
37
.include <bsd.port.post.mk>
(-)distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
MD5 (libjit-0.0.2.tar.gz) = f29878f7fc30a56c425af1163235f2de
1
MD5 (libjit-0.0.4.tar.gz) = eda01981d60a996434d3d4e36c84d6c2
2
SIZE (libjit-0.0.2.tar.gz) = 523897
2
SIZE (libjit-0.0.4.tar.gz) = 580278
(-)pkg-plist (+2 lines)
Lines 12-17 Link Here
12
include/jit/jit-insn.h
12
include/jit/jit-insn.h
13
include/jit/jit-intrinsic.h
13
include/jit/jit-intrinsic.h
14
include/jit/jit-meta.h
14
include/jit/jit-meta.h
15
include/jit/jit-objmodel-private.h
16
include/jit/jit-objmodel.h
15
include/jit/jit-opcode.h
17
include/jit/jit-opcode.h
16
include/jit/jit-plus.h
18
include/jit/jit-plus.h
17
include/jit/jit-type.h
19
include/jit/jit-type.h
(-)files/patch-ac (-9 / +9 lines)
Lines 1-12 Link Here
1
--- jit/jit-interp.cpp.orig	Tue Apr 27 00:23:50 2004
1
--- jit/jit-interp.c.orig	Sun Aug  8 14:47:39 2004
2
+++ jit/jit-interp.cpp	Tue Apr 27 00:24:18 2004
2
+++ jit/jit-interp.c	Sun Aug  8 14:48:08 2004
3
@@ -30,6 +30,9 @@
3
@@ -33,6 +33,9 @@
4
 #include "jit-rules.h"
5
 #include "jit-memory.h"
6
 #include <config.h>
7
+#ifdef __FreeBSD__
8
+	#include <stdlib.h>
9
+#endif
10
 #if HAVE_ALLOCA_H
4
 #if HAVE_ALLOCA_H
11
 	#include <alloca.h>
5
 	#include <alloca.h>
12
 #endif
6
 #endif
7
+#ifdef __FreeBSD__
8
+	#include <stdlib.h>
9
+#endif
10
 #ifdef JIT_WIN32_PLATFORM
11
 	#include <malloc.h>
12
 	#ifndef alloca

Return to bug 70183