summaryrefslogtreecommitdiffstats
path: root/cfgparser.c
diff options
context:
space:
mode:
authoralbeu <albeu@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-11-12 01:56:42 +0000
committeralbeu <albeu@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-11-12 01:56:42 +0000
commit126725660d4bebbab8570221c5681dc01d98fe86 (patch)
tree3ebdca9acf6fae38bfdba5b4159fbd16177da828 /cfgparser.c
parent0f622e2d6fe735d727b9d8fd12cea22e03fd954b (diff)
downloadmpv-126725660d4bebbab8570221c5681dc01d98fe86.tar.bz2
mpv-126725660d4bebbab8570221c5681dc01d98fe86.tar.xz
New config system + cleanup of header inter dependency
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8165 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'cfgparser.c')
-rw-r--r--cfgparser.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/cfgparser.c b/cfgparser.c
index 38bb5e8a7a..1dde14ed89 100644
--- a/cfgparser.c
+++ b/cfgparser.c
@@ -19,6 +19,8 @@
#include "config.h"
+#ifndef NEW_CONFIG
+
#ifdef USE_SETLOCALE
#include <locale.h>
#endif
@@ -50,6 +52,7 @@
#endif
#include "cfgparser.h"
+#include "playtree.h"
static void m_config_list_options(m_config_t *config);
static void m_config_error(int err,char* opt,char* val);
@@ -1536,3 +1539,5 @@ static void m_config_error(int err,char* opt,char* val) {
break;
}
}
+
+#endif