1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-20 20:09:11 +00:00

* Update to 2.02pl1, which fixes a URL format vulnerability.

* Remove now-obsolete patch.

PR:		ports/53546
Submitted by:	Hideyuki KURASHINA <rushani@FreeBSD.org>, KATO Tsuguru <tkato@prontomail.com>
This commit is contained in:
Doug Barton 2003-07-01 07:17:58 +00:00
parent 28c552592b
commit b3622a850c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=83958
3 changed files with 4 additions and 21 deletions

View File

@ -6,11 +6,12 @@
#
PORTNAME= xpdf
PORTVERSION= 2.02
PORTVERSION= 2.02.1
CATEGORIES= graphics print
MASTER_SITES= ftp://ftp.foolabs.com/pub/xpdf/ \
${MASTER_SITE_TEX_CTAN}
MASTER_SITE_SUBDIR= support/xpdf
DISTNAME= ${PORTNAME}-${PORTVERSION:R}pl${PORTVERSION:E}
MAINTAINER= DougB@FreeBSD.org
COMMENT= Display PDF files, and convert them to other formats
@ -24,6 +25,7 @@ USE_MOTIF= yes
USE_GMAKE= yes
GNU_CONFIGURE= yes
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
CONFIGURE_ARGS= --with-gzip --enable-opi --with-x \

View File

@ -1 +1 @@
MD5 (xpdf-2.02.tar.gz) = fb54402d98fb834e5778163cfc238b44
MD5 (xpdf-2.02pl1.tar.gz) = e2932bb0f844d8318c940350c2aa2eb6

View File

@ -1,19 +0,0 @@
--- configure.in.orig Fri Feb 1 15:15:45 2002
+++ configure.in Sun Feb 10 17:42:52 2002
@@ -193,6 +193,16 @@
if test "$xpdf_cv_func_mkstemp" = yes; then
AC_DEFINE(HAVE_MKSTEMP)
fi
+dnl # Ditto mkstemps()
+AC_CACHE_CHECK([for mkstemps],
+xpdf_cv_func_mkstemps,
+[AC_TRY_LINK([#include <stdlib.h>
+#include <unistd.h>],
+[mkstemps("foo", 0);],
+xpdf_cv_func_mkstemps=yes, xpdf_cv_func_mkstemps=no)])
+if test "$xpdf_cv_func_mkstemps" = yes; then
+ AC_DEFINE(HAVE_MKSTEMPS)
+fi
dnl ##### Check select argument type: on HP-UX before version 10, select
dnl ##### takes (int *) instead of (fd_set *).