diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2003-12-14 15:40:49 +0000 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2003-12-14 15:40:49 +0000 |
commit | f5856d1ff489f7c79788a8e89fd483012f880b64 (patch) | |
tree | 0587fbfb62f8ff0ada47beeb5e4e58d53785aa19 /devel/nasm | |
parent | - Conditionalise dependency on compat libraries (diff) |
- Fix a bug to create the stabs table
Submitted by: Patrick MARIE <mycroft@virgaria.org>
Notes
Notes:
svn path=/head/; revision=95798
Diffstat (limited to 'devel/nasm')
-rw-r--r-- | devel/nasm/Makefile | 1 | ||||
-rw-r--r-- | devel/nasm/files/patch-output::outelf.c | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/devel/nasm/Makefile b/devel/nasm/Makefile index a6b0983350b9..de050e1020ba 100644 --- a/devel/nasm/Makefile +++ b/devel/nasm/Makefile @@ -7,6 +7,7 @@ PORTNAME= nasm PORTVERSION= 0.98.38 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= devel lang MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} diff --git a/devel/nasm/files/patch-output::outelf.c b/devel/nasm/files/patch-output::outelf.c new file mode 100644 index 000000000000..df7073f8b1a1 --- /dev/null +++ b/devel/nasm/files/patch-output::outelf.c @@ -0,0 +1,11 @@ +--- output/outelf.c.orig Sun Dec 14 16:25:34 2003 ++++ output/outelf.c Sun Dec 14 16:26:25 2003 +@@ -1411,7 +1411,7 @@ + the source-file, the n_desc field should be set to the number + of remaining stabs + */ +- WRITE_STAB(sptr, fileidx[0], 0, 0, 0, strlen(allfiles[0]+12)); ++ WRITE_STAB(sptr, fileidx[0], 0, 0, 0, stabstrlen); + + ptr=stabslines; + numstabs = 0; |