diff options
author | Vincent Torri <vincent dot torri at gmail dot com> | 2010-11-28 14:02:40 +0100 |
---|---|---|
committer | Peter Harris <pharris@opentext.com> | 2011-01-20 20:46:04 -0500 |
commit | 9efced72a3cb8072fa60fbed4f04d61cde412494 (patch) | |
tree | 0ab22a1b2ab1d7bbf1bb9d75a94d73b899f6bce4 /configure.ac | |
parent | 3c5813697169a33ecfd6ac0ab5641dec654f6612 (diff) |
fix Windows build and installation
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 848310e..a8e171b 100644 --- a/configure.ac +++ b/configure.ac @@ -15,6 +15,7 @@ AM_CONDITIONAL(HAVE_CHECK, test x$HAVE_CHECK = xyes) AC_CONFIG_HEADERS([src/config.h]) +AC_LIBTOOL_WIN32_DLL AC_PROG_LIBTOOL AC_PROG_CC @@ -72,12 +73,21 @@ AC_HEADER_STDC AC_SEARCH_LIBS(getaddrinfo, socket) AC_SEARCH_LIBS(connect, socket) +have_win32="no" +lt_enable_auto_import="" case $host_os in +mingw*) + have_win32="yes" + lt_enable_auto_import="-Wl,--enable-auto-import" + ;; linux*) AC_DEFINE([HAVE_ABSTRACT_SOCKETS], 1, [Define if your platform supports abstract sockets]) ;; esac +AC_SUBST(lt_enable_auto_import) +AM_CONDITIONAL([XCB_HAVE_WIN32], [test "x${have_win32}" = "xyes"]) + dnl define buffer queue size AC_ARG_WITH([queue-size], AC_HELP_STRING([--with-queue-size=SIZE], |