svn commit: r413566 - head/converters/uudx/files
John Marino
marino at FreeBSD.org
Mon Apr 18 10:11:28 UTC 2016
Author: marino
Date: Mon Apr 18 10:11:26 2016
New Revision: 413566
URL: https://svnweb.freebsd.org/changeset/ports/413566
Log:
converters/uudx: restore DragonFly support
The new patch needs the check __DragonFly__ definition too.
Modified:
head/converters/uudx/files/patch-uudx.c
Modified: head/converters/uudx/files/patch-uudx.c
==============================================================================
--- head/converters/uudx/files/patch-uudx.c Mon Apr 18 09:54:11 2016 (r413565)
+++ head/converters/uudx/files/patch-uudx.c Mon Apr 18 10:11:26 2016 (r413566)
@@ -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();
More information about the svn-ports-all
mailing list