Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3399 in orxonox.OLD for orxonox/branches/nico/configure.ac


Ignore:
Timestamp:
Feb 6, 2005, 11:27:25 PM (20 years ago)
Author:
bensch
Message:

orxonox/branches/nico: merged trunk into branches/nico
merged with command:
svn merge ../trunk/ nico/ -r 3238:HEAD
resolved conflict in favor of branches/nico.

Location:
orxonox/branches/nico
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/nico

    • Property svn:externals set to
  • orxonox/branches/nico/configure.ac

    r3391 r3399  
    33
    44AC_PREREQ(2.56)
    5 AC_INIT(orxonox, 0.2.0_alpha-r1, orxonox-dev@mail.datacore.ch)
     5AC_INIT(orxonox, 0.2.1-pre-alpha, [orxonox-dev at mail.datacore.ch])
    66
    77# Detect the canonical host and target build environment.
     
    6969
    7070
     71### SubProject-enable
     72def_sdl_image=yes
     73AC_MSG_CHECKING([if the SubProjects should be built])
     74AC_ARG_ENABLE([sub-projects],
     75        AC_HELP_STRING( [--enable-sub-projects],
     76        [also builds the subProjects by default]), [def_sub_projects=yes])
     77if test "$def_sub_projects" = yes; then
     78  echo "yes"
     79fi
     80if test "$def_sub_projects" = no; then
     81  echo "no"
     82fi
     83AM_CONDITIONAL(SUB_PROJECTS, test x$def_sub_projects = xyes)
     84
    7185## PROGRAMM CHECKING
    7286# checking for Doxygen
     
    161175
    162176CPPFLAGS="-I/usr/X11R6/include"
    163 LDFLAGS="-L/usr/Mesa-6.0.1/lib -L/usr/X11R6/lib $LDFLAGS"
     177LDFLAGS="-L/usr/lib/opengl/xorg-x11/lib -L/usr/Mesa-6.0.1/lib -L/usr/X11R6/lib $LDFLAGS"
    164178# checking gl header
    165179   AC_CHECK_HEADERS(GL/gl.h ,,
     
    167181
    168182#  checking for Unix GL
    169    AC_CHECK_LIB([GL], [main], FOUND_GL=yes)
     183   AC_CHECK_LIB([GL], [glLoadIdentity], FOUND_GL=yes)
    170184   if test "$FOUND_GL" = "yes" ; then
    171185     LIBS="$LIBS -lGL"
     
    364378
    365379AC_CONFIG_FILES([Makefile
     380                 src/Makefile
     381                 src/importer/Makefile
    366382                 src/console/Makefile
    367                  src/gui/Makefile
    368                  src/Makefile
    369                  src/importer/Makefile])
     383                 src/gui/Makefile])
     384
    370385AC_OUTPUT
Note: See TracChangeset for help on using the changeset viewer.