forked from pool/lua-luasocket
rebase: luasocket-makefile.patch fix: W: package-with-huge-docs 69% - Create a speperate doc package, lua*-luasocket will recommend it fix: update URL - Update to version 3.1.0: * chore: Release v3.1.0 * ci: Echo correct platform in job title * fix(build): Use gai_strerrorA not gai_strerror on Windows * feat(tcp): Add support for TCP Defer Accept * feat(tcp): Add support for TCP Fast Open * chore(rockspec): Move recent PR change to proper rockspec (#384) * fix(rockspec): Fixup Windows (mingw32) builds (#383) * chore: Update internal version references to match release (#370) * chore: Release v3.0.0 * chore: Copy-edit description in dev rockspec OBS-URL: https://build.opensuse.org/request/show/998383 OBS-URL: https://build.opensuse.org/package/show/devel:languages:lua/lua-luasocket?expand=0&rev=26
15 lines
490 B
Diff
15 lines
490 B
Diff
diff --git a/src/makefile b/src/makefile
|
|
index 494baab..fb56ba4 100644
|
|
--- a/src/makefile
|
|
+++ b/src/makefile
|
|
@@ -177,6 +177,6 @@ DEF_linux=-DLUASOCKET_$(DEBUG) \
|
|
-CFLAGS_linux=$(LUAINC:%=-I%) $(DEF) -Wall -Wshadow -Wextra \
|
|
- -Wimplicit -O2 -ggdb3 -fpic
|
|
-LDFLAGS_linux=-O -shared -fpic -o
|
|
+CFLAGS_linux=$(LUAINC:%=-I%) $(DEF) $(OPTFLAGS) -Wall -Wshadow -Wextra \
|
|
+ -Wimplicit -fpic -fvisibility=hidden
|
|
+LDFLAGS_linux=-O $(OPTFLAGS) -shared -fpic -o
|
|
LD_linux=gcc
|
|
SOCKET_linux=usocket.o
|
|
|