warp-vpn

point to point VPN implementation
git clone git://git.2f30.org/warp-vpn
Log | Files | Refs | README

commit 50bc46c76028d8c01b6be32d47825a1ef5fbe6cb
parent b37ba4e6d31c1805174b0299c13df5925d6521cc
Author: sin <sin@2f30.org>
Date:   Wed, 23 Mar 2016 12:45:21 +0000

No need to default to optimization

Use -Wall by default.

Diffstat:
Mconfig.mk | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/config.mk b/config.mk @@ -10,14 +10,14 @@ AR = ar RANLIB = ranlib # OpenBSD -CFLAGS = -O2 -std=c99 +CFLAGS = -std=c99 -Wall LDLIBS = -lcrypto # Linux -#CFLAGS = -O2 -std=c99 +#CFLAGS = -std=c99 -Wall #LDLIBS = -lcrypto -lbsd #CPPFLAGS = -D_POSIX_C_SOURCE=200809L -D_XOPEN_SOURCE=700 -D_BSD_SOURCE # DragonFly and FreeBSD -#CFLAGS = -O2 -std=c99 +#CFLAGS = -std=c99 -Wall #LDLIBS = -lcrypto