Changeset 4945d2bb3621b899aca49359c435d0dcfcc2ec1b

Show
Ignore:
Timestamp:
27/07/01 16:43:30 (7 years ago)
Author:
Sam Hocevar <sam@videolan.org>
git-committer:
Sam Hocevar <sam@videolan.org> 996245010 +0000
git-parent:

[16c530705f597ed19608c7d8edf9d4c003cd5691]

git-author:
Sam Hocevar <sam@videolan.org> 996245010 +0000
Message:
  • Updated version numbers for imminent release.
  • Fixed the --with-dvdcss flag:

o --with-dvdcss - build libdvdcss, link statically (also default behaviour)
o --with-dvdcss=local-static - build libdvdcss, link statically
o --with-dvdcss=local-shared - build libdvdcss, link dynamically
o --with-dvdcss=/foo/bar - don't build libdvdcss, use libdvdcss in /foo/bar

  • Fixed an omission in the dvdcss.h header.
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • ChangeLog

    r5bcfa0f r4945d2b  
    44 
    55HEAD 
     6  * Nothing yet. 
     7 
     80.2.81 
     9Fri, 27 Jul 2001 03:30:44 +0200 
     10 
     11  * Changed libdvdcss API to force binary incompatibility. Yeah, this is 
     12    evil, but if we don't do it now we'll have to do it when more people 
     13    are using it. 
     14  * Fixed minor libdvdcss stuff such as the soname and compilation flags. 
     15  * New --with-dvdcss flag. 
     16  * Fixed a bug in aout spdif with dolby stereo (use of obsolete PTS). 
     17  * Format asm functions for gcc, fixed the segfaults with imdct_sse. 
     18  * Now using gcc -pipe. 
     19  * (Hopefully) fixed the #@!$ field pictures bug. 
     20  * Fixed the MMX YUV plugin issues with gcc 2.96 and 3.0. 
     21  * Updated TODO, cosmetic changes. 
     22  * Now use sdl-config for SDL. 
     23  * Fixed a stupid bug in buffer management with field pictures. 
     24  * Fixed a reinit bug after a discontinuity - such as seek(). 
     25  * The spdif audio output won't kill itself anymore at the beginning. 
    626  * dvdcss_readv() optimisations for Win32. 
    727  * Fixed _win32_dvdcss_aread() to work around the WinASPI32 64kb transfer 
     
    1131  * Fixed the "quit" event handling in directx/vout_events.c. 
    1232  * Temporarily disabled aout_Probe() in aout_SDL (libSDL bug). 
     33  * ncurses compilation fix by Michael Mondragon <mammon@lokmail.net>. 
     34  * Fix for large inline functions and gcc 3.0. 
     35  * Fixed the gnome plugin so that it does not include gtk headers. 
    1336  * libdvdcss segfault fixes. 
    1437  * Tuned constants, since it seems to make people happy. 
  • configure

    r76fcb7f r4945d2b  
    3131  --enable-pth            Enable GNU Pth support (default disabled)" 
    3232ac_help="$ac_help 
    33   --with-dvdcss[=name]    use another libdvdcss (default is local one)" 
     33  --with-dvdcss[=name]    way to use libdvdcss, either local-static, local-shared or a path to another libdvdcss such as /usr/local (default local-static)" 
    3434ac_help="$ac_help 
    3535  --disable-css           Disable DVD CSS decryption (default enabled)" 
     
    635635 
    636636 
    637 VLC_VERSION=0.2.80 
    638  
    639 LIBDVDCSS_VERSION=0.0.1 
     637VLC_VERSION=0.2.81 
     638 
     639LIBDVDCSS_VERSION=0.0.2 
    640640 
    641641VLC_CODENAME=Ourumov 
     
    37473747if test "${with_dvdcss+set}" = set; then 
    37483748  withval="$with_dvdcss" 
    3749    if test "x$withval" == "xno" 
    3750     then 
    3751       # local libdvdcss 
     3749   case "x${withval}" in 
     3750    xlocal-static|xyes) 
     3751      # local libdvdcss, statically linked 
     3752      if test x${CAN_BUILD_LIBDVDCSS} = x1 
     3753      then 
     3754        LOCAL_LIBDVDCSS=1 
     3755        STATIC_LIBDVDCSS=1 
     3756        BUILTINS="${BUILTINS} dvd" 
     3757        CFLAGS_DVD="${CFLAGS_DVD} -I../../extras/libdvdcss" 
     3758        LIB_DVD="${LIB_DVD} lib/libdvdcss.a" 
     3759        LIB_DVD_PLUGIN="${LIB_DVD_PLUGIN} ../../lib/libdvdcss.a" 
     3760      fi 
     3761    ;; 
     3762    xlocal-shared) 
     3763      # local libdvdcss, dynamically linked 
    37523764      if test x${CAN_BUILD_LIBDVDCSS} = x1 
    37533765      then 
     
    37583770        LIB_DVD_PLUGIN="${LIB_DVD_PLUGIN} -L../../lib -ldvdcss" 
    37593771      fi 
    3760     else 
     3772    ;; 
     3773    *) 
    37613774      # existing libdvdcss 
    37623775      BUILTINS="${BUILTINS} dvd" 
     
    37683781      LIB_DVD="${LIB_DVD} -ldvdcss" 
    37693782      LIB_DVD_PLUGIN="${LIB_DVD_PLUGIN} -ldvdcss" 
    3770     fi  
     3783    esac  
    37713784else 
    37723785  # user didn't decide, we choose to use local libdvdcss and link statically 
     
    38713884set dummy esd-config; ac_word=$2 
    38723885echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    3873 echo "configure:3874: checking for $ac_word" >&5 
     3886echo "configure:3887: checking for $ac_word" >&5 
    38743887if eval "test \"`echo '$''{'ac_cv_path_ESD_CONFIG'+set}'`\" = set"; then 
    38753888  echo $ac_n "(cached) $ac_c" 1>&6 
     
    39383951ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 
    39393952echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 
    3940 echo "configure:3941: checking for $ac_hdr" >&5 
     3953echo "configure:3954: checking for $ac_hdr" >&5 
    39413954if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 
    39423955  echo $ac_n "(cached) $ac_c" 1>&6 
    39433956else 
    39443957  cat > conftest.$ac_ext <<EOF 
    3945 #line 3946 "configure" 
     3958#line 3959 "configure" 
    39463959#include "confdefs.h" 
    39473960#include <$ac_hdr> 
    39483961EOF 
    39493962ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 
    3950 { (eval echo configure:3951: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
     3963{ (eval echo configure:3964: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
    39513964ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
    39523965if test -z "$ac_err"; then 
     
    39934006ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 
    39944007echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 
    3995 echo "configure:3996: checking for $ac_hdr" >&5 
     4008echo "configure:4009: checking for $ac_hdr" >&5 
    39964009if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 
    39974010  echo $ac_n "(cached) $ac_c" 1>&6 
    39984011else 
    39994012  cat > conftest.$ac_ext <<EOF 
    4000 #line 4001 "configure" 
     4013#line 4014 "configure" 
    40014014#include "confdefs.h" 
    40024015#include <$ac_hdr> 
    40034016EOF 
    40044017ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 
    4005 { (eval echo configure:4006: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
     4018{ (eval echo configure:4019: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
    40064019ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
    40074020if test -z "$ac_err"; then 
     
    40804093set dummy sdl-config; ac_word=$2 
    40814094echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    4082 echo "configure:4083: checking for $ac_word" >&5 
     4095echo "configure:4096: checking for $ac_word" >&5 
    40834096if eval "test \"`echo '$''{'ac_cv_path_SDL_CONFIG'+set}'`\" = set"; then 
    40844097  echo $ac_n "(cached) $ac_c" 1>&6 
     
    41184131set dummy sdl11-config; ac_word=$2 
    41194132echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    4120 echo "configure:4121: checking for $ac_word" >&5 
     4133echo "configure:4134: checking for $ac_word" >&5 
    41214134if eval "test \"`echo '$''{'ac_cv_path_SDL_CONFIG'+set}'`\" = set"; then 
    41224135  echo $ac_n "(cached) $ac_c" 1>&6 
     
    41574170set dummy sdl12-config; ac_word=$2 
    41584171echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    4159 echo "configure:4160: checking for $ac_word" >&5 
     4172echo "configure:4173: checking for $ac_word" >&5 
    41604173if eval "test \"`echo '$''{'ac_cv_path_SDL_CONFIG'+set}'`\" = set"; then 
    41614174  echo $ac_n "(cached) $ac_c" 1>&6 
     
    41974210ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 
    41984211echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 
    4199 echo "configure:4200: checking for $ac_hdr" >&5 
     4212echo "configure:4213: checking for $ac_hdr" >&5 
    42004213if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 
    42014214  echo $ac_n "(cached) $ac_c" 1>&6 
    42024215else 
    42034216  cat > conftest.$ac_ext <<EOF 
    4204 #line 4205 "configure" 
     4217#line 4218 "configure" 
    42054218#include "confdefs.h" 
    42064219#include <$ac_hdr> 
    42074220EOF 
    42084221ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 
    4209 { (eval echo configure:4210: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
     4222{ (eval echo configure:4223: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
    42104223ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
    42114224if test -z "$ac_err"; then 
     
    42674280ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 
    42684281echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 
    4269 echo "configure:4270: checking for $ac_hdr" >&5 
     4282echo "configure:4283: checking for $ac_hdr" >&5 
    42704283if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 
    42714284  echo $ac_n "(cached) $ac_c" 1>&6 
    42724285else 
    42734286  cat > conftest.$ac_ext <<EOF 
    4274 #line 4275 "configure" 
     4287#line 4288 "configure" 
    42754288#include "confdefs.h" 
    42764289#include <$ac_hdr> 
    42774290EOF 
    42784291ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 
    4279 { (eval echo configure:4280: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
     4292{ (eval echo configure:4293: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
    42804293ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
    42814294if test -z "$ac_err"; then 
     
    43154328ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 
    43164329echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 
    4317 echo "configure:4318: checking for $ac_hdr" >&5 
     4330echo "configure:4331: checking for $ac_hdr" >&5 
    43184331if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 
    43194332  echo $ac_n "(cached) $ac_c" 1>&6 
    43204333else 
    43214334  cat > conftest.$ac_ext <<EOF 
    4322 #line 4323 "configure" 
     4335#line 4336 "configure" 
    43234336#include "confdefs.h" 
    43244337#include <$ac_hdr> 
    43254338EOF 
    43264339ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 
    4327 { (eval echo configure:4328: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
     4340{ (eval echo configure:4341: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
    43284341ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
    43294342if test -z "$ac_err"; then 
     
    44294442set dummy gtk-config; ac_word=$2 
    44304443echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    4431 echo "configure:4432: checking for $ac_word" >&5 
     4444echo "configure:4445: checking for $ac_word" >&5 
    44324445if eval "test \"`echo '$''{'ac_cv_path_GTK_CONFIG'+set}'`\" = set"; then 
    44334446  echo $ac_n "(cached) $ac_c" 1>&6 
     
    44894502ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 
    44904503echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 
    4491 echo "configure:4492: checking for $ac_hdr" >&5 
     4504echo "configure:4505: checking for $ac_hdr" >&5 
    44924505if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 
    44934506  echo $ac_n "(cached) $ac_c" 1>&6 
    44944507else 
    44954508  cat > conftest.$ac_ext <<EOF 
    4496 #line 4497 "configure" 
     4509#line 4510 "configure" 
    44974510#include "confdefs.h" 
    44984511#include <$ac_hdr> 
    44994512EOF 
    45004513ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 
    4501 { (eval echo configure:4502: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
     4514{ (eval echo configure:4515: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
    45024515ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
    45034516if test -z "$ac_err"; then 
     
    45514564ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 
    45524565echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 
    4553 echo "configure:4554: checking for $ac_hdr" >&5 
     4566echo "configure:4567: checking for $ac_hdr" >&5 
    45544567if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 
    45554568  echo $ac_n "(cached) $ac_c" 1>&6 
    45564569else 
    45574570  cat > conftest.$ac_ext <<EOF 
    4558 #line 4559 "configure" 
     4571#line 4572 "configure" 
    45594572#include "confdefs.h" 
    45604573#include <$ac_hdr> 
    45614574EOF 
    45624575ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 
    4563 { (eval echo configure:4564: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
     4576{ (eval echo configure:4577: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
    45644577ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
    45654578if test -z "$ac_err"; then 
     
    45974610if test "${enable_alsa+set}" = set; then 
    45984611  enableval="$enable_alsa" 
    4599   if test x$enable_alsa = xyes; then ac_safe=`echo "sys/asoundlib.h" | sed 'y%./+-%__p_%'` 
     4612  if test x$enable_alsa = xyes 
     4613   then 
     4614     ac_safe=`echo "sys/asoundlib.h" | sed 'y%./+-%__p_%'` 
    46004615echo $ac_n "checking for sys/asoundlib.h""... $ac_c" 1>&6 
    4601 echo "configure:4602: checking for sys/asoundlib.h" >&5 
     4616echo "configure:4617: checking for sys/asoundlib.h" >&5 
    46024617if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 
    46034618  echo $ac_n "(cached) $ac_c" 1>&6 
    46044619else 
    46054620  cat > conftest.$ac_ext <<EOF 
    4606 #line 4607 "configure" 
     4621#line 4622 "configure" 
    46074622#include "confdefs.h" 
    46084623#include <sys/asoundlib.h> 
    46094624EOF 
    46104625ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 
    4611 { (eval echo configure:4612: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
     4626{ (eval echo configure:4627: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
    46124627ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
    46134628if test -z "$ac_err"; then 
     
    46264641  echo "$ac_t""yes" 1>&6 
    46274642  echo $ac_n "checking for main in -lasound""... $ac_c" 1>&6 
    4628 echo "configure:4629: checking for main in -lasound" >&5 
     4643echo "configure:4644: checking for main in -lasound" >&5 
    46294644ac_lib_var=`echo asound'_'main | sed 'y%./+-%__p_%'` 
    46304645if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    46344649LIBS="-lasound  $LIBS" 
    46354650cat > conftest.$ac_ext <<EOF 
    4636 #line 4637 "configure" 
     4651#line 4652 "configure" 
    46374652#include "confdefs.h" 
    46384653 
     
    46414656; return 0; } 
    46424657EOF 
    4643 if { (eval echo configure:4644: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     4658if { (eval echo configure:4659: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    46444659  rm -rf conftest* 
    46454660  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    46664681have_alsa="false" 
    46674682fi 
    4668  if test x$have_alsa = xtrue; then 
    4669      PLUGINS="${PLUGINS} alsa" 
    4670      LIB_ALSA="-lasound" 
    4671    fi; fi 
     4683 
     4684     if test x$have_alsa = xtrue 
     4685     then 
     4686       PLUGINS="${PLUGINS} alsa" 
     4687       LIB_ALSA="-lasound" 
     4688     fi 
     4689   fi 
    46724690fi 
    46734691 
  • configure.in

    r76fcb7f r4945d2b  
    1 dnl Autoconf settings for vlc 
     1dnl Autoconf settings for vlc and libdvdcss 
    22AC_INIT(include/main.h) 
    33AC_CONFIG_HEADER(include/defs.h) 
     
    55AC_CANONICAL_HOST 
    66 
    7 VLC_VERSION=0.2.80 
     7VLC_VERSION=0.2.81 
    88AC_SUBST(VLC_VERSION) 
    9 LIBDVDCSS_VERSION=0.0.1 
     9LIBDVDCSS_VERSION=0.0.2 
    1010AC_SUBST(LIBDVDCSS_VERSION) 
    1111VLC_CODENAME=Ourumov 
     
    323323STATIC_LIBDVDCSS=0 
    324324AC_ARG_WITH(dvdcss, 
    325   [  --with-dvdcss[=name]    use another libdvdcss (default is local one)], 
    326   [ if test "x$withval" == "xno" 
    327     then 
    328       # local libdvdcss 
     325  [  --with-dvdcss[=name]    way to use libdvdcss, either local-static, local-shared or a path to another libdvdcss such as /usr/local (default local-static)], 
     326  [ case "x${withval}" in 
     327    xlocal-static|xyes) 
     328      # local libdvdcss, statically linked 
     329      if test x${CAN_BUILD_LIBDVDCSS} = x1 
     330      then 
     331        LOCAL_LIBDVDCSS=1 
     332        STATIC_LIBDVDCSS=1 
     333        BUILTINS="${BUILTINS} dvd" 
     334        CFLAGS_DVD="${CFLAGS_DVD} -I../../extras/libdvdcss" 
     335        LIB_DVD="${LIB_DVD} lib/libdvdcss.a" 
     336        LIB_DVD_PLUGIN="${LIB_DVD_PLUGIN} ../../lib/libdvdcss.a" 
     337      fi 
     338    ;; 
     339    xlocal-shared) 
     340      # local libdvdcss, dynamically linked 
    329341      if test x${CAN_BUILD_LIBDVDCSS} = x1 
    330342      then 
     
    335347        LIB_DVD_PLUGIN="${LIB_DVD_PLUGIN} -L../../lib -ldvdcss" 
    336348      fi 
    337     else 
     349    ;; 
     350    *) 
    338351      # existing libdvdcss 
    339352      BUILTINS="${BUILTINS} dvd" 
     
    345358      LIB_DVD="${LIB_DVD} -ldvdcss" 
    346359      LIB_DVD_PLUGIN="${LIB_DVD_PLUGIN} -ldvdcss" 
    347     fi ], 
     360    esac ], 
    348361  # user didn't decide, we choose to use local libdvdcss and link statically 
    349362  [ if test x${CAN_BUILD_LIBDVDCSS} = x1 
     
    705718AC_ARG_ENABLE(alsa, 
    706719  [  --enable-alsa           Alsa sound drivers support (Only for linux) (default disabled)], 
    707   [if test x$enable_alsa = xyes; then AC_CHECK_HEADER(sys/asoundlib.h, AC_CHECK_LIB(asound, main, have_alsa="true", have_alsa="false"),have_alsa="false") if test x$have_alsa = xtrue; then 
    708      PLUGINS="${PLUGINS} alsa" 
    709      LIB_ALSA="-lasound" 
    710    fi; fi]) 
     720  [if test x$enable_alsa = xyes 
     721   then 
     722     AC_CHECK_HEADER(sys/asoundlib.h, AC_CHECK_LIB(asound, main, have_alsa="true", have_alsa="false"),have_alsa="false") 
     723     if test x$have_alsa = xtrue 
     724     then 
     725       PLUGINS="${PLUGINS} alsa" 
     726       LIB_ALSA="-lasound" 
     727     fi 
     728   fi]) 
    711729 
    712730dnl  end of non-BeOS stuff 
  • debian/changelog

    r8dee123 r4945d2b  
     1vlc (0.2.81-1) unstable; urgency=low 
     2 
     3  * New upstream release. 
     4 
     5 -- Samuel Hocevar <sam@zoy.org>  Fri, 27 Jul 2001 03:30:44 +0200 
     6 
    17vlc (0.2.80-1) unstable; urgency=low 
    28 
  • debian/changelog-css

    r8dee123 r4945d2b  
     1vlc-css (0.2.81-1) unstable; urgency=low 
     2 
     3  * New upstream release. 
     4 
     5 -- Samuel Hocevar <sam@zoy.org>  Fri, 27 Jul 2001 03:30:44 +0200 
     6 
    17vlc-css (0.2.80-1) unstable; urgency=low 
    28 
  • debian/control

    r4b92161 r4945d2b  
    33Priority: optional 
    44Maintainer: Samuel Hocevar <sam@zoy.org> 
    5 Build-Depends: debhelper (>=2.2.0), xlib6g-dev, libgnome-dev, libggi2-dev, libglide3-dev [i386], libesd0-dev, libsdl1.2-dev, libqt-dev, libasound2-dev 
     5Build-Depends: debhelper (>=2.2.0), xlibs-dev, libgnome-dev, libggi2-dev, libglide3-dev [i386], libesd0-dev, libsdl1.2-dev, libqt-dev, libasound1-dev 
    66Standards-Version: 3.0.1 
    77 
     
    4545 vlc, the VideoLAN Client. 
    4646 
    47 Package: vlc-alsa 
    48 Architecture: any 
    49 Depends: vlc (= ${Source-Version}), ${shlibs:Depends} 
    50 Description: ALSA plugin for vlc 
    51  VideoLAN is a free MPEG, MPEG2 and DVD software solution. 
    52  . 
    53  This plugin adds support for the Advanced Linux Sound Architecture to 
    54  vlc, the VideoLAN Client. 
    55  
    5647Package: vlc-sdl 
    5748Architecture: any 
  • debian/rules

    r440f999 r4945d2b  
    1818        --infodir=\$${prefix}/share/info \ 
    1919        --enable-gnome --enable-gtk --enable-fb --with-glide \ 
    20         --with-ggi --with-sdl --enable-esd --enable-alsa
     20        --with-ggi --with-sdl --enable-esd
    2121        --enable-qt --disable-ppro ; \ 
    2222    else \ 
     
    2525        --infodir=\$${prefix}/share/info \ 
    2626        --enable-gnome --enable-gtk --enable-fb \ 
    27         --with-ggi --with-sdl --enable-esd --enable-alsa
     27        --with-ggi --with-sdl --enable-esd
    2828        --enable-qt ; \ 
    2929    fi 
     
    5050    DESTDIR=`pwd`/debian/vlc/ $(MAKE) install prefix=/usr 
    5151 
     52    # get rid of libdvdcss for the moment 
     53    rm -f debian/vlc/usr/lib/libdvdcss* 
     54    rm -Rf debian/vlc/usr/include 
     55 
    5256    # make symlinks for packages 
    53     aliases="ggi gtk gnome esd sdl qt alsa" ; \ 
     57    aliases="ggi gtk gnome esd sdl qt" ; \ 
    5458    if [ $(DEB_BUILD_ARCH) = i386 ]; then aliases=$$aliases" glide" ; fi ; \ 
    5559    for alias in `echo $$aliases` ; do \ 
     
    124128#   dh_installinit 
    125129    #dh_installcron 
    126 #   dh_installmanpages -Nvlc-gnome -Nvlc-gtk -Nvlc-ggi -Nvlc-glide -Nvlc-esd -Nvlc-alsa -Nvlc-sdl -Nvlc-qt doc/vlc.1 
     130#   dh_installmanpages -Nvlc-gnome -Nvlc-gtk -Nvlc-ggi -Nvlc-glide -Nvlc-esd -Nvlc-sdl -Nvlc-qt doc/vlc.1 
    127131    #dh_installinfo 
    128132#   dh_undocumented 
    129     dh_installchangelogs -Nvlc-gnome -Nvlc-gtk -Nvlc-ggi -Nvlc-glide -Nvlc-esd -Nvlc-alsa -Nvlc-sdl -Nvlc-qt 
     133    dh_installchangelogs -Nvlc-gnome -Nvlc-gtk -Nvlc-ggi -Nvlc-glide -Nvlc-esd -Nvlc-sdl -Nvlc-qt 
    130134    dh_link 
    131135    dh_strip 
  • extras/libdvdcss/videolan/dvdcss.h

    ra50a0a2 r4945d2b  
    33 ***************************************************************************** 
    44 * Copyright (C) 1998-2001 VideoLAN 
    5  * $Id: dvdcss.h,v 1.4 2001/07/11 02:01:03 sam Exp $ 
     5 * $Id: dvdcss.h,v 1.5 2001/07/27 14:43:30 sam Exp $ 
    66 * 
    77 * Authors: St�ane Borel <stef@via.ecp.fr> 
     
    4646                                    int i_flags ); 
    4747extern int           dvdcss_close ( dvdcss_handle ); 
    48 extern int           dvdcss_crack ( dvdcss_handle, 
     48extern int           dvdcss_title ( dvdcss_handle, 
    4949                                    int i_block ); 
    5050extern int           dvdcss_seek  ( dvdcss_handle, 
  • vlc.spec

    r8dee123 r4945d2b  
    11Name: vlc 
    2 Version: 0.2.80 
     2Version: 0.2.81 
    33Release: 2 
    44Copyright: GPL 
    55Url: http://www.videolan.org/ 
    66Group: X11/Applications/Graphics 
    7 Source0: http://www.videolan.org/packages/0.2.80/vlc-0.2.80.tar.gz 
     7Source0: http://www.videolan.org/packages/0.2.81/vlc-0.2.81.tar.gz 
    88Prefix: /usr 
    99Packager: Samuel Hocevar <sam@zoy.org> 
     
    1414 
    1515%changelog 
     16* Fri, Jul 27 2001 Samuel Hocevar <sam@zoy.org> 
     17New upstream release (0.2.81) 
     18 
    1619* Tue Jun 5 2001 Samuel Hocevar <sam@zoy.org> 
    1720New upstream release (0.2.80)