From 264b67c9434fbca73e2f5efdd99e1041b2dc8225 Mon Sep 17 00:00:00 2001 From: Arjun <36335769+0x34d@users.noreply.github.com> Date: Wed, 15 Mar 2023 17:00:58 +0530 Subject: [PATCH] [pjsip] Update for ideal integration (#9908) `libssl-dev zlib1g-dev` are used for `Differential` fuzzing. Issue [57067](https://oss-fuzz-build-logs.storage.googleapis.com/log-787f7b85-e65f-48d9-9ff1-eb854c8c4ac1.txt) can be fixed after merge. My PR: https://github.com/pjsip/pjproject/pull/3430 --- projects/pjsip/Dockerfile | 2 +- projects/pjsip/build.sh | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) 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"