Displaying 7 results from an estimated 7 matches for "share_libs".
Did you mean:
shared_libs
2004 Sep 10
1
Patch for building on IRIX
....am,v
retrieving revision 1.13
diff -u -r1.13 Makefile.am
--- src/flac/Makefile.am 20 Sep 2002 05:55:13 -0000 1.13
+++ src/flac/Makefile.am 5 Oct 2002 09:06:51 -0000
@@ -39,4 +39,4 @@
file.h \
vorbiscomment.h
-flac_LDADD = $(NEED_OGGFLAC_LIB) $(top_builddir)/src/libFLAC/libFLAC.la @OGG_LIBS@ @SHARE_LIBS@ -lm
+flac_LDADD = $(NEED_OGGFLAC_LIB) $(top_builddir)/src/libFLAC/libFLAC.la @OGG_LIBS@ @SHARE_LIBS@ @LIBICONV@ -lm
Index: src/metaflac/Makefile.am
===================================================================
RCS file: /cvsroot/flac/flac/src/metaflac/Makefile.am,v
retrieving revision 1.6
di...
2004 Sep 10
9
FLAC 1.0.4 released
I uploaded the source tarball and binary releases for win32 and
redhat 7. Solaris package should be ready tomorrow.
See the news item for all the improvements from 1.0.3:
http://flac.sourceforge.net/news.html#20020924
Developers, see the new Doxygen-based API docs:
http://flac.sourceforge.net/api/index.html
Thanks again to all the contributors and testers.
Josh
2004 Sep 10
2
getting framesize in client
...gure.in
--- configure.in 7 Nov 2002 05:14:02 -0000 1.64
+++ configure.in 9 Nov 2002 16:51:46 -0000
@@ -230,7 +230,7 @@
AM_PATH_XMMS(0.9.5.1, , AC_MSG_WARN([*** XMMS >= 0.9.5.1 not installed - xmms support will not be built]))
AM_CONDITIONAL(FLaC__HAS_XMMS, test x$XMMS_INPUT_PLUGIN_DIR != x)
-SHARE_LIBS='$(top_builddir)/src/share/libgrabbag.a $(top_builddir)/src/share/libgain_analysis.a $(top_builddir)/src/share/libgetopt.a $(top_builddir)/src/share/libutf8.a'
+SHARE_LIBS='$(top_builddir)/src/share/grabbag/libgrabbag.a $(top_builddir)/src/share/gain_analysis/libgain_analysis.a $(top_bu...
2004 Sep 10
3
getting framesize in client
On Fri, Nov 08, 2002 at 12:39:52PM -0800, Josh Coalson wrote:
> --- Miroslav Lichvar <lichvarm@phoenix.inf.upol.cz> wrote:
> > I have few notes:
> >
> > It seems there is changed API in CVS again. So, what about adding
> > function like
> > unsigned FLAC__format_frame_size(const FLAC__Frame *frame)
> > which returns size of the frame in bytes. This
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]
2002 Sep 11
1
patch for FLAC
...CS file: /usr/local/cvsroot/vorbis-tools/oggenc/Makefile.am,v
retrieving revision 1.21
diff -u -p -r1.21 Makefile.am
--- oggenc/Makefile.am 11 Jul 2002 02:45:38 -0000 1.21
+++ oggenc/Makefile.am 11 Sep 2002 18:59:45 -0000
@@ -19,7 +19,7 @@ INCLUDES = @SHARE_CFLAGS@ @OGG_CFLAGS@ @
oggenc_LDADD = @SHARE_LIBS@ \
@VORBISENC_LIBS@ @VORBIS_LIBS@ @OGG_LIBS@ \
- @LIBICONV@ @I18N_LIBS@
+ @LIBICONV@ @I18N_LIBS@ @FLAC_LIBS@
oggenc_DEPENDENCIES = @SHARE_LIBS@
oggenc_SOURCES = $(oggencsources)
2002 Aug 14
0
automake 1.6 compatability patch
...dir@
localedir = $(datadir)/locale
DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@
-bin_PROGRAMS = oggenc
+bin_PROGRAMS = @OGGENC@
+EXTRA_PROGRAMS = oggenc
+mandir = @MANDIR@
INCLUDES = @SHARE_CFLAGS@ @OGG_CFLAGS@ @VORBIS_CFLAGS@ @I18N_CFLAGS@
@@ -23,8 +27,6 @@
oggenc_DEPENDENCIES = @SHARE_LIBS@
oggenc_SOURCES = $(oggencsources)
-
-endif
EXTRA_DIST = $(oggencsources)
Index: oggenc/man/Makefile.am
===================================================================
RCS file: /usr/local/cvsroot/vorbis-tools/oggenc/man/Makefile.am,v
retrieving revision 1.5
diff -u -r1.5 Makefile.am
--...