Changeset 73369 in vbox for trunk/configure
- Timestamp:
- Jul 26, 2018 11:24:47 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure
r73343 r73369 100 100 WITH_DOCS=1 101 101 WITH_LIBVPX=1 102 WITH_LIBOPUS=1 102 103 BUILD_LIBXML2= 103 104 BUILD_LIBCURL= … … 2325 2326 [ $WITH_DOCS -eq 1 ] && echo " --disable-docs don't build the documentation" 2326 2327 [ $WITH_LIBVPX -eq 1 ] && echo " --disable-libvpx don't use libvpx for video capturing" 2328 [ $WITH_LIBOPUS -eq 1 ] && echo " --disable-libopus don't use libopus for audio capturing" 2327 2329 [ "$OS" = "linux" -o "$OS" = "freebsd" ] && echo " --enable-vde enable VDE networking" 2328 2330 cat << EOF … … 2396 2398 [ $OSE -eq 1 ] || BUILD_LIBCURL=1 2397 2399 [ $OSE -eq 1 ] && WITH_LIBVPX=0 2400 [ $OSE -eq 1 ] && WITH_LIBOPUS=0 2398 2401 WITH_XCODE_DIR="" 2399 2402 elif [ "$OS" = "haiku" ]; then … … 2410 2413 BUILD_LIBXML2=1 2411 2414 WITH_LIBVPX=0 2415 WITH_LIBOPUS=0 2412 2416 # it is part of libroot, which is linked by default, 2413 2417 # but the script wants something … … 2417 2421 elif [ "$OS" = "solaris" ]; then 2418 2422 [ $OSE -eq 1 ] && WITH_LIBVPX=0 2423 [ $OSE -eq 1 ] && WITH_LIBOPUS=0 2419 2424 fi 2420 2425 … … 2558 2563 --disable-libvpx) 2559 2564 WITH_LIBVPX=0 2565 ;; 2566 --disable-libopus) 2567 WITH_LIBOPUS=0 2560 2568 ;; 2561 2569 --disable-sdl) … … 2748 2756 cnf_append "VBOX_WITH_VIDEOREC" "" 2749 2757 fi 2758 if [ $WITH_LIBOPUS -eq 0 ]; then 2759 cnf_append "VBOX_WITH_LIBOPUS" "" 2760 cnf_append "VBOX_WITH_AUDIO_VIDEOREC" "" 2761 fi 2750 2762 2751 2763 # Darwin-specific … … 2771 2783 check_curl 2772 2784 [ $WITH_LIBVPX -eq 1 ] && check_vpx 2773 check_libopus2774 [ "$OS" != "darwin" ] && check_z2785 [ $WITH_LIBOPUS -eq 1 ] && check_libopus 2786 [ "$OS" != "darwin" ] && check_z 2775 2787 [ "$OS" != "darwin" ] && check_png 2776 2788 [ $OSE -eq 0 -a "$OS" = "linux" ] && check_pam
Note:
See TracChangeset
for help on using the changeset viewer.