aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcus Brinkmann <[email protected]>2001-10-22 15:39:34 +0000
committerMarcus Brinkmann <[email protected]>2001-10-22 15:39:34 +0000
commit44ba56ca730b13d8573fb16da0aa5a68cff0008c (patch)
tree6dc44aedeabf0d7d512c2f7a42ee9eded46b2317
parent2001-10-22 Marcus Brinkmann <[email protected]> (diff)
downloadgpgme-44ba56ca730b13d8573fb16da0aa5a68cff0008c.tar.gz
gpgme-44ba56ca730b13d8573fb16da0aa5a68cff0008c.zip
2001-10-22 Marcus Brinkmann <[email protected]>
* autogen.sh: Invoke automake with `-a' (add missing files). Do not invoke configure.
-rw-r--r--ChangeLog5
-rw-r--r--TODO6
-rwxr-xr-xautogen.sh16
3 files changed, 13 insertions, 14 deletions
diff --git a/ChangeLog b/ChangeLog
index ed275973..fac139cd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-10-22 Marcus Brinkmann <[email protected]>
+
+ * autogen.sh: Invoke automake with `-a' (add missing files).
+ Do not invoke configure.
+
2001-09-17 Werner Koch <[email protected]>
Released 0.2.3.
diff --git a/TODO b/TODO
index f763a025..ad5ab742 100644
--- a/TODO
+++ b/TODO
@@ -16,6 +16,12 @@
* 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
diff --git a/autogen.sh b/autogen.sh
index cf24171a..aca98064 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -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
-
-
-
-