In revision 1582 the file 'src/src/appglobals.cpp' was added and the project-file was updated (probably to include the new file), but not the linux build system.
Without compiling this file there are many linker errors (which is quite obvious). The following patch solves this problem:
Index: src/src/Makefile.am
===================================================================
--- src/src/Makefile.am (revision 1582)
+++ src/src/Makefile.am (working copy)
@@ -25,7 +25,8 @@
main.cpp \
prefix.cpp \
printdlg.cpp \
- startherepage.cpp
+ startherepage.cpp \
+ appglobals.cpp
noinst_HEADERS = app.h \
appglobals.h \