Changeset 108239 in vbox
- Timestamp:
- Feb 16, 2025 2:45:37 PM (3 months ago)
- svn:sync-xref-src-repo-rev:
- 167560
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Config.kmk
r108238 r108239 2533 2533 endif 2534 2534 2535 2536 # Intel ASL compiler for ACPI 2537 VBOX_IASLCMD ?= $(firstword $(wildcard $(KBUILD_DEVTOOLS_HST)/bin/iasl$(HOSTSUFF_EXE)) iasl$(HOSTSUFF_EXE)) 2535 2538 2536 2539 # libxslt XSLT processor. (see PATH_TOOL_YASM for explanation why it's temporarily located in bin.) -
trunk/configure
r108238 r108239 131 131 CXX64="" 132 132 YASM="yasm" 133 IASL="iasl" 133 134 XSLTPROC="xsltproc" 134 135 INCCRYPTO="" … … 657 658 log_success "found version $yasm_ver" 658 659 fi 660 fi 661 fi 662 } 663 664 665 # 666 # Check for the iasl ACPI compiler, needed to compile vbox.dsl 667 # 668 check_iasl() 669 { 670 test_header iasl 671 if check_avail "$IASL" IASL; then 672 iasl_ver=`$IASL|grep "ASL.*version"|sed 's+^ASL.*version \([0-9]*\).*+\1+'` 673 if [ $? -ne 0 ]; then 674 log_failure "iasl not found" 675 fail 676 else 677 log_success "found version $iasl_ver" 678 cnf_append "VBOX_IASLCMD" "`which_wrapper $IASL`" 659 679 fi 660 680 fi … … 2549 2569 --with-g++=PATH location of the g++ compiler [$CXX] 2550 2570 --with-kbuild=DIR kbuild directory [$KBUILDDIR] 2551 --with-yasm=PATH location of the yasm compiler [$YASM] 2571 --with-iasl=PATH location of the iasl compiler [$IASL] 2572 --with-yasm=PATH location of the iasl compiler [$YASM] 2552 2573 --with-makeself=PATH location of makeself [$MAKESELF] 2553 2574 EOF … … 2682 2703 GSOAP_IMPORT=`echo $option | cut -d'=' -f2` 2683 2704 ;; 2705 --with-iasl=*) 2706 IASL=`echo $option | cut -d'=' -f2` 2707 ;; 2684 2708 --with-yasm=*) 2685 2709 YASM=`echo $option | cut -d'=' -f2` … … 2992 3016 if [ $ONLY_ADDITIONS -eq 0 ]; then 2993 3017 check_open_watcom 3018 [ "$OS" != "darwin" ] && check_iasl 2994 3019 [ $OSE -ge 1 ] && check_yasm 2995 3020 [ "$OS" != "darwin" ] && check_xsltproc
Note:
See TracChangeset
for help on using the changeset viewer.