mirror of
https://github.com/transmission/transmission
synced 2025-03-04 10:38:13 +00:00
fix some minor broken autoconf defines
This commit is contained in:
parent
c3e87bc4ea
commit
f55c6ab714
1 changed files with 9 additions and 3 deletions
12
configure.ac
12
configure.ac
|
@ -220,9 +220,15 @@ AC_ARG_ENABLE([daemon],
|
|||
AM_CONDITIONAL([BUILD_DAEMON],[test "x$build_daemon" = "xyes"])
|
||||
|
||||
|
||||
AC_DEFINE([HAVE_BEOS],[test "x$have_beos" = "xyes"])
|
||||
AC_DEFINE([HAVE_DARWIN],[test "x$have_darwin" = "xyes"])
|
||||
AC_DEFINE([HAVE_WINDOWS],[test "x$have_msw" = "xyes"])
|
||||
if test "x$have_beos" = "xyes"; then
|
||||
AC_DEFINE([HAVE_BEOS], 1)
|
||||
fi
|
||||
if test "x$have_darwin" = "xyes"; then
|
||||
AC_DEFINE([HAVE_DARWIN], 1)
|
||||
fi
|
||||
if test "x$have_msw" = "xyes"; then
|
||||
AC_DEFINE([HAVE_MSW], 1)
|
||||
fi
|
||||
|
||||
|
||||
dnl ----------------------------------------------------------------------------
|
||||
|
|
Loading…
Add table
Reference in a new issue