diff options
author | lesi <lesi@FreeBSD.org> | 2006-01-26 04:35:19 +0800 |
---|---|---|
committer | lesi <lesi@FreeBSD.org> | 2006-01-26 04:35:19 +0800 |
commit | a7d8b07d33b6bc603c532df940708ea2ece3fd1b (patch) | |
tree | 9e5386657a9b58095fa483a9da5d4bb14750d896 /graphics/xfig-devel | |
parent | f37b9907d0cad6621520c6b932989df59d50bc83 (diff) | |
download | freebsd-ports-gnome-a7d8b07d33b6bc603c532df940708ea2ece3fd1b.tar.gz freebsd-ports-gnome-a7d8b07d33b6bc603c532df940708ea2ece3fd1b.tar.zst freebsd-ports-gnome-a7d8b07d33b6bc603c532df940708ea2ece3fd1b.zip |
Add a patch to include a missing header. This fixes coredump when trying
to insert a picture.
PR: ports/92222
Submitted by: Steven G. Kargl ( kargl at troutmask.apl.washington.edu )
Diffstat (limited to 'graphics/xfig-devel')
-rw-r--r-- | graphics/xfig-devel/Makefile | 1 | ||||
-rw-r--r-- | graphics/xfig-devel/files/patch-w_drawprim.c | 10 |
2 files changed, 11 insertions, 0 deletions
diff --git a/graphics/xfig-devel/Makefile b/graphics/xfig-devel/Makefile index a8ca2a5bb45f..77d37c585697 100644 --- a/graphics/xfig-devel/Makefile +++ b/graphics/xfig-devel/Makefile @@ -7,6 +7,7 @@ PORTNAME= xfig PORTVERSION= 3.2.5.a5 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= http://xfig.org/software/xfig/${PORTVERSION:R}-alpha/ DISTNAME= ${PORTNAME}.${PORTVERSION:S,.a,-alpha,}.full diff --git a/graphics/xfig-devel/files/patch-w_drawprim.c b/graphics/xfig-devel/files/patch-w_drawprim.c new file mode 100644 index 000000000000..ea4592a34318 --- /dev/null +++ b/graphics/xfig-devel/files/patch-w_drawprim.c @@ -0,0 +1,10 @@ +--- w_drawprim.c.orig Tue Jan 24 23:42:51 2006 ++++ w_drawprim.c Tue Jan 24 23:43:11 2006 +@@ -35,6 +35,7 @@ + #include "paintop.h" + #include "mode.h" + #include "object.h" ++#include "u_create.h" + #include "u_fonts.h" + #include "w_canvas.h" + #include "w_drawprim.h" |