Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
0afe4616
Commit
0afe4616
authored
Jul 07, 2003
by
Christophe Massiot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Do not link twice with -logg under Darwin.
parent
5a0b0cf0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
configure.ac
configure.ac
+7
-2
No files found.
configure.ac
View file @
0afe4616
dnl Autoconf settings for vlc
dnl Autoconf settings for vlc
dnl $Id: configure.ac,v 1.2
5 2003/07/06 23:14:50
massiot Exp $
dnl $Id: configure.ac,v 1.2
6 2003/07/07 14:56:22
massiot Exp $
AC_INIT(vlc,0.6.0)
AC_INIT(vlc,0.6.0)
...
@@ -1930,7 +1930,12 @@ then
...
@@ -1930,7 +1930,12 @@ then
AC_CHECK_HEADERS(theora/theora.h, [
AC_CHECK_HEADERS(theora/theora.h, [
AC_CHECK_LIB(theora, theora_granule_time, [
AC_CHECK_LIB(theora, theora_granule_time, [
AX_ADD_BUILTINS([theora])
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.
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.])],
You also need to check that you have a libogg posterior to the 1.0 release.])],
[-logg])
[-logg])
...
...
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