@ -1,27 +0,0 @@ |
|||
# --- T2-COPYRIGHT-NOTE-BEGIN --- |
|||
# This copyright note is auto-generated by ./scripts/Create-CopyPatch. |
|||
# |
|||
# T2 SDE: package/.../flac/disable-xmms.diff |
|||
# Copyright (C) 2006 The T2 SDE Project |
|||
# |
|||
# More information can be found in the files COPYING and README. |
|||
# |
|||
# This patch file is dual-licensed. It is available under the license the |
|||
# patched project is licensed under, as long as it is an OpenSource license |
|||
# as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms |
|||
# of the GNU General Public License as published by the Free Software |
|||
# Foundation; either version 2 of the License, or (at your option) any later |
|||
# version. |
|||
# --- T2-COPYRIGHT-NOTE-END --- |
|||
|
|||
--- flac-1.1.2/configure.in.orig 2006-03-06 16:08:00.000000000 +0100
|
|||
+++ flac-1.1.2/configure.in 2006-03-06 16:08:11.000000000 +0100
|
|||
@@ -157,7 +157,7 @@
|
|||
AC_DEFINE(FLAC__HAS_OGG) |
|||
fi |
|||
|
|||
-AM_PATH_XMMS(0.9.5.1, , AC_MSG_WARN([*** XMMS >= 0.9.5.1 not installed - xmms support will not be built]))
|
|||
+#AM_PATH_XMMS(0.9.5.1, , AC_MSG_WARN([*** XMMS >= 0.9.5.1 not installed - xmms support will not be built]))
|
|||
AM_CONDITIONAL(FLaC__HAS_XMMS, test x$XMMS_INPUT_PLUGIN_DIR != x) |
|||
|
|||
dnl check for i18n(internationalization); these are from libiconv/gettext |
@ -1,45 +0,0 @@ |
|||
# --- T2-COPYRIGHT-NOTE-BEGIN --- |
|||
# This copyright note is auto-generated by ./scripts/Create-CopyPatch. |
|||
# |
|||
# T2 SDE: package/.../flac/init.patch |
|||
# Copyright (C) 2004 - 2006 The T2 SDE Project |
|||
# |
|||
# More information can be found in the files COPYING and README. |
|||
# |
|||
# This patch file is dual-licensed. It is available under the license the |
|||
# patched project is licensed under, as long as it is an OpenSource license |
|||
# as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms |
|||
# of the GNU General Public License as published by the Free Software |
|||
# Foundation; either version 2 of the License, or (at your option) any later |
|||
# version. |
|||
# --- T2-COPYRIGHT-NOTE-END --- |
|||
--- flac-1.1.2_orig/src/plugin_xmms/configure.c 2005-01-25 05:26:29.000000000 +0100
|
|||
+++ flac-1.1.2/src/plugin_xmms/configure.c 2005-04-03 16:56:57.987305008 +0200
|
|||
@@ -55,13 +55,13 @@
|
|||
100 /* KB */, /* http_buffer_size */ |
|||
50, /* http_prebuffer */ |
|||
FALSE, /* use_proxy */ |
|||
- "", /* proxy_host */
|
|||
+ FALSE, /* proxy_host */
|
|||
0, /* proxy_port */ |
|||
FALSE, /* proxy_use_auth */ |
|||
- "", /* proxy_user */
|
|||
- "", /* proxy_pass */
|
|||
+ FALSE, /* proxy_user */
|
|||
+ FALSE, /* proxy_pass */
|
|||
FALSE, /* save_http_stream */ |
|||
- "", /* save_http_path */
|
|||
+ FALSE, /* save_http_path */
|
|||
FALSE, /* cast_title_streaming */ |
|||
FALSE /* use_udp_channel */ |
|||
}, |
|||
@@ -666,7 +666,8 @@
|
|||
gtk_box_pack_start(GTK_BOX(streaming_proxy_hbox), streaming_proxy_host_label, FALSE, FALSE, 0); |
|||
|
|||
streaming_proxy_host_entry = gtk_entry_new(); |
|||
- gtk_entry_set_text(GTK_ENTRY(streaming_proxy_host_entry), flac_cfg.stream.proxy_host);
|
|||
+ if(flac_cfg.stream.proxy_host)
|
|||
+ gtk_entry_set_text(GTK_ENTRY(streaming_proxy_host_entry), flac_cfg.stream.proxy_host);
|
|||
gtk_box_pack_start(GTK_BOX(streaming_proxy_hbox), streaming_proxy_host_entry, TRUE, TRUE, 0); |
|||
|
|||
streaming_proxy_port_label = gtk_label_new(_("Port:")); |