Mercurial > mplayer.hg
changeset 19458:abb594925154
disable dvdnav if dvdnav-config is not present; patch by Ivo -ivop euronet nl-
author | nicodvb |
---|---|
date | Sun, 20 Aug 2006 11:03:19 +0000 |
parents | 494617fb460b |
children | 6dad4b1efb82 |
files | configure |
diffstat | 1 files changed, 3 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/configure Sun Aug 20 10:31:29 2006 +0000 +++ b/configure Sun Aug 20 11:03:19 2006 +0000 @@ -5163,6 +5163,9 @@ echocheck "DVD support (libdvdnav)" if test "$_dvdnav" = auto ; then + $_dvdnavconfig --version >> $TMPLOG 2>&1 || _dvdnav=no +fi +if test "$_dvdnav" = auto ; then cat > $TMPC <<EOF #include <dvdnav.h> int main(void) { dvdnav_t *dvd=0; return 0; }