diff options
author | Yoshio MITA <mita@FreeBSD.org> | 2002-05-22 11:41:19 +0000 |
---|---|---|
committer | Yoshio MITA <mita@FreeBSD.org> | 2002-05-22 11:41:19 +0000 |
commit | 0a4681b2a217db20fbc19b783ccaaca0881b98e4 (patch) | |
tree | fc4f0f5125cf7f11ff126ee182fe57aafd6dd98d /graphics/xpdf | |
parent | Update to 4.09r1. (diff) |
japanese/xpdf: follow up graphics/xpdf version (1.00 -> 1.01)
graphics/xpdf: removed unnecessary patch-ab (equivalent diff already included)
Submitted by: Maintainer for japanese/xpdf
Notes
Notes:
svn path=/head/; revision=59690
Diffstat (limited to 'graphics/xpdf')
-rw-r--r-- | graphics/xpdf/files/patch-ab | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/graphics/xpdf/files/patch-ab b/graphics/xpdf/files/patch-ab deleted file mode 100644 index 097cc6faa99f..000000000000 --- a/graphics/xpdf/files/patch-ab +++ /dev/null @@ -1,27 +0,0 @@ ---- goo/gfile.cc.orig Fri Feb 1 15:15:45 2002 -+++ goo/gfile.cc Sun Feb 10 17:42:52 2002 -@@ -489,6 +489,16 @@ - int fd; - - if (ext) { -+# if HAVE_MKSTEMPS -+ if ((s = getenv("TMPDIR"))) { -+ *name = new GString(s); -+ } else { -+ *name = new GString("/tmp"); -+ } -+ (*name)->append("/XXXXXX"); -+ (*name)->append(ext); -+ fd = mkstemps((*name)->getCString(), strlen(ext)); -+# else - if (!(s = tmpnam(NULL))) { - return gFalse; - } -@@ -499,6 +509,7 @@ - } - (*name)->append(ext); - fd = open((*name)->getCString(), O_WRONLY | O_CREAT | O_EXCL, 0600); -+# endif - } else { - #if HAVE_MKSTEMP - if ((s = getenv("TMPDIR"))) { |