Displaying 7 results from an estimated 7 matches for "cfgfile_options".
2008 Jan 25
7
vorbis-tools 1.2.0 Release Candidate
I bumped the version number of vorbis-tools and am preparing it for an
eventual release in a few days.
A changelog of what's new may be found at [1].
Meanwhile, what's in SVN is a "Release Candidate" to find out if
anything was broken since version 1.1.1. Report any (or lack of)
problems you may find, so we'll be able to put out a new version of
vorbis-tools.
-Ivo
[1]
2003 Dec 11
1
Problems building vorbis tools 1.0.1
...//www.xiph.org/archives/vorbis-dev/200201/0005.html
(make was looking for libogg.la in the wrong path)
but creating a symlink to /usr/local/lib/libogg.la in /usr/lib/ helped. :)
having solved this, I get a new error:
---
gcc -O20 -ffast-math -fsigned-char -o ogg123 audio.o buffer.o
callbacks.o cfgfile_options.o cmdline_options.o file_transport.o
format.o http_transport.o ogg123.o oggvorbis_format.o playlist.o
status.o transport.o vorbis_comments.o flac_format.o easyflac.o
speex_format.o ../share/libutf8.a ../share/libgetopt.a
/usr/local/lib/libvorbisfile.so /usr/local/lib/libvorbis.so
/usr/local/l...
2006 Jul 13
0
[vorbis-tools] Some patches coming from Debian bugs
...11702)
+++ ogg123/vorbis_comments.c (working copy)
@@ -15,6 +15,10 @@
********************************************************************/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
Index: ogg123/cfgfile_options.c
===================================================================
--- ogg123/cfgfile_options.c (revision 11702)
+++ ogg123/cfgfile_options.c (working copy)
@@ -20,6 +20,10 @@
* function for your platform / compiler.
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include &...
2006 Jul 13
0
[vorbis-tools] Some patches coming from Debian bugs
...11702)
+++ ogg123/vorbis_comments.c (working copy)
@@ -15,6 +15,10 @@
********************************************************************/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
Index: ogg123/cfgfile_options.c
===================================================================
--- ogg123/cfgfile_options.c (revision 11702)
+++ ogg123/cfgfile_options.c (working copy)
@@ -20,6 +20,10 @@
* function for your platform / compiler.
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include &...
2002 Oct 05
2
ogg123 remote interface
...ig/buffer.c Sun Jul 14 07:38:00 2002
+++ ogg123/buffer.c Sat Oct 5 14:34:32 2002
@@ -87,7 +87,7 @@
void buffer_thread_cleanup (void *arg)
{
- buf_t *buf = (buf_t *)arg;
+ //buf_t *buf = (buf_t *)arg;
DEBUG("Enter buffer_thread_cleanup");
}
diff -urN -X diff.ignore ogg123.orig/cfgfile_options.c ogg123/cfgfile_options.c
--- ogg123.orig/cfgfile_options.c Sat Jan 26 12:06:37 2002
+++ ogg123/cfgfile_options.c Sat Oct 5 14:35:29 2002
@@ -221,7 +221,7 @@
parse_code_t parse_line (file_option_t opts[], char *line)
{
- char *equals, *value = "";
+ char *equals, *value = 0;
fi...
2008 Feb 11
1
Re: [xiph-commits] r14479 - trunk/vorbis-tools/ogg123
On 11-Feb-08, at 12:37 PM, ivo@svn.xiph.org wrote:
> Author: ivo
> Date: 2008-02-11 12:37:13 -0800 (Mon, 11 Feb 2008)
> New Revision: 14479
>
> Patch by Christian Weisgerber to fix possible problems in 64bit
> systems with "int shuffle" and "int repeat".
I'm confused. How does making these long help?
-r
2002 Aug 14
0
automake 1.6 compatability patch
...akefile.am 11 Jul 2002 02:45:37 -0000 1.26
+++ ogg123/Makefile.am 14 Aug 2002 17:12:18 -0000
@@ -2,8 +2,8 @@
AUTOMAKE_OPTIONS = foreign
-mans = ogg123.1
-docs = ogg123rc-example
+man_pages = ogg123.1
+doc_files = ogg123rc-example
ogg123sources = audio.c buffer.c callbacks.c \
cfgfile_options.c cmdline_options.c \
file_transport.c format.c http_transport.c \
@@ -16,12 +16,19 @@
if BUILD_OGG123
+mans=$(man_pages)
+docs=$(doc_files)
+else
+mans=
+docs=$(doc_files)
+endif
datadir = @datadir@
localedir = $(datadir)/locale
DEFS = -DLOCALEDIR=\"$(localedir)\&qu...