Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Heafield <github@kheafield.com>2012-10-15 16:58:33 +0400
committerKenneth Heafield <github@kheafield.com>2012-10-15 16:58:33 +0400
commit0eb98df0fe32a8e31188fa107f789afd73d81ccf (patch)
tree6b2f5bb5a21e132f419da1fa7064f94eb74428e6 /util/have.hh
parented00315c8cf4c0b0f8ebc535cf676139b25ab087 (diff)
Submodules are evil. Undo it.
Diffstat (limited to 'util/have.hh')
-rw-r--r--util/have.hh23
1 files changed, 23 insertions, 0 deletions
diff --git a/util/have.hh b/util/have.hh
new file mode 100644
index 000000000..b8181e999
--- /dev/null
+++ b/util/have.hh
@@ -0,0 +1,23 @@
+/* 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__