Commit 62ffd1a0 authored by Sam Hocevar's avatar Sam Hocevar

  * ./vlc.spec: fixed build dependencies.
  * ./configure.in: when -lintl is available, we now also link plugins with it.
parent 3eb0086e
...@@ -9,6 +9,8 @@ HEAD ...@@ -9,6 +9,8 @@ HEAD
0.3.1 0.3.1
Thu, 18 Apr 2002 06:43:42 +0200 Thu, 18 Apr 2002 06:43:42 +0200
* ./vlc.spec: fixed build dependencies.
* ./configure.in: when -lintl is available, we now also link plugins with it.
* ./include/threads.h: fixed a segfault under Solaris, thanks to Meuuh. * ./include/threads.h: fixed a segfault under Solaris, thanks to Meuuh.
* ./plugins/spudec/spu_decoder.c: RGB 24bpp and 32bpp support. * ./plugins/spudec/spu_decoder.c: RGB 24bpp and 32bpp support.
* ./configure.in: switched version to 0.3.1. * ./configure.in: switched version to 0.3.1.
......
...@@ -3901,7 +3901,7 @@ LIBS="$ac_save_LIBS" ...@@ -3901,7 +3901,7 @@ LIBS="$ac_save_LIBS"
fi fi
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
echo "$ac_t""yes" 1>&6 echo "$ac_t""yes" 1>&6
vlc_LDFLAGS="${vlc_LDFLAGS} -lintl" save_LDFLAGS="${save_LDFLAGS} -lintl"
else else
echo "$ac_t""no" 1>&6 echo "$ac_t""no" 1>&6
fi fi
......
...@@ -133,7 +133,7 @@ AC_CHECK_FUNC(inet_aton,,[ ...@@ -133,7 +133,7 @@ AC_CHECK_FUNC(inet_aton,,[
AC_CHECK_LIB(resolv,inet_aton,ipv4_LDFLAGS="${ipv4_LDFLAGS} -lresolv") AC_CHECK_LIB(resolv,inet_aton,ipv4_LDFLAGS="${ipv4_LDFLAGS} -lresolv")
]) ])
AC_CHECK_FUNC(textdomain,,[ AC_CHECK_FUNC(textdomain,,[
AC_CHECK_LIB(intl,textdomain,vlc_LDFLAGS="${vlc_LDFLAGS} -lintl") AC_CHECK_LIB(intl,textdomain,save_LDFLAGS="${save_LDFLAGS} -lintl")
]) ])
dnl Check for getopt dnl Check for getopt
......
...@@ -38,7 +38,8 @@ Buildrequires: libarts-devel ...@@ -38,7 +38,8 @@ Buildrequires: libarts-devel
Buildrequires: libggi-devel Buildrequires: libggi-devel
Buildrequires: aalib-devel Buildrequires: aalib-devel
Buildrequires: SDL-devel Buildrequires: SDL-devel
Buildrequires: liba52-devel Buildrequires: liba52dec-devel
Buildrequires: libmad-devel
%description %description
VideoLAN is a free network-aware MPEG and DVD player. VideoLAN is a free network-aware MPEG and DVD player.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment