FreeBSD (and presumably NetBSD) also need -lm

This commit is contained in:
Josh Elsasser 2006-01-30 14:28:56 +00:00
parent ae8ef0dc83
commit 93678d9601
1 changed files with 2 additions and 2 deletions

4
configure vendored
View File

@ -161,12 +161,12 @@ case $SYSTEM in
FreeBSD)
DEFINES="$DEFINES SYS_FREEBSD"
LINKLIBS="$LINKLIBS -pthread"
LINKLIBS="$LINKLIBS -pthread -lm"
;;
NetBSD)
DEFINES="$DEFINES SYS_NETBSD"
LINKLIBS="$LINKLIBS -lpthread"
LINKLIBS="$LINKLIBS -lpthread -lm"
;;
Linux)