Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
flac
Commits
548175cf
Commit
548175cf
authored
Nov 01, 2001
by
Matt Zimmerman
Browse files
Fix libogg check
parent
b312f28a
Changes
1
Hide whitespace changes
Inline
Side-by-side
configure.in
View file @
548175cf
...
...
@@ -76,8 +76,10 @@ if test x$sse_os = xtrue ; then
AC_DEFINE(FLAC__SSE_OS)
fi
AM_PATH_OGG( , AC_MSG_WARN([*** Ogg development enviroment not installed - ogg support will not be built]))
AM_CONDITIONAL(FLaC__HAS_OGG, test x$OGG_LIBS != x)
AC_CHECK_LIB(ogg, ogg_stream_init,
[LIBS="$LIBS -logg"; have_ogg=yes],
[AC_MSG_WARN([*** Ogg development enviroment not installed - ogg support will not be built])])
AM_CONDITIONAL(FLaC__HAS_OGG, [test $have_ogg = xyes])
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)
...
...
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