blob: f1f0cfb9a62d7f3f739fba8dcfb3772d68ce0fdf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
$NetBSD: patch-arjdata.c,v 1.1 2015/04/12 15:45:00 tnn Exp $
Add DragonFly support.
--- arjdata.c.orig 2004-04-17 11:44:46.000000000 +0000
+++ arjdata.c
@@ -64,6 +64,8 @@ static char *resources[][2]=
#elif TARGET==UNIX
#if defined(linux)
"Linux"
+ #elif defined(__DragonFly__)
+ "DragonFly"
#elif defined(__FreeBSD__)
"FreeBSD"
#elif defined(SUNOS)
@@ -91,6 +93,8 @@ static char *resources[][2]=
"PLATFORM_APPENDIX",
#if defined(linux)
"/Linux",
+ #elif defined(__DragonFly__)
+ "/DragonFly",
#elif defined(__FreeBSD__)
"/FreeBSD",
#elif defined(SUNOS)
|