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
26a84e2d
Commit
26a84e2d
authored
Nov 21, 2015
by
Matt Oliver
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure: Add user options to enable gcrypt/gmp for rtmp(t)e support.
Signed-off-by:
Matt Oliver
<
protogonoi@gmail.com
>
parent
2ee89553
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
7 deletions
+9
-7
configure
configure
+9
-7
No files found.
configure
View file @
26a84e2d
...
@@ -199,6 +199,10 @@ External library support:
...
@@ -199,6 +199,10 @@ External library support:
--enable-chromaprint enable audio fingerprinting with chromaprint [no]
--enable-chromaprint enable audio fingerprinting with chromaprint [no]
--enable-fontconfig enable fontconfig, useful for drawtext filter [no]
--enable-fontconfig enable fontconfig, useful for drawtext filter [no]
--enable-frei0r enable frei0r video filtering [no]
--enable-frei0r enable frei0r video filtering [no]
--enable-gcrypt enable gcrypt, needed for rtmp(t)e support
if openssl, librtmp or gmp is not used [no]
--enable-gmp enable gmp, needed for rtmp(t)e support
if openssl or librtmp is not used [no]
--enable-gnutls enable gnutls, needed for https support
--enable-gnutls enable gnutls, needed for https support
if openssl is not used [no]
if openssl is not used [no]
--disable-iconv disable iconv [autodetect]
--disable-iconv disable iconv [autodetect]
...
@@ -1395,6 +1399,8 @@ EXTERNAL_LIBRARY_LIST="
...
@@ -1395,6 +1399,8 @@ EXTERNAL_LIBRARY_LIST="
crystalhd
crystalhd
decklink
decklink
frei0r
frei0r
gcrypt
gmp
gnutls
gnutls
iconv
iconv
ladspa
ladspa
...
@@ -1946,8 +1952,6 @@ CONFIG_EXTRA="
...
@@ -1946,8 +1952,6 @@ CONFIG_EXTRA="
fmtconvert
fmtconvert
frame_thread_encoder
frame_thread_encoder
g722dsp
g722dsp
gcrypt
gmp
golomb
golomb
gplv3
gplv3
h263dsp
h263dsp
...
@@ -4763,6 +4767,7 @@ die_license_disabled nonfree nvenc
...
@@ -4763,6 +4767,7 @@ die_license_disabled nonfree nvenc
enabled gpl
&&
die_license_disabled_gpl nonfree libfdk_aac
enabled gpl
&&
die_license_disabled_gpl nonfree libfdk_aac
enabled gpl
&&
die_license_disabled_gpl nonfree openssl
enabled gpl
&&
die_license_disabled_gpl nonfree openssl
die_license_disabled version3 gmp
die_license_disabled version3 libopencore_amrnb
die_license_disabled version3 libopencore_amrnb
die_license_disabled version3 libopencore_amrwb
die_license_disabled version3 libopencore_amrwb
die_license_disabled version3 libsmbclient
die_license_disabled version3 libsmbclient
...
@@ -5330,6 +5335,8 @@ enabled avisynth && { { check_lib2 "windows.h" LoadLibrary; } ||
...
@@ -5330,6 +5335,8 @@ enabled avisynth && { { check_lib2 "windows.h" LoadLibrary; } ||
enabled chromaprint
&&
require chromaprint chromaprint.h chromaprint_get_version
-lchromaprint
enabled chromaprint
&&
require chromaprint chromaprint.h chromaprint_get_version
-lchromaprint
enabled decklink
&&
{
check_header DeckLinkAPI.h
||
die
"ERROR: DeckLinkAPI.h header not found"
;
}
enabled decklink
&&
{
check_header DeckLinkAPI.h
||
die
"ERROR: DeckLinkAPI.h header not found"
;
}
enabled frei0r
&&
{
check_header frei0r.h
||
die
"ERROR: frei0r.h header not found"
;
}
enabled frei0r
&&
{
check_header frei0r.h
||
die
"ERROR: frei0r.h header not found"
;
}
enabled gcrypt
&&
require2 gcrypt gcrypt.h gcry_mpi_new
-lgcrypt
enabled gmp
&&
require2 gmp gmp.h mpz_export
-lgmp
enabled gnutls
&&
require_pkg_config gnutls gnutls/gnutls.h gnutls_global_init
enabled gnutls
&&
require_pkg_config gnutls gnutls/gnutls.h gnutls_global_init
enabled ladspa
&&
{
check_header ladspa.h
||
die
"ERROR: ladspa.h header not found"
;
}
enabled ladspa
&&
{
check_header ladspa.h
||
die
"ERROR: ladspa.h header not found"
;
}
enabled libiec61883
&&
require libiec61883 libiec61883/iec61883.h iec61883_cmp_connect
-lraw1394
-lavc1394
-lrom1394
-liec61883
enabled libiec61883
&&
require libiec61883 libiec61883/iec61883.h iec61883_cmp_connect
-lraw1394
-lavc1394
-lrom1394
-liec61883
...
@@ -5478,11 +5485,6 @@ enabled openssl && { check_lib openssl/ssl.h SSL_library_init -lssl -l
...
@@ -5478,11 +5485,6 @@ enabled openssl && { check_lib openssl/ssl.h SSL_library_init -lssl -l
die
"ERROR: openssl not found"
;
}
die
"ERROR: openssl not found"
;
}
enabled qtkit_indev
&&
{
check_header_oc QTKit/QTKit.h
||
disable qtkit_indev
;
}
enabled qtkit_indev
&&
{
check_header_oc QTKit/QTKit.h
||
disable qtkit_indev
;
}
if
enabled gnutls
;
then
{
check_lib2 gmp.h mpz_export
-lgmp
&&
enable
gmp
;
}
||
{
check_lib gcrypt.h gcry_mpi_new
-lgcrypt
&&
enable
gcrypt
;
}
fi
# libdc1394 check
# libdc1394 check
if
enabled libdc1394
;
then
if
enabled libdc1394
;
then
{
require_pkg_config libdc1394-2 dc1394/dc1394.h dc1394_new
&&
{
require_pkg_config libdc1394-2 dc1394/dc1394.h dc1394_new
&&
...
...
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