Changeset 4945d2bb3621b899aca49359c435d0dcfcc2ec1b
- 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
| r5bcfa0f |
r4945d2b |
|
| 4 | 4 | |
|---|
| 5 | 5 | HEAD |
|---|
| | 6 | * Nothing yet. |
|---|
| | 7 | |
|---|
| | 8 | 0.2.81 |
|---|
| | 9 | Fri, 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. |
|---|
| 6 | 26 | * dvdcss_readv() optimisations for Win32. |
|---|
| 7 | 27 | * Fixed _win32_dvdcss_aread() to work around the WinASPI32 64kb transfer |
|---|
| … | … | |
| 11 | 31 | * Fixed the "quit" event handling in directx/vout_events.c. |
|---|
| 12 | 32 | * 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. |
|---|
| 13 | 36 | * libdvdcss segfault fixes. |
|---|
| 14 | 37 | * Tuned constants, since it seems to make people happy. |
|---|
| r76fcb7f |
r4945d2b |
|
| 31 | 31 | --enable-pth Enable GNU Pth support (default disabled)" |
|---|
| 32 | 32 | ac_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)" |
|---|
| 34 | 34 | ac_help="$ac_help |
|---|
| 35 | 35 | --disable-css Disable DVD CSS decryption (default enabled)" |
|---|
| … | … | |
| 635 | 635 | |
|---|
| 636 | 636 | |
|---|
| 637 | | VLC_VERSION=0.2.80 |
|---|
| 638 | | |
|---|
| 639 | | LIBDVDCSS_VERSION=0.0.1 |
|---|
| | 637 | VLC_VERSION=0.2.81 |
|---|
| | 638 | |
|---|
| | 639 | LIBDVDCSS_VERSION=0.0.2 |
|---|
| 640 | 640 | |
|---|
| 641 | 641 | VLC_CODENAME=Ourumov |
|---|
| … | … | |
| 3747 | 3747 | if test "${with_dvdcss+set}" = set; then |
|---|
| 3748 | 3748 | 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 |
|---|
| 3752 | 3764 | if test x${CAN_BUILD_LIBDVDCSS} = x1 |
|---|
| 3753 | 3765 | then |
|---|
| … | … | |
| 3758 | 3770 | LIB_DVD_PLUGIN="${LIB_DVD_PLUGIN} -L../../lib -ldvdcss" |
|---|
| 3759 | 3771 | fi |
|---|
| 3760 | | else |
|---|
| | 3772 | ;; |
|---|
| | 3773 | *) |
|---|
| 3761 | 3774 | # existing libdvdcss |
|---|
| 3762 | 3775 | BUILTINS="${BUILTINS} dvd" |
|---|
| … | … | |
| 3768 | 3781 | LIB_DVD="${LIB_DVD} -ldvdcss" |
|---|
| 3769 | 3782 | LIB_DVD_PLUGIN="${LIB_DVD_PLUGIN} -ldvdcss" |
|---|
| 3770 | | fi |
|---|
| | 3783 | esac |
|---|
| 3771 | 3784 | else |
|---|
| 3772 | 3785 | # user didn't decide, we choose to use local libdvdcss and link statically |
|---|
| … | … | |
| 3871 | 3884 | set dummy esd-config; ac_word=$2 |
|---|
| 3872 | 3885 | echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 |
|---|
| 3873 | | echo "configure:3874: checking for $ac_word" >&5 |
|---|
| | 3886 | echo "configure:3887: checking for $ac_word" >&5 |
|---|
| 3874 | 3887 | if eval "test \"`echo '$''{'ac_cv_path_ESD_CONFIG'+set}'`\" = set"; then |
|---|
| 3875 | 3888 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| … | … | |
| 3938 | 3951 | ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` |
|---|
| 3939 | 3952 | echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 |
|---|
| 3940 | | echo "configure:3941: checking for $ac_hdr" >&5 |
|---|
| | 3953 | echo "configure:3954: checking for $ac_hdr" >&5 |
|---|
| 3941 | 3954 | if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then |
|---|
| 3942 | 3955 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 3943 | 3956 | else |
|---|
| 3944 | 3957 | cat > conftest.$ac_ext <<EOF |
|---|
| 3945 | | #line 3946 "configure" |
|---|
| | 3958 | #line 3959 "configure" |
|---|
| 3946 | 3959 | #include "confdefs.h" |
|---|
| 3947 | 3960 | #include <$ac_hdr> |
|---|
| 3948 | 3961 | EOF |
|---|
| 3949 | 3962 | ac_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; } |
|---|
| 3951 | 3964 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
|---|
| 3952 | 3965 | if test -z "$ac_err"; then |
|---|
| … | … | |
| 3993 | 4006 | ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` |
|---|
| 3994 | 4007 | echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 |
|---|
| 3995 | | echo "configure:3996: checking for $ac_hdr" >&5 |
|---|
| | 4008 | echo "configure:4009: checking for $ac_hdr" >&5 |
|---|
| 3996 | 4009 | if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then |
|---|
| 3997 | 4010 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 3998 | 4011 | else |
|---|
| 3999 | 4012 | cat > conftest.$ac_ext <<EOF |
|---|
| 4000 | | #line 4001 "configure" |
|---|
| | 4013 | #line 4014 "configure" |
|---|
| 4001 | 4014 | #include "confdefs.h" |
|---|
| 4002 | 4015 | #include <$ac_hdr> |
|---|
| 4003 | 4016 | EOF |
|---|
| 4004 | 4017 | ac_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; } |
|---|
| 4006 | 4019 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
|---|
| 4007 | 4020 | if test -z "$ac_err"; then |
|---|
| … | … | |
| 4080 | 4093 | set dummy sdl-config; ac_word=$2 |
|---|
| 4081 | 4094 | echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 |
|---|
| 4082 | | echo "configure:4083: checking for $ac_word" >&5 |
|---|
| | 4095 | echo "configure:4096: checking for $ac_word" >&5 |
|---|
| 4083 | 4096 | if eval "test \"`echo '$''{'ac_cv_path_SDL_CONFIG'+set}'`\" = set"; then |
|---|
| 4084 | 4097 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| … | … | |
| 4118 | 4131 | set dummy sdl11-config; ac_word=$2 |
|---|
| 4119 | 4132 | echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 |
|---|
| 4120 | | echo "configure:4121: checking for $ac_word" >&5 |
|---|
| | 4133 | echo "configure:4134: checking for $ac_word" >&5 |
|---|
| 4121 | 4134 | if eval "test \"`echo '$''{'ac_cv_path_SDL_CONFIG'+set}'`\" = set"; then |
|---|
| 4122 | 4135 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| … | … | |
| 4157 | 4170 | set dummy sdl12-config; ac_word=$2 |
|---|
| 4158 | 4171 | echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 |
|---|
| 4159 | | echo "configure:4160: checking for $ac_word" >&5 |
|---|
| | 4172 | echo "configure:4173: checking for $ac_word" >&5 |
|---|
| 4160 | 4173 | if eval "test \"`echo '$''{'ac_cv_path_SDL_CONFIG'+set}'`\" = set"; then |
|---|
| 4161 | 4174 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| … | … | |
| 4197 | 4210 | ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` |
|---|
| 4198 | 4211 | echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 |
|---|
| 4199 | | echo "configure:4200: checking for $ac_hdr" >&5 |
|---|
| | 4212 | echo "configure:4213: checking for $ac_hdr" >&5 |
|---|
| 4200 | 4213 | if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then |
|---|
| 4201 | 4214 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 4202 | 4215 | else |
|---|
| 4203 | 4216 | cat > conftest.$ac_ext <<EOF |
|---|
| 4204 | | #line 4205 "configure" |
|---|
| | 4217 | #line 4218 "configure" |
|---|
| 4205 | 4218 | #include "confdefs.h" |
|---|
| 4206 | 4219 | #include <$ac_hdr> |
|---|
| 4207 | 4220 | EOF |
|---|
| 4208 | 4221 | ac_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; } |
|---|
| 4210 | 4223 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
|---|
| 4211 | 4224 | if test -z "$ac_err"; then |
|---|
| … | … | |
| 4267 | 4280 | ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` |
|---|
| 4268 | 4281 | echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 |
|---|
| 4269 | | echo "configure:4270: checking for $ac_hdr" >&5 |
|---|
| | 4282 | echo "configure:4283: checking for $ac_hdr" >&5 |
|---|
| 4270 | 4283 | if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then |
|---|
| 4271 | 4284 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 4272 | 4285 | else |
|---|
| 4273 | 4286 | cat > conftest.$ac_ext <<EOF |
|---|
| 4274 | | #line 4275 "configure" |
|---|
| | 4287 | #line 4288 "configure" |
|---|
| 4275 | 4288 | #include "confdefs.h" |
|---|
| 4276 | 4289 | #include <$ac_hdr> |
|---|
| 4277 | 4290 | EOF |
|---|
| 4278 | 4291 | ac_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; } |
|---|
| 4280 | 4293 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
|---|
| 4281 | 4294 | if test -z "$ac_err"; then |
|---|
| … | … | |
| 4315 | 4328 | ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` |
|---|
| 4316 | 4329 | echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 |
|---|
| 4317 | | echo "configure:4318: checking for $ac_hdr" >&5 |
|---|
| | 4330 | echo "configure:4331: checking for $ac_hdr" >&5 |
|---|
| 4318 | 4331 | if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then |
|---|
| 4319 | 4332 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 4320 | 4333 | else |
|---|
| 4321 | 4334 | cat > conftest.$ac_ext <<EOF |
|---|
| 4322 | | #line 4323 "configure" |
|---|
| | 4335 | #line 4336 "configure" |
|---|
| 4323 | 4336 | #include "confdefs.h" |
|---|
| 4324 | 4337 | #include <$ac_hdr> |
|---|
| 4325 | 4338 | EOF |
|---|
| 4326 | 4339 | ac_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; } |
|---|
| 4328 | 4341 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
|---|
| 4329 | 4342 | if test -z "$ac_err"; then |
|---|
| … | … | |
| 4429 | 4442 | set dummy gtk-config; ac_word=$2 |
|---|
| 4430 | 4443 | echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 |
|---|
| 4431 | | echo "configure:4432: checking for $ac_word" >&5 |
|---|
| | 4444 | echo "configure:4445: checking for $ac_word" >&5 |
|---|
| 4432 | 4445 | if eval "test \"`echo '$''{'ac_cv_path_GTK_CONFIG'+set}'`\" = set"; then |
|---|
| 4433 | 4446 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| … | … | |
| 4489 | 4502 | ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` |
|---|
| 4490 | 4503 | echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 |
|---|
| 4491 | | echo "configure:4492: checking for $ac_hdr" >&5 |
|---|
| | 4504 | echo "configure:4505: checking for $ac_hdr" >&5 |
|---|
| 4492 | 4505 | if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then |
|---|
| 4493 | 4506 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 4494 | 4507 | else |
|---|
| 4495 | 4508 | cat > conftest.$ac_ext <<EOF |
|---|
| 4496 | | #line 4497 "configure" |
|---|
| | 4509 | #line 4510 "configure" |
|---|
| 4497 | 4510 | #include "confdefs.h" |
|---|
| 4498 | 4511 | #include <$ac_hdr> |
|---|
| 4499 | 4512 | EOF |
|---|
| 4500 | 4513 | ac_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; } |
|---|
| 4502 | 4515 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
|---|
| 4503 | 4516 | if test -z "$ac_err"; then |
|---|
| … | … | |
| 4551 | 4564 | ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` |
|---|
| 4552 | 4565 | echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 |
|---|
| 4553 | | echo "configure:4554: checking for $ac_hdr" >&5 |
|---|
| | 4566 | echo "configure:4567: checking for $ac_hdr" >&5 |
|---|
| 4554 | 4567 | if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then |
|---|
| 4555 | 4568 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 4556 | 4569 | else |
|---|
| 4557 | 4570 | cat > conftest.$ac_ext <<EOF |
|---|
| 4558 | | #line 4559 "configure" |
|---|
| | 4571 | #line 4572 "configure" |
|---|
| 4559 | 4572 | #include "confdefs.h" |
|---|
| 4560 | 4573 | #include <$ac_hdr> |
|---|
| 4561 | 4574 | EOF |
|---|
| 4562 | 4575 | ac_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; } |
|---|
| 4564 | 4577 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
|---|
| 4565 | 4578 | if test -z "$ac_err"; then |
|---|
| … | … | |
| 4597 | 4610 | if test "${enable_alsa+set}" = set; then |
|---|
| 4598 | 4611 | 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_%'` |
|---|
| 4600 | 4615 | echo $ac_n "checking for sys/asoundlib.h""... $ac_c" 1>&6 |
|---|
| 4601 | | echo "configure:4602: checking for sys/asoundlib.h" >&5 |
|---|
| | 4616 | echo "configure:4617: checking for sys/asoundlib.h" >&5 |
|---|
| 4602 | 4617 | if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then |
|---|
| 4603 | 4618 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 4604 | 4619 | else |
|---|
| 4605 | 4620 | cat > conftest.$ac_ext <<EOF |
|---|
| 4606 | | #line 4607 "configure" |
|---|
| | 4621 | #line 4622 "configure" |
|---|
| 4607 | 4622 | #include "confdefs.h" |
|---|
| 4608 | 4623 | #include <sys/asoundlib.h> |
|---|
| 4609 | 4624 | EOF |
|---|
| 4610 | 4625 | ac_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; } |
|---|
| 4612 | 4627 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
|---|
| 4613 | 4628 | if test -z "$ac_err"; then |
|---|
| … | … | |
| 4626 | 4641 | echo "$ac_t""yes" 1>&6 |
|---|
| 4627 | 4642 | echo $ac_n "checking for main in -lasound""... $ac_c" 1>&6 |
|---|
| 4628 | | echo "configure:4629: checking for main in -lasound" >&5 |
|---|
| | 4643 | echo "configure:4644: checking for main in -lasound" >&5 |
|---|
| 4629 | 4644 | ac_lib_var=`echo asound'_'main | sed 'y%./+-%__p_%'` |
|---|
| 4630 | 4645 | if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then |
|---|
| … | … | |
| 4634 | 4649 | LIBS="-lasound $LIBS" |
|---|
| 4635 | 4650 | cat > conftest.$ac_ext <<EOF |
|---|
| 4636 | | #line 4637 "configure" |
|---|
| | 4651 | #line 4652 "configure" |
|---|
| 4637 | 4652 | #include "confdefs.h" |
|---|
| 4638 | 4653 | |
|---|
| … | … | |
| 4641 | 4656 | ; return 0; } |
|---|
| 4642 | 4657 | EOF |
|---|
| 4643 | | if { (eval echo configure:4644: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |
|---|
| | 4658 | if { (eval echo configure:4659: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |
|---|
| 4644 | 4659 | rm -rf conftest* |
|---|
| 4645 | 4660 | eval "ac_cv_lib_$ac_lib_var=yes" |
|---|
| … | … | |
| 4666 | 4681 | have_alsa="false" |
|---|
| 4667 | 4682 | fi |
|---|
| 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 |
|---|
| 4672 | 4690 | fi |
|---|
| 4673 | 4691 | |
|---|
| r76fcb7f |
r4945d2b |
|
| 1 | | dnl Autoconf settings for vlc |
|---|
| | 1 | dnl Autoconf settings for vlc and libdvdcss |
|---|
| 2 | 2 | AC_INIT(include/main.h) |
|---|
| 3 | 3 | AC_CONFIG_HEADER(include/defs.h) |
|---|
| … | … | |
| 5 | 5 | AC_CANONICAL_HOST |
|---|
| 6 | 6 | |
|---|
| 7 | | VLC_VERSION=0.2.80 |
|---|
| | 7 | VLC_VERSION=0.2.81 |
|---|
| 8 | 8 | AC_SUBST(VLC_VERSION) |
|---|
| 9 | | LIBDVDCSS_VERSION=0.0.1 |
|---|
| | 9 | LIBDVDCSS_VERSION=0.0.2 |
|---|
| 10 | 10 | AC_SUBST(LIBDVDCSS_VERSION) |
|---|
| 11 | 11 | VLC_CODENAME=Ourumov |
|---|
| … | … | |
| 323 | 323 | STATIC_LIBDVDCSS=0 |
|---|
| 324 | 324 | AC_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 |
|---|
| 329 | 341 | if test x${CAN_BUILD_LIBDVDCSS} = x1 |
|---|
| 330 | 342 | then |
|---|
| … | … | |
| 335 | 347 | LIB_DVD_PLUGIN="${LIB_DVD_PLUGIN} -L../../lib -ldvdcss" |
|---|
| 336 | 348 | fi |
|---|
| 337 | | else |
|---|
| | 349 | ;; |
|---|
| | 350 | *) |
|---|
| 338 | 351 | # existing libdvdcss |
|---|
| 339 | 352 | BUILTINS="${BUILTINS} dvd" |
|---|
| … | … | |
| 345 | 358 | LIB_DVD="${LIB_DVD} -ldvdcss" |
|---|
| 346 | 359 | LIB_DVD_PLUGIN="${LIB_DVD_PLUGIN} -ldvdcss" |
|---|
| 347 | | fi ], |
|---|
| | 360 | esac ], |
|---|
| 348 | 361 | # user didn't decide, we choose to use local libdvdcss and link statically |
|---|
| 349 | 362 | [ if test x${CAN_BUILD_LIBDVDCSS} = x1 |
|---|
| … | … | |
| 705 | 718 | AC_ARG_ENABLE(alsa, |
|---|
| 706 | 719 | [ --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]) |
|---|
| 711 | 729 | |
|---|
| 712 | 730 | dnl end of non-BeOS stuff |
|---|
| r8dee123 |
r4945d2b |
|
| | 1 | vlc (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 | |
|---|
| 1 | 7 | vlc (0.2.80-1) unstable; urgency=low |
|---|
| 2 | 8 | |
|---|
| r8dee123 |
r4945d2b |
|
| | 1 | vlc-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 | |
|---|
| 1 | 7 | vlc-css (0.2.80-1) unstable; urgency=low |
|---|
| 2 | 8 | |
|---|
| r4b92161 |
r4945d2b |
|
| 3 | 3 | Priority: optional |
|---|
| 4 | 4 | Maintainer: 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 |
|---|
| | 5 | Build-Depends: debhelper (>=2.2.0), xlibs-dev, libgnome-dev, libggi2-dev, libglide3-dev [i386], libesd0-dev, libsdl1.2-dev, libqt-dev, libasound1-dev |
|---|
| 6 | 6 | Standards-Version: 3.0.1 |
|---|
| 7 | 7 | |
|---|
| … | … | |
| 45 | 45 | vlc, the VideoLAN Client. |
|---|
| 46 | 46 | |
|---|
| 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 | | |
|---|
| 56 | 47 | Package: vlc-sdl |
|---|
| 57 | 48 | Architecture: any |
|---|
| r440f999 |
r4945d2b |
|
| 18 | 18 | --infodir=\$${prefix}/share/info \ |
|---|
| 19 | 19 | --enable-gnome --enable-gtk --enable-fb --with-glide \ |
|---|
| 20 | | --with-ggi --with-sdl --enable-esd --enable-alsa \ |
|---|
| | 20 | --with-ggi --with-sdl --enable-esd \ |
|---|
| 21 | 21 | --enable-qt --disable-ppro ; \ |
|---|
| 22 | 22 | else \ |
|---|
| … | … | |
| 25 | 25 | --infodir=\$${prefix}/share/info \ |
|---|
| 26 | 26 | --enable-gnome --enable-gtk --enable-fb \ |
|---|
| 27 | | --with-ggi --with-sdl --enable-esd --enable-alsa \ |
|---|
| | 27 | --with-ggi --with-sdl --enable-esd \ |
|---|
| 28 | 28 | --enable-qt ; \ |
|---|
| 29 | 29 | fi |
|---|
| … | … | |
| 50 | 50 | DESTDIR=`pwd`/debian/vlc/ $(MAKE) install prefix=/usr |
|---|
| 51 | 51 | |
|---|
| | 52 | # get rid of libdvdcss for the moment |
|---|
| | 53 | rm -f debian/vlc/usr/lib/libdvdcss* |
|---|
| | 54 | rm -Rf debian/vlc/usr/include |
|---|
| | 55 | |
|---|
| 52 | 56 | # make symlinks for packages |
|---|
| 53 | | aliases="ggi gtk gnome esd sdl qt alsa" ; \ |
|---|
| | 57 | aliases="ggi gtk gnome esd sdl qt" ; \ |
|---|
| 54 | 58 | if [ $(DEB_BUILD_ARCH) = i386 ]; then aliases=$$aliases" glide" ; fi ; \ |
|---|
| 55 | 59 | for alias in `echo $$aliases` ; do \ |
|---|
| … | … | |
| 124 | 128 | # dh_installinit |
|---|
| 125 | 129 | #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 |
|---|
| 127 | 131 | #dh_installinfo |
|---|
| 128 | 132 | # 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 |
|---|
| 130 | 134 | dh_link |
|---|
| 131 | 135 | dh_strip |
|---|
| ra50a0a2 |
r4945d2b |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * 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 $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: St�ane Borel <stef@via.ecp.fr> |
|---|
| … | … | |
| 46 | 46 | int i_flags ); |
|---|
| 47 | 47 | extern int dvdcss_close ( dvdcss_handle ); |
|---|
| 48 | | extern int dvdcss_crack ( dvdcss_handle, |
|---|
| | 48 | extern int dvdcss_title ( dvdcss_handle, |
|---|
| 49 | 49 | int i_block ); |
|---|
| 50 | 50 | extern int dvdcss_seek ( dvdcss_handle, |
|---|
| r8dee123 |
r4945d2b |
|
| 1 | 1 | Name: vlc |
|---|
| 2 | | Version: 0.2.80 |
|---|
| | 2 | Version: 0.2.81 |
|---|
| 3 | 3 | Release: 2 |
|---|
| 4 | 4 | Copyright: GPL |
|---|
| 5 | 5 | Url: http://www.videolan.org/ |
|---|
| 6 | 6 | Group: X11/Applications/Graphics |
|---|
| 7 | | Source0: http://www.videolan.org/packages/0.2.80/vlc-0.2.80.tar.gz |
|---|
| | 7 | Source0: http://www.videolan.org/packages/0.2.81/vlc-0.2.81.tar.gz |
|---|
| 8 | 8 | Prefix: /usr |
|---|
| 9 | 9 | Packager: Samuel Hocevar <sam@zoy.org> |
|---|
| … | … | |
| 14 | 14 | |
|---|
| 15 | 15 | %changelog |
|---|
| | 16 | * Fri, Jul 27 2001 Samuel Hocevar <sam@zoy.org> |
|---|
| | 17 | New upstream release (0.2.81) |
|---|
| | 18 | |
|---|
| 16 | 19 | * Tue Jun 5 2001 Samuel Hocevar <sam@zoy.org> |
|---|
| 17 | 20 | New upstream release (0.2.80) |
|---|