summaryrefslogtreecommitdiffstats
path: root/src/plist.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plist.h')
-rw-r--r--src/plist.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/plist.h b/src/plist.h
index e310bcc..7228696 100644
--- a/src/plist.h
+++ b/src/plist.h
@@ -49,9 +49,15 @@
49 #endif 49 #endif
50#endif 50#endif
51 51
52#include "node.h"
53
52#ifndef PLIST_MAX_NESTING_DEPTH 54#ifndef PLIST_MAX_NESTING_DEPTH
55#ifdef NODE_MAX_DEPTH
56#define PLIST_MAX_NESTING_DEPTH NODE_MAX_DEPTH
57#else
53#define PLIST_MAX_NESTING_DEPTH 512 58#define PLIST_MAX_NESTING_DEPTH 512
54#endif 59#endif
60#endif
55 61
56#include "plist/plist.h" 62#include "plist/plist.h"
57 63