Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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


Ignore:
Timestamp:
Jul 8, 2005, 7:02:18 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: moved the weaponManager out of Weapon
we have files enough. one more is not too much :)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/configure

    r4825 r4826  
    16021602fi
    16031603
    1604 if mkdir -p -- . 2>/dev/null; then
     1604if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
    16051605  # Keeping the `.' argument allows $(mkdir_p) to be used without
    16061606  # argument.  Indeed, we sometimes output rules like
     
    16151615  # directories to create, and then abort because `.' already
    16161616  # exists.
    1617   for d in ./-p ./--;
     1617  for d in ./-p ./--version;
    16181618  do
    16191619    test -d $d && rmdir $d
     
    25212521    for i in 1 2 3 4 5 6; do
    25222522      echo '#include "conftst'$i'.h"' >> sub/conftest.c
    2523       : > sub/conftst$i.h
     2523      # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
     2524      # Solaris 8's {/usr,}/bin/sh.
     2525      touch sub/conftst$i.h
    25242526    done
    25252527    echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
     
    25492551       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
    25502552      # icc doesn't choke on unknown options, it will just issue warnings
    2551       # (even with -Werror).  So we grep stderr for any message
    2552       # that says an option was ignored.
    2553       if grep 'ignoring option' conftest.err >/dev/null 2>&1; then :; else
     2553      # or remarks (even with -Werror).  So we grep stderr for any message
     2554      # that says an option was ignored or not supported.
     2555      # When given -MP, icc 7.0 and 7.1 complain thusly:
     2556      #   icc: Command line warning: ignoring option '-M'; no argument required
     2557      # The diagnosis changed in icc 8.0:
     2558      #   icc: Command line remark: option '-MP' not supported
     2559      if (grep 'ignoring option' conftest.err ||
     2560          grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
    25542561        am_cv_CXX_dependencies_compiler_type=$depmode
    25552562        break
     
    34323439    for i in 1 2 3 4 5 6; do
    34333440      echo '#include "conftst'$i'.h"' >> sub/conftest.c
    3434       : > sub/conftst$i.h
     3441      # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
     3442      # Solaris 8's {/usr,}/bin/sh.
     3443      touch sub/conftst$i.h
    34353444    done
    34363445    echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
     
    34603469       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
    34613470      # icc doesn't choke on unknown options, it will just issue warnings
    3462       # (even with -Werror).  So we grep stderr for any message
    3463       # that says an option was ignored.
    3464       if grep 'ignoring option' conftest.err >/dev/null 2>&1; then :; else
     3471      # or remarks (even with -Werror).  So we grep stderr for any message
     3472      # that says an option was ignored or not supported.
     3473      # When given -MP, icc 7.0 and 7.1 complain thusly:
     3474      #   icc: Command line warning: ignoring option '-M'; no argument required
     3475      # The diagnosis changed in icc 8.0:
     3476      #   icc: Command line remark: option '-MP' not supported
     3477      if (grep 'ignoring option' conftest.err ||
     3478          grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
    34653479        am_cv_CC_dependencies_compiler_type=$depmode
    34663480        break
     
    1083610850  # Extract the definition of DEP_FILES from the Makefile without
    1083710851  # running `make'.
    10838   DEPDIR=`sed -n -e '/^DEPDIR = / s///p' < "$mf"`
     10852  DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
    1083910853  test -z "$DEPDIR" && continue
    1084010854  # When using ansi2knr, U may be empty or an underscore; expand it
    10841   U=`sed -n -e '/^U = / s///p' < "$mf"`
     10855  U=`sed -n 's/^U = //p' < "$mf"`
    1084210856  test -d "$dirpart/$DEPDIR" || mkdir "$dirpart/$DEPDIR"
    1084310857  # We invoke sed twice because it is the simplest approach to
    1084410858  # changing $(DEPDIR) to its actual value in the expansion.
    10845   for file in `sed -n -e '
     10859  for file in `sed -n '
    1084610860    /^DEP_FILES = .*\\\\$/ {
    1084710861      s/^DEP_FILES = //
Note: See TracChangeset for help on using the changeset viewer.