Changeset 550

Show
Ignore:
Timestamp:
05/07/07 19:50:54 (2 years ago)
Author:
plindner
Message:

fix for freebsd 6.x (and perhaps others)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/server/ChangeLog

    r543 r550  
     12007-05-07  Paul Lindner  <lindner@inuus.com> 
     2 
     3        * Fix compilation bug on freebsd 6.x (and maybe others) 
     4 
    152007-05-04  Paul Lindner  <lindner@inuus.com> 
    26 
  • trunk/server/autogen.sh

    r324 r550  
    99 
    1010echo "aclocal..." 
    11 ACLOCAL=${ACLOCAL:-aclocal-1.7} 
    12 $ACLOCAL || aclocal-1.5 || aclocal || exit 1 
     11ACLOCAL=`which aclocal-1.9 || which aclocal19 || which aclocal-1.7 || which aclocal17 || which aclocal-1.5 || which aclocal15 || which aclocal || exit 1` 
     12$ACLOCAL || exit 1 
    1313 
    1414echo "autoheader..." 
  • trunk/server/memcached.h

    r512 r550  
    44#include "config.h" 
    55#include <sys/types.h> 
     6#include <sys/socket.h> 
    67#include <sys/time.h> 
    78#include <netinet/in.h>