Commit 8dee1230 authored by Sam Hocevar's avatar Sam Hocevar

  * Updated things and stuff for 0.2.80 release.
parent f42dc782
...@@ -3,6 +3,55 @@ ...@@ -3,6 +3,55 @@
#===================# #===================#
HEAD HEAD
* Nothing yet.
0.2.80
Tue, 5 Jun 2001 04:41:06 +0200
* BeOS interface compilation fix by Rene Gollent.
* DirectX plugin compilation fix by Gildas Bazin.
* Removed %ebx spill in the iMDCT plugins.
* Change to the set out of the BeOS code to allow more logical updates.
* Moved modules_builtins.h.in into src/misc. Please remove
include/modules_builtins.h in your local tree.
* DirectX plugin by Gildas Bazin <gbazin@netcourrier.com>.
* Fixed a double malloc/free bug in DVDRead.
* Win32 plugin support by Gildas Bazin <gbazin@netcourrier.com>.
* BeOS fixes. renamed iovec.h to input_iovec.h because of namespace issues.
* Miscellaneous Win32 fixes by Gildas Bazin <gbazin@netcourrier.com>.
* Win2000 DVD input by Jon Lech Johansen <jon-vl@nanocrew.net>.
* Applied patch from Jon Lech Johansen <jon-vl@nanocrew.net> to compile
vlc with MS and Intel C/C++ compilers.
* Updated the gtk/gnome interface to work in network mode.
* Fixed some bugs in interface (language menus in ts, misnamed fields).
* Play/Stop work in network mode to start/stop decoding of the stream.
* Fixed the BeOS compile typo.
* The ALSA plugin is back.
* A gift for Gildas: plugins don't rely on backlinking any more.
* Changes and bugfixes to make network work in VLAN Broadcast mode.
* Bugfix in the interface to access the network specific features.
* Some base of synchro in ac3 spdif.
* Fixed a bug with Previous chapter button in gnome.
* Added a wrapper for readv() on platforms which don't support it.
* Win32 compilation fixes, esp. the MAC retrieval.
* Fixed a warning for *BSD compilation.
* Patch by Eugenio so that the OS X interface and video output handle the
aout and vout banks.
* Applied Eugenio's fix to the DVDioctl driver. I didn't test it, but
it should not hang the kernel anymore.
* Ported most dvd_ioctl.c functions to the DVDioctl driver: ReportAgid,
ReportChallenge, ReportKey1, ReportASF, InvalidateAgid, SendChallenge,
SendKey2. They should comply with the "Mt. Fuji Commands for Multimedia
Devices" paper.
* Unification of gnome/gtk intefaces: now all the files are in plugin/gtk.
* Updated BeOS interface with new changes for playlist management.
* More cleanings in gtk interface.
* The dvd plugin reads again blocks of 32 sectors to gain speed.
* Added two functions which retrieve the MAC Address under Windows.
* 3D Now! imdct.
* We now do pthread detection for FreeBSD like the XMMS guys do. It
works even better.
* FreeBSD pthread fixes. * FreeBSD pthread fixes.
* AC3 IMDCT and downmix functions are now in plugins, --imdct and * AC3 IMDCT and downmix functions are now in plugins, --imdct and
--downmix options added. --downmix options added.
......
...@@ -331,8 +331,6 @@ $(CPP_OBJ): %.o: %.cpp ...@@ -331,8 +331,6 @@ $(CPP_OBJ): %.o: %.cpp
vlc: Makefile.opts Makefile.dep Makefile $(H_OBJ) $(C_OBJ) $(CPP_OBJ) $(BUILTIN_OBJ) vlc: Makefile.opts Makefile.dep Makefile $(H_OBJ) $(C_OBJ) $(CPP_OBJ) $(BUILTIN_OBJ)
$(CC) $(CFLAGS) -o $@ $(C_OBJ) $(CPP_OBJ) $(BUILTIN_OBJ) $(LCFLAGS) $(LIB) $(CC) $(CFLAGS) -o $@ $(C_OBJ) $(CPP_OBJ) $(BUILTIN_OBJ) $(LCFLAGS) $(LIB)
ifeq ($(SYS),beos) ifeq ($(SYS),beos)
rm -f ./lib/_APP_
ln -s ../vlc ./lib/_APP_
xres -o $@ ./share/vlc_beos.rsrc xres -o $@ ./share/vlc_beos.rsrc
mimeset -f $@ mimeset -f $@
endif endif
......
...@@ -82,6 +82,7 @@ LIB_YUV = @LIB_YUV@ ...@@ -82,6 +82,7 @@ LIB_YUV = @LIB_YUV@
# CFLAGS for special cases # CFLAGS for special cases
# #
CFLAGS_GTK = @CFLAGS_GTK@ CFLAGS_GTK = @CFLAGS_GTK@
CFLAGS_SDL = @CFLAGS_SDL@
CFLAGS_X11 = @CFLAGS_X11@ CFLAGS_X11 = @CFLAGS_X11@
############################################################################### ###############################################################################
......
...@@ -626,7 +626,7 @@ host_os=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` ...@@ -626,7 +626,7 @@ host_os=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
echo "$ac_t""$host" 1>&6 echo "$ac_t""$host" 1>&6
VLC_VERSION=0.2.73 VLC_VERSION=0.2.80
VLC_CODENAME=Ourumov VLC_CODENAME=Ourumov
......
...@@ -4,7 +4,7 @@ AC_CONFIG_HEADER(include/defs.h) ...@@ -4,7 +4,7 @@ AC_CONFIG_HEADER(include/defs.h)
AC_CANONICAL_HOST AC_CANONICAL_HOST
VLC_VERSION=0.2.73 VLC_VERSION=0.2.80
AC_SUBST(VLC_VERSION) AC_SUBST(VLC_VERSION)
VLC_CODENAME=Ourumov VLC_CODENAME=Ourumov
AC_SUBST(VLC_CODENAME) AC_SUBST(VLC_CODENAME)
...@@ -397,7 +397,7 @@ AC_ARG_WITH(sdl, ...@@ -397,7 +397,7 @@ AC_ARG_WITH(sdl,
if test "x$withval" != "xyes"; if test "x$withval" != "xyes";
then then
LIB_SDL="${LIB_SDL} -L/usr/X11R6/lib -L"$withval"/lib -lSDL" LIB_SDL="${LIB_SDL} -L/usr/X11R6/lib -L"$withval"/lib -lSDL"
INCLUDE="${INCLUDE} -I"$withval"/include" CFLAGS_SDL="-I"$withval"/include"
else else
AC_CHECK_HEADERS(SDL/SDL.h, , [echo "Cannot find SDL headers !"; exit]) AC_CHECK_HEADERS(SDL/SDL.h, , [echo "Cannot find SDL headers !"; exit])
LIB_SDL="${LIB_SDL} -L/usr/X11R6/lib -lSDL" LIB_SDL="${LIB_SDL} -L/usr/X11R6/lib -lSDL"
...@@ -609,6 +609,7 @@ AC_SUBST(LIB_YUV) ...@@ -609,6 +609,7 @@ AC_SUBST(LIB_YUV)
AC_SUBST(CFLAGS_VLC) AC_SUBST(CFLAGS_VLC)
AC_SUBST(CFLAGS_GTK) AC_SUBST(CFLAGS_GTK)
AC_SUBST(CFLAGS_SDL)
AC_SUBST(CFLAGS_X11) AC_SUBST(CFLAGS_X11)
AC_OUTPUT([Makefile.opts include/config.h]) AC_OUTPUT([Makefile.opts include/config.h])
......
vlc (0.2.80-1) unstable; urgency=low
* New upstream release.
-- Samuel Hocevar <sam@zoy.org> Tue, 5 Jun 2001 04:41:06 +0200
vlc (0.2.73-2) unstable; urgency=low vlc (0.2.73-2) unstable; urgency=low
* We now build without MMX in the main application (Closes: #96036). * We now build without MMX in the main application (Closes: #96036).
......
vlc-css (0.2.80-1) unstable; urgency=low
* New upstream release.
-- Samuel Hocevar <sam@zoy.org> Tue, 5 Jun 2001 04:41:06 +0200
vlc-css (0.2.73-2) unstable; urgency=low
* We now build without MMX in the main application (Closes: #96036).
-- Samuel Hocevar <sam@zoy.org> Fri, 4 May 2001 07:13:04 +0200
vlc-css (0.2.73-1) unstable; urgency=low vlc-css (0.2.73-1) unstable; urgency=low
* New upstream release. * New upstream release.
......
...@@ -18,6 +18,14 @@ ALL_OBJ = $(PLUGIN_C) $(BUILTIN_C) ...@@ -18,6 +18,14 @@ ALL_OBJ = $(PLUGIN_C) $(BUILTIN_C)
include ../../Makefile.modules include ../../Makefile.modules
$(PLUGIN_SDL): %.o: .dep/%.d
$(PLUGIN_SDL): %.o: %.c
$(CC) $(CFLAGS) $(PCFLAGS) $(CFLAGS_SDL) -DPLUGIN -c -o $@ $<
$(BUILTIN_SDL): BUILTIN_SDL_%.o: .dep/%.d
$(BUILTIN_SDL): BUILTIN_SDL_%.o: %.c
$(CC) $(CFLAGS) $(CFLAGS_SDL) -DBUILTIN -c -o $@ $<
# #
# Real targets # Real targets
# #
......
Name: vlc Name: vlc
Version: 0.2.73 Version: 0.2.80
Release: 2 Release: 2
Copyright: GPL Copyright: GPL
Url: http://www.videolan.org/ Url: http://www.videolan.org/
Group: X11/Applications/Graphics Group: X11/Applications/Graphics
Source0: http://www.videolan.org/packages/0.2.73/vlc-0.2.73.tar.gz Source0: http://www.videolan.org/packages/0.2.80/vlc-0.2.80.tar.gz
Prefix: /usr Prefix: /usr
Packager: Samuel Hocevar <sam@zoy.org> Packager: Samuel Hocevar <sam@zoy.org>
...@@ -13,6 +13,9 @@ Summary: VideoLAN Client. ...@@ -13,6 +13,9 @@ Summary: VideoLAN Client.
Summary(fr): Client VideoLAN. Summary(fr): Client VideoLAN.
%changelog %changelog
* Tue Jun 5 2001 Samuel Hocevar <sam@zoy.org>
New upstream release (0.2.80)
* Mon Apr 30 2001 Arnaud Gomes-do-Vale <arnaud@glou.org> * Mon Apr 30 2001 Arnaud Gomes-do-Vale <arnaud@glou.org>
Added relocation support and compile fixes for Red Hat 7.x. Added relocation support and compile fixes for Red Hat 7.x.
......
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