Author Topic: src/src/appglobals.cpp was not added to the build system for linux  (Read 7009 times)

Offline Der Meister

  • Regular
  • ***
  • Posts: 307
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:
Code
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 \
Real Programmers don't comment their code. If it was hard to write, it should be hard to understand.
Real Programmers don't write in BASIC. Actually, no programmers write in BASIC, after the age of 12.

Stevo

  • Guest
Re: src/src/appglobals.cpp was not added to the build system for linux
« Reply #1 on: December 24, 2005, 12:57:26 am »
I can confirm that this problem still exists in revision 1583, because i just hit it and solved it before reading this post. 

The suggested patch works and really needs to go in.

Stevo

Offline rickg22

  • Lives here!
  • ****
  • Posts: 2283
Re: src/src/appglobals.cpp was not added to the build system for linux
« Reply #2 on: December 24, 2005, 02:31:38 pm »
Fixed now :)