mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
Convert to ELF and remove leading underscores so this builds
again.
This commit is contained in:
parent
360514d912
commit
3e96c034b9
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=14104
6 changed files with 18 additions and 88 deletions
|
@ -3,7 +3,7 @@
|
|||
# Date created: 14, June, 1998
|
||||
# Whom: Horance Chou <horance@freedom.ie.cycu.edu.tw>
|
||||
#
|
||||
# $Id: Makefile,v 1.1.1.1 1998/08/10 00:08:48 steve Exp $
|
||||
# $Id: Makefile,v 1.2 1998/10/12 18:42:20 jseger Exp $
|
||||
#
|
||||
|
||||
DISTNAME= libffi-1.18
|
||||
|
@ -12,8 +12,6 @@ MASTER_SITES= ftp://ftp.cygnus.com:/pub/green/
|
|||
|
||||
MAINTAINER= horance@freedom.ie.cycu.edu.tw
|
||||
|
||||
BROKEN_ELF= libffi.so
|
||||
|
||||
GNU_CONFIGURE= yes
|
||||
WRKSRC= ${WRKDIR}/${PKGNAME}
|
||||
ALL_TARGET= test
|
||||
|
|
|
@ -1,44 +1,11 @@
|
|||
--- src/x86/sysv.S.orig Sun Jun 14 14:43:22 1998
|
||||
+++ src/x86/sysv.S Sun Jun 14 14:48:35 1998
|
||||
@@ -30,14 +30,14 @@
|
||||
|
||||
.text
|
||||
|
||||
-.globl ffi_prep_args
|
||||
+.globl _ffi_prep_args
|
||||
--- src/x86/sysv.S.orig Tue Feb 24 19:49:51 1998
|
||||
+++ src/x86/sysv.S Tue Oct 13 22:28:56 1998
|
||||
@@ -33,7 +33,7 @@
|
||||
.globl ffi_prep_args
|
||||
|
||||
# This assumes we are using gas.
|
||||
- .balign 16
|
||||
-.globl ffi_call_SYSV
|
||||
- .type ffi_call_SYSV,@function
|
||||
+ .align 4
|
||||
+.globl _ffi_call_SYSV
|
||||
+ .type _ffi_call_SYSV,@function
|
||||
|
||||
-ffi_call_SYSV:
|
||||
+_ffi_call_SYSV:
|
||||
pushl %ebp
|
||||
movl %esp,%ebp
|
||||
|
||||
@@ -47,10 +47,10 @@
|
||||
|
||||
movl %esp,%eax
|
||||
|
||||
- # Place all of the ffi_prep_args in position
|
||||
+ # Place all of the _ffi_prep_args in position
|
||||
pushl 12(%ebp)
|
||||
pushl %eax
|
||||
- call ffi_prep_args
|
||||
+ call _ffi_prep_args
|
||||
|
||||
# Return stack to previous state and call the function
|
||||
addl $8,%esp
|
||||
@@ -110,6 +110,6 @@
|
||||
movl %ebp,%esp
|
||||
popl %ebp
|
||||
ret
|
||||
-.ffi_call_SYSV_end:
|
||||
- .size ffi_call_SYSV,.ffi_call_SYSV_end-ffi_call_SYSV
|
||||
+._ffi_call_SYSV_end:
|
||||
+ .size _ffi_call_SYSV,._ffi_call_SYSV_end-_ffi_call_SYSV
|
||||
.globl ffi_call_SYSV
|
||||
.type ffi_call_SYSV,@function
|
||||
|
||||
|
|
|
@ -5,5 +5,5 @@ lib/libffi.la
|
|||
lib/libffi.a
|
||||
lib/libffi.so
|
||||
lib/libffi.so.2.1
|
||||
@exec /sbin/ldconfig -m %B
|
||||
@unexec /sbin/ldconfig -R
|
||||
@exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B
|
||||
@unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# Date created: 14, June, 1998
|
||||
# Whom: Horance Chou <horance@freedom.ie.cycu.edu.tw>
|
||||
#
|
||||
# $Id: Makefile,v 1.1.1.1 1998/08/10 00:08:48 steve Exp $
|
||||
# $Id: Makefile,v 1.2 1998/10/12 18:42:20 jseger Exp $
|
||||
#
|
||||
|
||||
DISTNAME= libffi-1.18
|
||||
|
@ -12,8 +12,6 @@ MASTER_SITES= ftp://ftp.cygnus.com:/pub/green/
|
|||
|
||||
MAINTAINER= horance@freedom.ie.cycu.edu.tw
|
||||
|
||||
BROKEN_ELF= libffi.so
|
||||
|
||||
GNU_CONFIGURE= yes
|
||||
WRKSRC= ${WRKDIR}/${PKGNAME}
|
||||
ALL_TARGET= test
|
||||
|
|
|
@ -1,44 +1,11 @@
|
|||
--- src/x86/sysv.S.orig Sun Jun 14 14:43:22 1998
|
||||
+++ src/x86/sysv.S Sun Jun 14 14:48:35 1998
|
||||
@@ -30,14 +30,14 @@
|
||||
|
||||
.text
|
||||
|
||||
-.globl ffi_prep_args
|
||||
+.globl _ffi_prep_args
|
||||
--- src/x86/sysv.S.orig Tue Feb 24 19:49:51 1998
|
||||
+++ src/x86/sysv.S Tue Oct 13 22:28:56 1998
|
||||
@@ -33,7 +33,7 @@
|
||||
.globl ffi_prep_args
|
||||
|
||||
# This assumes we are using gas.
|
||||
- .balign 16
|
||||
-.globl ffi_call_SYSV
|
||||
- .type ffi_call_SYSV,@function
|
||||
+ .align 4
|
||||
+.globl _ffi_call_SYSV
|
||||
+ .type _ffi_call_SYSV,@function
|
||||
|
||||
-ffi_call_SYSV:
|
||||
+_ffi_call_SYSV:
|
||||
pushl %ebp
|
||||
movl %esp,%ebp
|
||||
|
||||
@@ -47,10 +47,10 @@
|
||||
|
||||
movl %esp,%eax
|
||||
|
||||
- # Place all of the ffi_prep_args in position
|
||||
+ # Place all of the _ffi_prep_args in position
|
||||
pushl 12(%ebp)
|
||||
pushl %eax
|
||||
- call ffi_prep_args
|
||||
+ call _ffi_prep_args
|
||||
|
||||
# Return stack to previous state and call the function
|
||||
addl $8,%esp
|
||||
@@ -110,6 +110,6 @@
|
||||
movl %ebp,%esp
|
||||
popl %ebp
|
||||
ret
|
||||
-.ffi_call_SYSV_end:
|
||||
- .size ffi_call_SYSV,.ffi_call_SYSV_end-ffi_call_SYSV
|
||||
+._ffi_call_SYSV_end:
|
||||
+ .size _ffi_call_SYSV,._ffi_call_SYSV_end-_ffi_call_SYSV
|
||||
.globl ffi_call_SYSV
|
||||
.type ffi_call_SYSV,@function
|
||||
|
||||
|
|
|
@ -5,5 +5,5 @@ lib/libffi.la
|
|||
lib/libffi.a
|
||||
lib/libffi.so
|
||||
lib/libffi.so.2.1
|
||||
@exec /sbin/ldconfig -m %B
|
||||
@unexec /sbin/ldconfig -R
|
||||
@exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B
|
||||
@unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R
|
||||
|
|
Loading…
Add table
Reference in a new issue