Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
0afe4616
Commit
0afe4616
authored
Jul 07, 2003
by
Christophe Massiot
Browse files
Do not link twice with -logg under Darwin.
parent
5a0b0cf0
Changes
1
Hide whitespace changes
Inline
Side-by-side
configure.ac
View file @
0afe4616
dnl Autoconf settings for vlc
dnl $Id: configure.ac,v 1.2
5
2003/07/0
6 23:14:50
massiot Exp $
dnl $Id: configure.ac,v 1.2
6
2003/07/0
7 14:56:22
massiot Exp $
AC_INIT(vlc,0.6.0)
...
...
@@ -1930,7 +1930,12 @@ then
AC_CHECK_HEADERS(theora/theora.h, [
AC_CHECK_LIB(theora, theora_granule_time, [
AX_ADD_BUILTINS([theora])
AX_ADD_LDFLAGS([theora],[-ltheora -logg]) ],[
if test "${SYS}" = "darwin"; then
theora_libs="-ltheora"
else
theora_libs="-ltheora -logg"
fi
AX_ADD_LDFLAGS([theora],[${theora_libs}]) ],[
AC_MSG_ERROR([libtheora doesn't appear to be installed on you system.
You also need to check that you have a libogg posterior to the 1.0 release.])],
[-logg])
...
...
Write
Preview
Supports
Markdown
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