[vlc-commits] [Git][videolan/vlc][3.0.x] 2 commits: configure: rectify minimum libdvdnav version

Rémi Denis-Courmont (@Courmisch) gitlab at videolan.org
Sat Jan 15 17:04:45 UTC 2022



Rémi Denis-Courmont pushed to branch 3.0.x at VideoLAN / VLC


Commits:
794d9862 by Rémi Denis-Courmont at 2022-01-15T16:22:32+00:00
configure: rectify minimum libdvdnav version

The current code base won't compile with 5.0.3 or less.

- - - - -
02448d19 by Rémi Denis-Courmont at 2022-01-15T16:22:32+00:00
contribs: rectify minimum libdvdnav version

The current code base won't compile with 5.0.3 or less.

- - - - -


2 changed files:

- configure.ac
- contrib/src/dvdnav/rules.mak


Changes:

=====================================
configure.ac
=====================================
@@ -1880,7 +1880,7 @@ PKG_ENABLE_MODULES_VLC([DVDREAD], [], [dvdread > 4.9.0], [dvdread input module],
 dnl
 dnl libdvdnav plugin
 dnl
-PKG_ENABLE_MODULES_VLC([DVDNAV], [], [dvdnav > 4.9.0], [DVD with navigation input module (dvdnav)], [auto])
+PKG_ENABLE_MODULES_VLC([DVDNAV], [], [dvdnav > 5.0.3], [DVD with navigation input module (dvdnav)], [auto])
 AS_IF([test "${enable_dvdnav}" != "no"], [
   AC_MSG_CHECKING(for dvdnav_stream_cb in dvdnav/dvdnav.h)
     AC_EGREP_HEADER(dvdnav_stream_cb,dvdnav/dvdnav.h,[


=====================================
contrib/src/dvdnav/rules.mak
=====================================
@@ -8,7 +8,7 @@ ifdef GPL
 PKGS += dvdnav
 endif
 endif
-ifeq ($(call need_pkg,"dvdnav >= 5.0.3"),)
+ifeq ($(call need_pkg,"dvdnav > 5.0.3"),)
 PKGS_FOUND += dvdnav
 endif
 



View it on GitLab: https://code.videolan.org/videolan/vlc/-/compare/584bf4f6414daf73adba01fd10f7b0aafdc1330d...02448d19dd7b4965718ffc97faba3a659f356d7b

-- 
View it on GitLab: https://code.videolan.org/videolan/vlc/-/compare/584bf4f6414daf73adba01fd10f7b0aafdc1330d...02448d19dd7b4965718ffc97faba3a659f356d7b
You're receiving this email because of your account on code.videolan.org.




More information about the vlc-commits mailing list