Changeset 1676

Show
Ignore:
Timestamp:
02/20/2007 05:08:32 PM (18 months ago)
Author:
darix
Message:

- properly ifdef for dragonflybsd. this should be the last missing chunk

patch by Jörg Sonnenberger

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/lighttpd-1.4.x/src/network_writev.c

    r1383 r1676  
    5656#elif defined(UIO_MAXIOV) /* Linux x86 (glibc-2.2.5-233) */ 
    5757                        const size_t max_chunks = UIO_MAXIOV; 
    58 #elif (defined(__FreeBSD__) && __FreeBSD_version < 500000) /* FreeBSD 4.x */ 
     58#elif (defined(__FreeBSD__) && __FreeBSD_version < 500000) || defined(__DragonFly__) /* FreeBSD 4.x */ 
    5959                        const size_t max_chunks = 1024; /* UIO_MAXIOV value from sys/uio.h */ 
    6060#else