summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorWilliam Ahern <william@solaris.(none)>2012-09-27 13:11:30 -0700
committerWilliam Ahern <william@solaris.(none)>2012-09-27 13:11:30 -0700
commit7314a6aaddf0984258d5e04b27faee08de314821 (patch)
tree48c3ce632d32f2a4509b6fca3976d777f91ddd33 /Makefile
parent21dfde350145320964f034b0f26543f000de1538 (diff)
downloadluaossl-7314a6aaddf0984258d5e04b27faee08de314821.tar.gz
luaossl-7314a6aaddf0984258d5e04b27faee08de314821.tar.bz2
luaossl-7314a6aaddf0984258d5e04b27faee08de314821.zip
-n
fix solaris build
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 739b87d..c6f7e4d 100644
--- a/Makefile
+++ b/Makefile
@@ -13,8 +13,16 @@ VENDOR.CC = $(shell env CC="${CC}" ../mk/vendor.cc)
13 13
14 14
15CPPFLAGS = -I$(DESTDIR)$(lua52include) 15CPPFLAGS = -I$(DESTDIR)$(lua52include)
16
17ifeq ($(VENDOR.CC), sunpro)
18DFLAGS = -g
19CFLAGS = -xcode=pic13 $(DFLAGS)
20CPPFLAGS += -DOPENSSL_NO_EC
21else
16DFLAGS = -g -Wall -Wextra -Wno-deprecated-declarations -Wno-unused 22DFLAGS = -g -Wall -Wextra -Wno-deprecated-declarations -Wno-unused
17CFLAGS = -fPIC $(DFLAGS) 23CFLAGS = -fPIC $(DFLAGS)
24endif
25
18LDFLAGS = -lssl -lcrypto 26LDFLAGS = -lssl -lcrypto
19 27
20ifeq ($(VENDOR.OS), Darwin) 28ifeq ($(VENDOR.OS), Darwin)