Changeset 3264 in orxonox.OLD for orxonox/branches
- Timestamp:
- Dec 24, 2004, 1:24:22 PM (20 years ago)
- Location:
- orxonox/branches/updater
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/updater/config.h.in
r3243 r3264 18 18 /* Define to 1 if you have the <GL/gl.h> header file. */ 19 19 #undef HAVE_GL_GL_H 20 21 /* if we have gThread */ 22 #undef HAVE_GTHREAD 20 23 21 24 /* if we have GTK2 */ -
orxonox/branches/updater/configure
r3262 r3264 6696 6696 echo "$as_me:$LINENO: checking for gthread" >&5 6697 6697 echo $ECHO_N "checking for gthread... $ECHO_C" >&6 6698 if `pkg-config --exists gthread `; then6698 if `pkg-config --exists gthread-2.0`; then 6699 6699 echo "yes" 6700 6700 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` 6703 6703 6704 6704 cat >>confdefs.h <<_ACEOF -
orxonox/branches/updater/configure.ac
r3262 r3264 368 368 369 369 AC_MSG_CHECKING([for gthread]) 370 if `pkg-config --exists gthread `; then370 if `pkg-config --exists gthread-2.0`; then 371 371 echo "yes" 372 372 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` 375 375 AC_DEFINE_UNQUOTED(HAVE_GTHREAD, 1, [if we have gThread]) 376 376 else
Note: See TracChangeset
for help on using the changeset viewer.