[Easytag-mailing] Patch for EasyTAG 0.28a ( -> 0.28b )
- From: Jérôme Couderc <j couderc ifrance com>
- To: easytag-mailing lists sourceforge net
- Subject: [Easytag-mailing] Patch for EasyTAG 0.28a ( -> 0.28b )
- Date: Sat Jun 28 19:18:05 2003
Hi,
Here is a patch to fix a strange bug when starting with some gtk
themes as H2O (no window appeared).
Jerome
--
EasyTAG - Tag editor for MP3 and Ogg Vorbis files
http://easytag.sourceforge.net
--
Jerome COUDERC <j couderc ifrance com>
diff -ruN easytag-0.28a/configure easytag-0.28b/configure
--- easytag-0.28a/configure Sun Jun 29 03:44:22 2003
+++ easytag-0.28b/configure Sun Jun 29 03:47:12 2003
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.53 for easytag 0.28a.
+# Generated by GNU Autoconf 2.53 for easytag 0.28b.
#
# Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002
# Free Software Foundation, Inc.
@@ -412,8 +412,8 @@
# Identity of this package.
PACKAGE_NAME='easytag'
PACKAGE_TARNAME='easytag'
-PACKAGE_VERSION='0.28a'
-PACKAGE_STRING='easytag 0.28a'
+PACKAGE_VERSION='0.28b'
+PACKAGE_STRING='easytag 0.28b'
PACKAGE_BUGREPORT=''
ac_unique_file="src/easytag.h"
@@ -918,7 +918,7 @@
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
-\`configure' configures easytag 0.28a to adapt to many kinds of systems.
+\`configure' configures easytag 0.28b to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@@ -984,7 +984,7 @@
if test -n "$ac_init_help"; then
case $ac_init_help in
- short | recursive ) echo "Configuration of easytag 0.28a:";;
+ short | recursive ) echo "Configuration of easytag 0.28b:";;
esac
cat <<\_ACEOF
@@ -1092,7 +1092,7 @@
test -n "$ac_init_help" && exit 0
if $ac_init_version; then
cat <<\_ACEOF
-easytag configure 0.28a
+easytag configure 0.28b
generated by GNU Autoconf 2.53
Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002
@@ -1107,7 +1107,7 @@
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
-It was created by easytag $as_me 0.28a, which was
+It was created by easytag $as_me 0.28b, which was
generated by GNU Autoconf 2.53. Invocation command line was
$ $0 $@
@@ -1639,7 +1639,7 @@
# Define the identity of the package.
PACKAGE=easytag
- VERSION=0.28a
+ VERSION=0.28b
cat >>confdefs.h <<_ACEOF
@@ -12595,7 +12595,7 @@
} >&5
cat >&5 <<_CSEOF
-This file was extended by easytag $as_me 0.28a, which was
+This file was extended by easytag $as_me 0.28b, which was
generated by GNU Autoconf 2.53. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@@ -12657,7 +12657,7 @@
cat >>$CONFIG_STATUS <<_ACEOF
ac_cs_version="\\
-easytag config.status 0.28a
+easytag config.status 0.28b
configured by $0, generated by GNU Autoconf 2.53,
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
diff -ruN easytag-0.28a/configure.in easytag-0.28b/configure.in
--- easytag-0.28a/configure.in Sun Jun 29 03:44:22 2003
+++ easytag-0.28b/configure.in Sun Jun 29 03:46:37 2003
@@ -6,7 +6,7 @@
dnl VERSION=0.28
AC_PREREQ(2.53)
-AC_INIT(easytag, 0.28a) dnl defines ($PACKAGE, $VERSION)
+AC_INIT(easytag, 0.28b) dnl defines ($PACKAGE, $VERSION)
AC_CONFIG_SRCDIR(src/easytag.h)
dnl -------------------------------
dnl Init automake
diff -ruN easytag-0.28a/easytag.spec easytag-0.28b/easytag.spec
--- easytag-0.28a/easytag.spec Sun Jun 29 03:44:22 2003
+++ easytag-0.28b/easytag.spec Sun Jun 29 03:46:28 2003
@@ -1,5 +1,5 @@
%define name easytag
-%define version 0.28a
+%define version 0.28b
%define release 1
%define prefix /usr
diff -ruN easytag-0.28a/src/crc32.c easytag-0.28b/src/crc32.c
--- easytag-0.28a/src/crc32.c Sat May 31 00:13:39 2003
+++ easytag-0.28b/src/crc32.c Sun Jun 29 03:48:08 2003
@@ -25,8 +25,10 @@
/*
* Initial crc32 function
+ * This function was renamed from crc32(...) to crc32_easytag(...) to avoid a
+ * strange problem with some gtk theme that may use the same name of function.
*/
-int crc32(register int fd, unsigned long *main_val)
+int crc32_easytag(register int fd, unsigned long *main_val)
{
char buf[BUFFERSIZE], *p;
int nr;
diff -ruN easytag-0.28a/src/crc32.h easytag-0.28b/src/crc32.h
--- easytag-0.28a/src/crc32.h Fri May 30 22:27:57 2003
+++ easytag-0.28b/src/crc32.h Sun Jun 29 03:47:30 2003
@@ -87,5 +87,5 @@
0xb40bbe37, 0xc30c8ea1, 0x5a05df1b, 0x2d02ef8d,
};
-int crc32(register int fd, unsigned long *main_val);
+int crc32_easytag(register int fd, unsigned long *main_val);
int crc32_file_with_ID3_tag(char *filename, unsigned long *main_val);
[
Date Prev][Date Next] [
Thread Prev][Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]