mirror of
https://github.com/transmission/transmission
synced 2025-02-11 08:54:55 +00:00
FreeBSD (and presumably NetBSD) also need -lm
This commit is contained in:
parent
ae8ef0dc83
commit
93678d9601
1 changed files with 2 additions and 2 deletions
4
configure
vendored
4
configure
vendored
|
@ -161,12 +161,12 @@ case $SYSTEM in
|
||||||
|
|
||||||
FreeBSD)
|
FreeBSD)
|
||||||
DEFINES="$DEFINES SYS_FREEBSD"
|
DEFINES="$DEFINES SYS_FREEBSD"
|
||||||
LINKLIBS="$LINKLIBS -pthread"
|
LINKLIBS="$LINKLIBS -pthread -lm"
|
||||||
;;
|
;;
|
||||||
|
|
||||||
NetBSD)
|
NetBSD)
|
||||||
DEFINES="$DEFINES SYS_NETBSD"
|
DEFINES="$DEFINES SYS_NETBSD"
|
||||||
LINKLIBS="$LINKLIBS -lpthread"
|
LINKLIBS="$LINKLIBS -lpthread -lm"
|
||||||
;;
|
;;
|
||||||
|
|
||||||
Linux)
|
Linux)
|
||||||
|
|
Loading…
Reference in a new issue