1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-27 21:29:02 +00:00
freebsd-ports/graphics/xpdf/files/patch-aa
Jing-Tang Keith Jang cf4dd0da67 Update to 0.92. MAINTAINER hasn't replied for two weeks, so I
think it's legitimate to do the upgrade job.

PR:		ports/24169, ports/24285
Submitted by:	Michael Harnois, and Ports Fury(with patches)
2001-01-24 17:26:20 +00:00

20 lines
611 B
Plaintext

--- configure.in.orig Mon Dec 4 13:28:07 2000
+++ configure.in Thu Jan 11 21:05:07 2001
@@ -183,6 +183,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 *).