mirror of
https://git.freebsd.org/ports.git
synced 2025-06-28 16:10:33 -04:00
19 lines
411 B
Text
19 lines
411 B
Text
--- configure.ac.orig 2014-08-14 15:48:58 UTC
|
|
+++ configure.ac
|
|
@@ -68,6 +68,16 @@ fi
|
|
AM_CONDITIONAL([MACOS], [test "$bmac" = "yes"])
|
|
AC_SUBST(MACOS)
|
|
|
|
+AC_MSG_CHECKING(for BSD)
|
|
+
|
|
+if test `uname | grep -e BSD -e DragonFly | wc -l` = "1"; then
|
|
+ bbsd=true
|
|
+ AC_MSG_RESULT(compile in BSD)
|
|
+fi
|
|
+
|
|
+AM_CONDITIONAL([BSD], [test "$bbsd" = "true"])
|
|
+AC_SUBST(BSD)
|
|
+
|
|
# Checks for libraries.
|
|
|
|
GLIB_REQUIRED=2.26.0
|