Changeset 2860 in orxonox.OLD for orxonox/branches/dave/configure
- Timestamp:
- Nov 15, 2004, 11:13:21 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/dave/configure
r2706 r2860 1497 1497 fi 1498 1498 1499 if mkdir -p -- . 2>/dev/null; then1499 if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then 1500 1500 # Keeping the `.' argument allows $(mkdir_p) to be used without 1501 1501 # argument. Indeed, we sometimes output rules like … … 1510 1510 # directories to create, and then abort because `.' already 1511 1511 # exists. 1512 for d in ./-p ./-- ;1512 for d in ./-p ./--version; 1513 1513 do 1514 1514 test -d $d && rmdir $d … … 2415 2415 for i in 1 2 3 4 5 6; do 2416 2416 echo '#include "conftst'$i'.h"' >> sub/conftest.c 2417 : > sub/conftst$i.h 2417 # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with 2418 # Solaris 8's {/usr,}/bin/sh. 2419 touch sub/conftst$i.h 2418 2420 done 2419 2421 echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf … … 2443 2445 ${MAKE-make} -s -f confmf > /dev/null 2>&1; then 2444 2446 # icc doesn't choke on unknown options, it will just issue warnings 2445 # (even with -Werror). So we grep stderr for any message 2446 # that says an option was ignored. 2447 if grep 'ignoring option' conftest.err >/dev/null 2>&1; then :; else 2447 # or remarks (even with -Werror). So we grep stderr for any message 2448 # that says an option was ignored or not supported. 2449 # When given -MP, icc 7.0 and 7.1 complain thusly: 2450 # icc: Command line warning: ignoring option '-M'; no argument required 2451 # The diagnosis changed in icc 8.0: 2452 # icc: Command line remark: option '-MP' not supported 2453 if (grep 'ignoring option' conftest.err || 2454 grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else 2448 2455 am_cv_CXX_dependencies_compiler_type=$depmode 2449 2456 break … … 3246 3253 for i in 1 2 3 4 5 6; do 3247 3254 echo '#include "conftst'$i'.h"' >> sub/conftest.c 3248 : > sub/conftst$i.h 3255 # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with 3256 # Solaris 8's {/usr,}/bin/sh. 3257 touch sub/conftst$i.h 3249 3258 done 3250 3259 echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf … … 3274 3283 ${MAKE-make} -s -f confmf > /dev/null 2>&1; then 3275 3284 # icc doesn't choke on unknown options, it will just issue warnings 3276 # (even with -Werror). So we grep stderr for any message 3277 # that says an option was ignored. 3278 if grep 'ignoring option' conftest.err >/dev/null 2>&1; then :; else 3285 # or remarks (even with -Werror). So we grep stderr for any message 3286 # that says an option was ignored or not supported. 3287 # When given -MP, icc 7.0 and 7.1 complain thusly: 3288 # icc: Command line warning: ignoring option '-M'; no argument required 3289 # The diagnosis changed in icc 8.0: 3290 # icc: Command line remark: option '-MP' not supported 3291 if (grep 'ignoring option' conftest.err || 3292 grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else 3279 3293 am_cv_CC_dependencies_compiler_type=$depmode 3280 3294 break … … 6367 6381 6368 6382 6369 ac_config_files="$ac_config_files Makefile console/Makefile gui/Makefile src/Makefile"6383 ac_config_files="$ac_config_files Makefile console/Makefile gui/Makefile src/Makefile importer/Makefile" 6370 6384 6371 6385 cat >confcache <<\_ACEOF … … 6929 6943 "gui/Makefile" ) CONFIG_FILES="$CONFIG_FILES gui/Makefile" ;; 6930 6944 "src/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/Makefile" ;; 6945 "importer/Makefile" ) CONFIG_FILES="$CONFIG_FILES importer/Makefile" ;; 6931 6946 "depfiles" ) CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; 6932 6947 "config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; … … 7688 7703 # Extract the definition of DEP_FILES from the Makefile without 7689 7704 # running `make'. 7690 DEPDIR=`sed -n -e '/^DEPDIR = / s///p' < "$mf"`7705 DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` 7691 7706 test -z "$DEPDIR" && continue 7692 7707 # When using ansi2knr, U may be empty or an underscore; expand it 7693 U=`sed -n -e '/^U = / s///p' < "$mf"`7708 U=`sed -n 's/^U = //p' < "$mf"` 7694 7709 test -d "$dirpart/$DEPDIR" || mkdir "$dirpart/$DEPDIR" 7695 7710 # We invoke sed twice because it is the simplest approach to 7696 7711 # changing $(DEPDIR) to its actual value in the expansion. 7697 for file in `sed -n -e'7712 for file in `sed -n ' 7698 7713 /^DEP_FILES = .*\\\\$/ { 7699 7714 s/^DEP_FILES = //
Note: See TracChangeset
for help on using the changeset viewer.