You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by wr...@apache.org on 2009/11/16 08:39:02 UTC

svn commit: r880639 - /apr/apr/branches/1.4.x/configure.in

Author: wrowe
Date: Mon Nov 16 07:38:54 2009
New Revision: 880639

URL: http://svn.apache.org/viewvc?rev=880639&view=rev
Log:
Fix -DWIN32 and APR_FILES_AS_SOCKETS for MinGW

Modified:
    apr/apr/branches/1.4.x/configure.in

Modified: apr/apr/branches/1.4.x/configure.in
URL: http://svn.apache.org/viewvc/apr/apr/branches/1.4.x/configure.in?rev=880639&r1=880638&r2=880639&view=diff
==============================================================================
--- apr/apr/branches/1.4.x/configure.in (original)
+++ apr/apr/branches/1.4.x/configure.in Mon Nov 16 07:38:54 2009
@@ -476,12 +476,14 @@
        eolstr="\\n"
        ;;
    *mingw*)
+       APR_ADDTO(CPPFLAGS,-DWIN32)
        OSDIR="win32"
        ac_cv_file__dev_zero="no"
        ac_cv_func_setpgrp_void="no"
        apr_cv_tcp_nodelay_with_cork="no"
        enable_threads="system_threads"
        eolstr="\\n"
+       file_as_socket=0
        proc_mutex_is_global=1
        OBJECTS_PLATFORM='$(OBJECTS_win32)'
        ;;