Patch taken from Debian sid. Adapted to 4.2.4.6 for Guix by Tobias Geerinckx-Rice . Description: Support uncompressing and compressing soft links. Historically, ncompress for Debian has been built using a command line directly in debian/rules. For 4.2.4.5-1, I simplified by swtching to the upstream Makefile. However, that caused a regression - the Debian version of ncompress has always successfully handled soft links, but this stopped working. To revert to the original behavior, I need to remove -DLSTAT from the build options, to be consistent with how the code was previously built. Author: Kenneth J. Pronovici Bug-Debian: http://bugs.debian.org/918836 Index: ncompress/GNUmakefile =================================================================== --- ncompress.orig/GNUmakefile +++ ncompress/GNUmakefile @@ -9,7 +9,7 @@ distclean: cleanup Makefile: Makefile.def GNUmakefile sed \ - -e 's:options= :options= -DUTIME_H -DLSTAT :' \ + -e 's:options= :options= -DUTIME_H :' \ Makefile.def > Makefile check: > aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-12-13gnu: Simplify package inputs.Ludovic Courtès
This commit was obtained by running: ./pre-inst-env guix style without any additional argument.
2020-10-27gnu: nvi: Add missing includes.Mathieu Othacehe
This is a follow-up of a01f32924423c45a0ffa50f6c1727be2a25ef75c. * gnu/packages/nvi.scm (nvi): Add missing includes.
2020-10-27gnu: nvi: Fix cross-compilation.Mathieu Othacehe
* gnu/packages/nvi.scm (nvi)[arguments]: Add "vi_cv_sprintf_count=yes" to configure flags when cross-compiling. Also add 'fix-configure phase. [native-inputs]: Add "automake" that is required by the new phase.