Skip to content

Commit

Permalink
[build] Fixes compilation of samples on OpenBSD.
Browse files Browse the repository at this point in the history
  • Loading branch information
s-vincent committed May 8, 2019
1 parent 6c686a3 commit eff28b8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion samples/iconvplus/basic/SConscript
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ libraries = [
'boost_system',
]

if sys.platform.startswith('darwin'):
if sys.platform.startswith('darwin') or sys.platform.startswith('openbsd'):
libraries.extend([
'iconv',
])
Expand Down
2 changes: 1 addition & 1 deletion samples/kfather/parsing/SConscript
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ libraries = [
'boost_system',
]

if sys.platform.startswith('darwin'):
if sys.platform.startswith('darwin') or sys.platform.startswith('openbsd'):
libraries.extend([
'iconv',
])
Expand Down

0 comments on commit eff28b8

Please sign in to comment.