Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3264 in orxonox.OLD


Ignore:
Timestamp:
Dec 24, 2004, 1:24:22 PM (19 years ago)
Author:
bensch
Message:

orxonox/branches/updater: configure.ac changed, for it to work

Location:
orxonox/branches/updater
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/updater/config.h.in

    r3243 r3264  
    1818/* Define to 1 if you have the <GL/gl.h> header file. */
    1919#undef HAVE_GL_GL_H
     20
     21/* if we have gThread */
     22#undef HAVE_GTHREAD
    2023
    2124/* if we have GTK2 */
  • orxonox/branches/updater/configure

    r3262 r3264  
    66966696        echo "$as_me:$LINENO: checking for gthread" >&5
    66976697echo $ECHO_N "checking for gthread... $ECHO_C" >&6
    6698         if `pkg-config --exists gthread`; then
     6698        if `pkg-config --exists gthread-2.0`; then
    66996699                echo "yes"
    67006700                have_gthread=yes
    6701                 GTHREAD_LIBS=`pkg-config --libs gthread`
    6702                 GTHREAD_CFLAGS=`pkg-config --cflags gthread`
     6701                GTHREAD_LIBS=`pkg-config --libs gthread-2.0`
     6702                GTHREAD_CFLAGS=`pkg-config --cflags gthread-2.0`
    67036703
    67046704cat >>confdefs.h <<_ACEOF
  • orxonox/branches/updater/configure.ac

    r3262 r3264  
    368368
    369369        AC_MSG_CHECKING([for gthread])
    370         if `pkg-config --exists gthread`; then
     370        if `pkg-config --exists gthread-2.0`; then
    371371                echo "yes"
    372372                have_gthread=yes
    373                 GTHREAD_LIBS=`pkg-config --libs gthread`
    374                 GTHREAD_CFLAGS=`pkg-config --cflags gthread`
     373                GTHREAD_LIBS=`pkg-config --libs gthread-2.0`
     374                GTHREAD_CFLAGS=`pkg-config --cflags gthread-2.0`
    375375                AC_DEFINE_UNQUOTED(HAVE_GTHREAD, 1, [if we have gThread])
    376376        else
Note: See TracChangeset for help on using the changeset viewer.