From: Dr. Tobias Quathamer Date: Mon, 18 Jul 2016 16:10:51 +0000 (+0200) Subject: Fix patch for FTBFS on hurd. Thanks to Petter Reinholdtsen for the bug report and... X-Git-Tag: debian/2.18.2-9~24 X-Git-Url: https://git.donarmstrong.com/lilypond.git?a=commitdiff_plain;h=cb4e9ee3ff66ace2c0ba2142c157c081e020c341;p=lilypond.git Fix patch for FTBFS on hurd. Thanks to Petter Reinholdtsen for the bug report and patch. (Closes: #761036) --- diff --git a/debian/patches/hurd_file_name_support b/debian/patches/hurd_file_name_support index bb5122ebaf..4caf1e62b0 100644 --- a/debian/patches/hurd_file_name_support +++ b/debian/patches/hurd_file_name_support @@ -1,15 +1,23 @@ Description: Hurd build without PATH_MAX; currently broken -Forwarded: not-needed -Origin: vendor +Forwarded: http://lists.gnu.org/archive/html/bug-lilypond/2017-01/msg00023.html +Origin: vendor, https://bugs.debian.org/cgi-bin/bugreport.cgi?att=1;bug=761036;filename=hurd_file_name_support;msg=5 +Bug-Debian: https://bugs.debian.org/761036 Author: Don Armstrong ---- lilypond-2.18.0.orig/flower/file-name.cc -+++ lilypond-2.18.0/flower/file-name.cc -@@ -96,9 +96,13 @@ +Author: Petter Reinholdtsen +Reviewed-by: Dr. Tobias Quathamer +Reviewed-by: Anthony Fok +Last-Update: 2017-01-27 +--- a/flower/file-name.cc ++++ b/flower/file-name.cc +@@ -96,9 +96,16 @@ string get_working_directory () { -+#ifdef _GNU_SOURCE_ -+ return string (get_current_dir_name()); ++#ifdef _GNU_SOURCE ++ char *cwd = get_current_dir_name(); ++ string scwd(cwd); ++ free(cwd); ++ return scwd; +#else char cwd[PATH_MAX]; // getcwd returns NULL upon a failure, contents of cwd would be undefined! @@ -18,3 +26,34 @@ Author: Don Armstrong } /* Join components to full file_name. */ +--- a/flower/test-file-path.cc ++++ b/flower/test-file-path.cc +@@ -6,12 +6,26 @@ + #include "yaffut.hh" + #include "config.hh" + ++string ++get_working_directory () ++{ ++#ifdef _GNU_SOURCE ++ char *cwd = get_current_dir_name(); ++ string scwd(cwd); ++ free(cwd); ++ return scwd; ++#else ++ char cwd[PATH_MAX]; ++ // getcwd returns NULL upon a failure, contents of cwd would be undefined! ++ return string (getcwd (cwd, PATH_MAX)); ++#endif ++} ++ + TEST (File_path, Find) + { + char const *extensions[] = {"ly", "", 0}; + string file = "init"; +- char cwd[PATH_MAX]; +- if (!getcwd (cwd, PATH_MAX)) ++ if (get_working_directory().empty()) + { + cerr << "Could not get current work directory\n"; + exit (1);