Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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


Ignore:
Timestamp:
Mar 13, 2005, 10:40:25 PM (19 years ago)
Author:
chris
Message:

orxonox/branches/levelloader: Got the system to compile, the basic backbone now runs. What remains to be done is implementing all necessary functions to load all vital classes into a world

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/levelloader/configure

    r3499 r3530  
    15991599fi
    16001600
    1601 if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
     1601if mkdir -p -- . 2>/dev/null; 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 ./--version;
     1614  for d in ./-p ./--;
    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       # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
    2521       # Solaris 8's {/usr,}/bin/sh.
    2522       touch sub/conftst$i.h
     2520      : > sub/conftst$i.h
    25232521    done
    25242522    echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
     
    25482546       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
    25492547      # icc doesn't choke on unknown options, it will just issue warnings
    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
     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
    25582551        am_cv_CXX_dependencies_compiler_type=$depmode
    25592552        break
     
    33563349    for i in 1 2 3 4 5 6; do
    33573350      echo '#include "conftst'$i'.h"' >> sub/conftest.c
    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
     3351      : > sub/conftst$i.h
    33613352    done
    33623353    echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
     
    33863377       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
    33873378      # icc doesn't choke on unknown options, it will just issue warnings
    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
     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
    33963382        am_cv_CC_dependencies_compiler_type=$depmode
    33973383        break
     
    95739559  # Extract the definition of DEP_FILES from the Makefile without
    95749560  # running `make'.
    9575   DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
     9561  DEPDIR=`sed -n -e '/^DEPDIR = / s///p' < "$mf"`
    95769562  test -z "$DEPDIR" && continue
    95779563  # When using ansi2knr, U may be empty or an underscore; expand it
    9578   U=`sed -n 's/^U = //p' < "$mf"`
     9564  U=`sed -n -e '/^U = / s///p' < "$mf"`
    95799565  test -d "$dirpart/$DEPDIR" || mkdir "$dirpart/$DEPDIR"
    95809566  # We invoke sed twice because it is the simplest approach to
    95819567  # changing $(DEPDIR) to its actual value in the expansion.
    9582   for file in `sed -n '
     9568  for file in `sed -n -e '
    95839569    /^DEP_FILES = .*\\\\$/ {
    95849570      s/^DEP_FILES = //
Note: See TracChangeset for help on using the changeset viewer.