- Timestamp:
- Apr 29, 2006, 3:15:15 AM (19 years ago)
- Location:
- branches/qt_gui
- Files:
-
- 5 edited
- 6 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/qt_gui/acinclude.m4
r6274 r7442 44 44 fi 45 45 ]) 46 47 48 49 dnl AX_CHECK_REQUIRED_LIB([LIBRARY-NAME], [FUNCTION-IN-LIB], [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND], [LIB-WEB-PAGE]) 50 AC_DEFUN([AX_CHECK_REQUIRED_LIB], [ 51 _lib_check="" 52 _found_lib="" 53 54 55 for _lib in $1 56 do 57 AC_CHECK_LIB([$_lib], [$2], [_lib_check="yes"], [_lib_check="no"]) 58 if test "x$_lib_check" = "xyes" ; then 59 _found_lib=$_lib 60 break 61 fi 62 done 63 64 if [test "x$_lib_check" = "xyes"] ; then 65 LIBS="$LIBS -l$_found_lib" 66 $3 67 else 68 echo "------------------" 69 echo "LIBRARY $1 not found." 70 echo "please install the $1-LIBRARY-package which can be found at $5" 71 echo "------------------" 72 $4 73 exit -1 74 fi 75 ]) 76 77 78 79 80 dnl Copyright (C) 2001, 2002, 2003, 2005, 2006 Bastiaan Veelo 81 82 dnl THANKS! This code includes bug fixes and contributions made by: 83 dnl Tim McClarren, 84 dnl Dennis R. Weilert, 85 dnl Qingning Huo, 86 dnl Brian Mingus, 87 dnl Jens Hannemann, 88 dnl Pavel Roskin. 89 90 dnl ChangeLog 91 dnl 2006-02-13 * Check compiler return value instead of parsing the error stream, 92 dnl which detected warnings as false negatives (due to Jens Hannemann). 93 dnl 2006-02-02 * Spelling of "Success". 94 dnl * Fixed unsave test for $bnv_qt_lib without quotes. 95 dnl * Put dnl in front of all comments. 96 dnl * Changed -l$bnv_qt_lib_dir into -L$bnv_qt_lib_dir (all due to Pavel Roskin). 97 dnl 2006-01-19 * Support for 64bit architectures. 98 dnl * Updated documentation. 99 dnl 2006-01-18: * Fix "cat: bnv_qt_test.c: No such file or directory" (due to Jens Hannemann). 100 dnl * Hide output of failing ls. 101 dnl 2006-01-11: * Check in /Developer on Mac OS X; Check in $QTDIR (due to Brian Mingus). 102 103 dnl Calls BNV_PATH_QT_DIRECT (contained in this file) as a subroutine. 104 AC_DEFUN([BNV_HAVE_QT], 105 [ 106 AC_REQUIRE([AC_PROG_CXX]) 107 AC_REQUIRE([AC_PATH_X]) 108 AC_REQUIRE([AC_PATH_XTRA]) 109 110 AC_MSG_CHECKING(for Qt) 111 112 AC_ARG_WITH([Qt-dir], 113 [ --with-Qt-dir=DIR DIR is equal to $QTDIR if you have followed the 114 installation instructions of Trolltech. Header 115 files are in DIR/include, binary utilities are 116 in DIR/bin. The library is in DIR/lib, unless 117 --with-Qt-lib-dir is also set.]) 118 AC_ARG_WITH([Qt-include-dir], 119 [ --with-Qt-include-dir=DIR 120 Qt header files are in DIR]) 121 AC_ARG_WITH([Qt-bin-dir], 122 [ --with-Qt-bin-dir=DIR Qt utilities such as moc and uic are in DIR]) 123 AC_ARG_WITH([Qt-lib-dir], 124 [ --with-Qt-lib-dir=DIR The Qt library is in DIR]) 125 AC_ARG_WITH([Qt-lib], 126 [ --with-Qt-lib=LIB Use -lLIB to link with the Qt library]) 127 if test x"$with_Qt_dir" = x"no" || 128 test x"$with_Qt_include-dir" = x"no" || 129 test x"$with_Qt_bin_dir" = x"no" || 130 test x"$with_Qt_lib_dir" = x"no" || 131 test x"$with_Qt_lib" = x"no"; then 132 # user disabled Qt. Leave cache alone. 133 have_qt="User disabled Qt." 134 else 135 # "yes" is a bogus option 136 if test x"$with_Qt_dir" = xyes; then 137 with_Qt_dir= 138 fi 139 if test x"$with_Qt_include_dir" = xyes; then 140 with_Qt_include_dir= 141 fi 142 if test x"$with_Qt_bin_dir" = xyes; then 143 with_Qt_bin_dir= 144 fi 145 if test x"$with_Qt_lib_dir" = xyes; then 146 with_Qt_lib_dir= 147 fi 148 if test x"$with_Qt_lib" = xyes; then 149 with_Qt_lib= 150 fi 151 # No Qt unless we discover otherwise 152 have_qt=no 153 # Check whether we are requested to link with a specific version 154 if test x"$with_Qt_lib" != x; then 155 bnv_qt_lib="$with_Qt_lib" 156 fi 157 # Check whether we were supplied with an answer already 158 if test x"$with_Qt_dir" != x; then 159 have_qt=yes 160 bnv_qt_dir="$with_Qt_dir" 161 bnv_qt_include_dir="$with_Qt_dir/include" 162 bnv_qt_bin_dir="$with_Qt_dir/bin" 163 bnv_qt_lib_dir="$with_Qt_dir/lib" 164 # Only search for the lib if the user did not define one already 165 if test x"$bnv_qt_lib" = x; then 166 bnv_qt_lib="`ls $bnv_qt_lib_dir/libqt* | sed -n 1p | 167 sed s@$bnv_qt_lib_dir/lib@@ | [sed s@[.].*@@]`" 168 fi 169 bnv_qt_LIBS="-L$bnv_qt_lib_dir -l$bnv_qt_lib $X_PRE_LIBS $X_LIBS -lX11 -lXext -lXmu -lXt -lXi $X_EXTRA_LIBS" 170 else 171 # Use cached value or do search, starting with suggestions from 172 # the command line 173 AC_CACHE_VAL(bnv_cv_have_qt, 174 [ 175 # We are not given a solution and there is no cached value. 176 bnv_qt_dir=NO 177 bnv_qt_include_dir=NO 178 bnv_qt_lib_dir=NO 179 if test x"$bnv_qt_lib" = x; then 180 bnv_qt_lib=NO 181 fi 182 BNV_PATH_QT_DIRECT 183 if test "$bnv_qt_dir" = NO || 184 test "$bnv_qt_include_dir" = NO || 185 test "$bnv_qt_lib_dir" = NO || 186 test "$bnv_qt_lib" = NO; then 187 # Problem with finding complete Qt. Cache the known absence of Qt. 188 bnv_cv_have_qt="have_qt=no" 189 else 190 # Record where we found Qt for the cache. 191 bnv_cv_have_qt="have_qt=yes \ 192 bnv_qt_dir=$bnv_qt_dir \ 193 bnv_qt_include_dir=$bnv_qt_include_dir \ 194 bnv_qt_bin_dir=$bnv_qt_bin_dir \ 195 bnv_qt_LIBS=\"$bnv_qt_LIBS\"" 196 fi 197 ])dnl 198 eval "$bnv_cv_have_qt" 199 fi # all $bnv_qt_* are set 200 fi # $have_qt reflects the system status 201 if test x"$have_qt" = xyes; then 202 QT_CXXFLAGS="-I$bnv_qt_include_dir" 203 if test x"$bnv_qt_lib" = xqt-mt; then 204 QT_CXXFLAGS="$QT_CXXFLAGS -DQT_THREAD_SUPPORT" 205 fi 206 QT_DIR="$bnv_qt_dir" 207 QT_LIBS="$bnv_qt_LIBS" 208 # If bnv_qt_dir is defined, utilities are expected to be in the 209 # bin subdirectory 210 if test x"$bnv_qt_dir" != x; then 211 if test -x "$bnv_qt_dir/bin/uic"; then 212 QT_UIC="$bnv_qt_dir/bin/uic" 213 else 214 # Old versions of Qt don't have uic 215 QT_UIC= 216 fi 217 QT_MOC="$bnv_qt_dir/bin/moc" 218 else 219 # Or maybe we are told where to look for the utilities 220 if test x"$bnv_qt_bin_dir" != x; then 221 if test -x "$bnv_qt_bin_dir/uic"; then 222 QT_UIC="$bnv_qt_bin_dir/uic" 223 else 224 # Old versions of Qt don't have uic 225 QT_UIC= 226 fi 227 QT_MOC="$bnv_qt_bin_dir/moc" 228 else 229 # Last possibility is that they are in $PATH 230 QT_UIC="`which uic`" 231 QT_MOC="`which moc`" 232 fi 233 fi 234 # All variables are defined, report the result 235 AC_MSG_RESULT([$have_qt: 236 QT_CXXFLAGS=$QT_CXXFLAGS 237 QT_DIR=$QT_DIR 238 QT_LIBS=$QT_LIBS 239 QT_UIC=$QT_UIC 240 QT_MOC=$QT_MOC]) 241 else 242 # Qt was not found 243 QT_CXXFLAGS= 244 QT_DIR= 245 QT_LIBS= 246 QT_UIC= 247 QT_MOC= 248 AC_MSG_RESULT($have_qt) 249 fi 250 AC_SUBST(QT_CXXFLAGS) 251 AC_SUBST(QT_DIR) 252 AC_SUBST(QT_LIBS) 253 AC_SUBST(QT_UIC) 254 AC_SUBST(QT_MOC) 255 256 #### Being paranoid: 257 if test x"$have_qt" = xyes; then 258 AC_MSG_CHECKING(correct functioning of Qt installation) 259 AC_CACHE_VAL(bnv_cv_qt_test_result, 260 [ 261 cat > bnv_qt_test.h << EOF 262 #include <qobject.h> 263 class Test : public QObject 264 { 265 Q_OBJECT 266 public: 267 Test() {} 268 ~Test() {} 269 public slots: 270 void receive() {} 271 signals: 272 void send(); 273 }; 274 EOF 275 276 cat > bnv_qt_main.$ac_ext << EOF 277 #include "bnv_qt_test.h" 278 #include <qapplication.h> 279 int main( int argc, char **argv ) 280 { 281 QApplication app( argc, argv ); 282 Test t; 283 QObject::connect( &t, SIGNAL(send()), &t, SLOT(receive()) ); 284 } 285 EOF 286 287 bnv_cv_qt_test_result="failure" 288 bnv_try_1="$QT_MOC bnv_qt_test.h -o moc_bnv_qt_test.$ac_ext >/dev/null 2>/dev/null" 289 AC_TRY_EVAL(bnv_try_1) 290 if test x"$ac_status" != x0; then 291 echo "$bnv_err_1" >&AC_FD_CC 292 echo "configure: could not run $QT_MOC on:" >&AC_FD_CC 293 cat bnv_qt_test.h >&AC_FD_CC 294 else 295 bnv_try_2="$CXX $QT_CXXFLAGS -c $CXXFLAGS -o moc_bnv_qt_test.o moc_bnv_qt_test.$ac_ext >/dev/null 2>/dev/null" 296 AC_TRY_EVAL(bnv_try_2) 297 if test x"$ac_status" != x0; then 298 echo "$bnv_err_2" >&AC_FD_CC 299 echo "configure: could not compile:" >&AC_FD_CC 300 cat moc_bnv_qt_test.$ac_ext >&AC_FD_CC 301 else 302 bnv_try_3="$CXX $QT_CXXFLAGS -c $CXXFLAGS -o bnv_qt_main.o bnv_qt_main.$ac_ext >/dev/null 2>/dev/null" 303 AC_TRY_EVAL(bnv_try_3) 304 if test x"$ac_status" != x0; then 305 echo "$bnv_err_3" >&AC_FD_CC 306 echo "configure: could not compile:" >&AC_FD_CC 307 cat bnv_qt_main.$ac_ext >&AC_FD_CC 308 else 309 bnv_try_4="$CXX $QT_LIBS $LIBS -o bnv_qt_main bnv_qt_main.o moc_bnv_qt_test.o >/dev/null 2>/dev/null" 310 AC_TRY_EVAL(bnv_try_4) 311 if test x"$ac_status" != x0; then 312 echo "$bnv_err_4" >&AC_FD_CC 313 else 314 bnv_cv_qt_test_result="success" 315 fi 316 fi 317 fi 318 fi 319 ])dnl AC_CACHE_VAL bnv_cv_qt_test_result 320 AC_MSG_RESULT([$bnv_cv_qt_test_result]); 321 if test x"$bnv_cv_qt_test_result" = "xfailure"; then 322 AC_MSG_ERROR([Failed to find matching components of a complete 323 Qt installation. Try using more options, 324 see ./configure --help.]) 325 fi 326 327 rm -f bnv_qt_test.h moc_bnv_qt_test.$ac_ext moc_bnv_qt_test.o \ 328 bnv_qt_main.$ac_ext bnv_qt_main.o bnv_qt_main 329 fi 330 ]) 331 332 dnl Internal subroutine of BNV_HAVE_QT 333 dnl Set bnv_qt_dir bnv_qt_include_dir bnv_qt_bin_dir bnv_qt_lib_dir bnv_qt_lib 334 AC_DEFUN([BNV_PATH_QT_DIRECT], 335 [ 336 ## Binary utilities ## 337 if test x"$with_Qt_bin_dir" != x; then 338 bnv_qt_bin_dir=$with_Qt_bin_dir 339 fi 340 ## Look for header files ## 341 if test x"$with_Qt_include_dir" != x; then 342 bnv_qt_include_dir="$with_Qt_include_dir" 343 else 344 # The following header file is expected to define QT_VERSION. 345 qt_direct_test_header=qglobal.h 346 # Look for the header file in a standard set of common directories. 347 bnv_include_path_list=" 348 /usr/include 349 `ls -dr ${QTDIR}/include 2>/dev/null` 350 `ls -dr /usr/include/qt* 2>/dev/null` 351 `ls -dr /usr/lib/qt*/include 2>/dev/null` 352 `ls -dr /usr/local/qt*/include 2>/dev/null` 353 `ls -dr /opt/qt*/include 2>/dev/null` 354 `ls -dr /Developer/qt*/include 2>/dev/null` 355 " 356 for bnv_dir in $bnv_include_path_list; do 357 if test -r "$bnv_dir/$qt_direct_test_header"; then 358 bnv_dirs="$bnv_dirs $bnv_dir" 359 fi 360 done 361 # Now look for the newest in this list 362 bnv_prev_ver=0 363 for bnv_dir in $bnv_dirs; do 364 bnv_this_ver=`egrep -w '#define QT_VERSION' $bnv_dir/$qt_direct_test_header | sed s/'#define QT_VERSION'//` 365 if expr $bnv_this_ver '>' $bnv_prev_ver > /dev/null; then 366 bnv_qt_include_dir=$bnv_dir 367 bnv_prev_ver=$bnv_this_ver 368 fi 369 done 370 fi dnl Found header files. 371 372 # Are these headers located in a traditional Trolltech installation? 373 # That would be $bnv_qt_include_dir stripped from its last element: 374 bnv_possible_qt_dir=`dirname $bnv_qt_include_dir` 375 if (test -x $bnv_possible_qt_dir/bin/moc) && 376 ((ls $bnv_possible_qt_dir/lib/libqt* > /dev/null 2>/dev/null) || 377 (ls $bnv_possible_qt_dir/lib64/libqt* > /dev/null 2>/dev/null)); then 378 # Then the rest is a piece of cake 379 bnv_qt_dir=$bnv_possible_qt_dir 380 bnv_qt_bin_dir="$bnv_qt_dir/bin" 381 if test x"$with_Qt_lib_dir" != x; then 382 bnv_qt_lib_dir="$with_Qt_lib_dir" 383 else 384 if (test -d $bnv_qt_dir/lib64); then 385 bnv_qt_lib_dir="$bnv_qt_dir/lib64" 386 else 387 bnv_qt_lib_dir="$bnv_qt_dir/lib" 388 fi 389 fi 390 # Only look for lib if the user did not supply it already 391 if test x"$bnv_qt_lib" = xNO; then 392 bnv_qt_lib="`ls $bnv_qt_lib_dir/libqt* | sed -n 1p | 393 sed s@$bnv_qt_lib_dir/lib@@ | [sed s@[.].*@@]`" 394 fi 395 bnv_qt_LIBS="-L$bnv_qt_lib_dir -l$bnv_qt_lib $X_PRE_LIBS $X_LIBS -lX11 -lXext -lXmu -lXt -lXi $X_EXTRA_LIBS" 396 else 397 # There is no valid definition for $QTDIR as Trolltech likes to see it 398 bnv_qt_dir= 399 ## Look for Qt library ## 400 if test x"$with_Qt_lib_dir" != x; then 401 bnv_qt_lib_dir="$with_Qt_lib_dir" 402 # Only look for lib if the user did not supply it already 403 if test x"$bnv_qt_lib" = xNO; then 404 bnv_qt_lib="`ls $bnv_qt_lib_dir/libqt* | sed -n 1p | 405 sed s@$bnv_qt_lib_dir/lib@@ | [sed s@[.].*@@]`" 406 fi 407 bnv_qt_LIBS="-L$bnv_qt_lib_dir -l$bnv_qt_lib $X_PRE_LIBS $X_LIBS -lX11 -lXext -lXmu -lXt -lXi $X_EXTRA_LIBS" 408 else 409 # Normally, when there is no traditional Trolltech installation, 410 # the library is installed in a place where the linker finds it 411 # automatically. 412 # If the user did not define the library name, try with qt 413 if test x"$bnv_qt_lib" = xNO; then 414 bnv_qt_lib=qt 415 fi 416 qt_direct_test_header=qapplication.h 417 qt_direct_test_main=" 418 int argc; 419 char ** argv; 420 QApplication app(argc,argv); 421 " 422 # See if we find the library without any special options. 423 # Don't add top $LIBS permanently yet 424 bnv_save_LIBS="$LIBS" 425 LIBS="-l$bnv_qt_lib $X_PRE_LIBS $X_LIBS -lX11 -lXext -lXmu -lXt -lXi $X_EXTRA_LIBS" 426 bnv_qt_LIBS="$LIBS" 427 bnv_save_CXXFLAGS="$CXXFLAGS" 428 CXXFLAGS="-I$bnv_qt_include_dir" 429 AC_TRY_LINK([#include <$qt_direct_test_header>], 430 $qt_direct_test_main, 431 [ 432 # Success. 433 # We can link with no special library directory. 434 bnv_qt_lib_dir= 435 ], [ 436 # That did not work. Try the multi-threaded version 437 echo "Non-critical error, please neglect the above." >&AC_FD_CC 438 bnv_qt_lib=qt-mt 439 LIBS="-l$bnv_qt_lib $X_PRE_LIBS $X_LIBS -lX11 -lXext -lXmu -lXt -lXi $X_EXTRA_LIBS" 440 AC_TRY_LINK([#include <$qt_direct_test_header>], 441 $qt_direct_test_main, 442 [ 443 # Success. 444 # We can link with no special library directory. 445 bnv_qt_lib_dir= 446 ], [ 447 # That did not work. Try the OpenGL version 448 echo "Non-critical error, please neglect the above." >&AC_FD_CC 449 bnv_qt_lib=qt-gl 450 LIBS="-l$bnv_qt_lib $X_PRE_LIBS $X_LIBS -lX11 -lXext -lXmu -lXt -lXi $X_EXTRA_LIBS" 451 AC_TRY_LINK([#include <$qt_direct_test_header>], 452 $qt_direct_test_main, 453 [ 454 # Success. 455 # We can link with no special library directory. 456 bnv_qt_lib_dir= 457 ], [ 458 # That did not work. Maybe a library version I don't know about? 459 echo "Non-critical error, please neglect the above." >&AC_FD_CC 460 # Look for some Qt lib in a standard set of common directories. 461 bnv_dir_list=" 462 `echo $bnv_qt_includes | sed ss/includess` 463 /lib 464 /usr/lib64 465 /usr/lib 466 /usr/local/lib64 467 /usr/local/lib 468 /opt/lib64 469 /opt/lib 470 `ls -dr /usr/lib64/qt* 2>/dev/null` 471 `ls -dr /usr/lib64/qt*/lib64 2>/dev/null` 472 `ls -dr /usr/lib/qt* 2>/dev/null` 473 `ls -dr /usr/local/qt* 2>/dev/null` 474 `ls -dr /opt/qt* 2>/dev/null` 475 " 476 for bnv_dir in $bnv_dir_list; do 477 if ls $bnv_dir/libqt* 2>/dev/null; then 478 # Gamble that it's the first one... 479 bnv_qt_lib="`ls $bnv_dir/libqt* | sed -n 1p | 480 sed s@$bnv_dir/lib@@ | sed s/[.].*//`" 481 bnv_qt_lib_dir="$bnv_dir" 482 break 483 fi 484 done 485 # Try with that one 486 LIBS="-l$bnv_qt_lib $X_PRE_LIBS $X_LIBS -lX11 -lXext -lXmu -lXt -lXi $X_EXTRA_LIBS" 487 AC_TRY_LINK([#include <$qt_direct_test_header>], 488 $qt_direct_test_main, 489 [ 490 # Success. 491 # We can link with no special library directory. 492 bnv_qt_lib_dir= 493 ], [ 494 # Leave bnv_qt_lib_dir defined 495 ]) 496 ]) 497 ]) 498 ]) 499 if test x"$bnv_qt_lib_dir" != x; then 500 bnv_qt_LIBS="-L$bnv_qt_lib_dir $LIBS" 501 else 502 bnv_qt_LIBS="$LIBS" 503 fi 504 LIBS="$bnv_save_LIBS" 505 CXXFLAGS="$bnv_save_CXXFLAGS" 506 fi dnl $with_Qt_lib_dir was not given 507 fi dnl Done setting up for non-traditional Trolltech installation 508 ]) 509 -
branches/qt_gui/config.h.in
r6838 r7442 119 119 #undef VERSION 120 120 121 /* Define to 1 if the X Window System is missing or not being used. */ 122 #undef X_DISPLAY_MISSING 123 121 124 /* Define to rpl_malloc if the replacement function should be used. */ 122 125 #undef malloc -
branches/qt_gui/configure.ac
r7256 r7442 108 108 fi 109 109 fi 110 111 if test $DEBUD > 3 ; then 112 CPPFLAGS="${CPPFLAGS} -g" 113 fi 110 114 AC_DEFINE_UNQUOTED(DEBUG, $DEBUG, [in which debug mode we are]) 111 115 AC_SUBST(DEBUG) … … 127 131 fi 128 132 129 #--------------#130 # GTK-disabled #131 #--------------#132 AC_MSG_CHECKING([if gtk should be enabled])133 AC_ARG_ENABLE([gtk],134 AS_HELP_STRING(--disable-gtk,Prevents GTK from being loaded), [def_gtk=no], [def_gtk=yes])135 if test x$def_gtk = xyes; then136 echo "yes"137 fi138 if test x$def_gtk = xno; then139 echo "no"140 fi141 133 142 134 #------------------# … … 152 144 echo "no" 153 145 fi 146 147 148 #-------------# 149 # with-qt-dir # 150 #-------------# 151 WITH_QT=yes 152 AC_MSG_CHECKING([if we want to use QT for the gui.]) 153 AC_ARG_WITH([modular-debug], 154 AS_HELP_STRING([--without-qt], [does not use QT for the display of the GUI]), 155 WITH_QT=$enableval) 156 if test x$WITH_QT = xno; then 157 echo "no" 158 elif test x$WITH_QT = xyes; then 159 echo "yes" 160 BNV_HAVE_QT 161 if test x$have_qt = xno ; then 162 WITH_QT=no 163 fi 164 fi 165 AM_CONDITIONAL([WITH_QT], [test x$WITH_QT = xyes]) 166 167 #--------------# 168 # GTK-disabled # 169 #--------------# 170 171 AC_MSG_CHECKING([if gtk should be enabled]) 172 AC_ARG_WITH([gtk], 173 AS_HELP_STRING(--with-gtk, uses GTK for the GUI), [def_gtk=yes], [def_gtk=no]) 174 if test x$def_gtk = xyes; then 175 echo "yes" 176 fi 177 if test x$def_gtk = xno; then 178 echo "no" 179 fi 180 181 154 182 155 183 #-------------------# … … 211 239 fi 212 240 AM_CONDITIONAL(DOCUMENTATION, test x$def_documentation = xyes) 213 214 215 241 216 242 #---------------------------# … … 273 299 ## also checking for SDL on differen Systems 274 300 275 CPPFLAGS="$CPPFLAGS -g"276 277 278 301 AC_MSG_CHECKING([for System]) 279 302 ## checking for openGL-environment and other sys-specific parameters … … 556 579 AX_CHECK_REQUIRED_HEADER_LIB([ogg/ogg.h], [ogg], [main],,, [http://www.xiph.org/ogg/vorbis/index.html]) 557 580 558 559 #---------#560 # libcURL #561 #---------#562 AX_CHECK_HEADER_LIB([curl/curl.h], [curl], [main], [563 have_curl=yes564 CURL_LIBS=`curl-config --libs`565 CURLCFLAGS=`curl-config --cflags`566 AC_DEFINE_UNQUOTED(HAVE_CURL, 1, [if we have CURL]) ]567 ,, [http://curl.haxx.se/])568 569 AC_SUBST(CURL_LIBS)570 AC_SUBST(CURL_CFLAGS)571 AM_CONDITIONAL(HAVE_CURL, test "x$have_curl" = "xyes")572 573 #--------#574 # efence #575 #--------#576 if test x$def_efence = xyes ; then577 AC_CHECK_LIB([efence], [main], [FOUND_efence=yes; LIBS="$LIBS -lefence"])578 if test x$FOUND_efence != xyes ; then579 echo "efence was requested, but is not installed!! going on"580 fi581 582 fi583 581 584 582 #-----# … … 607 605 AM_CONDITIONAL(HAVE_GTK2, test x$have_gtk2 = xyes) 608 606 607 608 #---------# 609 # libcURL # 610 #---------# 611 AX_CHECK_HEADER_LIB([curl/curl.h], [curl], [main], [ 612 have_curl=yes 613 CURL_LIBS=`curl-config --libs` 614 CURLCFLAGS=`curl-config --cflags` 615 AC_DEFINE_UNQUOTED(HAVE_CURL, 1, [if we have CURL]) ] 616 ,, [http://curl.haxx.se/]) 617 618 AC_SUBST(CURL_LIBS) 619 AC_SUBST(CURL_CFLAGS) 620 AM_CONDITIONAL(HAVE_CURL, test "x$have_curl" = "xyes") 621 622 #--------# 623 # efence # 624 #--------# 625 if test x$def_efence = xyes ; then 626 AC_CHECK_LIB([efence], [main], [FOUND_efence=yes; LIBS="$LIBS -lefence"]) 627 if test x$FOUND_efence != xyes ; then 628 echo "efence was requested, but is not installed!! going on" 629 fi 630 631 fi 609 632 610 633 # FIXME: Replace `main' with a function in `-lm': … … 643 666 src/lib/gui/gtk_gui/Makefile 644 667 src/lib/gui/gl_gui/Makefile 668 src/lib/gui/qt_gui/Makefile 645 669 src/lib/parser/Makefile 646 670 src/lib/parser/tinyxml/Makefile -
branches/qt_gui/src/defs/class_id.h
r7393 r7442 319 319 CL_GLGUI_BAR = 0x00000b30, 320 320 321 // QT_GUI 322 CL_GUI_SAVEABLE = 0x00b10000, 323 CL_QTGUI_BUTTON = 0x00000ba0, 324 CL_QTGUI_PUSHBUTTON = 0x00000ba3, 325 CL_QTGUI_CHECKBUTTON = 0x00000ba4, 326 CL_QTGUI_RADIOBUTTON = 0x00000ba5, 327 CL_QTGUI_CONTAINER = 0x00b200a0, 328 CL_QTGUI_BOX = 0x00000ba7, 329 CL_QTGUI_FRAME = 0x00000ba8, 330 CL_QTGUI_WINDOW = 0x00000ba9, 331 CL_QTMENU_IMAGE_SCREEN = 0x00000ba0, 332 CL_QTGUI_BAR = 0x00000ba0, 333 321 334 /// AUDIO stuff (range from 0x00000c00 to 0x00000cff) 322 335 CL_SOUND_BUFFER = 0x00000c01, -
branches/qt_gui/src/lib/gui/Makefile.am
r5315 r7442 1 1 SUBDIRS = gtk_gui \ 2 gl_gui 2 gl_gui \ 3 qt_gui
Note: See TracChangeset
for help on using the changeset viewer.