Changeset 4785 in vbox for trunk/configure
- Timestamp:
- Sep 14, 2007 8:55:18 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure
r4784 r4785 1152 1152 1153 1153 Configuration: 1154 -h, --help display this help and exit1155 --nofatal don't abort on errors1156 --disable-xpcom disable XPCOM and related stuff1157 --disable-sdl-ttf disable SDL_ttf detection1158 --build-xalan build xalan & xerces from shipped sources1154 -h, --help display this help and exit 1155 --nofatal don't abort on errors 1156 --disable-xpcom disable XPCOM and related stuff 1157 --disable-sdl-ttf disable SDL_ttf detection 1158 --build-xalan build xalan & xerces from shipped sources 1159 1159 1160 1160 Paths: 1161 --with-gcc=PATH location of the gcc compiler [$CC]1162 --with-g++=PATH location of the g++ compiler [$CXX]1163 --with-kbuild=DIR kbuild directory [$KBUILDDIR]1164 --with-iasl=PATH location of the iasl compiler [$IASL]1165 --with-linux=DIR Linux kernel source directory [$LINUX]1166 --with-mkisofs=PATH location of mkisofs [$MKISOFS]1167 --with-qt-dir=DIR directory for QT headers/libraries [$QTDIR]1168 --with-xalan=LIB location of the xalan library [$LIBXALAN]1169 --with-xalan-inc =DIRlocation of the xalan headers [$INCXALAN]1170 --with-xerces=LIB location of the xerces library [$LIBXERCES]1171 --with-xerces-inc =DIRlocation of the xerces headers [$INCXERCES]1161 --with-gcc=PATH location of the gcc compiler [$CC] 1162 --with-g++=PATH location of the g++ compiler [$CXX] 1163 --with-kbuild=DIR kbuild directory [$KBUILDDIR] 1164 --with-iasl=PATH location of the iasl compiler [$IASL] 1165 --with-linux=DIR Linux kernel source directory [$LINUX] 1166 --with-mkisofs=PATH location of mkisofs [$MKISOFS] 1167 --with-qt-dir=DIR directory for QT headers/libraries [$QTDIR] 1168 --with-xalan=LIB location of the xalan library [$LIBXALAN] 1169 --with-xalan-incdir=DIR location of the xalan headers [$INCXALAN] 1170 --with-xerces=LIB location of the xerces library [$LIBXERCES] 1171 --with-xerces-incdir=DIR location of the xerces headers [$INCXERCES] 1172 1172 1173 1173 Build type: 1174 -d, --build-debug build with debugging symbols and assertions1175 --build-headless build headless (without any X11 frontend)1174 -d, --build-debug build with debugging symbols and assertions 1175 --build-headless build headless (without any X11 frontend) 1176 1176 EOF 1177 1177 exit 0 … … 1184 1184 1185 1185 # scan command line options 1186 for option in "$*"; do1186 for option in $*; do 1187 1187 case "$option" in 1188 1188 --help|-help|-h) … … 1220 1220 LIBXALAN=`echo $option | cut -d'=' -f2` 1221 1221 ;; 1222 --with-xalan-inc=*) 1222 --with-xalan-libdir=*) 1223 LIBXALAN_DIR=`echo $option | cut -d'=' -f2` 1224 ;; 1225 --with-xalan-incdir=*) 1223 1226 INCXALAN=`echo $option | cut -d'=' -f2` 1224 1227 ;; … … 1226 1229 LIBXERCES=`echo $option | cut -d'=' -f2` 1227 1230 ;; 1228 --with-xserces-inc=*) 1231 --with-xerces-libdir=*) 1232 LIBXERCES_DIR=`echo $option | cut -d'=' -f2` 1233 ;; 1234 --with-xerces-incdir=*) 1229 1235 INCXERCES=`echo $option | cut -d'=' -f2` 1230 1236 ;; … … 1262 1268 esac 1263 1269 done 1270 1271 [ -n "$LIBXALAN_DIR" ] && LIBXALAN="-L$LIBXALAN_DIR $LIBXALAN" 1272 [ -n "$LIBXERCES_DIR" ] && LIBXERCES="-L$LIBXERCES_DIR $LIBXERCES" 1264 1273 1265 1274 LOG="$ODIR$LOG"
Note:
See TracChangeset
for help on using the changeset viewer.