Changeset 37199 in vbox for trunk/configure
- Timestamp:
- May 24, 2011 3:17:03 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 71895
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure
r37125 r37199 4 4 5 5 # 6 # Copyright (C) 2006-20 09Oracle Corporation6 # Copyright (C) 2006-2011 Oracle Corporation 7 7 # 8 8 # This file is part of VirtualBox Open Source Edition (OSE), as … … 88 88 WITH_OPENGL=1 89 89 WITH_HARDENING=1 90 WITH_UDPTUNNEL=1 90 91 WITH_VDE=0 91 92 WITH_VNC=0 … … 2180 2181 [ "$OS" = "linux" -o "$OS" = "freebsd" ] && echo " --enable-vde enable VDE networking" 2181 2182 cat << EOF 2183 --disable-udptunnel disable UDP tunnel networking 2182 2184 --disable-hardening don't be strict about /dev/vboxdrv access 2183 2185 --build-libxml2 build libxml2 from sources … … 2197 2199 --with-iasl=PATH location of the iasl compiler [$IASL] 2198 2200 --with-mkisofs=PATH location of mkisofs [$MKISOFS] 2201 --with-makeself=PATH location of makeself [$MAKESELF] 2199 2202 EOF 2200 2203 [ "$OS" = "linux" ] && echo " --with-linux=DIR Linux kernel source directory [$LINUX]" … … 2294 2297 MKISOFS=`echo $option | cut -d'=' -f2` 2295 2298 ;; 2299 --with-makeself=*) 2300 MAKESELF=`echo $option | cut -d'=' -f2` 2301 ;; 2296 2302 --target-arch=*) 2297 2303 TARGET_MACHINE=`echo $option | cut -d'=' -f2` … … 2353 2359 --enable-hardening) 2354 2360 WITH_HARDENING=2 2361 ;; 2362 --disable-udptunnel) 2363 WITH_UDPTUNNEL=0 2355 2364 ;; 2356 2365 --enable-vde) … … 2603 2612 cnf_append "VBOX_WITH_WEBSERVICES" "" 2604 2613 fi 2614 fi 2615 2616 # UDPTUNNEL 2617 if [ $WITH_UDPTUNNEL -eq 0 ]; then 2618 cnf_append "VBOX_WITH_UDPTUNNEL" "" 2605 2619 fi 2606 2620
Note:
See TracChangeset
for help on using the changeset viewer.