We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fa22e8 commit 875d219Copy full SHA for 875d219
1 file changed
setup.py
@@ -424,7 +424,10 @@ def main():
424
print(hilite("XCode (https://developer.apple.com/xcode/) "
425
"is not installed"), color="red", file=sys.stderr)
426
elif FREEBSD:
427
- missdeps("pkg install gcc python%s" % py3)
+ if which('pkg'):
428
+ missdeps("pkg install gcc python%s" % py3)
429
+ elif which('mport'): # MidnightBSD
430
+ missdeps("mport install gcc python%s" % py3)
431
elif OPENBSD:
432
missdeps("pkg_add -v gcc python%s" % py3)
433
elif NETBSD:
0 commit comments