On Sun, 2016-02-07 at 16:50 +0100, Andreas Schneider wrote: > When compiling (with GTK3), I get the following error on Debian Wheezy > (oldstable): > > export/print.o: In function `open_viewer': > /home/src/denemo/src/export/print.c:417: undefined reference to > `g_spawn_check_exit_status' > printview/printview.o: In function `printview_finished': > /home/src/denemo/src/printview/printview.c:501: undefined reference to > `g_spawn_check_exit_status'
https://developer.gnome.org/glib/stable/glib-Spawning-Processes.html#g-spawn-check-exit-status says this has been there since 2.34 (presumably that means glib 2.34) so I guess you must have earlier. The check is not important, it's just diagnostic for those watching the terminal. The whole block: { GError* err = NULL; if(!g_spawn_check_exit_status (status, &err)) g_warning ("Lilypond did not end successfully: %s", err->message); } could be deleted... Richard _______________________________________________ Denemo-devel mailing list [email protected] https://lists.gnu.org/mailman/listinfo/denemo-devel
