pkgsrc/print/lilypond/patches/patch-flower_file-path.cc
joerg 45d85a2378 std_vector.hh depends on config.hh, so include the latter whenever the
former is used. to_string is part of C++11 STL, so pick the version from
the global namespace whenever it is unclear which one is desired.
2013-06-16 20:46:52 +00:00

18 lines
421 B
C++

$NetBSD: patch-flower_file-path.cc,v 1.1 2013/06/16 20:46:52 joerg Exp $
--- flower/file-path.cc.orig 2013-06-16 18:36:33.000000000 +0000
+++ flower/file-path.cc
@@ -18,12 +18,12 @@
along with LilyPond. If not, see <http://www.gnu.org/licenses/>.
*/
+#include "config.hh"
#include "file-path.hh"
#include <cstdio>
#include <cerrno>
-#include "config.hh"
#if HAVE_SYS_STAT_H
#include <sys/stat.h>
#endif