Skip to content

Commit

Permalink
Merge pull request #63 from Oldes/master
Browse files Browse the repository at this point in the history
Build: fixed missing DragonFlyBSD dependency
  • Loading branch information
Oldes authored Apr 5, 2024
2 parents 5f497c1 + 89cc006 commit 2ddedd3
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion make/rebol3.nest
Original file line number Diff line number Diff line change
Expand Up @@ -1051,7 +1051,7 @@ common: [
flag: -mmacosx-version-min=10.9
entitlements: %make/Entitlements.plist
]
#if (find [Linux OpenBSD FreeBSD NetBSD Turris] system/platform) [
#if (find [Linux OpenBSD FreeBSD NetBSD DragonFlyBSD Turris] system/platform) [
library: %m
defines: ENDIAN_LITTLE
]
Expand Down
10 changes: 10 additions & 0 deletions src/include/reb-config.h
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,16 @@ These are now obsolete (as of A107) and should be removed:
#define USE_SETENV
#endif

#ifdef TO_NETBSD // NetBSD
#undef INCLUDE_MIDI_DEVICE // Not implemented!
#define USE_SETENV
#endif

#ifdef TO_DRAGONFLYBSD // DragonFlyBSD
#undef INCLUDE_MIDI_DEVICE // Not implemented!
#define USE_SETENV
#endif

#ifdef TO_AMIGA // Target for OS4
#undef INCLUDE_MIDI_DEVICE // Not implemented!
#define HAS_BOOL
Expand Down

0 comments on commit 2ddedd3

Please sign in to comment.