summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYuichiro NAITO <[email protected]>2017-12-25 16:05:25 +0900
committerBradley Sepos <[email protected]>2018-01-13 00:03:38 -0500
commit2efdc087baa27bee28c7d48d69b1a96ca1e1ecda (patch)
tree5443f945ca4ef81e703fb174dc7d262a80b74595
parent1118856c17cc4c1a7df2f88a2362c2bb02ebfdd4 (diff)
gtk: libdl is not needed for FreeBSD.
-rw-r--r--gtk/configure.ac3
1 files changed, 3 insertions, 0 deletions
diff --git a/gtk/configure.ac b/gtk/configure.ac
index ebe42e142..9d4a5719f 100644
--- a/gtk/configure.ac
+++ b/gtk/configure.ac
@@ -184,6 +184,9 @@ case $host in
fi
HB_LIBS="$HB_LIBS -lregex -luuid"
;;
+ *-*-freebsd*)
+ HB_LIBS="$HB_LIBS -lpthread"
+ ;;
*)
HB_LIBS="$HB_LIBS -ldl -lpthread"
;;