Took me a while to fix this SHIT ...

This commit is contained in:
2017-05-17 19:09:10 +03:00
parent a76fd9ff0d
commit 095fda75d2

View File

@@ -6,11 +6,11 @@ CCFLAGS += -Wall \
-Wmissing-declarations \ -Wmissing-declarations \
-pedantic \ -pedantic \
-fstack-protector-strong -fstack-protector-strong
CCFLAGS += `mysql_config --cflags` CCFLAGS += $(shell mysql_config --cflags)
LDFLAGS = -O1 -lcrypto -lssl -lpthread LDFLAGS = -O1 -lcrypto -lssl -lpthread
LDFLAGS += -Wl,-z,relro,-z,now LDFLAGS += -Wl,-z,relro,-z,now
LDFLAGS += `mysql_config --libs` LDFLAGS += $(shell mysql_config --libs)
SOURCES = main.c \ SOURCES = main.c \
confparser.c \ confparser.c \