Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 4698 in orxonox.OLD


Ignore:
Timestamp:
Jun 25, 2005, 12:18:55 PM (19 years ago)
Author:
bensch
Message:

news

Location:
orxonox/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/NEWS

    r4563 r4698  
     1Date: June 25, 2005
     2Topic: Big demo in physically-based animations
     3Body: on Monday we have a big demo on orxonox's physical capabilities. We will show some major new features like the ParticleEngine, the PhysicsInterface, and last but not least the longly expected CollisionDetection. Of course all the new Features are in the new trunk, and are downloadable at the  <a href="/files/snapshots">snapshot-section</a>.
     4
     5
    16Date: June 09, 2005
    27Topic: tag 0.3.0-pre-alpha released
  • orxonox/trunk/config.h.in

    r4664 r4698  
    3737/* Define to 1 if you have the <memory.h> header file. */
    3838#undef HAVE_MEMORY_H
    39 
    40 /* Define to 1 if you have the <ogg/ogg.h> header file. */
    41 #undef HAVE_OGG_OGG_H
    4239
    4340/* Define to 1 if you have the <OpenGL/glu.h> header file. */
     
    9289#undef HAVE_UNISTD_H
    9390
    94 /* Define to 1 if you have the <vorbis/vorbisfile.h> header file. */
    95 #undef HAVE_VORBIS_VORBISFILE_H
    96 
    9791/* Define to 1 if the system has the type `_Bool'. */
    9892#undef HAVE__BOOL
  • orxonox/trunk/configure

    r4697 r4698  
    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
     
    1032210336  # Extract the definition of DEP_FILES from the Makefile without
    1032310337  # running `make'.
    10324   DEPDIR=`sed -n -e '/^DEPDIR = / s///p' < "$mf"`
     10338  DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
    1032510339  test -z "$DEPDIR" && continue
    1032610340  # When using ansi2knr, U may be empty or an underscore; expand it
    10327   U=`sed -n -e '/^U = / s///p' < "$mf"`
     10341  U=`sed -n 's/^U = //p' < "$mf"`
    1032810342  test -d "$dirpart/$DEPDIR" || mkdir "$dirpart/$DEPDIR"
    1032910343  # We invoke sed twice because it is the simplest approach to
    1033010344  # changing $(DEPDIR) to its actual value in the expansion.
    10331   for file in `sed -n -e '
     10345  for file in `sed -n '
    1033210346    /^DEP_FILES = .*\\\\$/ {
    1033310347      s/^DEP_FILES = //
Note: See TracChangeset for help on using the changeset viewer.