2001-10-22 Marcus Brinkmann <marcus@g10code.de>
authorMarcus Brinkmann <mb@g10code.com>
Mon, 22 Oct 2001 15:39:34 +0000 (15:39 +0000)
committerMarcus Brinkmann <mb@g10code.com>
Mon, 22 Oct 2001 15:39:34 +0000 (15:39 +0000)
* autogen.sh: Invoke automake with `-a' (add missing files).
Do not invoke configure.

ChangeLog
TODO
autogen.sh

index ed275973bef2f8474b71f1064cb5e0409f358156..fac139cdb4b83719ccbfc9691915ea393dd68365 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-10-22  Marcus Brinkmann  <marcus@g10code.de>
+
+       * autogen.sh: Invoke automake with `-a' (add missing files).
+       Do not invoke configure.
+
 2001-09-17  Werner Koch  <wk@gnupg.org>
 
        Released 0.2.3.
diff --git a/TODO b/TODO
index f763a0259d15698d3e3a04b98bb2caa6d85ec2c4..ad5ab7425c9d1a4419ce648d9a5d26f8ba9a7d74 100644 (file)
--- a/TODO
+++ b/TODO
 
 * Implement decrypt+verify
 
+* Tests
+** t-data
+*** Test gpgme_data_write and gpgme_data_release_and_get_mem.
+*** Test gpgme_data_rewind for invalid types.
+*** Test gpgme_data_read's readable feature.
+
 Bugs reported by Stephane Corthesy:
 > - When asking a GpgmeKey for one of its sub-userIDs (index > 0)  
 > GPGME_ATTR_EMAIL attribute, it returns the name + email, whereas for  
index cf24171a9465f3e81f5834e4f9e3eb7d50e5b26b..aca98064ed032f5c8c19cc4ba4a20a0f7a2cf6e5 100755 (executable)
@@ -143,19 +143,7 @@ echo "Running aclocal..."
 aclocal
 echo "Running autoheader..."
 autoheader
-echo "Running automake --gnu ..."
-automake --gnu;
+echo "Running automake --gnu -a ..."
+automake --gnu -a
 echo "Running autoconf..."
 autoconf
-
-if test "$*" = ""; then
-    conf_options="--enable-maintainer-mode"
-else
-    conf_options=$*
-fi
-echo "Running ./configure $conf_options"
-./configure $conf_options
-
-
-
-