summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2007-10-29 20:36:08 +0000
committerWerner Koch <wk@gnupg.org>2007-10-29 20:36:08 +0000
commitf9c80d236b62c5f2ac4c4d096e4adbd40b10d3a2 (patch)
treea87c8e60faaee8d78c6a7cd6afa31d775dd404ae
parentf8c31a27e23bc63d7f9d742472727ce1741bfe50 (diff)
downloadlibgcrypt-f9c80d236b62c5f2ac4c4d096e4adbd40b10d3a2.tar.gz
Fixed host/target usage.
-rw-r--r--NEWS4
-rw-r--r--configure.ac4
-rw-r--r--mpi/ChangeLog5
-rw-r--r--mpi/config.links6
4 files changed, 14 insertions, 5 deletions
diff --git a/NEWS b/NEWS
index bda74fed..00749558 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,7 @@
+Noteworthy changes in version 1.3.2
+------------------------------------------------
+
+
Noteworthy changes in version 1.3.1 (2007-10-26)
------------------------------------------------
diff --git a/configure.ac b/configure.ac
index a1caf7a3..994bf286 100644
--- a/configure.ac
+++ b/configure.ac
@@ -27,8 +27,8 @@ min_automake_version="1.10"
# Remember to change the version number immediately *after* a release.
# Set my_issvn to "yes" for non-released code. Remember to run an
# "svn up" and "autogen.sh" right before creating a distribution.
-m4_define([my_version], [1.3.1])
-m4_define([my_issvn], [no])
+m4_define([my_version], [1.3.2])
+m4_define([my_issvn], [yes])
m4_define([svn_revision], m4_esyscmd([echo -n $( (svn info 2>/dev/null \
|| echo 'Revision: 0')|sed -n '/^Revision:/ {s/[^0-9]//gp;q;}')]))
diff --git a/mpi/ChangeLog b/mpi/ChangeLog
index f8542052..e5aedf2d 100644
--- a/mpi/ChangeLog
+++ b/mpi/ChangeLog
@@ -1,3 +1,8 @@
+2007-10-29 Werner Koch <wk@g10code.com>
+
+ * config.links: No Candadian Cross here, thus use $host instead of
+ $target.
+
2007-10-26 Werner Koch <wk@g10code.com>
* config.links (mpi_optional_modules): Special rules for Apple
diff --git a/mpi/config.links b/mpi/config.links
index 2ac566f0..c6ca93e0 100644
--- a/mpi/config.links
+++ b/mpi/config.links
@@ -35,10 +35,10 @@ mpi_optional_modules=`$AWK '/^#BEGIN_ASM_LIST/,/^#END_ASM_LIST/ {
echo '/* created by config.links - do not edit */' >./mpi/asm-syntax.h
-echo "/* Target: ${target} */" >>./mpi/asm-syntax.h
+echo "/* Host: ${host} */" >>./mpi/asm-syntax.h
if test "$try_asm_modules" = "yes" ; then
-case "${target}" in
+case "${host}" in
powerpc-apple-darwin* | \
i[34567]86*-*-openbsd[12]* | \
i[34567]86*-*-openbsd3.[0123]*)
@@ -326,7 +326,7 @@ mpi_ln_list=
mpi_mod_list=
path=`echo "$mpi_extra_path $path generic" | tr ':' ' '`
echo '/* Created by config.links - do not edit */' >./mpi/mod-source-info.h
-echo "/* Target: ${target} */" >>./mpi/mod-source-info.h
+echo "/* Host: ${host} */" >>./mpi/mod-source-info.h
echo "static char mod_source_info[] =" >>./mpi/mod-source-info.h
for fn in $mpi_required_modules ; do
fnu=`echo $fn | sed 's/-/_/g'`