Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
Vorbis
Commits
9e81a178
Commit
9e81a178
authored
Nov 08, 2000
by
Jack Moffitt
Browse files
hoepfully this is the *right* thing.
jack. svn path=/trunk/vorbis/; revision=1020
parent
8b6bdd4a
Changes
4
Hide whitespace changes
Inline
Side-by-side
configure.in
View file @
9e81a178
...
...
@@ -149,7 +149,7 @@ dnl --------------------------------------------------
AC_CHECK_LIB(m, cos, LIBS="-lm", LIBS="")
AC_CHECK_LIB(pthread, pthread_create, pthread_lib="-lpthread", :)
AM_PATH_OGG(, AC_MSG_ERROR(must have Ogg installed!))
AM_PATH_OGG(
LIBS="$LIBS $OGG_LIBS"
, AC_MSG_ERROR(must have Ogg installed!))
dnl --------------------------------------------------
dnl Check for library functions
...
...
@@ -166,4 +166,4 @@ AC_SUBST(DEBUG)
AC_SUBST(PROFILE)
AC_SUBST(pthread_lib)
AC_OUTPUT(Makefile lib/Makefile lib/modes/Makefile lib/books/Makefile doc/Makefile doc/vorbisfile/Makefile include/Makefile include/vorbis/Makefile examples/Makefile)
AC_OUTPUT(Makefile lib/Makefile lib/modes/Makefile lib/books/Makefile doc/Makefile doc/vorbisfile/Makefile
doc/vorbisenc/Makefile
include/Makefile include/vorbis/Makefile examples/Makefile)
doc/Makefile.am
View file @
9e81a178
...
...
@@ -2,7 +2,7 @@
AUTOMAKE_OPTIONS
=
foreign
SUBDIRS
=
vorbisfile
SUBDIRS
=
vorbisfile
vorbisenc
docdir
=
$(datadir)
/doc/
$(PACKAGE)
-
$(VERSION)
...
...
examples/Makefile.am
View file @
9e81a178
...
...
@@ -7,17 +7,17 @@ INCLUDES = -I$(top_srcdir)/include @OGG_CFLAGS@
noinst_PROGRAMS
=
decoder_example encoder_example chaining_example
\
vorbisfile_example seeking_example
LDADD
=
../lib/libvorbis.la
$(OGG_LIBS)
LDADD
=
../lib/libvorbis.la
decoder_example_SOURCES
=
decoder_example.c
encoder_example_SOURCES
=
encoder_example.c
encoder_example_LDADD
=
../lib/libvorbisenc.la ../lib/libvorbis.la
$(OGG_LIBS)
encoder_example_LDADD
=
../lib/libvorbisenc.la ../lib/libvorbis.la
chaining_example_SOURCES
=
chaining_example.c
chaining_example_LDADD
=
../lib/libvorbisfile.la ../lib/libvorbis.la
$(OGG_LIBS)
chaining_example_LDADD
=
../lib/libvorbisfile.la ../lib/libvorbis.la
vorbisfile_example_SOURCES
=
vorbisfile_example.c
vorbisfile_example_LDADD
=
../lib/libvorbisfile.la ../lib/libvorbis.la
$(OGG_LIBS)
vorbisfile_example_LDADD
=
../lib/libvorbisfile.la ../lib/libvorbis.la
seeking_example_SOURCES
=
seeking_example.c
seeking_example_LDADD
=
../lib/libvorbisfile.la ../lib/libvorbis.la
$(OGG_LIBS)
seeking_example_LDADD
=
../lib/libvorbisfile.la ../lib/libvorbis.la
debug
:
$(MAKE)
all
CFLAGS
=
"@DEBUG@"
...
...
lib/Makefile.am
View file @
9e81a178
...
...
@@ -19,9 +19,11 @@ libvorbis_la_SOURCES = mdct.c smallft.c block.c envelope.c window.c lsp.c lpc.c\
libvorbis_la_LDFLAGS
=
-version-info
@V_LIB_CURRENT@:@V_LIB_REVISION@:@V_LIB_AGE@
libvorbisfile_la_SOURCES
=
vorbisfile.c
#libvorbisfile_la_LIBADD = -L$(top_srcdir)/lib/.libs -lvorbis
libvorbisfile_la_LDFLAGS
=
-version-info
@VF_LIB_CURRENT@:@VF_LIB_REVISION@:@VF_LIB_AGE@
libvorbisenc_la_SOURCES
=
vorbisenc.c
#libvorbisenc_la_LIBADD = -L$(top_srcdir)/lib/.libs -lvorbis
libvorbisenc_la_LDFLAGS
=
-version-info
@VE_LIB_CURRENT@:@VE_LIB_REVISION@:@VE_LIB_AGE@
EXTRA_DIST
=
barkmel.c tone.c psytune.c lookups.pl
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment