Changeset 4719 in vbox for trunk/configure
- Timestamp:
- Sep 12, 2007 9:04:14 AM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 24394
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure
r4509 r4719 514 514 } 515 515 EOF 516 if test_compile "$LIBXALAN $LIBPTHREAD ${INCXALAN:+-I$INCXALAN}" xalan xalanc; then 516 [ -n "$INCXALAN" ] && I_INCXALAN="-I$INCXALAN" 517 if test_compile "$LIBXALAN $LIBPTHREAD $I_INCXALAN" xalan xalanc; then 517 518 if test_execute; then 518 519 cnf_append "SDK_VBOX_XALAN_LIBS" "`strip_l "$LIBXALAN"`" … … 551 552 } 552 553 EOF 553 if test_compile "$LIBXERCES $LIBPTHREAD ${INCXERCES:+-I$INCXERCES}" xerces xercesc; then 554 [ -n "$INCXERCES" ] && I_INCXERCES="-I$INCXERCES" 555 if test_compile "$LIBXERCES $LIBPTHREAD $I_INCXERCES" xerces xercesc; then 554 556 if test_execute; then 555 557 cnf_append "SDK_VBOX_XERCES_LIBS" "`strip_l "$LIBXERCES"`" … … 678 680 } 679 681 EOF 680 if test_compile "$LIBZ ${INCZ:+-I$INCZ}" zlib zlib; then 682 [ -n "$INCZ" ] && I_INCZ="-I$INCZ" 683 if test_compile "$LIBZ $I_INCZ" zlib zlib; then 681 684 if test_execute; then 682 685 cnf_append "SDK_VBOX_ZLIB_LIBS" "`strip_l "$LIBZ"`" … … 707 710 } 708 711 EOF 709 # if test_compile "$LIBPNG ${INCPNG:+-I$INCPNG}" libpng libpng nofatal; then 710 if test_compile "$LIBPNG ${INCPNG:+-I$INCPNG}" libpng libpng; then 712 [ -n "$INCPNG" ] && I_INCPNG="-I$INCPNG" 713 # if test_compile "$LIBPNG $I_INCPNG" libpng libpng nofatal; then 714 if test_compile "$LIBPNG $I_INCPNG" libpng libpng; then 711 715 # if test_execute nofatal; then 712 716 if test_execute; then … … 803 807 } 804 808 EOF 805 if test_compile "$LIBSDL $LIBSDLMAIN ${INCSDL:+-I$INCSDL}" SDL SDL; then 809 [ -n "$INCSDL" ] && I_INCSDL="-I$INCSDL" 810 if test_compile "$LIBSDL $LIBSDLMAIN $I_INCSDL" SDL SDL; then 806 811 if test_execute; then 807 812 cnf_append "LIB_SDK_LIBSDL_SDL" "`strip_l "$LIBSDL"`" … … 1224 1229 ;; 1225 1230 --odir=*) 1226 ODIR= `echo $option | cut -d'=' -f2`1231 ODIR="`echo $option | cut -d'=' -f2`/" 1227 1232 ;; 1228 1233 *) … … 1235 1240 done 1236 1241 1237 LOG="$ {ODIR:+$ODIR/}$LOG"1238 ENV="$ {ODIR:+$ODIR/}$ENV"1239 CNF="$ {ODIR:+$ODIR/}$CNF"1242 LOG="$ODIR$LOG" 1243 ENV="$ODIR$ENV" 1244 CNF="$ODIR$CNF" 1240 1245 1241 1246 # initialize output files
Note:
See TracChangeset
for help on using the changeset viewer.