diff options
author | Peter Powell <petpow@saberuk.com> | 2018-03-13 19:31:43 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-13 19:31:43 +0000 |
commit | 017e23fb61cdda7f92ca175b7afba5da5f78bd36 (patch) | |
tree | b6b3a5d7deb44408b9189e9ad2e9d93ea6817194 /make | |
parent | 27e92622b5655c3ecf3182bc511adfb8a07b8722 (diff) | |
parent | 56a1ef63e7f2628ad92a5040b3acae64cd99b56a (diff) |
Merge pull request #1461 from puckipedia/haiku-support
Add Haiku support.
Diffstat (limited to 'make')
-rw-r--r-- | make/template/main.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/make/template/main.mk b/make/template/main.mk index 346989086..f3f2c3cc5 100644 --- a/make/template/main.mk +++ b/make/template/main.mk @@ -81,6 +81,11 @@ ifeq ($(SYSTEM), darwin) CORELDFLAGS = -dynamic -bind_at_load -L. PICLDFLAGS = -fPIC -shared -twolevel_namespace -undefined dynamic_lookup endif +ifeq ($(SYSTEM), haiku) + LDLIBS = -lnetwork -lstdc++ + CORELDFLAGS = -L. + PICLDFLAGS = -fPIC -shared +endif ifndef INSPIRCD_DEBUG INSPIRCD_DEBUG=0 |