Unverified Commit a141fb15 authored by Paul Wise's avatar Paul Wise
Browse files

Fix detection of get_current_dir_name and return truncation

parent 71d0df16
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
libpst (0.6.59-1+deb9u1) stretch; urgency=medium

  * Fix detection of get_current_dir_name and return truncation

 -- Paul Wise <pabs@debian.org>  Wed, 11 Dec 2019 09:59:25 +0800

libpst (0.6.59-1) unstable; urgency=low

  * [ec26e2d0] Imported Upstream version 0.6.59
+17 −0
Original line number Diff line number Diff line
Description: use AC_USE_SYSTEM_EXTENSIONS to define _GNU_SOURCE
 so get_current_dir_name is detected correctly and
 its return value is not truncated, breaking free calls.
Origin: upstream
From: http://hg.five-ten-sg.com/libpst/
Last-Update: 2019-12-11
Applied-Upstream: changeset: 328:c507af52515a
--- a/configure.in
+++ b/configure.in
@@ -4,6 +4,7 @@
 AC_CONFIG_HEADER([config.h])
 AM_INIT_AUTOMAKE
 AC_CANONICAL_HOST
+AC_USE_SYSTEM_EXTENSIONS
 
 #
 #  1. Remember that version-info is current:revision:age, and age <= current.
+1 −0
Original line number Diff line number Diff line
06-ld-no-add-needed.patch
07-use-system-extensions.patch