comparison configure.in @ 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
174 SOSUFFIX=dylib 174 SOSUFFIX=dylib
175 DW_DIR=mac 175 DW_DIR=mac
176 DW_SRC=dw.m 176 DW_SRC=dw.m
177 DW_DEFINE=__MAC__ 177 DW_DEFINE=__MAC__
178 LIBS="$LIBS -framework Cocoa -framework WebKit" 178 LIBS="$LIBS -framework Cocoa -framework WebKit"
179 OSVER=`uname -r` 179 OSVER=`uname -r | cut -d. -f1`
180 if test $OSVER > 17.9.9; then 180 if test $OSVER -ge "18"; then
181 LIBS="$LIBS -framework UserNotifications" 181 LIBS="$LIBS -framework UserNotifications"
182 fi 182 fi
183 build_gtk="no" 183 build_gtk="no"
184 ;; 184 ;;
185 *) 185 *)