diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2021-11-27 07:58:58 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2021-11-27 07:58:58 -0800 |
commit | 7814c1c98a42f2d295ac38112f98c872701213b6 (patch) | |
tree | dedda8544a115bcf2452645f7155ab9dbc874ea8 /src/luasec/Makefile | |
parent | 8a36b2583ce970648e3b2b1272d22b884c1f534b (diff) | |
download | teliva-7814c1c98a42f2d295ac38112f98c872701213b6.tar.gz |
now building on OpenBSD
Still emitting a bunch of warnings on OpenBSD, though.
Diffstat (limited to 'src/luasec/Makefile')
-rw-r--r-- | src/luasec/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/luasec/Makefile b/src/luasec/Makefile index b1a52a9..8c84079 100644 --- a/src/luasec/Makefile +++ b/src/luasec/Makefile @@ -9,15 +9,15 @@ OBJS= \ config.o \ ec.o -WARN=-Wall -Wpedantic -Wshadow +WARN=-Wall -Wshadow BSD_CFLAGS=-O2 -fPIC $(WARN) $(DEFS) BSD_LDFLAGS=-O -fPIC -shared -linux_CFLAGS=-g -O2 -std=c99 $(WARN) $(DEFS) +linux_CFLAGS=-g -O2 -std=c99 $(WARN) -Wpedantic $(DEFS) macosx_ENV=env MACOSX_DEPLOYMENT_TARGET='$(MACVER)' -macosx_CFLAGS=-g -O2 -std=c99 -fno-common $(WARN) $(DEFS) -I/usr/local/opt/openssl@3/include +macosx_CFLAGS=-g -O2 -std=c99 -fno-common $(WARN) -Wpedantic $(DEFS) -I/usr/local/opt/openssl@3/include macosx_LDFLAGS=-bundle -undefined dynamic_lookup -L/usr/local/opt/openssl@3/lib INSTALL = install |