From 6b57118c15c6ba60fd84e72ab1ec32bad7f7f7de Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Fri, 18 Mar 2011 11:03:28 -0400 Subject: pacman/util: flush terminal input before reading response Addresses FS#20538 Conflicts: src/pacman/util.c Signed-off-by: Dave Reisner Signed-off-by: Dan McGee (cherry picked from commit 9477abc3591905a20acbfe7b8ce7832617d72701) --- configure.ac | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index c672c66c..f6d5a2c3 100644 --- a/configure.ac +++ b/configure.ac @@ -171,7 +171,8 @@ AM_CONDITIONAL([HAVE_LIBFETCH], [test "x$ac_cv_lib_fetch_fetchParseURL" = "xyes" # Checks for header files. AC_CHECK_HEADERS([fcntl.h glob.h libintl.h locale.h mntent.h string.h \ sys/ioctl.h sys/mount.h sys/param.h sys/statvfs.h \ - sys/time.h sys/types.h sys/ucred.h syslog.h wchar.h]) + sys/time.h sys/types.h sys/ucred.h syslog.h termios.h \ + wchar.h]) # Checks for typedefs, structures, and compiler characteristics. AC_C_INLINE @@ -190,7 +191,7 @@ AC_FUNC_GETMNTENT AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK AC_FUNC_MKTIME AC_CHECK_FUNCS([geteuid getmntinfo realpath regcomp strcasecmp \ - strndup strrchr strsep swprintf \ + strndup strrchr strsep swprintf tcflush \ wcwidth uname]) # For the diskspace code FS_STATS_TYPE -- cgit v1.2.3-54-g00ecf From e0f41e0fb4ec9eb7d1e2c54744e6dbcd4d61a713 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Tue, 9 Aug 2011 19:15:04 -0500 Subject: 3.5.4 release preparation Signed-off-by: Dan McGee --- NEWS | 9 +++++++++ configure.ac | 4 ++-- doc/index.txt | 2 ++ 3 files changed, 13 insertions(+), 2 deletions(-) (limited to 'configure.ac') diff --git a/NEWS b/NEWS index b525b104..62b46305 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,14 @@ VERSION DESCRIPTION ----------------------------------------------------------------------------- +3.5.4 - fix display of lists on non-TTYs and other output fixes + - fix group selection entry for large inputs (FS#24253) + - fix divide by zero when downloading zero length files + - flush terminal input before reading response (FS#20538) + - allow files to be replaced by directories (FS#24904) + - makepkg: fix filenames with spaces and noextract (FS#25100) + - scripts: remove ln -f option for POSIX compliance (FS24893) + - various small documentation updates + - minor translation updates: de, fi 3.5.3 - segfault when creating lock in non-existent dir (FS#24292) - segfault when uninstalling broken backed-up symlink (FS#24230) - --print should not enable --noconfirm (FS#24287) diff --git a/configure.ac b/configure.ac index f6d5a2c3..16993807 100644 --- a/configure.ac +++ b/configure.ac @@ -42,12 +42,12 @@ AC_PREREQ(2.62) # pacman_version_micro += 1 m4_define([lib_current], [6]) -m4_define([lib_revision], [3]) +m4_define([lib_revision], [4]) m4_define([lib_age], [0]) m4_define([pacman_version_major], [3]) m4_define([pacman_version_minor], [5]) -m4_define([pacman_version_micro], [3]) +m4_define([pacman_version_micro], [4]) m4_define([pacman_version], [pacman_version_major.pacman_version_minor.pacman_version_micro]) diff --git a/doc/index.txt b/doc/index.txt index c04ca8a9..8d3481b9 100644 --- a/doc/index.txt +++ b/doc/index.txt @@ -63,6 +63,8 @@ Releases `------------`------- Date Version --------------------- +2011-08-10 v3.5.4 +2011-06-07 v3.5.3 2011-04-18 v3.5.2 2011-03-23 v3.5.1 2011-03-16 v3.5.0 -- cgit v1.2.3-54-g00ecf