blob: dc3f63303ca7f061617c1299a2e2885f1f70c281 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* Optional packages. You might want to integrate this with your build system e.g. config.h from ./configure. */
#ifndef UTIL_HAVE_H
#define UTIL_HAVE_H
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#ifndef HAVE_ICU
//#define HAVE_ICU
#endif
#endif // UTIL_HAVE_H
|