diff --git a/projects/pjsip/Dockerfile b/projects/pjsip/Dockerfile index afddc9083..86e34ac82 100644 --- a/projects/pjsip/Dockerfile +++ b/projects/pjsip/Dockerfile @@ -14,7 +14,7 @@ # ################################################################################ FROM gcr.io/oss-fuzz-base/base-builder -RUN apt-get update && apt-get install -y autoconf libtool-bin pkg-config +RUN apt-get update && apt-get install -y autoconf libtool-bin pkg-config libssl-dev zlib1g-dev RUN git clone https://github.com/pjsip/pjproject pjsip COPY build.sh $SRC/ WORKDIR $SRC/pjsip/ diff --git a/projects/pjsip/build.sh b/projects/pjsip/build.sh index 970ecc033..01114b819 100644 --- a/projects/pjsip/build.sh +++ b/projects/pjsip/build.sh @@ -14,6 +14,7 @@ # limitations under the License. # ################################################################################ +export CFLAGS="$CFLAGS -DPJMEDIA_HAS_VIDEO=1" export CXXFLAGS="$CFLAGS" export LDFLAGS="$CFLAGS"