summaryrefslogtreecommitdiffstats
path: root/libraries/ftgl/patches
diff options
context:
space:
mode:
author Matteo Bernardini2013-11-04 20:31:10 +0100
committer Robby Workman2013-11-06 07:53:27 +0100
commit85ebdac868e5699972dba15a370decd6f16b131f (patch)
treef962b05e1a52ceb676f15b667c6576ec2cb198be /libraries/ftgl/patches
parent4d25a9b8cdc276fe574d8a4e92033e57acc3752c (diff)
downloadslackbuilds-85ebdac868e5699972dba15a370decd6f16b131f.tar.gz
libraries/ftgl: Avoid building pdf docs (seems broken ATM).
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'libraries/ftgl/patches')
-rw-r--r--libraries/ftgl/patches/nopdfdocs.patch23
1 files changed, 23 insertions, 0 deletions
diff --git a/libraries/ftgl/patches/nopdfdocs.patch b/libraries/ftgl/patches/nopdfdocs.patch
new file mode 100644
index 0000000000..e938665bad
--- /dev/null
+++ b/libraries/ftgl/patches/nopdfdocs.patch
@@ -0,0 +1,23 @@
+--- configure.ac.old 2008-11-21 14:41:15.000000000 +0100
++++ configure.ac 2008-11-21 14:44:19.000000000 +0100
+@@ -64,19 +64,11 @@
+ CFLAGS="${CFLAGS} -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs"
+
+ # Build HTML documentatin?
+-AC_PATH_PROG(DOXYGEN, doxygen, no)
++DOXYGEN="no"
+ AM_CONDITIONAL(HAVE_DOXYGEN, test "x$DOXYGEN" != "xno")
+
+ # Build PDF documentation?
+-AC_PATH_PROG(LATEX, pdflatex, no)
+-AC_PATH_PROG(KPSEWHICH, kpsewhich, no)
+-AC_PATH_PROG(DVIPS, dvips, no)
+-AC_PATH_PROG(CONVERT, convert, no)
+-AC_PATH_PROG(EPSTOPDF, epstopdf, no)
+-if test "${DVIPS}" = "no" -o "${KPSEWHICH}" = "no" -o "${EPSTOPDF}" = "no" \
+- -o "${CONVERT}" = "no"; then
+ LATEX="no"
+-fi
+ if test "x${LATEX}" != "xno"; then
+ AC_MSG_CHECKING(for a4.sty and a4wide.sty)
+ if "${KPSEWHICH}" a4.sty >/dev/null 2>&1; then