Skip to content
This repository has been archived by the owner on Dec 6, 2023. It is now read-only.

Commit

Permalink
Merge branch 'release/2.0.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
Redmer Loen committed Feb 16, 2017
2 parents a6374fb + 0376352 commit 87a15d7
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 17 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,13 @@ All notable changes to this project will be documented in this file.

---

## [2.0.0](https://github.com/VoIPGRID/Vialer-pjsip-iOS/tree.2.0.0) (15/02/2017)
## [2.0.1](https://github.com/VoIPGRID/Vialer-pjsip-iOS/tree/2.0.1) (16/02/2017)
Released on Thursday, February 16, 2017

### Changed
* Building on the iOS simulators works again [#12](https://github.com/VoIPGRID/Vialer-pjsip-iOS/issues/12)

## [2.0.0](https://github.com/VoIPGRID/Vialer-pjsip-iOS/tree/2.0.0) (15/02/2017)
Released on Wednesday, February 15, 2017

### Changed
Expand Down
Binary file modified Pod/VialerPJSIP.a
Binary file not shown.
2 changes: 1 addition & 1 deletion Vialer-pjsip-iOS.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "Vialer-pjsip-iOS"
s.version = "2.0.0"
s.version = "2.0.1"
s.summary = "PJSIP 2.6 for iOS"
s.description = "Pod for distributing PJSIP wrapped in a framework. With Opus, OpenSSL and openh264."
s.homepage = "https://www.wearespindle.com"
Expand Down
Binary file modified VialerPJSIP.framework/Versions/A/VialerPJSIP
Binary file not shown.
22 changes: 7 additions & 15 deletions vialerbuild
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ for i in "$@"; do
shift
;;
-v | --version | version)
echo "Vialer PJSIP Compile script version: 2.0"
echo "Vialer PJSIP Compile script version: 2.0.0"
exit 1
shift
;;
Expand Down Expand Up @@ -179,8 +179,6 @@ function build_h264 () {

h264_lipo_args=""
for arch in "${USE_ARCHS[@]}"; do
# h264_makefile="${h264_target_path}/Makefile"
# h264_makefile_bak="${h264_target_path}/Makefile.bak"
h264_makefile="Makefile"
h264_makefile_bak="Makefile.bak"
h264_prefix="${H264_BUILD_DIR}/build/${arch}"
Expand Down Expand Up @@ -208,12 +206,9 @@ function build_h264 () {
rm ${h264_makefile}.deleteme

echo "--- Run make file for ${arch}"
make OS=ios ARCH=${arch} SDK_MIN=${MIN_IOS_VERSION} >> "${h264_log}" 2>&1 &
spinner /$!
make OS=ios ARCH=${arch} SDK_MIN=${MIN_IOS_VERSION} install >> "${h264_log}" 2>&1 &
spinner $!
make OS=ios ARCH=${arch} SDK_MIN=${MIN_IOS_VERSION} clean >> "${h264_log}" 2>&1 &
spinner $!
make OS=ios ARCH=${arch} SDK_MIN=${MIN_IOS_VERSION} >> "${h264_log}"
make OS=ios ARCH=${arch} SDK_MIN=${MIN_IOS_VERSION} install >> "${h264_log}"
make OS=ios ARCH=${arch} SDK_MIN=${MIN_IOS_VERSION} clean >> "${h264_log}"

mv "${h264_makefile_bak}" "${h264_makefile}"

Expand All @@ -226,11 +221,8 @@ function build_h264 () {
mkdir -p "${H264_BUILD_DIR}/lib"
fi

echo $h264_lipo_args

echo "--- Lipo openH264"
xcrun -sdk iphoneos lipo ${h264_lipo_args} -create -output "${H264_BUILD_DIR}/lib/libopenh264.a" &
spinner $!
lipo ${h264_lipo_args} -create -output "${H264_BUILD_DIR}/lib/libopenh264.a"

echo "--- Copying header files"
cp -R "${H264_BUILD_DIR}/build/${USE_ARCHS[0]}/include/" "${H264_BUILD_DIR}/include"
Expand Down Expand Up @@ -360,8 +352,7 @@ function build_opus () {
if [ -n "$opus_input_libs" ]; then
echo "** lipo libs"

lipo -create $opus_input_libs -output "$opus_output_dir/lib/${opus_output_lib}" &
spinner $!
lipo -create $opus_input_libs -output "$opus_output_dir/lib/${opus_output_lib}"
else
echo "$opus_output_lib does not exist, skipping (are the dependencies installed?)"
fi
Expand Down Expand Up @@ -421,6 +412,7 @@ function clean_pjsip () {

rm -rf $PJSIP_DIR
rm -rf $PJSIP_FINAL_LIB_DIR
rm -rf "${BASE_DIR}/VialerPJSIP.framework"
echo "Done cleaning PJSIP source"
echo "============================="
fi
Expand Down

0 comments on commit 87a15d7

Please sign in to comment.