diff options
author | Christian Pointner <equinox@anytun.org> | 2009-01-04 22:52:31 +0000 |
---|---|---|
committer | Christian Pointner <equinox@anytun.org> | 2009-01-04 22:52:31 +0000 |
commit | 4cfd1bfacd91f6fec4f224d848748225a97132b5 (patch) | |
tree | db268740da0a2f176af7a92241d218ab9d98f00f /src | |
parent | added libgmp free calc ctr implementation to cipher (diff) |
disabling gmp by default
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile index 30aebf9..21a3918 100644 --- a/src/Makefile +++ b/src/Makefile @@ -34,9 +34,9 @@ TARGET=$(shell uname -s) CC = gcc -CCFLAGS = -g -O2 # -DNO_LIBGMP # -DANYTUN_02_COMPAT #-DNO_CRYPT +CCFLAGS = -g -O2 -DNO_LIBGMP #-DANYTUN_02_COMPAT #-DNO_CRYPT LD = gcc -LDFLAGS = -g -Wall -O2 -lgcrypt -lgpg-error -lgmp +LDFLAGS = -g -Wall -O2 -lgcrypt -lgpg-error #-lgmp ifeq ($(TARGET),Linux) LDFLAGS += -ldl |