Move module indicator macros from *.m4 files to the module descriptions.
authorBruno Haible <bruno@clisp.org>
Mon, 8 Jan 2007 20:48:03 +0000 (20:48 +0000)
committerBruno Haible <bruno@clisp.org>
Mon, 8 Jan 2007 20:48:03 +0000 (20:48 +0000)
24 files changed:
lib/gc-gnulib.c
lib/gc-libgcrypt.c
m4/gc-arcfour.m4
m4/gc-arctwo.m4
m4/gc-des.m4
m4/gc-hmac-md5.m4
m4/gc-hmac-sha1.m4
m4/gc-md2.m4
m4/gc-md4.m4
m4/gc-md5.m4
m4/gc-random.m4
m4/gc-rijndael.m4
m4/gc-sha1.m4
modules/gc-arcfour
modules/gc-arctwo
modules/gc-des
modules/gc-hmac-md5
modules/gc-hmac-sha1
modules/gc-md2
modules/gc-md4
modules/gc-md5
modules/gc-random
modules/gc-rijndael
modules/gc-sha1

index adfa0ac23c0b78dd8b948438a5a914757c1b859d..5ce31c15002ff95945ce0208a7b03932d5f62948 100644 (file)
@@ -1,5 +1,5 @@
 /* gc-gnulib.c --- Common gnulib internal crypto interface functions
- * Copyright (C) 2002, 2003, 2004, 2005, 2006  Simon Josefsson
+ * Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007  Simon Josefsson
  *
  * This file is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published
@@ -29,7 +29,7 @@
 #include <string.h>
 
 /* For randomize. */
-#ifdef GC_USE_RANDOM
+#ifdef GNULIB_GC_RANDOM
 # include <unistd.h>
 # include <sys/types.h>
 # include <sys/stat.h>
 #endif
 
 /* Hashes. */
-#ifdef GC_USE_MD2
+#ifdef GNULIB_GC_MD2
 # include "md2.h"
 #endif
-#ifdef GC_USE_MD4
+#ifdef GNULIB_GC_MD4
 # include "md4.h"
 #endif
-#ifdef GC_USE_MD5
+#ifdef GNULIB_GC_MD5
 # include "md5.h"
 #endif
-#ifdef GC_USE_SHA1
+#ifdef GNULIB_GC_SHA1
 # include "sha1.h"
 #endif
-#if defined(GC_USE_HMAC_MD5) || defined(GC_USE_HMAC_SHA1)
+#if defined(GNULIB_GC_HMAC_MD5) || defined(GNULIB_GC_HMAC_SHA1)
 # include "hmac.h"
 #endif
 
 /* Ciphers. */
-#ifdef GC_USE_ARCFOUR
+#ifdef GNULIB_GC_ARCFOUR
 # include "arcfour.h"
 #endif
-#ifdef GC_USE_ARCTWO
+#ifdef GNULIB_GC_ARCTWO
 # include "arctwo.h"
 #endif
-#ifdef GC_USE_DES
+#ifdef GNULIB_GC_DES
 # include "des.h"
 #endif
-#ifdef GC_USE_RIJNDAEL
+#ifdef GNULIB_GC_RIJNDAEL
 # include "rijndael-api-fst.h"
 #endif
 
@@ -80,7 +80,7 @@ gc_done (void)
   return;
 }
 
-#ifdef GC_USE_RANDOM
+#ifdef GNULIB_GC_RANDOM
 
 /* Randomness. */
 
@@ -174,17 +174,17 @@ gc_set_allocators (gc_malloc_t func_malloc,
 typedef struct _gc_cipher_ctx {
   Gc_cipher alg;
   Gc_cipher_mode mode;
-#ifdef GC_USE_ARCTWO
+#ifdef GNULIB_GC_ARCTWO
   arctwo_context arctwoContext;
   char arctwoIV[ARCTWO_BLOCK_SIZE];
 #endif
-#ifdef GC_USE_ARCFOUR
+#ifdef GNULIB_GC_ARCFOUR
   arcfour_context arcfourContext;
 #endif
-#ifdef GC_USE_DES
+#ifdef GNULIB_GC_DES
   des_ctx desContext;
 #endif
-#ifdef GC_USE_RIJNDAEL
+#ifdef GNULIB_GC_RIJNDAEL
   rijndaelKeyInstance aesEncKey;
   rijndaelKeyInstance aesDecKey;
   rijndaelCipherInstance aesContext;
@@ -207,7 +207,7 @@ gc_cipher_open (Gc_cipher alg, Gc_cipher_mode mode,
 
   switch (alg)
     {
-#ifdef GC_USE_ARCTWO
+#ifdef GNULIB_GC_ARCTWO
     case GC_ARCTWO40:
       switch (mode)
        {
@@ -221,7 +221,7 @@ gc_cipher_open (Gc_cipher alg, Gc_cipher_mode mode,
       break;
 #endif
 
-#ifdef GC_USE_ARCFOUR
+#ifdef GNULIB_GC_ARCFOUR
     case GC_ARCFOUR128:
     case GC_ARCFOUR40:
       switch (mode)
@@ -235,7 +235,7 @@ gc_cipher_open (Gc_cipher alg, Gc_cipher_mode mode,
       break;
 #endif
 
-#ifdef GC_USE_DES
+#ifdef GNULIB_GC_DES
     case GC_DES:
       switch (mode)
        {
@@ -248,7 +248,7 @@ gc_cipher_open (Gc_cipher alg, Gc_cipher_mode mode,
       break;
 #endif
 
-#ifdef GC_USE_RIJNDAEL
+#ifdef GNULIB_GC_RIJNDAEL
     case GC_AES128:
     case GC_AES192:
     case GC_AES256:
@@ -283,20 +283,20 @@ gc_cipher_setkey (gc_cipher_handle handle, size_t keylen, const char *key)
 
   switch (ctx->alg)
     {
-#ifdef GC_USE_ARCTWO
+#ifdef GNULIB_GC_ARCTWO
     case GC_ARCTWO40:
       arctwo_setkey (&ctx->arctwoContext, keylen, key);
       break;
 #endif
 
-#ifdef GC_USE_ARCFOUR
+#ifdef GNULIB_GC_ARCFOUR
     case GC_ARCFOUR128:
     case GC_ARCFOUR40:
       arcfour_setkey (&ctx->arcfourContext, key, keylen);
       break;
 #endif
 
-#ifdef GC_USE_DES
+#ifdef GNULIB_GC_DES
     case GC_DES:
       if (keylen != 8)
        return GC_INVALID_CIPHER;
@@ -304,7 +304,7 @@ gc_cipher_setkey (gc_cipher_handle handle, size_t keylen, const char *key)
       break;
 #endif
 
-#ifdef GC_USE_RIJNDAEL
+#ifdef GNULIB_GC_RIJNDAEL
     case GC_AES128:
     case GC_AES192:
     case GC_AES256:
@@ -347,7 +347,7 @@ gc_cipher_setiv (gc_cipher_handle handle, size_t ivlen, const char *iv)
 
   switch (ctx->alg)
     {
-#ifdef GC_USE_ARCTWO
+#ifdef GNULIB_GC_ARCTWO
     case GC_ARCTWO40:
       if (ivlen != ARCTWO_BLOCK_SIZE)
        return GC_INVALID_CIPHER;
@@ -355,7 +355,7 @@ gc_cipher_setiv (gc_cipher_handle handle, size_t ivlen, const char *iv)
       break;
 #endif
 
-#ifdef GC_USE_RIJNDAEL
+#ifdef GNULIB_GC_RIJNDAEL
     case GC_AES128:
     case GC_AES192:
     case GC_AES256:
@@ -401,7 +401,7 @@ gc_cipher_encrypt_inline (gc_cipher_handle handle, size_t len, char *data)
 
   switch (ctx->alg)
     {
-#ifdef GC_USE_ARCTWO
+#ifdef GNULIB_GC_ARCTWO
     case GC_ARCTWO40:
       switch (ctx->mode)
        {
@@ -428,21 +428,21 @@ gc_cipher_encrypt_inline (gc_cipher_handle handle, size_t len, char *data)
       break;
 #endif
 
-#ifdef GC_USE_ARCFOUR
+#ifdef GNULIB_GC_ARCFOUR
     case GC_ARCFOUR128:
     case GC_ARCFOUR40:
       arcfour_stream (&ctx->arcfourContext, data, data, len);
       break;
 #endif
 
-#ifdef GC_USE_DES
+#ifdef GNULIB_GC_DES
     case GC_DES:
       for (; len >= 8; len -= 8, data += 8)
        des_ecb_encrypt (&ctx->desContext, data, data);
       break;
 #endif
 
-#ifdef GC_USE_RIJNDAEL
+#ifdef GNULIB_GC_RIJNDAEL
     case GC_AES128:
     case GC_AES192:
     case GC_AES256:
@@ -471,7 +471,7 @@ gc_cipher_decrypt_inline (gc_cipher_handle handle, size_t len, char *data)
 
   switch (ctx->alg)
     {
-#ifdef GC_USE_ARCTWO
+#ifdef GNULIB_GC_ARCTWO
     case GC_ARCTWO40:
       switch (ctx->mode)
        {
@@ -500,21 +500,21 @@ gc_cipher_decrypt_inline (gc_cipher_handle handle, size_t len, char *data)
       break;
 #endif
 
-#ifdef GC_USE_ARCFOUR
+#ifdef GNULIB_GC_ARCFOUR
     case GC_ARCFOUR128:
     case GC_ARCFOUR40:
       arcfour_stream (&ctx->arcfourContext, data, data, len);
       break;
 #endif
 
-#ifdef GC_USE_DES
+#ifdef GNULIB_GC_DES
     case GC_DES:
       for (; len >= 8; len -= 8, data += 8)
        des_ecb_decrypt (&ctx->desContext, data, data);
       break;
 #endif
 
-#ifdef GC_USE_RIJNDAEL
+#ifdef GNULIB_GC_RIJNDAEL
     case GC_AES128:
     case GC_AES192:
     case GC_AES256:
@@ -555,16 +555,16 @@ typedef struct _gc_hash_ctx {
   Gc_hash alg;
   Gc_hash_mode mode;
   char hash[MAX_DIGEST_SIZE];
-#ifdef GC_USE_MD2
+#ifdef GNULIB_GC_MD2
   struct md2_ctx md2Context;
 #endif
-#ifdef GC_USE_MD4
+#ifdef GNULIB_GC_MD4
   struct md4_ctx md4Context;
 #endif
-#ifdef GC_USE_MD5
+#ifdef GNULIB_GC_MD5
   struct md5_ctx md5Context;
 #endif
-#ifdef GC_USE_SHA1
+#ifdef GNULIB_GC_SHA1
   struct sha1_ctx sha1Context;
 #endif
 } _gc_hash_ctx;
@@ -582,25 +582,25 @@ gc_hash_open (Gc_hash hash, Gc_hash_mode mode, gc_hash_handle * outhandle)
 
   switch (hash)
     {
-#ifdef GC_USE_MD2
+#ifdef GNULIB_GC_MD2
     case GC_MD2:
       md2_init_ctx (&ctx->md2Context);
       break;
 #endif
 
-#ifdef GC_USE_MD4
+#ifdef GNULIB_GC_MD4
     case GC_MD4:
       md4_init_ctx (&ctx->md4Context);
       break;
 #endif
 
-#ifdef GC_USE_MD5
+#ifdef GNULIB_GC_MD5
     case GC_MD5:
       md5_init_ctx (&ctx->md5Context);
       break;
 #endif
 
-#ifdef GC_USE_SHA1
+#ifdef GNULIB_GC_SHA1
     case GC_SHA1:
       sha1_init_ctx (&ctx->sha1Context);
       break;
@@ -685,25 +685,25 @@ gc_hash_write (gc_hash_handle handle, size_t len, const char *data)
 
   switch (ctx->alg)
     {
-#ifdef GC_USE_MD2
+#ifdef GNULIB_GC_MD2
     case GC_MD2:
       md2_process_bytes (data, len, &ctx->md2Context);
       break;
 #endif
 
-#ifdef GC_USE_MD4
+#ifdef GNULIB_GC_MD4
     case GC_MD4:
       md4_process_bytes (data, len, &ctx->md4Context);
       break;
 #endif
 
-#ifdef GC_USE_MD5
+#ifdef GNULIB_GC_MD5
     case GC_MD5:
       md5_process_bytes (data, len, &ctx->md5Context);
       break;
 #endif
 
-#ifdef GC_USE_SHA1
+#ifdef GNULIB_GC_SHA1
     case GC_SHA1:
       sha1_process_bytes (data, len, &ctx->sha1Context);
       break;
@@ -722,28 +722,28 @@ gc_hash_read (gc_hash_handle handle)
 
   switch (ctx->alg)
     {
-#ifdef GC_USE_MD2
+#ifdef GNULIB_GC_MD2
     case GC_MD2:
       md2_finish_ctx (&ctx->md2Context, ctx->hash);
       ret = ctx->hash;
       break;
 #endif
 
-#ifdef GC_USE_MD4
+#ifdef GNULIB_GC_MD4
     case GC_MD4:
       md4_finish_ctx (&ctx->md4Context, ctx->hash);
       ret = ctx->hash;
       break;
 #endif
 
-#ifdef GC_USE_MD5
+#ifdef GNULIB_GC_MD5
     case GC_MD5:
       md5_finish_ctx (&ctx->md5Context, ctx->hash);
       ret = ctx->hash;
       break;
 #endif
 
-#ifdef GC_USE_SHA1
+#ifdef GNULIB_GC_SHA1
     case GC_SHA1:
       sha1_finish_ctx (&ctx->sha1Context, ctx->hash);
       ret = ctx->hash;
@@ -770,25 +770,25 @@ gc_hash_buffer (Gc_hash hash, const void *in, size_t inlen, char *resbuf)
 {
   switch (hash)
     {
-#ifdef GC_USE_MD2
+#ifdef GNULIB_GC_MD2
     case GC_MD2:
       md2_buffer (in, inlen, resbuf);
       break;
 #endif
 
-#ifdef GC_USE_MD4
+#ifdef GNULIB_GC_MD4
     case GC_MD4:
       md4_buffer (in, inlen, resbuf);
       break;
 #endif
 
-#ifdef GC_USE_MD5
+#ifdef GNULIB_GC_MD5
     case GC_MD5:
       md5_buffer (in, inlen, resbuf);
       break;
 #endif
 
-#ifdef GC_USE_SHA1
+#ifdef GNULIB_GC_SHA1
     case GC_SHA1:
       sha1_buffer (in, inlen, resbuf);
       break;
@@ -801,7 +801,7 @@ gc_hash_buffer (Gc_hash hash, const void *in, size_t inlen, char *resbuf)
   return GC_OK;
 }
 
-#ifdef GC_USE_MD2
+#ifdef GNULIB_GC_MD2
 Gc_rc
 gc_md2 (const void *in, size_t inlen, void *resbuf)
 {
@@ -810,7 +810,7 @@ gc_md2 (const void *in, size_t inlen, void *resbuf)
 }
 #endif
 
-#ifdef GC_USE_MD4
+#ifdef GNULIB_GC_MD4
 Gc_rc
 gc_md4 (const void *in, size_t inlen, void *resbuf)
 {
@@ -819,7 +819,7 @@ gc_md4 (const void *in, size_t inlen, void *resbuf)
 }
 #endif
 
-#ifdef GC_USE_MD5
+#ifdef GNULIB_GC_MD5
 Gc_rc
 gc_md5 (const void *in, size_t inlen, void *resbuf)
 {
@@ -828,7 +828,7 @@ gc_md5 (const void *in, size_t inlen, void *resbuf)
 }
 #endif
 
-#ifdef GC_USE_SHA1
+#ifdef GNULIB_GC_SHA1
 Gc_rc
 gc_sha1 (const void *in, size_t inlen, void *resbuf)
 {
@@ -837,7 +837,7 @@ gc_sha1 (const void *in, size_t inlen, void *resbuf)
 }
 #endif
 
-#ifdef GC_USE_HMAC_MD5
+#ifdef GNULIB_GC_HMAC_MD5
 Gc_rc
 gc_hmac_md5 (const void *key, size_t keylen,
             const void *in, size_t inlen, char *resbuf)
@@ -847,7 +847,7 @@ gc_hmac_md5 (const void *key, size_t keylen,
 }
 #endif
 
-#ifdef GC_USE_HMAC_SHA1
+#ifdef GNULIB_GC_HMAC_SHA1
 Gc_rc
 gc_hmac_sha1 (const void *key, size_t keylen,
              const void *in, size_t inlen, char *resbuf)
index 25cafd68ceda7cee0778c041808531a0a6c1d1a4..4a583495c390c8eb8f305228b6f22ba5e081fa6a 100644 (file)
@@ -1,5 +1,5 @@
 /* gc-libgcrypt.c --- Crypto wrappers around Libgcrypt for GC.
- * Copyright (C) 2002, 2003, 2004, 2005, 2006  Simon Josefsson
+ * Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007  Simon Josefsson
  *
  * This file is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published
@@ -30,7 +30,7 @@
 
 /* Get libgcrypt API. */
 #include <gcrypt.h>
-#ifdef GC_USE_MD2
+#ifdef GNULIB_GC_MD2
 # include "md2.h"
 #endif
 
@@ -63,7 +63,7 @@ gc_done (void)
   return;
 }
 
-#ifdef GC_USE_RANDOM
+#ifdef GNULIB_GC_RANDOM
 
 /* Randomness. */
 
@@ -230,7 +230,7 @@ typedef struct _gc_hash_ctx {
   Gc_hash alg;
   Gc_hash_mode mode;
   gcry_md_hd_t gch;
-#ifdef GC_USE_MD2
+#ifdef GNULIB_GC_MD2
   char hash[GC_MD2_DIGEST_SIZE];
   struct md2_ctx md2Context;
 #endif
@@ -367,7 +367,7 @@ void
 gc_hash_hmac_setkey (gc_hash_handle handle, size_t len, const char *key)
 {
   _gc_hash_ctx *ctx = handle;
-#ifdef GC_USE_MD2
+#ifdef GNULIB_GC_MD2
   if (ctx->alg != GC_MD2)
 #endif
     gcry_md_setkey (ctx->gch, key, len);
@@ -378,7 +378,7 @@ gc_hash_write (gc_hash_handle handle, size_t len, const char *data)
 {
   _gc_hash_ctx *ctx = handle;
 
-#ifdef GC_USE_MD2
+#ifdef GNULIB_GC_MD2
   if (ctx->alg == GC_MD2)
     md2_process_bytes (data, len, &ctx->md2Context);
   else
@@ -392,7 +392,7 @@ gc_hash_read (gc_hash_handle handle)
   _gc_hash_ctx *ctx = handle;
   const char *digest;
 
-#ifdef GC_USE_MD2
+#ifdef GNULIB_GC_MD2
   if (ctx->alg == GC_MD2)
     {
       md2_finish_ctx (&ctx->md2Context, ctx->hash);
@@ -413,7 +413,7 @@ gc_hash_close (gc_hash_handle handle)
 {
   _gc_hash_ctx *ctx = handle;
 
-#ifdef GC_USE_MD2
+#ifdef GNULIB_GC_MD2
   if (ctx->alg != GC_MD2)
 #endif
     gcry_md_close (ctx->gch);
@@ -428,32 +428,32 @@ gc_hash_buffer (Gc_hash hash, const void *in, size_t inlen, char *resbuf)
 
   switch (hash)
     {
-#ifdef GC_USE_MD2
+#ifdef GNULIB_GC_MD2
     case GC_MD2:
       md2_buffer (in, inlen, resbuf);
       return GC_OK;
       break;
 #endif
 
-#ifdef GC_USE_MD4
+#ifdef GNULIB_GC_MD4
     case GC_MD4:
       gcryalg = GCRY_MD_MD4;
       break;
 #endif
 
-#ifdef GC_USE_MD5
+#ifdef GNULIB_GC_MD5
     case GC_MD5:
       gcryalg = GCRY_MD_MD5;
       break;
 #endif
 
-#ifdef GC_USE_SHA1
+#ifdef GNULIB_GC_SHA1
     case GC_SHA1:
       gcryalg = GCRY_MD_SHA1;
       break;
 #endif
 
-#ifdef GC_USE_RMD160
+#ifdef GNULIB_GC_RMD160
     case GC_RMD160:
       gcryalg = GCRY_MD_RMD160;
       break;
@@ -470,7 +470,7 @@ gc_hash_buffer (Gc_hash hash, const void *in, size_t inlen, char *resbuf)
 
 /* One-call interface. */
 
-#ifdef GC_USE_MD2
+#ifdef GNULIB_GC_MD2
 Gc_rc
 gc_md2 (const void *in, size_t inlen, void *resbuf)
 {
@@ -479,7 +479,7 @@ gc_md2 (const void *in, size_t inlen, void *resbuf)
 }
 #endif
 
-#ifdef GC_USE_MD4
+#ifdef GNULIB_GC_MD4
 Gc_rc
 gc_md4 (const void *in, size_t inlen, void *resbuf)
 {
@@ -511,7 +511,7 @@ gc_md4 (const void *in, size_t inlen, void *resbuf)
 }
 #endif
 
-#ifdef GC_USE_MD5
+#ifdef GNULIB_GC_MD5
 Gc_rc
 gc_md5 (const void *in, size_t inlen, void *resbuf)
 {
@@ -543,7 +543,7 @@ gc_md5 (const void *in, size_t inlen, void *resbuf)
 }
 #endif
 
-#ifdef GC_USE_SHA1
+#ifdef GNULIB_GC_SHA1
 Gc_rc
 gc_sha1 (const void *in, size_t inlen, void *resbuf)
 {
@@ -575,7 +575,7 @@ gc_sha1 (const void *in, size_t inlen, void *resbuf)
 }
 #endif
 
-#ifdef GC_USE_HMAC_MD5
+#ifdef GNULIB_GC_HMAC_MD5
 Gc_rc
 gc_hmac_md5 (const void *key, size_t keylen,
             const void *in, size_t inlen, char *resbuf)
@@ -615,7 +615,7 @@ gc_hmac_md5 (const void *key, size_t keylen,
 }
 #endif
 
-#ifdef GC_USE_HMAC_SHA1
+#ifdef GNULIB_GC_HMAC_SHA1
 Gc_rc
 gc_hmac_sha1 (const void *key, size_t keylen,
              const void *in, size_t inlen, char *resbuf)
index c5adf583afff49bda1afed245be63956ed2b175d..60fc04a6b9142dea809508d022c0ddd816c293f3 100644 (file)
@@ -1,5 +1,5 @@
-# gc-arcfour.m4 serial 1
-dnl Copyright (C) 2005 Free Software Foundation, Inc.
+# gc-arcfour.m4 serial 2
+dnl Copyright (C) 2005, 2007 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
@@ -7,8 +7,6 @@ dnl with or without modifications, as long as this notice is preserved.
 AC_DEFUN([gl_GC_ARCFOUR],
 [
   AC_REQUIRE([gl_GC])
-  AC_DEFINE(GC_USE_ARCFOUR, 1,
-    [Define if you want to support ARCFOUR through GC.])
   if test "$ac_cv_libgcrypt" != yes; then
     gl_ARCFOUR
   fi
index 173a87a45f3255b921b91d304fde25fcb14cfb61..6e1e107a6e839adf4027530f397eff08623e90eb 100644 (file)
@@ -1,5 +1,5 @@
-# gc-arctwo.m4 serial 1
-dnl Copyright (C) 2005 Free Software Foundation, Inc.
+# gc-arctwo.m4 serial 2
+dnl Copyright (C) 2005, 2007 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
@@ -7,8 +7,6 @@ dnl with or without modifications, as long as this notice is preserved.
 AC_DEFUN([gl_GC_ARCTWO],
 [
   AC_REQUIRE([gl_GC])
-  AC_DEFINE(GC_USE_ARCTWO, 1,
-    [Define if you want to support ARCTWO through GC.])
   if test "$ac_cv_libgcrypt" != yes; then
     gl_ARCTWO
   fi
index d4dd9717088d275a62087342a42b15c8d9503179..fd839dbc0191dbef9c2ef7d3de3559726167b260 100644 (file)
@@ -1,5 +1,5 @@
-# gc-des.m4 serial 1
-dnl Copyright (C) 2005 Free Software Foundation, Inc.
+# gc-des.m4 serial 2
+dnl Copyright (C) 2005, 2007 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
@@ -7,7 +7,6 @@ dnl with or without modifications, as long as this notice is preserved.
 AC_DEFUN([gl_GC_DES],
 [
   AC_REQUIRE([gl_GC])
-  AC_DEFINE(GC_USE_DES, 1, [Define if you want to support DES through GC.])
   if test "$ac_cv_libgcrypt" != yes; then
     gl_DES
   fi
index 26d79e944f9ce61be6f6fecfb87e97450127ebee..9ee5680f36eca8b70975786a593ff7ddfa3a6aae 100644 (file)
@@ -1,5 +1,5 @@
-# gc-hmac-md5.m4 serial 1
-dnl Copyright (C) 2005 Free Software Foundation, Inc.
+# gc-hmac-md5.m4 serial 2
+dnl Copyright (C) 2005, 2007 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
@@ -7,8 +7,6 @@ dnl with or without modifications, as long as this notice is preserved.
 AC_DEFUN([gl_GC_HMAC_MD5],
 [
   AC_REQUIRE([gl_GC])
-  AC_DEFINE(GC_USE_HMAC_MD5, 1,
-    [Define if you want to support HMAC-MD5 through GC.])
   if test "$ac_cv_libgcrypt" != yes; then
     gl_MD5
     gl_HMAC_MD5
index c18dd217812e11ba8619e49c37dce7f5c0b2a33d..9d4b9dc5200243ff72ad67c7c787bf2bf73793d9 100644 (file)
@@ -1,5 +1,5 @@
-# gc-hmac-sha1.m4 serial 1
-dnl Copyright (C) 2005 Free Software Foundation, Inc.
+# gc-hmac-sha1.m4 serial 2
+dnl Copyright (C) 2005, 2007 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
@@ -7,8 +7,6 @@ dnl with or without modifications, as long as this notice is preserved.
 AC_DEFUN([gl_GC_HMAC_SHA1],
 [
   AC_REQUIRE([gl_GC])
-  AC_DEFINE(GC_USE_HMAC_SHA1, 1,
-    [Define if you want to support HMAC-SHA1 through GC.])
   if test "$ac_cv_libgcrypt" != yes; then
     gl_SHA1
     gl_HMAC_SHA1
index 5a5909d9fefefaf4b529833754bed2677345c500..914304e7a7031ea763cc002b19816482c2b0e67e 100644 (file)
@@ -1,10 +1,9 @@
-# gc-md2.m4 serial 1
-dnl Copyright (C) 2005 Free Software Foundation, Inc.
+# gc-md2.m4 serial 2
+dnl Copyright (C) 2005, 2007 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([gl_GC_MD2],
 [
-  AC_DEFINE(GC_USE_MD2, 1, [Define if you want to support MD2 through GC.])
 ])
index e61f27c9fb2ce1f749b1e95adc84d64861f4fe27..fe76b3a4112ddf311f83c7359d46f7a7e3805861 100644 (file)
@@ -1,5 +1,5 @@
-# gc-md4.m4 serial 1
-dnl Copyright (C) 2005 Free Software Foundation, Inc.
+# gc-md4.m4 serial 2
+dnl Copyright (C) 2005, 2007 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
@@ -7,7 +7,6 @@ dnl with or without modifications, as long as this notice is preserved.
 AC_DEFUN([gl_GC_MD4],
 [
   AC_REQUIRE([gl_GC])
-  AC_DEFINE(GC_USE_MD4, 1, [Define if you want to support MD4 through GC.])
   if test "$ac_cv_libgcrypt" != yes; then
     gl_MD4
   fi
index dbb0d3bc5dbd5e7246d2c278623c0cd9a11af7cd..62cadced620771872a28b9142c6878a70da8c978 100644 (file)
@@ -1,5 +1,5 @@
-# gc-md5.m4 serial 1
-dnl Copyright (C) 2005 Free Software Foundation, Inc.
+# gc-md5.m4 serial 2
+dnl Copyright (C) 2005, 2007 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
@@ -7,7 +7,6 @@ dnl with or without modifications, as long as this notice is preserved.
 AC_DEFUN([gl_GC_MD5],
 [
   AC_REQUIRE([gl_GC])
-  AC_DEFINE(GC_USE_MD5, 1, [Define if you want to support MD5 through GC.])
   if test "$ac_cv_libgcrypt" != yes; then
     gl_MD5
   fi
index 40e047106a8b5fd90f894d143425720b3cdc2afc..e86cf6f0ec3d5491d00a0d720dc4316c1b3b29dd 100644 (file)
@@ -1,5 +1,5 @@
-# gc-random.m4 serial 1
-dnl Copyright (C) 2005, 2006 Free Software Foundation, Inc.
+# gc-random.m4 serial 2
+dnl Copyright (C) 2005-2007 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
@@ -84,6 +84,4 @@ AC_DEFUN([gl_GC_RANDOM],
                    [defined to the name of the pseudo random device])
   AC_DEFINE_UNQUOTED(NAME_OF_NONCE_DEVICE, "$NAME_OF_NONCE_DEVICE",
                    [defined to the name of the unpredictable nonce device])
-
-  AC_DEFINE(GC_USE_RANDOM, 1, [Define if you want to support RNG through GC.])
 ])
index ab324634bc62bcc617bf4322a7b7a39513d394a8..f49283c8df306852d39d6371d4f51d1f58102e83 100644 (file)
@@ -1,5 +1,5 @@
-# gc-rijndael.m4 serial 1
-dnl Copyright (C) 2005 Free Software Foundation, Inc.
+# gc-rijndael.m4 serial 2
+dnl Copyright (C) 2005, 2007 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
@@ -7,8 +7,6 @@ dnl with or without modifications, as long as this notice is preserved.
 AC_DEFUN([gl_GC_RIJNDAEL],
 [
   AC_REQUIRE([gl_GC])
-  AC_DEFINE(GC_USE_RIJNDAEL, 1,
-    [Define if you want to support RIJNDAEL through GC.])
   if test "$ac_cv_libgcrypt" != yes; then
     gl_RIJNDAEL
   fi
index 88010e22a4d6bb532a68bff6598ce90ca54d5c16..78466b0db7a284e8f20508b80fdbc90963c919fb 100644 (file)
@@ -1,5 +1,5 @@
-# gc-sha1.m4 serial 1
-dnl Copyright (C) 2005 Free Software Foundation, Inc.
+# gc-sha1.m4 serial 2
+dnl Copyright (C) 2005, 2007 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
@@ -7,8 +7,6 @@ dnl with or without modifications, as long as this notice is preserved.
 AC_DEFUN([gl_GC_SHA1],
 [
   AC_REQUIRE([gl_GC])
-  AC_DEFINE(GC_USE_SHA1, 1,
-    [Define if you want to support SHA-1 through GC.])
   if test "$ac_cv_libgcrypt" != yes; then
     gl_SHA1
   fi
index 99d9e1419b39369d3ec5a18aee397e5ccc9844c9..64136e36c1aa7da02a7784c1f21b9424c5369ef2 100644 (file)
@@ -13,6 +13,7 @@ gc
 
 configure.ac:
 gl_GC_ARCFOUR
+gl_MODULE_INDICATOR([gc-arcfour])
 
 Makefile.am:
 
index 1862ef622f1cbea711714976e8b893fba96b6ba2..1c764392bf2ead4fda5d5b27be91be09c837d714 100644 (file)
@@ -13,6 +13,7 @@ gc
 
 configure.ac:
 gl_GC_ARCTWO
+gl_MODULE_INDICATOR([gc-arctwo])
 
 Makefile.am:
 
index 4f1f230565af2b077904ad71730e2e1553cc0f9f..f4ea7f82cca382167480ccfeb16882de64dc09cc 100644 (file)
@@ -13,6 +13,7 @@ gc
 
 configure.ac:
 gl_GC_DES
+gl_MODULE_INDICATOR([gc-des])
 
 Makefile.am:
 
index 40917361b5f9c9a0977019fe9e859d7a12bdd25b..607c43b8b0c03be2f86b73bcba0c3539063c0d2f 100644 (file)
@@ -19,6 +19,7 @@ gc
 
 configure.ac:
 gl_GC_HMAC_MD5
+gl_MODULE_INDICATOR([gc-hmac-md5])
 
 Makefile.am:
 
index 67b72ddf4a7390cbb23426aab3a84cdcf8b42445..4e855ac06762344ceb7c2130a693f87b5783cded 100644 (file)
@@ -19,6 +19,7 @@ gc
 
 configure.ac:
 gl_GC_HMAC_SHA1
+gl_MODULE_INDICATOR([gc-hmac-sha1])
 
 Makefile.am:
 
index 18621a03ac79802c2eb3179fb531579b9111fb8a..2a36a04466514a0619c9f538aa78a07d1bcd252c 100644 (file)
@@ -12,6 +12,7 @@ md2
 
 configure.ac:
 gl_GC_MD2
+gl_MODULE_INDICATOR([gc-md2])
 
 Makefile.am:
 
index bb9fe6f83ef8b38421081c2b649ea9afbaeea3aa..e74c309df65b895a53707ded625d33504cb69fae 100644 (file)
@@ -13,6 +13,7 @@ gc
 
 configure.ac:
 gl_GC_MD4
+gl_MODULE_INDICATOR([gc-md4])
 
 Makefile.am:
 
index 4377eddc015d0d1708586615ca15f5b8fcdcc880..4a5c1900264e73dee89f5a13aa50706c6034e062 100644 (file)
@@ -13,6 +13,7 @@ gc
 
 configure.ac:
 gl_GC_MD5
+gl_MODULE_INDICATOR([gc-md5])
 
 Makefile.am:
 lib_SOURCES += md5.h
index f8f8186b81d4664e937067a940c2e5cfd471a314..668c8c394e2c65c3abf19b73f959b4816e3f53f9 100644 (file)
@@ -9,6 +9,7 @@ gc
 
 configure.ac:
 gl_GC_RANDOM
+gl_MODULE_INDICATOR([gc-random])
 
 Makefile.am:
 
index 77d756092a58cba821b695700ff1bf123fed44de..c38f44128e39efed5eea435ee0877ca471ab1fdd 100644 (file)
@@ -15,6 +15,7 @@ gc
 
 configure.ac:
 gl_GC_RIJNDAEL
+gl_MODULE_INDICATOR([gc-rijndael])
 
 Makefile.am:
 
index 18ba02e6c0e6ee42eb302817d9867417f3ba66f4..8f7e2102150049648abbca19633ec4665184c8dd 100644 (file)
@@ -13,6 +13,7 @@ gc
 
 configure.ac:
 gl_GC_SHA1
+gl_MODULE_INDICATOR([gc-sha1])
 
 Makefile.am: