Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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


Ignore:
Timestamp:
Apr 7, 2005, 3:54:49 PM (19 years ago)
Author:
chris
Message:

orxonox/branches/levelloader: Merged trunk into branch… still not working though…

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/levelloader/configure

    r3605 r3746  
    16031603fi
    16041604
    1605 if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
     1605if mkdir -p -- . 2>/dev/null; then
    16061606  # Keeping the `.' argument allows $(mkdir_p) to be used without
    16071607  # argument.  Indeed, we sometimes output rules like
     
    16161616  # directories to create, and then abort because `.' already
    16171617  # exists.
    1618   for d in ./-p ./--version;
     1618  for d in ./-p ./--;
    16191619  do
    16201620    test -d $d && rmdir $d
     
    25222522    for i in 1 2 3 4 5 6; do
    25232523      echo '#include "conftst'$i'.h"' >> sub/conftest.c
    2524       # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
    2525       # Solaris 8's {/usr,}/bin/sh.
    2526       touch sub/conftst$i.h
     2524      : > sub/conftst$i.h
    25272525    done
    25282526    echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
     
    25522550       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
    25532551      # icc doesn't choke on unknown options, it will just issue warnings
    2554       # or remarks (even with -Werror).  So we grep stderr for any message
    2555       # that says an option was ignored or not supported.
    2556       # When given -MP, icc 7.0 and 7.1 complain thusly:
    2557       #   icc: Command line warning: ignoring option '-M'; no argument required
    2558       # The diagnosis changed in icc 8.0:
    2559       #   icc: Command line remark: option '-MP' not supported
    2560       if (grep 'ignoring option' conftest.err ||
    2561           grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
     2552      # (even with -Werror).  So we grep stderr for any message
     2553      # that says an option was ignored.
     2554      if grep 'ignoring option' conftest.err >/dev/null 2>&1; then :; else
    25622555        am_cv_CXX_dependencies_compiler_type=$depmode
    25632556        break
     
    33603353    for i in 1 2 3 4 5 6; do
    33613354      echo '#include "conftst'$i'.h"' >> sub/conftest.c
    3362       # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
    3363       # Solaris 8's {/usr,}/bin/sh.
    3364       touch sub/conftst$i.h
     3355      : > sub/conftst$i.h
    33653356    done
    33663357    echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
     
    33903381       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
    33913382      # icc doesn't choke on unknown options, it will just issue warnings
    3392       # or remarks (even with -Werror).  So we grep stderr for any message
    3393       # that says an option was ignored or not supported.
    3394       # When given -MP, icc 7.0 and 7.1 complain thusly:
    3395       #   icc: Command line warning: ignoring option '-M'; no argument required
    3396       # The diagnosis changed in icc 8.0:
    3397       #   icc: Command line remark: option '-MP' not supported
    3398       if (grep 'ignoring option' conftest.err ||
    3399           grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
     3383      # (even with -Werror).  So we grep stderr for any message
     3384      # that says an option was ignored.
     3385      if grep 'ignoring option' conftest.err >/dev/null 2>&1; then :; else
    34003386        am_cv_CC_dependencies_compiler_type=$depmode
    34013387        break
     
    96399625  # Extract the definition of DEP_FILES from the Makefile without
    96409626  # running `make'.
    9641   DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
     9627  DEPDIR=`sed -n -e '/^DEPDIR = / s///p' < "$mf"`
    96429628  test -z "$DEPDIR" && continue
    96439629  # When using ansi2knr, U may be empty or an underscore; expand it
    9644   U=`sed -n 's/^U = //p' < "$mf"`
     9630  U=`sed -n -e '/^U = / s///p' < "$mf"`
    96459631  test -d "$dirpart/$DEPDIR" || mkdir "$dirpart/$DEPDIR"
    96469632  # We invoke sed twice because it is the simplest approach to
    96479633  # changing $(DEPDIR) to its actual value in the expansion.
    9648   for file in `sed -n '
     9634  for file in `sed -n -e '
    96499635    /^DEP_FILES = .*\\\\$/ {
    96509636      s/^DEP_FILES = //
Note: See TracChangeset for help on using the changeset viewer.