Changeset 16139 in vbox
- Timestamp:
- Jan 21, 2009 2:02:11 PM (16 years ago)
- File:
-
- 1 edited
-
trunk/configure (modified) (8 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure
r16026 r16139 56 56 WITH_PYTHON=1 57 57 WITH_LIBIDL=1 58 WITH_GSOAP=1 58 59 WITH_QT3=1 59 60 WITH_QT4=1 … … 84 85 LIBPTHREAD="-lpthread" 85 86 LIBCAP="-lcap" 87 GSOAP="" 86 88 LIBX11="-L/usr/X11R6/lib -L/usr/X11R6/lib64 -L/usr/local/lib -lXext -lX11" 87 89 INCX11="/usr/local/include" … … 1693 1695 } 1694 1696 1697 # 1698 # 1699 # 1700 check_gsoap() 1701 { 1702 test_header "GSOAP compiler" 1703 if [ -z "$GSOAP" ]; then 1704 GSOAP="/usr/bin" 1705 fi 1706 if which_wrapper "$GSOAP/soapcpp2" > /dev/null; then 1707 if which_wrapper "$GSOAP/wsdl2h" > /dev/null; then 1708 cnf_append "VBOX_GSOAP_INSTALLED" "1" 1709 cnf_append "VBOX_PATH_GSOAP" "$GSOAP" 1710 log_success "found" 1711 else 1712 log_failure "wsdl2h not found -- disabling webservice" 1713 fi 1714 else 1715 log_failure "soapcpp2 not found -- disabling webservice" 1716 fi 1717 } 1718 1695 1719 1696 1720 # … … 1759 1783 --disable-kmods don't build Linux kernel modules (host and guest) 1760 1784 --disable-hardening don't be strict about /dev/vboxdrv access 1785 --disable-webservice don't build the webservice stuff 1761 1786 --build-libxml2 build libxml2 from sources 1762 1787 --build-libxslt build libxslt from sources … … 1772 1797 --with-qt-dir=DIR directory for Qt3 headers/libraries [$QT3DIR] 1773 1798 --with-qt4-dir=DIR directory for Qt4 headers/libraries [pkgconfig] 1799 --with-gsoap-dir=PATH directory for SOAP compiler (soapcpp2 and wsdl2h) 1774 1800 1775 1801 Build type: … … 1818 1844 QT4DIR_PKGCONFIG=0 1819 1845 ;; 1846 --with-gsoap-dir=*) 1847 GSOAP=`echo $option | cut -d'=' -f2` 1848 ;; 1820 1849 --with-iasl=*) 1821 1850 IASL=`echo $option | cut -d'=' -f2` … … 1863 1892 --enable-hardening) 1864 1893 WITH_HARDENING=2 1894 ;; 1895 --disable-webservice) 1896 WITH_GSOAP=0 1865 1897 ;; 1866 1898 --build-debug|-d) … … 2065 2097 2066 2098 [ -n "$SETUP_WINE" ] && setup_wine 2099 2100 [ $WITH_GSOAP -eq 1 ] && check_gsoap 2067 2101 2068 2102 # Darwin-specific
Note:
See TracChangeset
for help on using the changeset viewer.

