diff options
author | 2020-09-27 12:41:14 +0200 | |
---|---|---|
committer | 2020-09-27 20:41:14 +1000 | |
commit | e996e148f38b9603e634517128cd0a4d5eb4eb94 (patch) | |
tree | 4716fc7c8309a8da8facf22e31edd88a6b709c9b /makefile | |
parent | a1d35e5abf431e03e06d55b96379a3b14753ed4d (diff) |
FreeBSD fixes (#7295)
* psixptty: Fix for FreeBSD
We need to check for __FreeBSD__ not __FreeBSD_kernel__
* FreeBSD: Use gl includes from pkg-config
FreeBSD doesn't install the includes from 3rdparty software in a default
location so use pkg-config to get the correct path.
* FreeBSD: genieos is named simple bsd
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -196,7 +196,7 @@ GENIEOS := solaris endif ifeq ($(firstword $(filter FreeBSD,$(UNAME))),FreeBSD) OS := freebsd -GENIEOS := freebsd +GENIEOS := bsd endif ifeq ($(firstword $(filter GNU/kFreeBSD,$(UNAME))),GNU/kFreeBSD) OS := freebsd |