diff options
author | Jasper Lievisse Adriaanse <jasper@humppa.nl> | 2012-04-26 19:49:48 +0200 |
---|---|---|
committer | Michael Stapelberg <michael@stapelberg.de> | 2012-04-28 10:08:30 +0200 |
commit | af326033739f52b5787290a1af361b9a9f2b0225 (patch) | |
tree | 24461462e03094e8df6aaa098d6ffb5addd84511 /Makefile | |
parent | d4dbf2690e8d57b305a466744eee7c59451d1024 (diff) |
Add some extra paths if we're compiling on OpenBSD.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -33,6 +33,11 @@ ifeq ($(shell uname),GNU/kFreeBSD) LIBS+=-lbsd endif +ifeq ($(shell uname),OpenBSD) +CFLAGS+=-I/usr/local/include/ +LDFLAGS+=-L/usr/local/lib/ +endif + CFLAGS+=$(EXTRA_CFLAGS) # Fallback for libyajl 1 which did not include yajl_version.h. We need |