Skip to content

Commit

Permalink
fix for freebsd 6.x (and perhaps others)
Browse files Browse the repository at this point in the history
git-svn-id: http://code.sixapart.com/svn/memcached/trunk/server@550 b0b603af-a30f-0410-a34e-baf09ae79d0b
  • Loading branch information
lindner committed May 7, 2007
1 parent 275f8c4 commit b65aa2a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
@@ -1,3 +1,7 @@
2007-05-07 Paul Lindner <lindner@inuus.com>

* Fix compilation bug on freebsd 6.x (and maybe others)

2007-05-04 Paul Lindner <lindner@inuus.com>

* Add fedora/redhat style init script and RPM spec file
Expand Down
4 changes: 2 additions & 2 deletions autogen.sh
Expand Up @@ -8,8 +8,8 @@
#

echo "aclocal..."
ACLOCAL=${ACLOCAL:-aclocal-1.7}
$ACLOCAL || aclocal-1.5 || aclocal || exit 1
ACLOCAL=`which aclocal-1.9 || which aclocal19 || which aclocal-1.7 || which aclocal17 || which aclocal-1.5 || which aclocal15 || which aclocal || exit 1`
$ACLOCAL || exit 1

echo "autoheader..."
AUTOHEADER=${AUTOHEADER:-autoheader}
Expand Down
1 change: 1 addition & 0 deletions memcached.h
Expand Up @@ -3,6 +3,7 @@

#include "config.h"
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/time.h>
#include <netinet/in.h>
#include <event.h>
Expand Down

0 comments on commit b65aa2a

Please sign in to comment.