diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 6e7e9c3..cce0ddb 100644 --- a/configure.ac +++ b/configure.ac @@ -206,6 +206,15 @@ case $host_os in ;; esac +dnl Link with winsock for socket functions on MinGW +case $host_os in + *mingw*) + AC_CHECK_LIB([ws2_32],[main]) + ;; + *) + ;; +esac + XCB_EXTENSION(Composite, yes) XCB_EXTENSION(Damage, yes) XCB_EXTENSION(DPMS, yes) |