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
fb9888eb
Commit
fb9888eb
authored
Mar 12, 2003
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ./configure.ac.in: we look for libqt-mt.so before libqt.so.
parent
1171979d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
1 deletion
+10
-1
configure.ac.in
configure.ac.in
+10
-1
No files found.
configure.ac.in
View file @
fb9888eb
...
...
@@ -2443,7 +2443,16 @@ AC_ARG_ENABLE(qt,
[if test "x${enable_qt}" = "xyes"; then
PLUGINS="${PLUGINS} qt"
ALIASES="${ALIASES} qvlc"
LDFLAGS_qt="${LDFLAGS_qt} -lqt -L${QTDIR}/lib"
LDFLAGS_qt="${LDFLAGS_qt} -L${QTDIR}/lib"
LDFLAGS="${LDFLAGS_save} ${LDFLAGS_qt}"
AC_CHECK_LIB(qt-mt,main,[
LDFLAGS_qt="${LDFLAGS_qt} -lqt-mt"
],[
AC_CHECK_LIB(qt,main,[
LDFLAGS_qt="${LDFLAGS_qt} -lqt"
])
])
LDFLAGS="${LDFLAGS_save}"
CPPFLAGS_qt="${CPPFLAGS_qt} -I/usr/include/qt3 -I/usr/include/qt -I${QTDIR}/include"
if test -x ${QTDIR}/bin/moc
then
...
...
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