mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-28 22:45:50 +03:00
24 lines
413 B
C++
24 lines
413 B
C++
/* Optional packages. You might want to integrate this with your build system e.g. config.h from ./configure. */
|
|
#ifndef UTIL_HAVE__
|
|
#define UTIL_HAVE__
|
|
|
|
#ifndef HAVE_ZLIB
|
|
#if !defined(_WIN32) && !defined(_WIN64)
|
|
#define HAVE_ZLIB
|
|
#endif
|
|
#endif
|
|
|
|
#ifndef HAVE_ICU
|
|
//#define HAVE_ICU
|
|
#endif
|
|
|
|
#ifndef HAVE_BOOST
|
|
//#define HAVE_BOOST
|
|
#endif
|
|
|
|
#ifndef HAVE_THREADS
|
|
//#define HAVE_THREADS
|
|
#endif
|
|
|
|
#endif // UTIL_HAVE__
|