Mercurial > audlegacy
changeset 749:3787176f9875 trunk
[svn] more fixing
author | nenolod |
---|---|
date | Mon, 27 Feb 2006 20:32:58 -0800 |
parents | 71189eb31ea9 |
children | 5fe9bafc1895 |
files | Plugins/Input/flac/plugin.c Plugins/Input/vorbis/http.c audacious.1.in audacious.pc.in audacious.spec.in audacious/main.c |
diffstat | 6 files changed, 11 insertions(+), 11 deletions(-) [+] |
line wrap: on
line diff
--- a/Plugins/Input/flac/plugin.c Mon Feb 27 20:24:11 2006 -0800 +++ b/Plugins/Input/flac/plugin.c Mon Feb 27 20:32:58 2006 -0800 @@ -136,7 +136,7 @@ { NULL, NULL, - "FLAC Player v" VERSION, + "FLAC Player v" PACKAGE_VERSION, FLAC_XMMS__init, FLAC_XMMS__aboutbox, FLAC_XMMS__configure,
--- a/Plugins/Input/vorbis/http.c Mon Feb 27 20:24:11 2006 -0800 +++ b/Plugins/Input/vorbis/http.c Mon Feb 27 20:32:58 2006 -0800 @@ -408,7 +408,7 @@ "Host: %s\r\n" "User-Agent: %s/%s\r\n" "%s%s\r\n", - file, host, PACKAGE, VERSION, + file, host, PACKAGE_NAME, PACKAGE_VERSION, proxy_auth ? proxy_auth : "", auth ? auth : ""); g_free(file);
--- a/audacious.1.in Mon Feb 27 20:24:11 2006 -0800 +++ b/audacious.1.in Mon Feb 27 20:32:58 2006 -0800 @@ -1,4 +1,4 @@ -.TH AUDACIOUS "1" "24 October 2005" "Version @VERSION@" "Audacious Manual Pages" +.TH AUDACIOUS "1" "24 October 2005" "Version @PACKAGE_VERSION@" "Audacious Manual Pages" .SH NAME Audacious \- an audio player for X. .SH SYNOPSIS
--- a/audacious.pc.in Mon Feb 27 20:24:11 2006 -0800 +++ b/audacious.pc.in Mon Feb 27 20:32:58 2006 -0800 @@ -1,8 +1,8 @@ prefix=@prefix@ exec_prefix=@exec_prefix@ -data_dir=@datadir@/@PACKAGE@ +data_dir=@datadir@/@PACKAGE_NAME@ -version=@VERSION@ +version=@PACKAGE_VERSION@ include_dir=@includedir@ audacious_include_dir=@includedir@ lib_dir=@libdir@ @@ -16,7 +16,7 @@ Name: Audacious Description: Audacious is a versatile and handy multi platform media player -Version: @VERSION@ +Version: @PACKAGE_VERSION@ Requires: @PC_REQUIRES@ Libs: -L${lib_dir} -laudacious Cflags: -I${audacious_include_dir}
--- a/audacious.spec.in Mon Feb 27 20:24:11 2006 -0800 +++ b/audacious.spec.in Mon Feb 27 20:32:58 2006 -0800 @@ -20,8 +20,8 @@ %{!?_with_gnomevfs: %define gnomevfs 0} Summary: Audacious -Name: @PACKAGE@ -Version: @VERSION@ +Name: @PACKAGE_NAME@ +Version: @PACKAGE_VERSION@ Release: 1 Epoch: 0 License: GPL
--- a/audacious/main.c Mon Feb 27 20:24:11 2006 -0800 +++ b/audacious/main.c Mon Feb 27 20:32:58 2006 -0800 @@ -909,9 +909,9 @@ /* Setup l10n early so we can print localized error messages */ gtk_set_locale(); - bindtextdomain(PACKAGE, LOCALEDIR); - bind_textdomain_codeset(PACKAGE, "UTF-8"); - textdomain(PACKAGE); + bindtextdomain(PACKAGE_NAME, LOCALEDIR); + bind_textdomain_codeset(PACKAGE_NAME, "UTF-8"); + textdomain(PACKAGE_NAME); bmp_init_paths(); bmp_make_user_dir();