negativerad / eepe

Automatically exported from code.google.com/p/eepe
0 stars 0 forks source link

FTBFS: ../src/mainwindow.cpp:58:26: fatal error: serialDialog.h: No such file or directory #135

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. qmake ...
2. make

What is the expected output? What do you see instead?
Compilation fail with this message:
g++ -c -m64 -pipe -O2 -Wall -W -D_REENTRANT -DQESP_NO_UDEV -D__linux__ 
-DQT_NO_DEBUG -DQT_XML_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB 
-DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++-64 -I../src 
-I/usr/include/qt4/QtCore -I/usr/include/qt4/QtNetwork -I/usr/include/qt4/QtGui 
-I/usr/include/qt4/QtXml -I/usr/include/qt4 -I../src -I. -I. -I../src -I. -o 
mainwindow.o ../src/mainwindow.cpp
../src/mainwindow.cpp:58:26: fatal error: serialDialog.h: No such file or 
directory
compilation terminated.
make: *** [mainwindow.o] Error 1

What version of the product are you using? On what operating system?
/trunk@r381

Please provide any additional information below.
This is a uppercase include with lowercase file name in SVN. Please apply this 
patch to make both same case (this will solve issue on systems that 
differentiate upper and lower cases).

Index: src/mainwindow.cpp
===================================================================
--- src/mainwindow.cpp  (revision 381)
+++ src/mainwindow.cpp  (working copy)
@@ -55,7 +55,7 @@
 #include "downloaddialog.h"
 #include "customizesplashdialog.h"
 #include "stamp-eepe.h"
-#include "serialDialog.h"
+#include "serialdialog.h"
 #include "telemetry.h"

 #define DONATE_STR "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=B9RNATGH7DTQ6"

Original issue reported on code.google.com by krzyszto...@gmail.com on 31 Jul 2013 at 11:45

GoogleCodeExporter commented 9 years ago
I am working with revision 388. Got this same error.
I noticed that there is a file "serialdialog.h" in the src folder. I edited 
mainwindow.cpp to have the proper case (serialDialog.h -> serialdialog.h) and 
the build was successful

Original comment by rich.bel...@gmail.com on 20 Oct 2013 at 3:38