Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 7769 in orxonox.OLD for branches/osx/acinclude.m4


Ignore:
Timestamp:
May 23, 2006, 12:45:40 PM (18 years ago)
Author:
ponder
Message:

If QT-frameworks ( macosx ) are present, the library directories for QT_LIB are also returned correctly.
Added pck-config to handle macosx-specific stuff. Maybe we could use if throughout the configure.ac?
Removed direct.h from the util/file.cc includes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/osx/acinclude.m4

    r7670 r7769  
    135135    for _lib_directory in ${QT_COMMON_LIB_DIRECTORIES}
    136136    do
    137       if test -e ${_lib_directory}/libQtCore.so || test -e ${_lib_directory}/libQtCore4.a ; then
     137      if test -e ${_lib_directory}/libQtCore.so || test -e ${_lib_directory}/libQtCore4.a || \
     138                        test -e ${_lib_directory}/QtCore.framework ; then
    138139        QT_LIB_DIRECTORY=${_lib_directory}
    139140        break
    140       fi
     141          fi
    141142    done
    142143    if test -n ${QT_LIB_DIRECTORY} ; then
     
    194195    fi
    195196
    196     echo "QT_LIBS = ${QT_LIBS}"
    197     echo "QT_CXXFLAGS = ${QT_CXXFLAGS}"
    198     echo "QT_LD_FLAGS = ${QT_LDFLAGS}"
     197    echo "QT_LIBS          = ${QT_LIBS}"
     198    echo "QT_CXXFLAGS      = ${QT_CXXFLAGS}"
     199    echo "QT_LD_FLAGS      = ${QT_LDFLAGS}"
    199200    echo "QT_BIN_DIRECTORY = ${QT_BIN_DIRECTORY}"
    200201
Note: See TracChangeset for help on using the changeset viewer.