Fixed MacOS build issue for SSL cert and disabled SDL for Ubuntu 22.04 00/281100/1
authorVarinder Pratap <varinder.p@samsung.com>
Fri, 9 Sep 2022 12:39:47 +0000 (18:09 +0530)
committerVarinder Pratap <varinder.p@samsung.com>
Fri, 9 Sep 2022 12:40:43 +0000 (18:10 +0530)
Change-Id: I4ec8c84bd00bedc3572f4118eeb21853c43a2445
Signed-off-by: Varinder Pratap <varinder.p@samsung.com>
package/changelog
package/pkginfo.manifest
scripts/git-submodule.sh
test_tizen_emulator.sh
tizen/emulator_configure.sh

index e6c11737de5b72324acb1fee1466ba6d0b0746a5..7b6f3ec28048e3027bf277743007348b8b967204 100644 (file)
@@ -1,3 +1,6 @@
+* 5.0.1.5
+- Version Up: Fixed MacOS build and disabled SDL.
+== Varinder Pratap Singh <varinder.p@samsung.com> 2020-05-07
 * 5.0.1.4
 - Version Up: upgrade upstream qemu to 5.0.1
 == Varinder Pratap Singh <varinder.p@samsung.com> 2020-05-07
index f96f111bbfdb005b0a77e834069a19e2113abe8b..32e5f87f4cf22a84622e23083c41f71363312345 100644 (file)
@@ -1,4 +1,4 @@
-Version: 5.0.1.4
+Version: 5.0.1.5
 Maintainer: SeokYeon Hwang <syeon.hwang@samsung.com>
 Source: emulator
 
index 65ed877aefd9837cefb8a4b2328b092f8c58bf99..bcdee5eac303211cb8e540d2fd0582042c59ab7b 100755 (executable)
@@ -33,6 +33,10 @@ error() {
     exit 1
 }
 
+#this is required to avoid HTTPS SSL certificate issues in company network for submodules
+git config --global http.sslVerify false
+
+
 modules=""
 for m in $maybe_modules
 do
index fbb579bd6ad3529951c39bb33cc00f72aa58b183..cbc668c4e87b0412ecdb107e422f4a76ce2b9361 100755 (executable)
@@ -5,7 +5,7 @@
 test() 
 {
     TIZEN_PLATFORM_VER="7.0"
-    QEMU_VERSION="5.0.1.3"
+    QEMU_VERSION="5.0.1.5"
     BUILD_TARGET="ubuntu-64"
     # emulator
     EMULATOR_COMMON_DIR=./package/$TIZEN_PLATFORM_VER-emulator-qemu-common.package.${TARGET_OS}/data/platforms/tizen-$TIZEN_PLATFORM_VER/common
index abad451890e48a8d72453d17698368ed65c9d289..d68238836200a59deb11b9f93e4c648316185c0b 100755 (executable)
@@ -155,7 +155,7 @@ CONFIGURE_APPEND="
  --disable-plugins
  --disable-modules
  --disable-auth-pam
- --extra-cflags=-Wno-error=stringop-truncation
+ --disable-sdl
  $CONFIGURE_APPEND"
 
 CONFIGURE_APPEND_WIN="
@@ -167,12 +167,14 @@ CONFIGURE_APPEND_WIN="
  --extra-cflags=-D__USE_MINGW_ANSI_STDIO=1
  --extra-cflags=-Wno-error=undef
  --extra-cflags=-Wno-error=unknown-pragmas
+ --extra-cflags=-Wno-error=stringop-truncation
  --extra-cflags=-Wno-error=redundant-decls"
 
 # append platform specific options
 case $targetos in
 Linux*)
 CONFIGURE_APPEND="
+ --extra-cflags=-Wno-error=stringop-truncation
  --extra-ldflags=-rdynamic
  --extra-ldflags=-Wl,-rpath,'\$\$ORIGIN'
  --audio-drv-list=alsa
@@ -209,6 +211,7 @@ Darwin*)
 CONFIGURE_APPEND="
  --cc=clang
  --cxx=clang++
+ --host-cc=clang
  --extra-cflags=-mmacosx-version-min=10.12
  --extra-cflags=-Wno-error=unknown-warning-option
  --extra-cflags=-Wno-error=mismatched-tags