summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2008-05-25 08:28:30 +0000
committerWerner Koch <wk@gnupg.org>2008-05-25 08:28:30 +0000
commit2e31d4062fc5c31dde7f71b53448ff03bda81e97 (patch)
treea3ca2e4bac79ce722e985a754cd0c246ecf2cf69
parentdf7e9c025229a1c24d8f0dac7e76ae4923505a48 (diff)
downloadlibassuan-2e31d4062fc5c31dde7f71b53448ff03bda81e97.tar.gz
Preparing a release.libassuan-1.0.5
-rw-r--r--AUTHORS2
-rw-r--r--ChangeLog8
-rw-r--r--NEWS6
-rw-r--r--configure.ac7
-rw-r--r--src/ChangeLog3
-rw-r--r--src/assuan.h3
6 files changed, 24 insertions, 5 deletions
diff --git a/AUTHORS b/AUTHORS
index 6ebe3b4..7ac4415 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -22,7 +22,7 @@ Libassuan was orginally part of NewPG, a temporary fork of GnuPG, and
later split of into a separate library.
- Copyright 2003, 2007 Free Software Foundation, Inc.
+ Copyright 2003, 2007, 2008 Free Software Foundation, Inc.
This file is free software; as a special exception the author gives
unlimited permission to copy and/or distribute it, with or without
diff --git a/ChangeLog b/ChangeLog
index c4129c2..147bc01 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2008-05-25 Werner Koch <wk@g10code.com>
+
+ Released 1.0.5.
+
+2008-05-23 Werner Koch <wk@g10code.com>
+
+ * configure.ac: Use -fPIC with GCC under Linux.
+
2007-12-12 Werner Koch <wk@g10code.com>
Released 1.0.4.
diff --git a/NEWS b/NEWS
index 16eb208..3a36243 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,10 @@
-Noteworthy changes in version 1.0.5
+Noteworthy changes in version 1.0.5 (2008-05-25)
------------------------------------------------
+ * Minor fixes.
+
+ * Build library for GNU/LInux as PIC.
+
Noteworthy changes in version 1.0.4 (2007-12-12)
------------------------------------------------
diff --git a/configure.ac b/configure.ac
index db02b81..4f8ce8e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -25,7 +25,7 @@ min_automake_version="1.10"
# 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.0.5])
-m4_define([my_issvn], [yes])
+m4_define([my_issvn], [no])
m4_define([svn_revision], m4_esyscmd([echo -n $( (svn info 2>/dev/null \
|| echo 'Revision: 0')|sed -n '/^Revision:/ {s/[^0-9]//gp;q;}')]))
@@ -106,6 +106,11 @@ AH_BOTTOM([
have_dosish_system=no
have_w32_system=no
case "${host}" in
+ *-linux*)
+ if test "$GCC" = yes; then
+ CFLAGS="$CFLAGS -fPIC -DPIC"
+ fi
+ ;;
*-mingw32*)
have_dosish_system=yes
have_w32_system=yes
diff --git a/src/ChangeLog b/src/ChangeLog
index 9f964fb..ada7d46 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,6 +1,7 @@
2008-03-25 Marcus Brinkmann <marcus@g10code.de>
- * assuan-inquire.c (assuan_inquire): Loop over _assuan_read_line for EAGAIN.
+ * assuan-inquire.c (assuan_inquire): Loop over _assuan_read_line
+ for EAGAIN.
2008-03-21 Marcus Brinkmann <marcus@g10code.de>
diff --git a/src/assuan.h b/src/assuan.h
index d1a72c6..a99e89b 100644
--- a/src/assuan.h
+++ b/src/assuan.h
@@ -1,5 +1,6 @@
/* assuan.h - Definitions for the Assuan IPC library
- * Copyright (C) 2001, 2002, 2003, 2005, 2007 Free Software Foundation, Inc.
+ * Copyright (C) 2001, 2002, 2003, 2005, 2007,
+ * 2008 Free Software Foundation, Inc.
*
* This file is part of Assuan.
*