Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5467 in orxonox.OLD


Ignore:
Timestamp:
Nov 3, 2005, 12:40:14 AM (18 years ago)
Author:
bensch
Message:

orxonox/trunk: convenience flags for tardis-environment

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/configure

    r5463 r5467  
    882882                          libraries.
    883883  --with-sub-projects     also builds the subProjects while make from srcdir
     884  --with-tardis           sets all the necesary environment flags for
     885                          linux-TARDIS boxes at the ETH Zurich
    884886
    885887Some influential environment variables:
     
    41524154fi
    41534155
     4156
     4157
     4158
     4159#---------------------------#
     4160# WITH TARDIS (convenience) #
     4161#---------------------------#
     4162def_tardis=no
     4163echo "$as_me:$LINENO: checking convenience flag for working at the taris in the ETH zurich" >&5
     4164echo $ECHO_N "checking convenience flag for working at the taris in the ETH zurich... $ECHO_C" >&6
     4165
     4166# Check whether --with-tardi or --without-tardi was given.
     4167if test "${with_tardi+set}" = set; then
     4168  withval="$with_tardi"
     4169  def_tardis=yes
     4170fi;
     4171if test x$def_tardis = xyes; then
     4172  PREFIX=/usr/pack/gamelibs-1.0-to
     4173  CPPFLAGS="$CPPFLAGS -I$PREFIX/include"
     4174  LDFLAGS="$LDFLAGS -L$PREFIX/$ARCH/lib -Wl,-rpath -Wl,$PREFIX/$ARCH/lib"
     4175  echo "yes"
     4176fi
     4177if test x$def_tardis = xno; then
     4178  echo "no"
     4179fi
    41544180
    41554181#######################
  • trunk/configure.ac

    r5463 r5467  
    209209AM_CONDITIONAL(DOCUMENTATION, test x$def_documentation = xyes)
    210210
     211
     212
     213#---------------------------#
     214# WITH TARDIS (convenience) #
     215#---------------------------#
     216def_tardis=no
     217AC_MSG_CHECKING([convenience flag for working at the taris in the ETH zurich])
     218AC_ARG_WITH([tardi],
     219        AC_HELP_STRING( [--with-tardis],
     220        [sets all the necesary environment flags for linux-TARDIS boxes at the ETH Zurich]), [def_tardis=yes])
     221if test x$def_tardis = xyes; then
     222  PREFIX=/usr/pack/gamelibs-1.0-to
     223  CPPFLAGS="$CPPFLAGS -I$PREFIX/include"
     224  LDFLAGS="$LDFLAGS -L$PREFIX/$ARCH/lib -Wl,-rpath -Wl,$PREFIX/$ARCH/lib"
     225  echo "yes"
     226fi
     227if test x$def_tardis = xno; then
     228  echo "no"
     229fi
     230
    211231#######################
    212232## PROGRAMM CHECKING ##
     
    699719                 src/lib/shell/Makefile
    700720                 src/lib/gui/Makefile
    701                 src/lib/gui/gtk_gui/Makefile
    702                 src/lib/gui/gl_gui/Makefile
     721                src/lib/gui/gtk_gui/Makefile
     722                src/lib/gui/gl_gui/Makefile
    703723                 src/lib/tinyxml/Makefile
    704724                 src/util/Makefile
Note: See TracChangeset for help on using the changeset viewer.