Changeset 87584 in vbox for trunk/configure
- Timestamp:
- Feb 3, 2021 4:38:03 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 142613
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure
r87442 r87584 631 631 yasm_rev=`echo $yasm_ver|cut -d. -f3` 632 632 yasm_ver_mul=`expr $yasm_maj \* 10000 + $yasm_min \* 100 + $yasm_rev` 633 if [ $yasm_ver_mul -lt 501]; then634 log_failure "found version $yasm_ver, expected at least 0.5.1"633 if [ $yasm_ver_mul -lt 10300 ]; then 634 log_failure "found version $yasm_ver, expected at least 1.3.0" 635 635 fail 636 636 else … … 2799 2799 check_open_watcom 2800 2800 [ "$OS" != "darwin" ] && check_iasl 2801 # don't check for yasm for the time beeing as 0.40 and 0.50 both have known bugs 2802 # [ "$OS" != "darwin" ] && check_yasm 2801 [ $OSE -ge 1 ] && check_yasm 2803 2802 [ "$OS" != "darwin" ] && check_xsltproc 2804 2803 fi
Note:
See TracChangeset
for help on using the changeset viewer.