Changeset 28746 in vbox
- Timestamp:
- Apr 26, 2010 11:30:36 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure
r28662 r28746 92 92 WITH_HARDENING=1 93 93 WITH_VDE=0 94 WITH_FAM=1 94 95 BUILD_LIBXML2= 95 96 BUILD_LIBXSLT= … … 2086 2087 [ $WITH_PULSE -eq 1 ] && echo " --disable-pulse disable the PulseAudio backend" 2087 2088 [ $WITH_DBUS -eq 1 ] && echo " --disable-dbus don't use DBus and hal for hardware detection" 2089 [ $OSE -eq 0 -a $WITH_FAM -eq 1 ] && echo " --disable-fam don't use FAM for USB polling" 2088 2090 [ $WITH_KMODS -eq 1 ] && echo " --disable-kmods don't build Linux kernel modules (host and guest)" 2089 2091 [ $WITH_OPENGL -eq 1 ] && echo " --disable-opengl disable OpenGL support" … … 2094 2096 --build-libxml2 build libxml2 from sources 2095 2097 --build-libxslt build libxslt from sources 2096 --build-libssl build openssl from sources (PUEL only) 2097 --build-libcurl build libcurl from sources (PUEL only) 2098 EOF 2099 [ $OSE -eq 0 ] && cat << EOF 2100 --build-libssl build openssl from sources 2101 --build-libcurl build libcurl from sources 2098 2102 EOF 2099 2103 [ "$OS" != "darwin" ] && echo " --setup-wine setup a Wine directory and register the hhc hack" … … 2238 2242 --disable-dbus) 2239 2243 [ $WITH_DBUS -eq 1 ] && WITH_DBUS=0 2244 ;; 2245 --disable-fam) 2246 [ $WITH_FAM -eq 1 ] && WITH_FAM=0 2240 2247 ;; 2241 2248 --disable-kmods) … … 2441 2448 [ "$OS" != "darwin" -a "$OS" != "freebsd" ] && check_png 2442 2449 [ $OSE -eq 0 -a "$OS" = "linux" ] && check_pam 2443 [ $OSE -eq 0 -a "$OS" = "linux" ] && check_fam 2450 if [ $WITH_FAM -eq 1 ]; then 2451 [ $OSE -eq 0 -a "$OS" = "linux" ] && check_fam 2452 else 2453 cnf_append "VBOX_USB_WITH_FAM" "" 2454 fi 2444 2455 [ $WITH_SDL -eq 1 ] && check_sdl 2445 2456 [ $WITH_SDL_TTF -eq 1 -a $OSE -eq 0 ] && check_sdl_ttf
Note:
See TracChangeset
for help on using the changeset viewer.