Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 4010 in orxonox.OLD for orxonox/trunk/configure


Ignore:
Timestamp:
May 2, 2005, 3:14:57 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: merged the levelloader from lltrunktemp to the trunk. Big thanks to fuzzy to make this so easy for us, and for implementing it in the first place.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/configure

    r3995 r4010  
    16041604fi
    16051605
    1606 if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
     1606if mkdir -p -- . 2>/dev/null; then
    16071607  # Keeping the `.' argument allows $(mkdir_p) to be used without
    16081608  # argument.  Indeed, we sometimes output rules like
     
    16171617  # directories to create, and then abort because `.' already
    16181618  # exists.
    1619   for d in ./-p ./--version;
     1619  for d in ./-p ./--;
    16201620  do
    16211621    test -d $d && rmdir $d
     
    25232523    for i in 1 2 3 4 5 6; do
    25242524      echo '#include "conftst'$i'.h"' >> sub/conftest.c
    2525       # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
    2526       # Solaris 8's {/usr,}/bin/sh.
    2527       touch sub/conftst$i.h
     2525      : > sub/conftst$i.h
    25282526    done
    25292527    echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
     
    25532551       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
    25542552      # icc doesn't choke on unknown options, it will just issue warnings
    2555       # or remarks (even with -Werror).  So we grep stderr for any message
    2556       # that says an option was ignored or not supported.
    2557       # When given -MP, icc 7.0 and 7.1 complain thusly:
    2558       #   icc: Command line warning: ignoring option '-M'; no argument required
    2559       # The diagnosis changed in icc 8.0:
    2560       #   icc: Command line remark: option '-MP' not supported
    2561       if (grep 'ignoring option' conftest.err ||
    2562           grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
     2553      # (even with -Werror).  So we grep stderr for any message
     2554      # that says an option was ignored.
     2555      if grep 'ignoring option' conftest.err >/dev/null 2>&1; then :; else
    25632556        am_cv_CXX_dependencies_compiler_type=$depmode
    25642557        break
     
    33613354    for i in 1 2 3 4 5 6; do
    33623355      echo '#include "conftst'$i'.h"' >> sub/conftest.c
    3363       # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
    3364       # Solaris 8's {/usr,}/bin/sh.
    3365       touch sub/conftst$i.h
     3356      : > sub/conftst$i.h
    33663357    done
    33673358    echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
     
    33913382       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
    33923383      # icc doesn't choke on unknown options, it will just issue warnings
    3393       # or remarks (even with -Werror).  So we grep stderr for any message
    3394       # that says an option was ignored or not supported.
    3395       # When given -MP, icc 7.0 and 7.1 complain thusly:
    3396       #   icc: Command line warning: ignoring option '-M'; no argument required
    3397       # The diagnosis changed in icc 8.0:
    3398       #   icc: Command line remark: option '-MP' not supported
    3399       if (grep 'ignoring option' conftest.err ||
    3400           grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
     3384      # (even with -Werror).  So we grep stderr for any message
     3385      # that says an option was ignored.
     3386      if grep 'ignoring option' conftest.err >/dev/null 2>&1; then :; else
    34013387        am_cv_CC_dependencies_compiler_type=$depmode
    34023388        break
     
    95399525  # Extract the definition of DEP_FILES from the Makefile without
    95409526  # running `make'.
    9541   DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
     9527  DEPDIR=`sed -n -e '/^DEPDIR = / s///p' < "$mf"`
    95429528  test -z "$DEPDIR" && continue
    95439529  # When using ansi2knr, U may be empty or an underscore; expand it
    9544   U=`sed -n 's/^U = //p' < "$mf"`
     9530  U=`sed -n -e '/^U = / s///p' < "$mf"`
    95459531  test -d "$dirpart/$DEPDIR" || mkdir "$dirpart/$DEPDIR"
    95469532  # We invoke sed twice because it is the simplest approach to
    95479533  # changing $(DEPDIR) to its actual value in the expansion.
    9548   for file in `sed -n '
     9534  for file in `sed -n -e '
    95499535    /^DEP_FILES = .*\\\\$/ {
    95509536      s/^DEP_FILES = //
Note: See TracChangeset for help on using the changeset viewer.