summaryrefslogtreecommitdiff
path: root/converters
diff options
context:
space:
mode:
authorJohn Marino <marino@FreeBSD.org>2016-04-18 10:11:26 +0000
committerJohn Marino <marino@FreeBSD.org>2016-04-18 10:11:26 +0000
commitcae7b2104284c13f4bb126714dc754fb478b77e7 (patch)
tree2aa29c27cad4665401f29e3a9d797454937f86a5 /converters
parentUpdate CMake to 3.5.2. (diff)
converters/uudx: restore DragonFly support
The new patch needs the check __DragonFly__ definition too.
Notes
Notes: svn path=/head/; revision=413566
Diffstat (limited to 'converters')
-rw-r--r--converters/uudx/files/patch-uudx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/converters/uudx/files/patch-uudx.c b/converters/uudx/files/patch-uudx.c
index 7db4409fa194..fe876781f286 100644
--- a/converters/uudx/files/patch-uudx.c
+++ b/converters/uudx/files/patch-uudx.c
@@ -4,7 +4,7 @@
#if !BSD
#include <string.h>
#else
-+#if !defined(__FreeBSD__) && !defined(__OpenBSD__) && !defined(__NetBSD__)
++#if !defined(__FreeBSD__) && !defined(__OpenBSD__) && !defined(__NetBSD__) && !defined(__DragonFly__)
#define strchr index
extern char *strchr();
extern char *sprintf();