Check-in [1554a23454]
Not logged in

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:tweak undroidwish build for openbsd 6.5
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 1554a23454c11c06d3915b92d0042f2b998c4767
User & Date: chw 2019-05-22 05:11:47.926
Context
2019-05-22
19:42
update tfirmata doc check-in: 288fe3fb5b user: chw tags: trunk
05:13
merge with trunk check-in: c90839e680 user: chw tags: wtf-8-experiment
05:11
tweak undroidwish build for openbsd 6.5 check-in: 1554a23454 user: chw tags: trunk
05:11
add tcl upstream changes check-in: 15d7251b6f user: chw tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to undroid/build-undroidwish-openbsd.sh.
577
578
579
580
581
582
583


584
585
586
587
588
589
590
  cd SDL2
  test -e build-stamp && echo >&3 "already done" && exit 0
  ./configure --prefix=${PFX_HERE} \
    --disable-shared --disable-arts --disable-esd --disable-nas \
    --disable-ibus --disable-alsa --disable-pulseaudio \
    --disable-rpath --disable-video-opengles2 \
    --disable-video-vulkan --disable-fcitx || exit 1


  MAKE=gmake gmake || exit 1
  MAKE=gmake gmake install || exit 1
  touch build-stamp
  echo >&3 "done"
) || fail

echo -n "build Tk (SDL2 backend, static) ... "







>
>







577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
  cd SDL2
  test -e build-stamp && echo >&3 "already done" && exit 0
  ./configure --prefix=${PFX_HERE} \
    --disable-shared --disable-arts --disable-esd --disable-nas \
    --disable-ibus --disable-alsa --disable-pulseaudio \
    --disable-rpath --disable-video-opengles2 \
    --disable-video-vulkan --disable-fcitx || exit 1
  # clang -O3 on OpenBSD 6.5 produces buggy X11 init code, thus...
  perl -pi -e 's/-O3/-O1/g' Makefile
  MAKE=gmake gmake || exit 1
  MAKE=gmake gmake install || exit 1
  touch build-stamp
  echo >&3 "done"
) || fail

echo -n "build Tk (SDL2 backend, static) ... "