summaryrefslogtreecommitdiff
path: root/editors/TeXmacs
diff options
context:
space:
mode:
authorobache <obache>2008-07-13 14:30:21 +0000
committerobache <obache>2008-07-13 14:30:21 +0000
commit7f39a95aed49d7617918c6ca4cc29e97e5c94cbc (patch)
treecd39a1425a8daf99b021d6183aff9f73c550a11f /editors/TeXmacs
parent86d4f91ea9524f7a786eca09e5442ca4ed39e2de (diff)
downloadpkgsrc-7f39a95aed49d7617918c6ca4cc29e97e5c94cbc.tar.gz
Add patch to fix build failure on DragonFly and FreeBSD.
Patch provided by Hasso Tepper in PR 39049.
Diffstat (limited to 'editors/TeXmacs')
-rw-r--r--editors/TeXmacs/distinfo3
-rw-r--r--editors/TeXmacs/patches/patch-al14
2 files changed, 16 insertions, 1 deletions
diff --git a/editors/TeXmacs/distinfo b/editors/TeXmacs/distinfo
index 7346efee08f..90af2b7ff1d 100644
--- a/editors/TeXmacs/distinfo
+++ b/editors/TeXmacs/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.52 2008/04/22 10:41:04 tnn Exp $
+$NetBSD: distinfo,v 1.53 2008/07/13 14:30:21 obache Exp $
SHA1 (TeXmacs-1.0.6.14-src.tar.gz) = bab1a969be883608f5ffbaef9994d6b86c43226e
RMD160 (TeXmacs-1.0.6.14-src.tar.gz) = 1558176e93527367907cc461fe6075d4c508e23a
@@ -12,3 +12,4 @@ SHA1 (patch-ag) = 2b1c0ce4aa0f6b824f08f05a95beacbb1722436b
SHA1 (patch-ai) = 7b68ab900373e21d9e45c6236609824fa46574ed
SHA1 (patch-aj) = 8f07479a6857900b535a0fd7b1f61043164baf15
SHA1 (patch-ak) = 114cd8f2cd27d49365bec6bd9fc920a323bf0e31
+SHA1 (patch-al) = f7deed3d692af322aebe1a4068dfd3bde9e87a0a
diff --git a/editors/TeXmacs/patches/patch-al b/editors/TeXmacs/patches/patch-al
new file mode 100644
index 00000000000..9e053b35142
--- /dev/null
+++ b/editors/TeXmacs/patches/patch-al
@@ -0,0 +1,14 @@
+$NetBSD: patch-al,v 1.1 2008/07/13 14:30:21 obache Exp $
+
+--- plugins/shell/src/tm_shell.cpp.orig 2008-03-20 02:16:36.000000000 +0900
++++ plugins/shell/src/tm_shell.cpp
+@@ -25,6 +25,9 @@
+ #if HAVE_PTY_H
+ #include <pty.h>
+ #endif
++#if defined(__DragonFly__) || defined(__FreeBSD__)
++#include <libutil.h>
++#endif
+ #if HAVE_UTIL_H
+ #include <util.h>
+ #endif