mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2025-01-07 12:10:36 +03:00
974a708ddd
Invalidates old gcc and 32-bit formats, replacing these with one consistent format: 64-bit new gcc. Backwards compatible with these files.
22 lines
365 B
C++
22 lines
365 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
|
|
#define HAVE_ZLIB
|
|
#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__
|