Changeset 72795 in vbox
- Timestamp:
- Jul 2, 2018 3:57:38 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 123338
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure
r72668 r72795 115 115 XSLTPROC="xsltproc" 116 116 GENISOIMAGE="genisoimage" 117 MKISOFS="mkisofs"118 117 INCCRYPTO="" 119 118 LIBCRYPTO="-lssl -lcrypto" … … 660 659 661 660 # 662 # Check for mkisofs, needed to build the CDROM image containing the additions663 #664 check_mkisofs()665 {666 test_header mkisofs667 if which_wrapper $GENISOIMAGE > /dev/null; then668 mkisofs_ver=`$GENISOIMAGE --version`669 if [ $? -ne 0 ]; then670 log_failure "mkisofs not found"671 fail672 else673 log_success "found $mkisofs_ver"674 cnf_append "VBOX_MKISOFS" "`which_wrapper $GENISOIMAGE`"675 fi676 elif check_avail "$MKISOFS" MKISOFS; then677 mkisofs_ver=`$MKISOFS --version`678 if [ $? -ne 0 ]; then679 log_failure "mkisofs not working"680 fail681 else682 log_success "found $mkisofs_ver"683 cnf_append "VBOX_MKISOFS" "`which_wrapper $MKISOFS`"684 fi685 fi686 }687 688 689 #690 661 # Check for libxml2, needed by VBoxSettings and Runtime. 691 662 # 2.6.24 is known to NOT work, 2.6.26 is known to work (there is no 2.6.25 release) … … 2341 2312 --with-kbuild=DIR kbuild directory [$KBUILDDIR] 2342 2313 --with-iasl=PATH location of the iasl compiler [$IASL] 2343 --with-mkisofs=PATH location of mkisofs [$MKISOFS]2344 2314 --with-makeself=PATH location of makeself [$MAKESELF] 2345 2315 EOF … … 2474 2444 LINUX=`echo $option | cut -d'=' -f2` 2475 2445 ;; 2476 --with-mkisofs=*)2477 MKISOFS=`echo $option | cut -d'=' -f2`2478 ;;2479 2446 --with-makeself=*) 2480 2447 MAKESELF=`echo $option | cut -d'=' -f2` … … 2757 2724 # [ "$OS" != "darwin" ] && check_yasm 2758 2725 [ "$OS" != "darwin" ] && check_xsltproc 2759 [ "$OS" != "darwin" ] && check_mkisofs2760 2726 fi 2761 2727
Note:
See TracChangeset
for help on using the changeset viewer.