Changeset 28921 in vbox
- Timestamp:
- Apr 30, 2010 7:36:48 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure
r28800 r28921 88 88 WITH_HARDENING=1 89 89 WITH_VDE=0 90 WITH_FAM=191 90 BUILD_LIBXML2= 92 91 BUILD_LIBXSLT= … … 1042 1041 1043 1042 # 1044 # Check for fam, needed by Main/HostHardwareLinux1045 #1046 check_fam()1047 {1048 test_header fam1049 cat > $ODIR.tmp_src.cc << EOF1050 #include <fam.h>1051 extern "C" int main(void)1052 {1053 FAMConnection conn;1054 FAMOpen(&conn);1055 FAMClose(&conn);1056 return 1;1057 }1058 EOF1059 if test_compile "-lfam" fam fam; then1060 echo "found."1061 fi1062 }1063 1064 1065 #1066 1043 # Check for the SDL library, needed by VBoxSDL and VirtualBox 1067 1044 # We depend at least on version 1.2.7 … … 2083 2060 [ $WITH_PULSE -eq 1 ] && echo " --disable-pulse disable the PulseAudio backend" 2084 2061 [ $WITH_DBUS -eq 1 ] && echo " --disable-dbus don't use DBus and hal for hardware detection" 2085 [ $OSE -eq 0 -a $WITH_FAM -eq 1 ] && echo " --disable-fam don't use FAM for USB polling"2086 2062 [ $WITH_KMODS -eq 1 ] && echo " --disable-kmods don't build Linux kernel modules (host and guest)" 2087 2063 [ $WITH_OPENGL -eq 1 ] && echo " --disable-opengl disable OpenGL support" … … 2238 2214 --disable-dbus) 2239 2215 [ $WITH_DBUS -eq 1 ] && WITH_DBUS=0 2240 ;;2241 --disable-fam)2242 [ $WITH_FAM -eq 1 ] && WITH_FAM=02243 2216 ;; 2244 2217 --disable-kmods) … … 2444 2417 [ "$OS" != "darwin" -a "$OS" != "freebsd" ] && check_png 2445 2418 [ $OSE -eq 0 -a "$OS" = "linux" ] && check_pam 2446 if [ $WITH_FAM -eq 1 ]; then2447 [ $OSE -eq 0 -a "$OS" = "linux" ] && check_fam2448 else2449 cnf_append "VBOX_USB_WITH_FAM" ""2450 fi2451 2419 [ $WITH_SDL -eq 1 ] && check_sdl 2452 2420 [ $WITH_SDL_TTF -eq 1 -a $OSE -eq 0 ] && check_sdl_ttf
Note:
See TracChangeset
for help on using the changeset viewer.