Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3561 in orxonox.OLD for orxonox/branches/levelloader/configure


Ignore:
Timestamp:
Mar 15, 2005, 5:59:44 PM (19 years ago)
Author:
bensch
Message:

orxonox/branches: deleted obsolete branche trackManager. all necessary data already moved into the trunk

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/levelloader/configure

    r3530 r3561  
    15991599fi
    16001600
    1601 if mkdir -p -- . 2>/dev/null; then
     1601if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
    16021602  # Keeping the `.' argument allows $(mkdir_p) to be used without
    16031603  # argument.  Indeed, we sometimes output rules like
     
    16121612  # directories to create, and then abort because `.' already
    16131613  # exists.
    1614   for d in ./-p ./--;
     1614  for d in ./-p ./--version;
    16151615  do
    16161616    test -d $d && rmdir $d
     
    25182518    for i in 1 2 3 4 5 6; do
    25192519      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
    25212523    done
    25222524    echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
     
    25462548       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
    25472549      # 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
    25512558        am_cv_CXX_dependencies_compiler_type=$depmode
    25522559        break
     
    33493356    for i in 1 2 3 4 5 6; do
    33503357      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
    33523361    done
    33533362    echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
     
    33773386       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
    33783387      # 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
    33823396        am_cv_CC_dependencies_compiler_type=$depmode
    33833397        break
     
    95599573  # Extract the definition of DEP_FILES from the Makefile without
    95609574  # running `make'.
    9561   DEPDIR=`sed -n -e '/^DEPDIR = / s///p' < "$mf"`
     9575  DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
    95629576  test -z "$DEPDIR" && continue
    95639577  # 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"`
    95659579  test -d "$dirpart/$DEPDIR" || mkdir "$dirpart/$DEPDIR"
    95669580  # We invoke sed twice because it is the simplest approach to
    95679581  # changing $(DEPDIR) to its actual value in the expansion.
    9568   for file in `sed -n -e '
     9582  for file in `sed -n '
    95699583    /^DEP_FILES = .*\\\\$/ {
    95709584      s/^DEP_FILES = //
Note: See TracChangeset for help on using the changeset viewer.