Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
Vorbis tools
Commits
32c99c82
Commit
32c99c82
authored
Jan 18, 2003
by
Brendan Cully
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Try to see if -lm is necessary (closes #231)
svn path=/trunk/vorbis-tools/; revision=4276
parent
371bb7e2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
acinclude.m4
acinclude.m4
+7
-1
No files found.
acinclude.m4
View file @
32c99c82
...
...
@@ -128,7 +128,7 @@ AC_ARG_ENABLE(vorbistest, [ --disable-vorbistest Do not try to compile an
VORBISFILE_LIBS="$VORBIS_LIBS -lvorbisfile"
VORBISENC_LIBS="$VORBIS_LIBS -lvorbisenc"
VORBIS_LIBS="$VORBIS_LIBS -lvorbis
-lm
"
VORBIS_LIBS="$VORBIS_LIBS -lvorbis"
if test "x$vorbis_includes" != "x" ; then
VORBIS_CFLAGS="-I$vorbis_includes"
...
...
@@ -138,6 +138,12 @@ AC_ARG_ENABLE(vorbistest, [ --disable-vorbistest Do not try to compile an
VORBIS_CFLAGS="-I$prefix/include"
fi
xiph_saved_LIBS="$LIBS"
LIBS=""
AC_SEARCH_LIBS(cos, m, [VORBIS_LIBS="$VORBIS_LIBS $LIBS"], [
AC_MSG_WARN([cos() not found in math library, vorbis installation may not work])
])
LIBS="$xiph_saved_LIBS"
AC_MSG_CHECKING(for Vorbis)
no_vorbis=""
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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