You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by mt...@apache.org on 2005/07/08 11:08:24 UTC

svn commit: r209721 - /apr/apr/trunk/include/arch/win32/apr_arch_networkio.h

Author: mturk
Date: Fri Jul  8 02:08:21 2005
New Revision: 209721

URL: http://svn.apache.org/viewcvs?rev=209721&view=rev
Log:
Actually implement the multicast on the WIN32.
HAVE_STRUCT_IPMREQ was missing from WIN32 definitions,
so although the multicast.c was added, code was
never compiled in.

Modified:
    apr/apr/trunk/include/arch/win32/apr_arch_networkio.h

Modified: apr/apr/trunk/include/arch/win32/apr_arch_networkio.h
URL: http://svn.apache.org/viewcvs/apr/apr/trunk/include/arch/win32/apr_arch_networkio.h?rev=209721&r1=209720&r2=209721&view=diff
==============================================================================
--- apr/apr/trunk/include/arch/win32/apr_arch_networkio.h (original)
+++ apr/apr/trunk/include/arch/win32/apr_arch_networkio.h Fri Jul  8 02:08:21 2005
@@ -63,6 +63,9 @@
     char FAR *  buf;     /* the pointer to the buffer */
 } WSABUF, FAR * LPWSABUF;
 #endif
+#else
+/* Not sure if this is the right place to define this */
+#define HAVE_STRUCT_IPMREQ
 #endif
 
 apr_status_t status_from_res_error(int);



Re: svn commit: r209721 - /apr/apr/trunk/include/arch/win32/apr_arch_networkio.h

Posted by Mladen Turk <mt...@apache.org>.
William A. Rowe, Jr. wrote:
> Let's not create a half dozen dbd .dsp flavors.
>

Right.
Seems I've overlooked the fact that the basic 'provided'
drivers can be used in static mode.

Anyhow, I've added all apr_dbd_* to the windows build.
I have even tried to enable the SQLITE3 and it works
perfectly :)


Regards,
Mladen.

Re: svn commit: r209721 - /apr/apr/trunk/include/arch/win32/apr_arch_networkio.h

Posted by "William A. Rowe, Jr." <wr...@rowe-clan.net>.
Let's not create a half dozen dbd .dsp flavors.

It seems the time is long past for a minimal configure.bat.  
I'll hack it together this weekend for win32 so we can at
least;

  * choose NT-only (no win9x foo at all)

  * choose apr_iconv, an external iconv, or not.

  * choose an external expat

  * choose dbd backends

  * openssl hashing/randomness or apr's 
    (more news on that in a week)

  * other thoughts?

Bill

At 04:33 AM 7/8/2005, Mladen Turk wrote:
>Paul Querna wrote:
>> mturk@apache.org wrote:
>>
>> I dont suppose anyone has
>> compiled the newer APR-Util DBD code on windows yet?
>>
>
>Well, it compiles fine, but seems that it needs three
>additional projects for each driver .dll correct?
>
>Anyhow, I'll add the apr_dbd.c to the apr-util .dsp's.
>Actual drivers will need a separate project files thought.
>
>Regards,
>Mladen.



Re: svn commit: r209721 - /apr/apr/trunk/include/arch/win32/apr_arch_networkio.h

Posted by Mladen Turk <mt...@apache.org>.
Paul Querna wrote:
 > mturk@apache.org wrote:
 >
 > I dont suppose anyone has
 > compiled the newer APR-Util DBD code on windows yet?
 >

Well, it compiles fine, but seems that it needs three
additional projects for each driver .dll correct?

Anyhow, I'll add the apr_dbd.c to the apr-util .dsp's.
Actual drivers will need a separate project files thought.

Regards,
Mladen.

Re: svn commit: r209721 - /apr/apr/trunk/include/arch/win32/apr_arch_networkio.h

Posted by Paul Querna <ch...@force-elite.com>.
mturk@apache.org wrote:

>Author: mturk
>Date: Fri Jul  8 02:08:21 2005
>New Revision: 209721
>
>URL: http://svn.apache.org/viewcvs?rev=209721&view=rev
>Log:
>Actually implement the multicast on the WIN32.
>HAVE_STRUCT_IPMREQ was missing from WIN32 definitions,
>so although the multicast.c was added, code was
>never compiled in.
>  
>

Thanks for working on this.  Since the multicast code has been in there 
for 6 months, and never been compiled, I dont suppose anyone has 
compiled the newer APR-Util DBD code on windows yet?

-Paul