Browse Source

Makefile: Fix compilation on OS X

Use openssl headers provided by MacPorts (installed with `port install openssl`)
since OS X no longer ships the headers.
Georgi Chorbadzhiyski 7 years ago
parent
commit
abbde44907
1 changed files with 1 additions and 0 deletions
  1. 1
    0
      Makefile

+ 1
- 0
Makefile View File

@@ -27,6 +27,7 @@ LDFLAGS ?= -Wl,--gc-sections
27 27
 
28 28
 ifeq ($(uname_S),Darwin)
29 29
 LDFLAGS :=
30
+CC := cc -I/opt/local/include
30 31
 endif
31 32
 
32 33
 DEFS = -DBUILD_ID=\"$(BUILD_ID)\" \

Loading…
Cancel
Save