From 5879e2a32b0e336f2761334d57f99c62c25e293d Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Fri, 2 Apr 2010 21:26:40 +0000 Subject: [PATCH] libevent needs librt on Linux, from Aaron Isotton. --- configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index d24df4e5..ca5fe896 100755 --- a/configure +++ b/configure @@ -1,5 +1,5 @@ #!/bin/sh -# $Id: configure,v 1.47 2009-12-11 20:08:18 nicm Exp $ +# $Id: configure,v 1.48 2010-04-02 21:26:40 nicm Exp $ # # Copyright (c) 2009 Nicholas Marriott # @@ -104,7 +104,7 @@ EOF EOF cat <>$CONFIG_MK CFLAGS+= -std=c99 -D_GNU_SOURCE -D_POSIX_SOURCE -LIBS+= -lncurses -lcrypt -lutil -levent +LIBS+= -lncurses -lcrypt -lutil -levent -lrt SRCS+= osdep-linux.c \ compat/fgetln.c \ compat/strlcat.c \