- Timestamp:
- Aug 5, 2008 2:09:34 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 34090
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure
r10629 r11134 34 34 WITH_XPCOM=1 35 35 WITH_LIBIDL=1 36 WITH_QT =136 WITH_QT3=1 37 37 WITH_QT4=1 38 38 WITH_SDL=1 … … 1717 1717 ;; 1718 1718 --disable-qt) 1719 WITH_QT =01719 WITH_QT3=0 1720 1720 WITH_QT4=0 1721 ;; 1722 --disable-qt3) 1723 WITH_QT3=0 1721 1724 ;; 1722 1725 --disable-qt4) … … 1749 1752 WITH_SDL_TTF=0 1750 1753 WITH_X11=0 1751 WITH_QT =01754 WITH_QT3=0 1752 1755 WITH_QT4=0 1753 1756 ;; … … 1853 1856 # (Qt3 builds for Intel Macs are usually not threaded or for X11. And they 1854 1857 # don't contain our patches, which means the result isn't really usable.) 1855 WITH_QT =01858 WITH_QT3=0 1856 1859 # No Qt4 for OSE yet. 1857 1860 [ $OSE -ge 1 ] && WITH_QT4=0 … … 1862 1865 # emit disable directives corresponding to any --disable-xxx options. 1863 1866 [ $WITH_XPCOM -eq 0 ] && cnf_append "VBOX_WITH_MAIN" "" 1864 [ $WITH_QT -eq 0] && cnf_append "VBOX_WITH_QTGUI" ""1867 [ $WITH_QT3 -eq 0 ] && cnf_append "VBOX_WITH_QTGUI" "" 1865 1868 [ $WITH_QT4 -eq 0 ] && cnf_append "VBOX_WITH_QT4GUI" "" 1866 1869 [ $WITH_SDL_TTF -eq 0 ] && cnf_append "VBOX_WITH_SECURELABEL" "" … … 1890 1893 [ $WITH_X11 -eq 1 ] && check_x 1891 1894 [ $WITH_X11 -eq 1 ] && check_xcursor 1892 [ $WITH_QT -eq 1] && check_qt31895 [ $WITH_QT3 -eq 1 ] && check_qt3 1893 1896 [ $WITH_QT4 -eq 1 ] && check_qt4 1894 1897 -
trunk/debian/rules
r11106 r11134 72 72 debian/configure-stamp: 73 73 dh_testdir 74 cd $(vboxroot) && ./configure --odir=$(current)/debian $(if \74 cd $(vboxroot) && ./configure --odir=$(current)/debian --disable-qt3 $(if \ 75 75 $(ose),--ose,) $(if $(LINUX),--with-linux=$(LINUX),) $(if \ 76 76 $(filter _Ubuntu_dapper,$(debrel)),--with-gcc=gcc-3.4 --with-g++=g++-3.4,) $(if \ … … 179 179 mv $(archdir)/VBoxAddIF.sh $(prefix)/usr/bin/VBoxTAP 180 180 for i in VBoxManage VBoxSVC $(if $(HEADLESS),,VBoxSDL) \ 181 $(if $(HEADLESS),,VirtualBox 3 VirtualBox) $(if $(ose),,VBoxVRDP) \181 $(if $(HEADLESS),,VirtualBox) $(if $(ose),,VBoxVRDP) \ 182 182 VBoxHeadless; do \ 183 183 mv $(archdir)/$$i $(prefix)/usr/lib/$(package); done
Note:
See TracChangeset
for help on using the changeset viewer.