Update to 0.51b3.

PR:		57115
Submitted by:	Simon Barner <barner@in.tum.de> (based on)
Approved by:	maintainer
This commit is contained in:
Joe Marcus Clarke 2003-09-24 21:43:04 +00:00
parent e9ada8d4ed
commit 53fe5bc45c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=89273
3 changed files with 14 additions and 23 deletions

View file

@ -6,10 +6,10 @@
#
PORTNAME= elfsh
PORTVERSION= 0.51b2
PORTVERSION= 0.51b3
CATEGORIES= devel
MASTER_SITES= http://www.kerneled.com/freebsd/ports/
DISTNAME= elfsh-0.51b2-portable
MASTER_SITES= http://elfsh.segfault.net/files/
DISTNAME= elfsh-0.51b3-portable
EXTRACT_SUFX= .tgz
MAINTAINER= samy@kerneled.com

View file

@ -1 +1 @@
MD5 (elfsh-0.51b2-portable.tgz) = 091a9a89f69f861024a75d314b6d616f
MD5 (elfsh-0.51b3-portable.tgz) = e8073d475e82dc911a7ebfa6f2567719

View file

@ -1,16 +1,6 @@
--- vm/Makefile Fri Aug 15 17:58:34 2003
+++ vm/Makefile.patch Sat Aug 16 02:26:48 2003
@@ -19,9 +19,6 @@
RM = rm -f
NAME = elfsh
-DLOPT_freebsd4.4 =
-DLOPT_linux-gnu = -ldl
-DLOPT_solaris = -ldl
#EXTRAOPT = -lefence
# Uncomment that to use libasm
@@ -29,14 +26,14 @@
--- vm/Makefile Thu Aug 21 04:23:17 2003
+++ vm/Makefile.patch Thu Sep 25 00:26:25 2003
@@ -19,8 +19,8 @@
#LDASMOPT = -lasm
# Uncommant that to use libreadline
@ -19,13 +9,14 @@
+READLNOPT = -DUSE_READLN
+LDREADLNOPT = -lreadline -ltermcap
# End of configurable Makefile
@@ -40,7 +40,7 @@
RM = rm -f
NAME = elfsh
-CFLAGS = -rdynamic -fPIC -g3 -O2 -Wall -Iinclude \
+CFLAGS += -rdynamic -fPIC -g3 -Wall -Iinclude \
-I../libhash/include/ -I../libelfsh/include/ \
-DELFSH_INTERN $(ASMOPT) $(READLNOPT)
LDFLAGS = -L../libelfsh/ -lelfsh -L../libhash/ -lhashelfsh \
- -rdynamic -g3 -ldl $(LDASMOPT) $(LDREADLNOPT) \
+ -rdynamic -g3 $(LDASMOPT) $(LDREADLNOPT) \
$(EXTRAOPT)
-DELFSH_INTERN $(DLOPT) $(ASMOPT) $(READLNOPT)