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