Changeset 16994 in vbox for trunk/configure
- Timestamp:
- Feb 22, 2009 3:57:56 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 43186
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure
r16785 r16994 88 88 LIBCAP="-lcap" 89 89 GSOAP="" 90 GSOAP_IMPORT="" 90 91 LIBX11="-L/usr/X11R6/lib -L/usr/X11R6/lib64 -L/usr/local/lib -lXext -lX11" 91 92 INCX11="/usr/local/include" … … 1626 1627 1627 1628 # 1628 # 1629 # Check for gSOAP. 1629 1630 # 1630 1631 check_gsoap() … … 1632 1633 test_header "GSOAP compiler" 1633 1634 if [ -z "$GSOAP" ]; then 1634 GSOAP="/usr/bin" 1635 fi 1636 if which_wrapper "$GSOAP/soapcpp2" > /dev/null; then 1637 if which_wrapper "$GSOAP/wsdl2h" > /dev/null; then 1638 cnf_append "VBOX_GSOAP_INSTALLED" "1" 1639 cnf_append "VBOX_PATH_GSOAP" "$GSOAP" 1640 log_success "found" 1635 GSOAP="/usr" 1636 fi 1637 if which_wrapper "$GSOAP/bin/soapcpp2" > /dev/null; then 1638 if which_wrapper "$GSOAP/bin/wsdl2h" > /dev/null; then 1639 if [ -f "$GSOAP/include/stdsoap2.h" ]; then 1640 # TODO: Check for libgsoap++.a/so 1641 1642 if [ -z "$GSOAP_IMPORT" ]; then 1643 GSOAP_IMPORT="$GSOAP/share/gsoap/import" 1644 if [ ! -d "$GSOAP_IMPORT" -a -d "$GSOAP/include/gsoap" ]; then 1645 GSOAP_IMPORT="$GSOAP/include/gsoap" 1646 fi 1647 fi 1648 if [ -f "$GSOAP_IMPORT/stlvector.h" ]; then 1649 cnf_append "VBOX_GSOAP_INSTALLED" "1" 1650 cnf_append "VBOX_PATH_GSOAP" "$GSOAP" 1651 cnf_append "VBOX_PATH_GSOAP_IMPORT" "$GSOAP_IMPORT" 1652 cnf_append "VBOX_GSOAP_CXX_SOURCES" "" 1653 cnf_append "VBOX_GSOAP_CXX_LIBS" "libgsoap++" 1654 log_success "found" 1655 else 1656 log_failure "stlvector.h not found -- disabling webservice" 1657 cnf_append "VBOX_WITH_WEBSERVICES" "" 1658 fi 1659 else 1660 log_failure "stdsoap2.h not found -- disabling webservice" 1661 cnf_append "VBOX_WITH_WEBSERVICES" "" 1662 fi 1641 1663 else 1642 1664 log_failure "wsdl2h not found -- disabling webservice" … … 1728 1750 --with-mkisofs=PATH location of mkisofs [$MKISOFS] 1729 1751 --with-qt-dir=DIR directory for Qt4 headers/libraries [pkgconfig] 1730 --with-gsoap-dir=PATH directory for SOAP compiler (soapcpp2 and wsdl2h) 1752 --with-gsoap-dir=PATH directory for gSOAP compiler/headers/libraries 1753 (soapcpp2 and wsdl2h, soapstd2.h, libgsoap++.a/so) 1754 --with-gsoap-import=PATH directory for gSOAP import files (stlvector.h) 1731 1755 --out-path=PATH the folder to which configuration and build output 1732 1756 should go … … 1776 1800 --with-gsoap-dir=*) 1777 1801 GSOAP=`echo $option | cut -d'=' -f2` 1802 ;; 1803 --with-gsoap-import=*) 1804 GSOAP_IMPORT=`echo $option | cut -d'=' -f2` 1778 1805 ;; 1779 1806 --with-iasl=*)
Note:
See TracChangeset
for help on using the changeset viewer.