Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
fe9c85e4
Commit
fe9c85e4
authored
Aug 30, 2017
by
Clément Bœsch
Committed by
Clément Bœsch
Sep 02, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
build: make sure a disabled autodetect still pick the libc's iconv
parent
e3c1219c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
1 deletion
+10
-1
configure
configure
+10
-1
No files found.
configure
View file @
fe9c85e4
...
...
@@ -3592,6 +3592,11 @@ for e in $env; do
done
if
disabled autodetect
;
then
# Unless iconv is explicitely disabled by the user, we still want to probe
# for the iconv from the libc.
disabled iconv
||
enable
libc_iconv
disable_weak
$EXTERNAL_AUTODETECT_LIBRARY_LIST
disable_weak
$HWACCEL_AUTODETECT_LIBRARY_LIST
fi
...
...
@@ -6193,7 +6198,11 @@ int main(void) { return 0; }
EOF
# Funny iconv installations are not unusual, so check it after all flags have been set
enabled iconv
&&
check_func_headers iconv.h iconv
||
check_lib iconv iconv.h iconv
-liconv
if
enabled libc_iconv
;
then
check_func_headers iconv.h iconv
elif
enabled iconv
;
then
check_func_headers iconv.h iconv
||
check_lib iconv iconv.h iconv
-liconv
fi
enabled debug
&&
add_cflags
-g
"
$debuglevel
"
&&
add_asflags
-g
"
$debuglevel
"
...
...
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