Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
b2227032
Commit
b2227032
authored
Feb 04, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't link against yes. Of course it does not work anyway
parent
072b223b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
3 deletions
+9
-3
extras/buildsystem/cmake/CMakeLists/src_CMakeLists.txt
extras/buildsystem/cmake/CMakeLists/src_CMakeLists.txt
+1
-1
extras/buildsystem/cmake/include/config.cmake
extras/buildsystem/cmake/include/config.cmake
+8
-2
No files found.
extras/buildsystem/cmake/CMakeLists/src_CMakeLists.txt
View file @
b2227032
...
...
@@ -172,7 +172,7 @@ target_link_libraries(libvlc-control libvlc)
# Libraries
# iconv
target_link_libraries(libvlc ${
HAVE_
ICONV})
target_link_libraries(libvlc ${
LIB
ICONV})
# Carbon
if(APPLE)
...
...
extras/buildsystem/cmake/include/config.cmake
View file @
b2227032
...
...
@@ -75,9 +75,15 @@ if(NOT HAVE_GETADDRINFO)
check_library_exists
(
getaddrinfo nsl
""
HAVE_GETADDRINFO
)
endif
(
NOT HAVE_GETADDRINFO
)
find_library
(
HAVE_ICONV iconv
)
set
(
LIBICONV
""
)
vlc_check_functions_exist
(
iconv
)
if
(
NOT HAVE_ICONV
)
set
(
LIBICONV
"iconv"
)
check_library_exists
(
iconv iconv
""
HAVE_ICONV
)
endif
(
NOT HAVE_ICONV
)
# FIXME: this will break on *BSD:
set
(
ICONV_CONST
"
"
)
set
(
ICONV_CONST
""
)
check_library_exists
(
rt clock_nanosleep
""
HAVE_CLOCK_NANOSLEEP
)
...
...
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