comparison configure @ 2086:498bdd71a556

Mac: The UserNotifications framework version test was broken. Hopefully this test for Darwin 18 or higher will work.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Wed, 03 Jun 2020 18:38:26 +0000
parents 3ccd0da07514
children 082d743f3214
comparison
equal deleted inserted replaced
2085:43453c9a404c 2086:498bdd71a556
4674 SOSUFFIX=dylib 4674 SOSUFFIX=dylib
4675 DW_DIR=mac 4675 DW_DIR=mac
4676 DW_SRC=dw.m 4676 DW_SRC=dw.m
4677 DW_DEFINE=__MAC__ 4677 DW_DEFINE=__MAC__
4678 LIBS="$LIBS -framework Cocoa -framework WebKit" 4678 LIBS="$LIBS -framework Cocoa -framework WebKit"
4679 OSVER=`uname -r` 4679 OSVER=`uname -r | cut -d. -f1`
4680 if test $OSVER > 17.9.9; then 4680 if test $OSVER -ge "18"; then
4681 LIBS="$LIBS -framework UserNotifications" 4681 LIBS="$LIBS -framework UserNotifications"
4682 fi 4682 fi
4683 build_gtk="no" 4683 build_gtk="no"
4684 ;; 4684 ;;
4685 *) 4685 *)