From 7a4632411e4f5d3cf4275a43c64917d66f26dd04 Mon Sep 17 00:00:00 2001 From: Eric Petit Date: Wed, 28 Jul 2004 10:48:44 +0000 Subject: [PATCH] configure.ac: fix dvdnav linking on beos/os x/win32 (hacky) --- configure.ac | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/configure.ac b/configure.ac index e11801dbff..fcceb485ca 100644 --- a/configure.ac +++ b/configure.ac @@ -1339,6 +1339,11 @@ AC_ARG_ENABLE(dvdnav, [ --enable-dvdnav dvdnav input module (default enabled)]) if test "${enable_dvdnav}" != "no" then + dnl Same hack than dvdread + if test "${SYS}" = "mingw32" || test "${SYS}" = "darwin" || test "${SYS}" = "beos" ; then + VLC_ADD_LDFLAGS([dvdnav],[-ldvdcss]) + fi + DVDNAV_PATH="${PATH}" AC_ARG_WITH(dvdnav-config-path, [ --with-dvdnav-config-path=PATH dvdnav-config path (default search in \$PATH)], -- 2.39.2