changeset 9265:47449880c0b4 HEAD

Compiling fix for systems without GLOB_BRACE.
author Timo Sirainen <tss@iki.fi>
date Mon, 27 Jul 2009 02:52:57 -0400
parents 8deada68e818
children cd29b745c8dd
files src/lib-settings/settings.c
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/lib-settings/settings.c	Mon Jul 27 02:09:00 2009 -0400
+++ b/src/lib-settings/settings.c	Mon Jul 27 02:52:57 2009 -0400
@@ -12,6 +12,10 @@
 #  include <glob.h>
 #endif
 
+#ifndef GLOB_BRACE
+#  define GLOB_BRACE 0
+#endif
+
 #define SECTION_ERRORMSG "%s (section changed in %s at line %d)"
 
 struct input_stack {