diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2013-02-14 18:04:26 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2013-02-14 18:04:26 +0200 |
commit | 87c84a28d8a2bfe75f1c383728670f74c1517568 (patch) | |
tree | ec8dbc7b96e9b41d7cb827f3245690aa575760fa /configure.ac | |
parent | bc156ed2b2d0c31614a79af05156f02135f4fda7 (diff) |
Make sure windows.hxx is always installed on Windows
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index a2daa10..2a71588 100644 --- a/configure.ac +++ b/configure.ac @@ -24,6 +24,17 @@ AC_LANG(C++) # LT_OUTPUT +# Check for Windows. +# +win32=no +case $host_os in + windows* | mingw*) + win32=yes + ;; +esac + +AM_CONDITIONAL([ODB_WIN32], [test x$win32 = xyes]) + # Check for threads. # THREADS |