]> git.pld-linux.org Git - packages/easytag.git/blob - easytag-0.30d.patch
- merged from DEVEL
[packages/easytag.git] / easytag-0.30d.patch
1 diff -ruN easytag-0.30c/configure easytag-0.30d/configure
2 --- easytag-0.30c/configure     Mon Feb  2 18:51:24 2004
3 +++ easytag-0.30d/configure     Mon Feb  2 18:54:20 2004
4 @@ -1,6 +1,6 @@
5  #! /bin/sh
6  # Guess values for system-dependent variables and create Makefiles.
7 -# Generated by GNU Autoconf 2.53 for easytag 0.30c.
8 +# Generated by GNU Autoconf 2.53 for easytag 0.30d.
9  #
10  # Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002
11  # Free Software Foundation, Inc.
12 @@ -412,8 +412,8 @@
13  # Identity of this package.
14  PACKAGE_NAME='easytag'
15  PACKAGE_TARNAME='easytag'
16 -PACKAGE_VERSION='0.30c'
17 -PACKAGE_STRING='easytag 0.30c'
18 +PACKAGE_VERSION='0.30d'
19 +PACKAGE_STRING='easytag 0.30d'
20  PACKAGE_BUGREPORT=''
21  
22  ac_unique_file="src/easytag.h"
23 @@ -918,7 +918,7 @@
24    # Omit some internal or obsolete options to make the list less imposing.
25    # This message is too long to be a string in the A/UX 3.1 sh.
26    cat <<_ACEOF
27 -\`configure' configures easytag 0.30c to adapt to many kinds of systems.
28 +\`configure' configures easytag 0.30d to adapt to many kinds of systems.
29  
30  Usage: $0 [OPTION]... [VAR=VALUE]...
31  
32 @@ -984,7 +984,7 @@
33  
34  if test -n "$ac_init_help"; then
35    case $ac_init_help in
36 -     short | recursive ) echo "Configuration of easytag 0.30c:";;
37 +     short | recursive ) echo "Configuration of easytag 0.30d:";;
38     esac
39    cat <<\_ACEOF
40  
41 @@ -1092,7 +1092,7 @@
42  test -n "$ac_init_help" && exit 0
43  if $ac_init_version; then
44    cat <<\_ACEOF
45 -easytag configure 0.30c
46 +easytag configure 0.30d
47  generated by GNU Autoconf 2.53
48  
49  Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002
50 @@ -1107,7 +1107,7 @@
51  This file contains any messages produced by compilers while
52  running configure, to aid debugging if configure makes a mistake.
53  
54 -It was created by easytag $as_me 0.30c, which was
55 +It was created by easytag $as_me 0.30d, which was
56  generated by GNU Autoconf 2.53.  Invocation command line was
57  
58    $ $0 $@
59 @@ -1639,7 +1639,7 @@
60  
61  # Define the identity of the package.
62   PACKAGE=easytag
63 - VERSION=0.30c
64 + VERSION=0.30d
65  
66  
67  cat >>confdefs.h <<_ACEOF
68 @@ -12653,7 +12653,7 @@
69  } >&5
70  cat >&5 <<_CSEOF
71  
72 -This file was extended by easytag $as_me 0.30c, which was
73 +This file was extended by easytag $as_me 0.30d, which was
74  generated by GNU Autoconf 2.53.  Invocation command line was
75  
76    CONFIG_FILES    = $CONFIG_FILES
77 @@ -12715,7 +12715,7 @@
78  
79  cat >>$CONFIG_STATUS <<_ACEOF
80  ac_cs_version="\\
81 -easytag config.status 0.30c
82 +easytag config.status 0.30d
83  configured by $0, generated by GNU Autoconf 2.53,
84    with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
85  
86 diff -ruN easytag-0.30c/configure.in easytag-0.30d/configure.in
87 --- easytag-0.30c/configure.in  Mon Feb  2 18:51:24 2004
88 +++ easytag-0.30d/configure.in  Mon Feb  2 18:54:19 2004
89 @@ -6,7 +6,7 @@
90  dnl VERSION=0.28
91  
92  AC_PREREQ(2.53)
93 -AC_INIT(easytag, 0.30c) dnl defines ($PACKAGE, $VERSION)
94 +AC_INIT(easytag, 0.30d) dnl defines ($PACKAGE, $VERSION)
95  AC_CONFIG_SRCDIR(src/easytag.h)
96  dnl -------------------------------
97  dnl Init automake
98 diff -ruN easytag-0.30c/easytag.spec easytag-0.30d/easytag.spec
99 --- easytag-0.30c/easytag.spec  Mon Feb  2 18:51:24 2004
100 +++ easytag-0.30d/easytag.spec  Mon Feb  2 18:54:34 2004
101 @@ -1,5 +1,5 @@
102  %define    name      easytag
103 -%define    version   0.30c
104 +%define    version   0.30d
105  %define    release   1
106  %define    prefix    /usr
107  
108 diff -ruN easytag-0.30c/src/cddb.c easytag-0.30d/src/cddb.c
109 --- easytag-0.30c/src/cddb.c    Sun Sep  7 01:01:10 2003
110 +++ easytag-0.30d/src/cddb.c    Mon Feb  2 18:57:06 2004
111 @@ -1161,7 +1161,8 @@
112  
113      for (i=0;i<CDDB_ANSWER_LINE_SIZE;i++)
114      {
115 -        bytes_read = read(socket_id,&cddb_out[i],1);
116 +        //bytes_read = read(socket_id,&cddb_out[i],1); // This returns "Wrong Answer..." under FreeBSD 5.1
117 +        bytes_read = recv(socket_id,&cddb_out[i],1,0); // Patch from Jan Kanty Palus 13/01/2004
118          if (bytes_read < 0)
119              return -1; // Error!
120  
121 diff -ruN easytag-0.30c/src/setting.c easytag-0.30d/src/setting.c
122 --- easytag-0.30c/src/setting.c Sun Sep  7 01:09:16 2003
123 +++ easytag-0.30d/src/setting.c Mon Feb  2 18:52:36 2004
124 @@ -186,6 +186,7 @@
125  
126      {"load_file_run_scanner",                CV_TYPE_BOOL,    &LOAD_FILE_RUN_SCANNER                },
127  
128 +    {"cddb_server_name",                     CV_TYPE_STRING,  &CDDB_SERVER_NAME                     },
129      {"cddb_server_port",                     CV_TYPE_BOOL,    &CDDB_SERVER_PORT                     },
130      {"cddb_server_cgi_path",                 CV_TYPE_STRING,  &CDDB_SERVER_CGI_PATH                 },
131      {"cddb_use_proxy",                       CV_TYPE_BOOL,    &CDDB_USE_PROXY                       },
This page took 0.052903 seconds and 3 git commands to generate.