aboutsummaryrefslogtreecommitdiffstats
path: root/multimedia/vlc/files
diff options
context:
space:
mode:
authormaho <maho@FreeBSD.org>2003-08-01 13:18:11 +0800
committermaho <maho@FreeBSD.org>2003-08-01 13:18:11 +0800
commitccdbdfdfba27ef44eacfb1d8a020395e3d0dd266 (patch)
tree4732890579689f0d4a2fe2adbfb2660e0c6a788d /multimedia/vlc/files
parent2ecd3ce9b34c3f65c9a3176e71c0f5e1e52438b0 (diff)
downloadfreebsd-ports-gnome-ccdbdfdfba27ef44eacfb1d8a020395e3d0dd266.tar.gz
freebsd-ports-gnome-ccdbdfdfba27ef44eacfb1d8a020395e3d0dd266.tar.zst
freebsd-ports-gnome-ccdbdfdfba27ef44eacfb1d8a020395e3d0dd266.zip
a) Update to 0.6.0
b) Maintainer timeout: Oldest PR was submitted at Tue Apr 08 08:40:14 PDT 2003 PR: 50728, 51590, 53935 Submitted by: Janos Mohacsi <janos.mohacsi@bsd.hu> (#50728, #53935) Gleb Smirnoff <glebius@cell.sick.ru> (#51590)
Diffstat (limited to 'multimedia/vlc/files')
-rw-r--r--multimedia/vlc/files/patch-configure11
-rw-r--r--multimedia/vlc/files/patch-modules::codec::mpeg_video::parser.c11
-rw-r--r--multimedia/vlc/files/patch-modules::gui::wxwindows::menus.cpp14
3 files changed, 36 insertions, 0 deletions
diff --git a/multimedia/vlc/files/patch-configure b/multimedia/vlc/files/patch-configure
new file mode 100644
index 000000000000..54bebea7aed0
--- /dev/null
+++ b/multimedia/vlc/files/patch-configure
@@ -0,0 +1,11 @@
+--- configure.orig Mon Jun 30 18:06:22 2003
++++ configure Mon Jun 30 18:07:02 2003
+@@ -14017,7 +14017,7 @@
+ fi
+
+
+-#BUILTINS="${BUILTINS} mpeg_video_old idct idctclassic motion"
++BUILTINS="${BUILTINS} mpeg_video_old idct idctclassic motion"
+ PLUGINS="${PLUGINS} dummy rc logger gestures memcpy"
+ PLUGINS="${PLUGINS} es audio m4v mpeg_system ps ts avi asf aac mp4 rawdv"
+ PLUGINS="${PLUGINS} spudec mpeg_audio lpcm a52 dts cinepak"
diff --git a/multimedia/vlc/files/patch-modules::codec::mpeg_video::parser.c b/multimedia/vlc/files/patch-modules::codec::mpeg_video::parser.c
new file mode 100644
index 000000000000..359baa7bf977
--- /dev/null
+++ b/multimedia/vlc/files/patch-modules::codec::mpeg_video::parser.c
@@ -0,0 +1,11 @@
+--- modules/codec/mpeg_video/parser.c.orig Mon Jun 30 18:15:14 2003
++++ modules/codec/mpeg_video/parser.c Mon Jun 30 18:16:37 2003
+@@ -143,7 +143,7 @@
+ {
+ free( p_vpar );
+ return( -1 );
+- )
++ }
+
+ /*
+ * Main loop - it is not executed if an error occured during
diff --git a/multimedia/vlc/files/patch-modules::gui::wxwindows::menus.cpp b/multimedia/vlc/files/patch-modules::gui::wxwindows::menus.cpp
new file mode 100644
index 000000000000..4f9da4eca5a5
--- /dev/null
+++ b/multimedia/vlc/files/patch-modules::gui::wxwindows::menus.cpp
@@ -0,0 +1,14 @@
+--- modules/gui/wxwindows/menus.cpp.orig Mon Jun 30 15:22:03 2003
++++ modules/gui/wxwindows/menus.cpp Mon Jun 30 15:24:40 2003
+@@ -516,9 +516,8 @@
+ menuitem =
+ new wxMenuItemExt( menu, ++i_item_id,
+ text_list.p_list->p_values[i].psz_string ?
+- wxU(text_list.p_list->p_values[i].psz_string):
+- wxString::Format(wxT("%d"),
+- val_list.p_list->p_values[i].i_int),
++ (wxString)wxU(text_list.p_list->p_values[i].psz_string):
++ (wxString)wxString::Format(wxT("%d"), val_list.p_list->p_values[i].i_int),
+ wxT(""), wxITEM_RADIO, strdup(psz_var),
+ p_object->i_object_id,
+ val_list.p_list->p_values[i], i_type );