diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2010-04-02 21:26:40 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2010-04-02 21:26:40 +0000 |
commit | 5879e2a32b0e336f2761334d57f99c62c25e293d (patch) | |
tree | 2328d65191faa697ba6bea62e700f4d945b99969 | |
parent | 1392fba63dfb9f5449a497ec7f8038d45beb8ad5 (diff) | |
download | rtmux-5879e2a32b0e336f2761334d57f99c62c25e293d.tar.gz rtmux-5879e2a32b0e336f2761334d57f99c62c25e293d.tar.bz2 rtmux-5879e2a32b0e336f2761334d57f99c62c25e293d.zip |
libevent needs librt on Linux, from Aaron Isotton.
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 <nicm@users.sourceforge.net> # @@ -104,7 +104,7 @@ EOF EOF cat <<EOF >>$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 \ |