Changeset 40217 in vbox
- Timestamp:
- Feb 22, 2012 4:14:36 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 76390
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure
r40039 r40217 91 91 WITH_VDE=0 92 92 WITH_VNC=0 93 WITH_EXTPACK=1 93 94 WITH_DOCS=1 94 95 BUILD_LIBXML2= … … 2098 2099 [ $WITH_GSOAP -eq 0 ] && echo " --enable-webservice enable the webservice stuff" 2099 2100 [ $OSE -eq 1 ] && echo " --enable-vnc enable the VNC server" 2101 [ $OSE -eq 0 ] && echo " --disable-extpack don't build the extpack" 2100 2102 [ $WITH_DOCS -eq 1 ] && echo " --disable-docs don't build the documentation" 2101 2103 [ "$OS" = "linux" -o "$OS" = "freebsd" ] && echo " --enable-vde enable VDE networking" … … 2164 2166 fi 2165 2167 2166 [ $OSE -eq 1 ] || BUILD_LIBSSL=1 2167 2168 if [ $OSE -eq 0 ]; then 2169 if [ $WITH_EXTPACK -eq 1 ]; then 2170 BUILD_LIBSSL=1 2171 else 2172 cnf_append "VBOX_WITH_EXTPACK_PUEL_BUILD" "" 2173 fi 2174 fi 2168 2175 2169 2176 # scan command line options … … 2272 2279 --disable-hardening) 2273 2280 WITH_HARDENING=0 2281 ;; 2282 --disable-extpack) 2283 WITH_EXTPACK=0) 2274 2284 ;; 2275 2285 --disable-docs) -
trunk/debian/rules
r39266 r40217 75 75 $(if $(DEBUG),--build-debug,) \ 76 76 $(if $(NOWINE),,--setup-wine) \ 77 $(if $(NOWEBSVC),,--enable-webservice) 77 $(if $(NOWEBSVC),,--enable-webservice) \ 78 --disable-extpack 78 79 79 80 bld_flags := AUTOCFG=$(current)/debian/AutoConfig.kmk \ -
trunk/src/VBox/Installer/linux/debian/LocalConfig.kmk
r38386 r40217 31 31 VBOX_PATH_APP_DOCS = $(VBOX_PATH_PACKAGE_DOCS) 32 32 33 # only relevant for non-OSE builds: don't build the PUEL package34 VBOX_WITH_EXTPACK_PUEL_BUILD := -
trunk/src/VBox/Installer/linux/debian/rules
r39358 r40217 99 99 $(if $(DEBUG),--build-debug,) \ 100 100 $(if $(NOWINE),,--setup-wine) \ 101 $(if $(NOWEBSVC),,--enable-webservice) 101 $(if $(NOWEBSVC),,--enable-webservice) \ 102 --disable-extpack 102 103 103 104 bld_flags := AUTOCFG=$(current)/debian/AutoConfig.kmk \ -
trunk/src/VBox/Installer/linux/rpm/LocalConfig.kmk
r38386 r40217 32 32 # gcc 4.5 produces some more false positives 33 33 VBOX_WITH_WARNINGS_AS_ERRORS := 34 35 # only relevant for non-OSE builds: don't build the PUEL package36 VBOX_WITH_EXTPACK_PUEL_BUILD := -
trunk/src/VBox/Installer/linux/rpm/rules
r39358 r40217 112 112 $(if $(filter rhel4 rhel5 ol4 ol5 centos4 centos5,$(rpmrel)),--enable-pulse,) \ 113 113 $(if $(filter rhel4 rhel5 ol4 ol5 centos4 centos5 sles10.1 turbolinux11,$(rpmrel)),--with-qt4-dir=/home/vbox/Qt-4.7.4-stdc++6-$(arch)) \ 114 $(if $(DEBUG),--build-debug,) 114 $(if $(DEBUG),--build-debug,) \ 115 --disable-extpack 115 116 116 117 bld_flags := AUTOCFG=$(current)/rpm/AutoConfig.kmk \
Note:
See TracChangeset
for help on using the changeset viewer.