Changeset 3561 in orxonox.OLD for orxonox/branches/levelloader/configure
- Timestamp:
- Mar 15, 2005, 5:59:44 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/levelloader/configure
r3530 r3561 1599 1599 fi 1600 1600 1601 if mkdir -p -- . 2>/dev/null; then1601 if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then 1602 1602 # Keeping the `.' argument allows $(mkdir_p) to be used without 1603 1603 # argument. Indeed, we sometimes output rules like … … 1612 1612 # directories to create, and then abort because `.' already 1613 1613 # exists. 1614 for d in ./-p ./-- ;1614 for d in ./-p ./--version; 1615 1615 do 1616 1616 test -d $d && rmdir $d … … 2518 2518 for i in 1 2 3 4 5 6; do 2519 2519 echo '#include "conftst'$i'.h"' >> sub/conftest.c 2520 : > sub/conftst$i.h 2520 # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with 2521 # Solaris 8's {/usr,}/bin/sh. 2522 touch sub/conftst$i.h 2521 2523 done 2522 2524 echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf … … 2546 2548 ${MAKE-make} -s -f confmf > /dev/null 2>&1; then 2547 2549 # icc doesn't choke on unknown options, it will just issue warnings 2548 # (even with -Werror). So we grep stderr for any message 2549 # that says an option was ignored. 2550 if grep 'ignoring option' conftest.err >/dev/null 2>&1; then :; else 2550 # or remarks (even with -Werror). So we grep stderr for any message 2551 # that says an option was ignored or not supported. 2552 # When given -MP, icc 7.0 and 7.1 complain thusly: 2553 # icc: Command line warning: ignoring option '-M'; no argument required 2554 # The diagnosis changed in icc 8.0: 2555 # icc: Command line remark: option '-MP' not supported 2556 if (grep 'ignoring option' conftest.err || 2557 grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else 2551 2558 am_cv_CXX_dependencies_compiler_type=$depmode 2552 2559 break … … 3349 3356 for i in 1 2 3 4 5 6; do 3350 3357 echo '#include "conftst'$i'.h"' >> sub/conftest.c 3351 : > sub/conftst$i.h 3358 # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with 3359 # Solaris 8's {/usr,}/bin/sh. 3360 touch sub/conftst$i.h 3352 3361 done 3353 3362 echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf … … 3377 3386 ${MAKE-make} -s -f confmf > /dev/null 2>&1; then 3378 3387 # icc doesn't choke on unknown options, it will just issue warnings 3379 # (even with -Werror). So we grep stderr for any message 3380 # that says an option was ignored. 3381 if grep 'ignoring option' conftest.err >/dev/null 2>&1; then :; else 3388 # or remarks (even with -Werror). So we grep stderr for any message 3389 # that says an option was ignored or not supported. 3390 # When given -MP, icc 7.0 and 7.1 complain thusly: 3391 # icc: Command line warning: ignoring option '-M'; no argument required 3392 # The diagnosis changed in icc 8.0: 3393 # icc: Command line remark: option '-MP' not supported 3394 if (grep 'ignoring option' conftest.err || 3395 grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else 3382 3396 am_cv_CC_dependencies_compiler_type=$depmode 3383 3397 break … … 9559 9573 # Extract the definition of DEP_FILES from the Makefile without 9560 9574 # running `make'. 9561 DEPDIR=`sed -n -e '/^DEPDIR = / s///p' < "$mf"`9575 DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` 9562 9576 test -z "$DEPDIR" && continue 9563 9577 # When using ansi2knr, U may be empty or an underscore; expand it 9564 U=`sed -n -e '/^U = / s///p' < "$mf"`9578 U=`sed -n 's/^U = //p' < "$mf"` 9565 9579 test -d "$dirpart/$DEPDIR" || mkdir "$dirpart/$DEPDIR" 9566 9580 # We invoke sed twice because it is the simplest approach to 9567 9581 # changing $(DEPDIR) to its actual value in the expansion. 9568 for file in `sed -n -e'9582 for file in `sed -n ' 9569 9583 /^DEP_FILES = .*\\\\$/ { 9570 9584 s/^DEP_FILES = //
Note: See TracChangeset
for help on using the changeset viewer.