search for: lvorbisfil

Displaying 15 results from an estimated 15 matches for "lvorbisfil".

Did you mean: lvorbisfile
2001 Jul 06
1
problem with vorbis autoconf stuff
It sets: VORBIS_LIBS="$VORBIS_LIBDIR -lvorbis -lm" VORBISFILE_LIBS="-lvorbisfile" VORBISENC_LIBS="-lvorbisenc" Shouldn't this be: VORBIS_LIBS="$VORBIS_LIBDIR -lvorbis -lm" VORBISFILE_LIBS="$VORBIS_LIBDIR -lvorbisfile" VORBISENC_LIBS="$VORBIS_LIBDIR -lvorbisenc" as libvorbisenc & libvorbis are also in the same libd...
2014 Aug 09
1
libvorbisfile dynamic linkage with pkg-config - inter-library dependencies?
...city against the system copies of libogg and libvorbis (standard dynamic linkage to the system libraries). There has not been significant change to the Audacity calling code since this was last working. The problem seems to be that pkg-config --libs --print-errors "vorbisfile" outputs -lvorbisfile but when I try to link Audacity with only -lvorbisfile on the linker command line, the link fails with /usr/lib/gcc/x86_64-pc-linux-gnu/4.7.3/../../../../x86_64-pc-linux-gnu/bin/ld: export/audacity-ExportOGG.o: undefined reference to symbol 'vorbis_block_init' /usr/lib/gcc/x86_64-pc-linux...
2003 Jun 12
1
static lib
I'm trying to link sox to the ogg vorbis static libraries but I'm getting the following error: gcc -L. -L./gsm -o sox sox.o -lst -lgsm -logg -lvorbis -lvorbisfile -lvorbisenc -lmad -lmp3lame ld: Undefined symbols: _oggpack_bytes _oggpack_get_buffer _oggpack_reset _oggpack_writeclear _oggpack_writeinit _oggpack_read _oggpack_readinit _oggpack_write _oggpack_adv _oggpack_look _oggpack_writealign _vorbis_packet_blocksize _vorbis_synthesis _vorbis_synthesis_tr...
2000 Jul 25
2
Library issues (BOUNCE vorbis-dev@xiph.org: Non-member submission from [rob@emusic.com]) (fwd)
...s libs are installed on the target machine. The source tarball that I just posted requires the lib to be installed in /usr/lib. Not a great solution. If vorbisfile.a were libvorbisfile.a I could just have configure do a AC_CHECK_LIB and then have the vorbis plugin be compiled with -lvorbis and -lvorbisfile 2) Are there any plans for creating shared libs? What is the overall philosophy about the libraries? Should we include the vorbis source inside of FreeAmp and avoid these problems? I'd prefer to have shared libs... Is there an rpm package script available? If not, I could cobble that toget...
2000 Dec 15
1
AIX + ogg123
..." -DVERSION=\"1.0beta3\" -I. -I. -I/home/xxxx/xxxx/arch/AIX/include -I/home/xxxx/xxxx/arch/AIX/include -I/home/xxxx/xxxx/arch/AIX/include -c ogg123.c /bin/sh ../libtool --mode=link gcc -o ogg123 -L/home/xxxx/xxxx/arch/AIX/lib -logg -L/home/xxxx/xxxx/arch/AIX/lib -lvorbis -lm -lvorbisfile -L/home/xxxx/xxxx/arch/AIX/lib -lao -ldl ogg123.o mkdir .libs gcc -o ogg123 -L/home/xxxx/xxxx/arch/AIX/lib -logg -L/home/xxxx/xxxx/arch/AIX/lib -lvorbis -lm -lvorbisfile -L/home/xxxx/xxxx/arch/AIX/lib -lao -ldl ogg123.o ld: 0711-224 WARNING: Duplicate symbol: .strcmp ld: 0711-224 WARNING: Duplic...
2001 Mar 13
1
Compiling vorbis-tools on NetBSD-1.5/i386
...above, but this time give the --disable-ao-test option, and things go smooth. After that, typing ``make'' gives the following: Making all in oggenc Making all in man Making all in ogg123 /bin/sh ../libtool --mode=link gcc -o ogg123 ogg123.o ao_interface.o buffer.o getopt.o getopt1.o -lvorbisfile -L/usr/pkg//lib -lvorbis -lm -L/usr/pkg//lib -logg -L/usr/pkg//lib -lao -ldl gcc -o ogg123 ogg123.o ao_interface.o buffer.o getopt.o getopt1.o -lvorbisfile -L/usr/pkg//lib -lvorbis -lm -L/usr/pkg//lib -logg -L/usr/pkg//lib -lao -ldl /usr/bin/ld: cannot open -ldl: No such file or directory collect...
2017 Apr 23
0
impossible to link against libtheoraenc (missing symbol th_comment_query_count)
...aenc? What has been fumbled up here that it is not possible to resolve this stupid symbol? It's a T symbol, not a t symbol, so why is there a link problem? Just to avoid questions, that's the command line (stripped of unimportant blunder): g++ -o ... -ltheoraenc -ltheoradec -lvorbisenc -lvorbisfile -lvorbis -logg -- Yours sincerely Plüss Roland Leader and Head Programmer - Game: Epsylon ( http://www.indiedb.com/games/epsylon ) - Game Engine: Drag[en]gine ( http://www.indiedb.com/engines/dragengine , http://dragengine.rptd.ch/wiki ) - As well as various Blender export scripts und game too...
2001 Jun 20
1
What makefile should we use ?
Hello, I'm trying to write my own code for an oggplayer. Once i have my source files, what kind of makefile should I use ? Or what commande line should i give to the compiler ? Thank you ekine --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'vorbis-request@xiph.org'
2002 Sep 11
1
Compiling
I am trying to compile the example code for vorbis files and I am getting an undefined reference, below is my Makefile, any ideas on what is wrong? OBJS=ogg.o ogg: $(OBJS) cc -o ogg $(OBJS) -L/usr/local/lib -lm -lc -lvorbis ogg.o: ogg.c cc -I/usr/local/include -c ogg.c clean: rm -f $(OBJS) <p>_________________________________________________________________ Join
2003 Jun 11
1
Problems with ov_open
...open(argv[1], "rw"); //create an instance of the OggVorbis_File class OggVorbis_File vf; //open the specified vorbis file. int i = ov_testemacs(f, &vf, NULL, 0); } --------------------------------MAKEFILE------------------------------ CFLAGS = -g LIBS = -L/usr/local/lib -lvorbisfile -lvorbis -logg -lao -lvorbisenc -lltdl <p>oggPlay: oggPlay.o oggPlay.c gcc $(CFLAGS) oggPlay.o -o oggPlay $(LIBS) oggPlay.o : oggPlay.c gcc $(CFLAGS) -c oggPlay.c clean: /bin/rm oggPlay.o *.*~ <p>------------------------------ERROR-------------------------...
2004 Aug 06
7
CVS changes
To all CVS users of ices 0.x: I've just merged the ices-libshout_2 branch onto HEAD. Anyone using that branch should switch back to HEAD to continue to get the latest updates. This also means you now need the latest version of libshout2 from CVS in order to build ices from CVS. libshout2: :pserver:anoncvs@cvs.xiph.org:/usr/local/cvsroot libshout ices:
2003 Jan 05
2
VorbisFile library crashs.
Hello! There is a problem with the VorbisFile library. It only works when I open an OGG file for the 1st time. After I closed the file and try to open another one or the same it crashs. It seems it applies to the use of either ov_open or ov_test functions or their combination. I wrote a test app that illustrates the bug. It crashs with a message "Unmapped memory exception". It's
2011 Oct 13
1
Problem with Ices
2004 Aug 06
3
ices2 compilations problems
...; RANLIB='ranlib' SET_MAKE='' SHELL='/usr/local/bin/bash' SHOUT_CFLAGS='' SHOUT_CLFAGS='' SHOUT_LIBS='' SOCKET_LIBS='' STRIP='strip' SUN_CFLAGS='' VERSION='2.0' VORBISENC_LIBS='-lvorbisenc' VORBISFILE_LIBS='-lvorbisfile' VORBIS_CFLAGS='-I/home/Darkmeteor/include' VORBIS_LIBS='-L/home/Darkmeteor/lib -lvorbis -lm' XIPH_CFLAGS='' XMLCONFIG='xml2-config' XML_CFLAGS='-I/home/Darkmeteor/include/libxml2' XML_LIBS='-L/home/Darkmeteor/lib -lxml2 -lz -lm' ac_ct_CC='gc...
2004 Aug 06
3
ices2 compilations problems
Hi, I have an Ices2 comp problem, it can't find libshout. I have installed Libshout 2.0 in /home/Darkmeteor the configure line I'm using for ices2 is : ./configure --prefix=/home/Darkmeteor --with-ogg-prefix=/home/Darkmeteor --with-vorbis-prefix=/home/Darkmeteor --with-shout-prefix=/home/Darkmeteor Problem : checking for Ogg... yes checking for Vorbis... yes checking for Shout... no