Menu

Build Revision 331

Help
2009-06-09
2012-12-11
  • Alexander Frenzel

    Hello,

    when i try to compile the current svn version i get an error on Linux and i couldn't figure where i can find the missing header (bass.h) file. Propobly you can help me :)

    thank you

    escaped

    ERROR:
    ~/downloads/_compile/uman/uman1.8b/src$ make
    g++ -c -pipe -O2 -Wall -W -D_REENTRANT -DQT_NO_DEBUG -DQT_XML_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -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. -Isong -Isongdetails -Isongtree -Ireport -Itasks -Itasks/taskDialog -Ipreview -Iplaylist -Iamazon -Ifilter -Imonty -Imediaplayer -Isupport -Ipreferences -Iui -Iplugins -Iribbon -Islideshow -Ilyricseditor -I/usr/include/taglib -Itmp -Iui -o tmp/main.o main.cpp
    In file included from ui/ui_QUMainWindow.h:35,
                     from QUMainWindow.h:11,
                     from main.cpp:2:
    mediaplayer/QUMediaPlayer.h:9:18: error: bass.h: No such file or directory
    In file included from ui/ui_QUMainWindow.h:35,
                     from QUMainWindow.h:11,
                     from main.cpp:2:
    mediaplayer/QUMediaPlayer.h:81: error: ‘HSTREAM’ does not name a type
    make: *** [tmp/main.o] Error 1

     
    • Alexander Frenzel

      Yeah.. its running. i had to download and install the library from: http://www.un4seen.com/forum/?topic=8682.0
      I also had to modify the uman.pro to access the new Library on linux:
      unix {

          INCLUDEPATH += /usr/include/taglib
          LIBS += -L"/usr/lib" \   

              -ltag
      }
      TO:
      unix {

          INCLUDEPATH += /usr/include/taglib \         /usr/include/bass

          LIBS += -L"/usr/lib" \   

              -ltag \         -lbass

      }

      The last thing i cannot compile is the taglib Plugin. Which Version are you using?
      ~/downloads/_compile/uman/uman1.8b/src/plugins/audiotag$ make
      g++ -c -pipe -O2 -Wall -W -D_REENTRANT -fPIC -DQT_NO_DEBUG -DQT_PLUGIN -DQT_XML_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtXml -I/usr/include/qt4 -I. -Iui -I.. -I../.. -I../../song -I../shared -I../../../include/taglib -I/usr/include/taglib -I../tmp/audiotag -I../ui -o ../tmp/audiotag/QUAudioTagTask.o QUAudioTagTask.cpp
      In file included from ../shared/QUScriptableTask.h:8,
                       from QUAudioTagTask.h:5,
                       from QUAudioTagTask.cpp:1:
      ../shared/QUSimpleTask.h:24: warning: unused parameter ‘parent’
      QUAudioTagTask.cpp:9: warning: unused parameter ‘parent’
      QUAudioTagTask.cpp: In member function ‘TagLib::FileRef QUAudioTagTask::ref()’:
      QUAudioTagTask.cpp:119: error: call of overloaded ‘FileRef(int)’ is ambiguous
      /usr/include/taglib/fileref.h:136: note: candidates are: TagLib::FileRef::FileRef(TagLib::File*)
      /usr/include/taglib/fileref.h:130: note:                 TagLib::FileRef::FileRef(const char*, bool, TagLib::AudioProperties::ReadStyle)
      make: *** [../tmp/audiotag/QUAudioTagTask.o] Error 1

      escaped

       
      • Di Biase José Luis

         
        • Alexander Frenzel

          i already fixed those Problems and got a running Version.

          But this Version is in some points quite unstable on my System e.g.
          - Bass can't init correct (ERROR code 8) ... Probobly cause i have 2 soundcard and the first one can't use for playback... but i dunno

          also i cannot compile one Plugin....

          So far... the Version looks good. But the main Features why i would use this Version aren't useable.

           
          • Alexander Frenzel

            yeah... have the media player working.
            Pulseaudio was installed. After removing it and restarting ALSA the Media Player works like a charm :)

             
            • Marcel Taeumel

              Marcel Taeumel - 2009-07-21

              Which BASS package did you use?

               
    • Alexander Frenzel

      well... the program is little bit unstable in Linux... don't know why...

      so i am going to wait for an windows compiled Version.

       

Log in to post a comment.