summaryrefslogtreecommitdiff
path: root/sbin/isakmpd/math_mp.h
diff options
context:
space:
mode:
authorHans-Joerg Hoexer <hshoexer@cvs.openbsd.org>2005-04-08 19:19:40 +0000
committerHans-Joerg Hoexer <hshoexer@cvs.openbsd.org>2005-04-08 19:19:40 +0000
commitc3e5ea6383ccc7749e35670ccf210707f5fceb8f (patch)
treefd33707f3845bf0335450cbba08b2db9e9e6091a /sbin/isakmpd/math_mp.h
parent36660d77e44461f6827dbe72048823908f1c7512 (diff)
remove gmp, no binary change
Diffstat (limited to 'sbin/isakmpd/math_mp.h')
-rw-r--r--sbin/isakmpd/math_mp.h19
1 files changed, 1 insertions, 18 deletions
diff --git a/sbin/isakmpd/math_mp.h b/sbin/isakmpd/math_mp.h
index ed554fc23a4..44887245b53 100644
--- a/sbin/isakmpd/math_mp.h
+++ b/sbin/isakmpd/math_mp.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: math_mp.h,v 1.6 2004/04/15 18:39:26 deraadt Exp $ */
+/* $OpenBSD: math_mp.h,v 1.7 2005/04/08 19:19:39 hshoexer Exp $ */
/* $EOM: math_mp.h,v 1.4 2000/09/16 09:41:43 ho Exp $ */
/*
@@ -32,25 +32,8 @@
#ifndef _MATH_MP_H_
#define _MATH_MP_H_
-#define MP_FLAVOUR_GMP 1
-#define MP_FLAVOUR_OPENSSL 2
-
-#if MP_FLAVOUR == MP_FLAVOUR_GMP
-
-#include <gmp.h>
-
-#define math_mp_t mpz_t
-
-#elif MP_FLAVOUR == MP_FLAVOUR_OPENSSL
-
#include <openssl/bn.h>
typedef BIGNUM *math_mp_t;
-#else
-
-#error "No multiprecision math library chosen."
-
-#endif
-
#endif /* _MATH_MP_H_ */