Displaying 2 results from an estimated 2 matches for "vorbiscomment_ldadd".
2000 Nov 22
1
Non-gcc build problems
...ided in the attached patch
- I didn't mention in my previous mail, but vorbiscomment's Makefile.am
will not work for static linking as well. The vorbiscomment_LDFLAGS line
needs to be fixed.
--> Solution: change "vorbiscomment_LDFLAGS" to either "LIBS" or
"vorbiscomment_LDADD" (since there's only one program in this
directory it doesn't really matter which), and change the order of the
libs for proper left-to-right linking:
vorbiscomment_LDADD = @VORBIS_LIBS@ @OGG_LIBS@
- vorbis-tools/ogg123/ogg123.c line 37 includes <getopt.h>. Thi...
2001 Jan 20
2
Makefile.am patch
...11:39:23 1.6
--- Makefile.am 2001/01/20 13:52:55
***************
*** 6,12 ****
INCLUDES = @OGG_CFLAGS@ @VORBIS_CFLAGS@
! vorbiscomment_LDFLAGS = @OGG_LIBS@ @VORBIS_LIBS@
vorbiscomment_SOURCES = vcedit.c vcedit.h vcomment.c
debug:
--- 6,12 ----
INCLUDES = @OGG_CFLAGS@ @VORBIS_CFLAGS@
! vorbiscomment_LDADD = @VORBIS_LIBS@ @OGG_LIBS@
vorbiscomment_SOURCES = vcedit.c vcedit.h vcomment.c
debug:
{+} Jeff Squyres
{+} squyres@cse.nd.edu
{+} Perpetual Obsessive Notre Dame Student Craving Utter Madness
{+} "I came to ND for 4 years and ended up staying for a decade"
--- >8 ----
List archi...