* testsuite/rsa-encrypt-test.c: Include rsa.h only if WITH_PUBLIC_KEY.
* testsuite/pkcs1-test.c: Include pkcs1.h only if WITH_PUBLIC_KEY.
Rev: src/nettle/testsuite/pkcs1-test.c:1.2
Rev: src/nettle/testsuite/rsa-encrypt-test.c:1.4
Rev: src/nettle/testsuite/sexp-format-test.c:1.8
#include "testutils.h"
-#include "pkcs1.h"
+#if WITH_PUBLIC_KEY
+# include "pkcs1.h"
+#endif
int
test_main(void)
#include "testutils.h"
-#include "rsa.h"
+#if WITH_PUBLIC_KEY
+# include "rsa.h"
+#endif
+
#include "knuth-lfib.h"
int
#include "sexp.h"
#include "buffer.h"
-#include "bignum.h"
+
+#if HAVE_LIBGMP
+# include "bignum.h"
+#endif
int
test_main(void)