Skip to content

Commit

Permalink
configure: Check for dmgbuild on macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
ePirat committed Feb 25, 2017
1 parent 4da07f2 commit 5074dc0
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -3902,6 +3902,18 @@ then
VLC_ADD_PLUGIN([minimal_macosx])
fi

dnl
dnl Mac OS X fancy dmg build tool
dnl
if test "${HAVE_OSX}" = "1"
then
AC_PATH_PROG(DMGBUILD, dmgbuild, no)
AS_IF([test "x${DMGBUILD}" = "xno"], [
AC_MSG_WARN([dmgbuild not found -- unable to build fancy DMGs])
])
AM_CONDITIONAL(HAVE_DMGBUILD, [test "x$DMGBUILD" != "xno"])
fi

dnl
dnl VideoToolbox plugins
AC_CHECK_HEADERS(VideoToolbox/VideoToolbox.h, [
Expand Down

0 comments on commit 5074dc0

Please sign in to comment.