Skip to content

Commit 89cc006

Browse files
committed
Build: fixed missing DragonFlyBSD dependency
1 parent 0ecb15b commit 89cc006

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

make/rebol3.nest

+1-1
Original file line numberDiff line numberDiff line change
@@ -1051,7 +1051,7 @@ common: [
10511051
flag: -mmacosx-version-min=10.9
10521052
entitlements: %make/Entitlements.plist
10531053
]
1054-
#if (find [Linux OpenBSD FreeBSD NetBSD Turris] system/platform) [
1054+
#if (find [Linux OpenBSD FreeBSD NetBSD DragonFlyBSD Turris] system/platform) [
10551055
library: %m
10561056
defines: ENDIAN_LITTLE
10571057
]

src/include/reb-config.h

+10
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,16 @@ These are now obsolete (as of A107) and should be removed:
202202
#define USE_SETENV
203203
#endif
204204

205+
#ifdef TO_NETBSD // NetBSD
206+
#undef INCLUDE_MIDI_DEVICE // Not implemented!
207+
#define USE_SETENV
208+
#endif
209+
210+
#ifdef TO_DRAGONFLYBSD // DragonFlyBSD
211+
#undef INCLUDE_MIDI_DEVICE // Not implemented!
212+
#define USE_SETENV
213+
#endif
214+
205215
#ifdef TO_AMIGA // Target for OS4
206216
#undef INCLUDE_MIDI_DEVICE // Not implemented!
207217
#define HAS_BOOL

0 commit comments

Comments
 (0)