Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/rofl0r/proxychains-ng.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrofl0r <retnyg@gmx.net>2016-12-13 23:42:50 +0300
committerrofl0r <retnyg@gmx.net>2016-12-13 23:42:50 +0300
commit6ae959e051e02e84b01e4dcecac5fbc9d9663762 (patch)
tree221c1b39f8fb7293bf442fec2bab855cb5d49fd2
parent5ed508973396d2bfe085145299e9dc9b1a578646 (diff)
Makefile: suppress pedantic warnings in user CFLAGS
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 28169ab..18525f9 100644
--- a/Makefile
+++ b/Makefile
@@ -45,7 +45,7 @@ ALL_CONFIGS = src/proxychains.conf
-include config.mak
-CFLAGS+=$(USER_CFLAGS) $(MAC_CFLAGS)
+CFLAGS+=$(USER_CFLAGS) $(MAC_CFLAGS) -Wno-pedantic
CFLAGS_MAIN=-DLIB_DIR=\"$(libdir)\" -DSYSCONFDIR=\"$(sysconfdir)\" -DDLL_NAME=\"$(LDSO_PATHNAME)\"