diff options
author | LarsAC <LarsAC@e10066b5-e1e2-0310-b819-94efdf66514b> | 2005-03-06 15:10:09 +0000 |
---|---|---|
committer | LarsAC <LarsAC@e10066b5-e1e2-0310-b819-94efdf66514b> | 2005-03-06 15:10:09 +0000 |
commit | 74a6020c1c54f44d1866ae9299e4acd264d58b79 (patch) | |
tree | 2595d69903d0b3e4b4813a875ad2960afd468908 | |
parent | a649b791972980a387b66ddf9898d62c098eb4fd (diff) | |
download | vdr-plugin-muggle-74a6020c1c54f44d1866ae9299e4acd264d58b79.tar.gz vdr-plugin-muggle-74a6020c1c54f44d1866ae9299e4acd264d58b79.tar.bz2 |
Final changes for 0.1.4
git-svn-id: https://vdr-muggle.svn.sourceforge.net/svnroot/vdr-muggle/trunk/muggle-plugin@546 e10066b5-e1e2-0310-b819-94efdf66514b
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | mg_mysql.c | 2 | ||||
-rw-r--r-- | vdr_setup.h | 2 |
3 files changed, 4 insertions, 4 deletions
@@ -16,7 +16,7 @@ PLUGIN = muggle #if you want to use a dedicated Mysql server instead of the embedded code, #define this in $VDRDIR/Make.config: -# HAVE_SERVER +# HAVE_SERVER=1 # ### The version number of this plugin (taken from the main source file): @@ -58,7 +58,7 @@ DEFINES += -D_GNU_SOURCE -DPLUGIN_NAME_I18N='"$(PLUGIN)"' ### The object files (add further files here): OBJS = $(PLUGIN).o i18n.o mg_valmap.o mg_mysql.o mg_sync.o mg_order.o mg_content.o mg_selection.o vdr_actions.o vdr_menu.o mg_tools.o \ - vdr_decoder_mp3.o vdr_stream.o vdr_decoder.o vdr_player.o \ + vdr_decoder_mp3.o vdr_decoder_ogg.o vdr_decoder_flac.o vdr_stream.o vdr_decoder.o vdr_player.o \ vdr_setup.o mg_setup.o LIBS = -lmad -ltag @@ -16,7 +16,7 @@ #include <sys/types.h> #include <time.h> -#include "vdr_setup.h" +#include "mg_setup.h" bool needGenre2; static bool needGenre2_set; diff --git a/vdr_setup.h b/vdr_setup.h index 354534f..6a8ebdb 100644 --- a/vdr_setup.h +++ b/vdr_setup.h @@ -26,7 +26,7 @@ /*! * \brief allow user to modify setup on OSD */ -class mgMenuSetup:public cMenuSetupPage +class mgMenuSetup : public cMenuSetupPage { private: mgSetup m_data; |