I'm getting this error when I try to compile the latest version from SVN.
src/GUI-QT/RigDlg.cpp: In constructor ‘RigDlg::RigDlg(CRig&, QWidget)’:
src/GUI-QT/RigDlg.cpp:47:9: error: ‘class Ui::RigDlg’ has no member named ‘sMeterLayout’
make: ** [obj/RigDlg.o] Error 1
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi Robert - sorry noone got back to you on this - I'm afraid we aren't paying much attention. I'm doing a build now and I'll answer this once I have a working build system.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Thanks Robert, qwt is an absolute pain for breaking compatibility and for libraries changing names. I'll commit your change - maybe at the weekend. Its about time we had a release.
Have you tried the qcustomplot build? qcustomplot is a much nicer library but there are probably still bugs in the Dream interface to it.
Last edit: Julian Cable 2016-11-16
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi! I installed dream on ubuntu-mate on raspberry pi 3. When i run dream i am getting a run time error of
dream: symbol look up error dream: undefined symbol:NeAACInitDRM
I compiled the sources against qt4. What might be the problem??
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Looks like you are linking against the non-DRM version of faad2.
Debian libfaad package contains both lib binaries but you have to set the right parameters for the build. It should work out of the box but obviously it doesn't.
I'll try and make time to check the qt project file against Jessie but please check it too.
Hi! I installed dream on ubuntu-mate on raspberry pi 3. When i run dream i am getting a run time error of
dream: symbol look up error dream: undefined symbol:NeAACInitDRM
I compiled the sources against qt4. What might be the problem??
I'm getting this error when I try to compile the latest version from SVN.
src/GUI-QT/RigDlg.cpp: In constructor ‘RigDlg::RigDlg(CRig&, QWidget)’:
src/GUI-QT/RigDlg.cpp:47:9: error: ‘class Ui::RigDlg’ has no member named ‘sMeterLayout’
make: ** [obj/RigDlg.o] Error 1
Hi Robert - sorry noone got back to you on this - I'm afraid we aren't paying much attention. I'm doing a build now and I'll answer this once I have a working build system.
I was able to build on a newer Ubuntu distribution. I did have an issue with the makefile trying to link both libqwt and libqwt-qt5. Here is a patch:
--- /tmp/dream-HEAD.pro
+++ /home/robertt/Dream/drm-code/dream/dream.pro
@@ -324,7 +324,7 @@
LIBS += -lqwtd
} else {
# unix | win release
- LIBS += -lqwt
+ LIBS += -lqwt-qt5
}
}
!crosscompile {
Thanks Robert, qwt is an absolute pain for breaking compatibility and for libraries changing names. I'll commit your change - maybe at the weekend. Its about time we had a release.
Have you tried the qcustomplot build? qcustomplot is a much nicer library but there are probably still bugs in the Dream interface to it.
Last edit: Julian Cable 2016-11-16
Can you try with the latest commit? It builds for me on 15.10. I put some instructions here https://sourceforge.net/p/drm/wiki/Build%20on%20Ubuntu/
Hi! I installed dream on ubuntu-mate on raspberry pi 3. When i run dream i am getting a run time error of
dream: symbol look up error dream: undefined symbol:NeAACInitDRM
I compiled the sources against qt4. What might be the problem??
Looks like you are linking against the non-DRM version of faad2.
Debian libfaad package contains both lib binaries but you have to set the right parameters for the build. It should work out of the box but obviously it doesn't.
I'll try and make time to check the qt project file against Jessie but please check it too.
Julian
On 14 Mar 2017, at 18:27, Nagasai Boppudi nagasaiboppudi@users.sf.net<mailto:nagasaiboppudi@users.sf.net> wrote:
Hi! I installed dream on ubuntu-mate on raspberry pi 3. When i run dream i am getting a run time error of
dream: symbol look up error dream: undefined symbol:NeAACInitDRM
I compiled the sources against qt4. What might be the problem??
Error Building Development Versionhttps://sourceforge.net/p/drm/discussion/compiling/thread/8b757b36/?limit=25#db98
Sent from sourceforge.nethttp://sourceforge.net because julian.cable@bbc.co.ukjulian.cable@bbc.co.uk is subscribed to https://sourceforge.net/p/drm/discussion/compiling/
To unsubscribe from further messages, a project admin can change settings at https://sourceforge.net/p/drm/admin/discussion/forums. Or, if this is a mailing list, you can unsubscribe from the mailing list.
Hi, I tried with proper options and it started working. Looks like faad has a patch released sometime back for this. Thank You