-
Notifications
You must be signed in to change notification settings - Fork 931
Added OpenSSL & various protocol support to FFmpeg backend #229
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
a577c57
f2c53bd
77619d3
c746b96
d71b139
bc69c01
991a981
0977132
3dace9e
74d92e0
8fc6035
6f566cd
f621ead
e08dccb
3525469
8aa69b3
af2f0c6
d08a9c9
43704d3
b72fb32
2eb9e03
8e86d77
8d12fd7
4808583
88597ed
399baca
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,24 +13,24 @@ RUN curl -O -L https://download.qt.io/archive/qt/4.8/4.8.7/qt-everywhere-opensou | |
ENV QTDIR /opt/Qt4.8.7 | ||
ENV PATH "$QTDIR/bin:$PATH" | ||
|
||
RUN curl -O -L https://cmake.org/files/v3.9/cmake-3.9.0.tar.gz && \ | ||
tar -zxf cmake-3.9.0.tar.gz && \ | ||
cd cmake-3.9.0 && \ | ||
yum -y install curl-devel zlib-devel && \ | ||
./configure --system-curl && \ | ||
RUN curl -O -L https://cmake.org/files/v3.9/cmake-3.9.0.tar.gz && \ | ||
tar -zxf cmake-3.9.0.tar.gz && \ | ||
cd cmake-3.9.0 && \ | ||
yum -y install curl-devel zlib-devel && \ | ||
./configure --system-curl && \ | ||
make -j4 && \ | ||
make install && \ | ||
cd .. && \ | ||
make install && \ | ||
cd .. && \ | ||
rm -rf cmake-3.9.0* | ||
|
||
RUN curl -O -L https://www.cpan.org/src/5.0/perl-5.10.1.tar.gz && \ | ||
RUN curl -O -L https://www.cpan.org/src/5.0/perl-5.10.1.tar.gz && \ | ||
tar -xzf perl-5.10.1.tar.gz && \ | ||
yum install autoconf automake bzip2 git freetype-devel gcc gcc-c++ libtool make pkgconfig -y && \ | ||
cd perl-5.10.1 && \ | ||
yum install autoconf automake bzip2 git freetype-devel gcc gcc-c++ libtool make pkgconfig -y && \ | ||
cd perl-5.10.1 && \ | ||
./Configure -des -Dprefix=$HOME/ffmpeg_build && \ | ||
make -j4 && \ | ||
make install && \ | ||
cd .. && \ | ||
cd .. && \ | ||
rm -rf perl-5.10.1* && \ | ||
PATH=$HOME/ffmpeg_build/bin:$PATH #otherwise perl not detected at runtime | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No need to add There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks for this. |
||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When I fix the
yum install git
problem, OpenSSL build fails ini686
Dockerfile. Output suggests that Perl has been built for x64 instead of x86.Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@native-api please see abhiTronix#2 , I have suggested some changes related to this issue.