Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 2819 in orxonox.OLD for orxonox/trunk


Ignore:
Timestamp:
Nov 12, 2004, 12:52:52 AM (20 years ago)
Author:
bensch
Message:

orxonox/trunk: fixed importer autoconf in configure.ac

Location:
orxonox/trunk
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/Makefile.am

    r1956 r2819  
    1 SUBDIRS = src console gui
     1SUBDIRS = src console gui importer
  • orxonox/trunk/Makefile.in

    r2711 r2819  
    146146sysconfdir = @sysconfdir@
    147147target_alias = @target_alias@
    148 SUBDIRS = src console gui
     148SUBDIRS = src console gui importer
    149149all: config.h
    150150        $(MAKE) $(AM_MAKEFLAGS) all-recursive
  • orxonox/trunk/aclocal.m4

    r2706 r2819  
    1 # generated automatically by aclocal 1.8.2 -*- Autoconf -*-
     1# generated automatically by aclocal 1.8.5 -*- Autoconf -*-
    22
    33# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
     
    4141# This function is AC_REQUIREd by AC_INIT_AUTOMAKE.
    4242AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
    43          [AM_AUTOMAKE_VERSION([1.8.2])])
     43         [AM_AUTOMAKE_VERSION([1.8.5])])
    4444
    4545# AM_AUX_DIR_EXPAND
     
    150150fi])])
    151151
    152 # serial 6                                              -*- Autoconf -*-
     152# serial 7                                              -*- Autoconf -*-
    153153
    154154# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004
     
    237237    for i in 1 2 3 4 5 6; do
    238238      echo '#include "conftst'$i'.h"' >> sub/conftest.c
    239       : > sub/conftst$i.h
     239      # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
     240      # Solaris 8's {/usr,}/bin/sh.
     241      touch sub/conftst$i.h
    240242    done
    241243    echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
     
    265267       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
    266268      # icc doesn't choke on unknown options, it will just issue warnings
    267       # (even with -Werror).  So we grep stderr for any message
    268       # that says an option was ignored.
    269       if grep 'ignoring option' conftest.err >/dev/null 2>&1; then :; else
     269      # or remarks (even with -Werror).  So we grep stderr for any message
     270      # that says an option was ignored or not supported.
     271      # When given -MP, icc 7.0 and 7.1 complain thusly:
     272      #   icc: Command line warning: ignoring option '-M'; no argument required
     273      # The diagnosis changed in icc 8.0:
     274      #   icc: Command line remark: option '-MP' not supported
     275      if (grep 'ignoring option' conftest.err ||
     276          grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
    270277        am_cv_$1_dependencies_compiler_type=$depmode
    271278        break
     
    313320# Generate code to set up dependency tracking.   -*- Autoconf -*-
    314321
    315 # Copyright (C) 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
     322# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
    316323
    317324# This program is free software; you can redistribute it and/or modify
     
    352359  # Extract the definition of DEP_FILES from the Makefile without
    353360  # running `make'.
    354   DEPDIR=`sed -n -e '/^DEPDIR = / s///p' < "$mf"`
     361  DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
    355362  test -z "$DEPDIR" && continue
    356363  # When using ansi2knr, U may be empty or an underscore; expand it
    357   U=`sed -n -e '/^U = / s///p' < "$mf"`
     364  U=`sed -n 's/^U = //p' < "$mf"`
    358365  test -d "$dirpart/$DEPDIR" || mkdir "$dirpart/$DEPDIR"
    359366  # We invoke sed twice because it is the simplest approach to
    360367  # changing $(DEPDIR) to its actual value in the expansion.
    361   for file in `sed -n -e '
     368  for file in `sed -n '
    362369    /^DEP_FILES = .*\\\\$/ {
    363370      s/^DEP_FILES = //
     
    718725# Do not use -m 0755 and let people choose whatever they expect by
    719726# setting umask.
     727#
     728# We cannot accept any implementation of `mkdir' that recognizes `-p'.
     729# Some implementations (such as Solaris 8's) are not thread-safe: if a
     730# parallel make tries to run `mkdir -p a/b' and `mkdir -p a/c'
     731# concurrently, both version can detect that a/ is missing, but only
     732# one can create it and the other will error out.  Consequently we
     733# restrict ourselves to GNU make (using the --version option ensures
     734# this.)
    720735AC_DEFUN([AM_PROG_MKDIR_P],
    721 [if mkdir -p -- . 2>/dev/null; then
     736[if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
    722737  # Keeping the `.' argument allows $(mkdir_p) to be used without
    723738  # argument.  Indeed, we sometimes output rules like
     
    732747  # directories to create, and then abort because `.' already
    733748  # exists.
    734   for d in ./-p ./--;
     749  for d in ./-p ./--version;
    735750  do
    736751    test -d $d && rmdir $d
  • orxonox/trunk/configure

    r2706 r2819  
    14971497fi
    14981498
    1499 if mkdir -p -- . 2>/dev/null; then
     1499if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
    15001500  # Keeping the `.' argument allows $(mkdir_p) to be used without
    15011501  # argument.  Indeed, we sometimes output rules like
     
    15101510  # directories to create, and then abort because `.' already
    15111511  # exists.
    1512   for d in ./-p ./--;
     1512  for d in ./-p ./--version;
    15131513  do
    15141514    test -d $d && rmdir $d
     
    24152415    for i in 1 2 3 4 5 6; do
    24162416      echo '#include "conftst'$i'.h"' >> sub/conftest.c
    2417       : > sub/conftst$i.h
     2417      # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
     2418      # Solaris 8's {/usr,}/bin/sh.
     2419      touch sub/conftst$i.h
    24182420    done
    24192421    echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
     
    24432445       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
    24442446      # icc doesn't choke on unknown options, it will just issue warnings
    2445       # (even with -Werror).  So we grep stderr for any message
    2446       # that says an option was ignored.
    2447       if grep 'ignoring option' conftest.err >/dev/null 2>&1; then :; else
     2447      # or remarks (even with -Werror).  So we grep stderr for any message
     2448      # that says an option was ignored or not supported.
     2449      # When given -MP, icc 7.0 and 7.1 complain thusly:
     2450      #   icc: Command line warning: ignoring option '-M'; no argument required
     2451      # The diagnosis changed in icc 8.0:
     2452      #   icc: Command line remark: option '-MP' not supported
     2453      if (grep 'ignoring option' conftest.err ||
     2454          grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
    24482455        am_cv_CXX_dependencies_compiler_type=$depmode
    24492456        break
     
    32463253    for i in 1 2 3 4 5 6; do
    32473254      echo '#include "conftst'$i'.h"' >> sub/conftest.c
    3248       : > sub/conftst$i.h
     3255      # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
     3256      # Solaris 8's {/usr,}/bin/sh.
     3257      touch sub/conftst$i.h
    32493258    done
    32503259    echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
     
    32743283       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
    32753284      # icc doesn't choke on unknown options, it will just issue warnings
    3276       # (even with -Werror).  So we grep stderr for any message
    3277       # that says an option was ignored.
    3278       if grep 'ignoring option' conftest.err >/dev/null 2>&1; then :; else
     3285      # or remarks (even with -Werror).  So we grep stderr for any message
     3286      # that says an option was ignored or not supported.
     3287      # When given -MP, icc 7.0 and 7.1 complain thusly:
     3288      #   icc: Command line warning: ignoring option '-M'; no argument required
     3289      # The diagnosis changed in icc 8.0:
     3290      #   icc: Command line remark: option '-MP' not supported
     3291      if (grep 'ignoring option' conftest.err ||
     3292          grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
    32793293        am_cv_CC_dependencies_compiler_type=$depmode
    32803294        break
     
    63676381
    63686382
    6369                                         ac_config_files="$ac_config_files Makefile console/Makefile gui/Makefile src/Makefile"
     6383                                                  ac_config_files="$ac_config_files Makefile console/Makefile gui/Makefile src/Makefile importer/Makefile"
    63706384
    63716385cat >confcache <<\_ACEOF
     
    69296943  "gui/Makefile" ) CONFIG_FILES="$CONFIG_FILES gui/Makefile" ;;
    69306944  "src/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/Makefile" ;;
     6945  "importer/Makefile" ) CONFIG_FILES="$CONFIG_FILES importer/Makefile" ;;
    69316946  "depfiles" ) CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
    69326947  "config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
     
    76887703  # Extract the definition of DEP_FILES from the Makefile without
    76897704  # running `make'.
    7690   DEPDIR=`sed -n -e '/^DEPDIR = / s///p' < "$mf"`
     7705  DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
    76917706  test -z "$DEPDIR" && continue
    76927707  # When using ansi2knr, U may be empty or an underscore; expand it
    7693   U=`sed -n -e '/^U = / s///p' < "$mf"`
     7708  U=`sed -n 's/^U = //p' < "$mf"`
    76947709  test -d "$dirpart/$DEPDIR" || mkdir "$dirpart/$DEPDIR"
    76957710  # We invoke sed twice because it is the simplest approach to
    76967711  # changing $(DEPDIR) to its actual value in the expansion.
    7697   for file in `sed -n -e '
     7712  for file in `sed -n '
    76987713    /^DEP_FILES = .*\\\\$/ {
    76997714      s/^DEP_FILES = //
  • orxonox/trunk/configure.ac

    r2701 r2819  
    196196                 console/Makefile
    197197                 gui/Makefile
    198                  src/Makefile])
     198                 src/Makefile
     199                 importer/Makefile])
    199200AC_OUTPUT
  • orxonox/trunk/gui/orxonox_gui_keys.cc

    r2740 r2819  
    3939
    4040  keysBox->fill(player1->getOpenButton());
     41  //  keysBox->fill(player2->getOpenButton());
    4142
    4243  keysFrame->fill (keysBox);
  • orxonox/trunk/src/world.cc

    r2817 r2819  
    338338  while( entity != NULL )
    339339    {
    340       if( entity->bDraw ) entity->draw();
     340      entity->draw();
    341341      entity = l->nextElement();
    342342    }
Note: See TracChangeset for help on using the changeset viewer.