annotate acinclude.m4 @ 200:2c33d6bbea15

* Set LIBS properly when optional pkg-config package found
author Chris Cannam
date Wed, 22 Sep 2010 12:28:37 +0100
parents 78336f4b8935
children 7f6fad69f7fd
rev   line source
Chris@198 1
Chris@198 2 AC_DEFUN([SV_MODULE_REQUIRED],
Chris@198 3 [
Chris@198 4 SV_MODULE_MODULE=$1
Chris@198 5 SV_MODULE_VERSION_TEST="$2"
Chris@198 6 SV_MODULE_HEADER=$3
Chris@198 7 SV_MODULE_LIB=$4
Chris@198 8 SV_MODULE_FUNC=$5
Chris@198 9 SV_MODULE_HAVE=HAVE_$(echo $1 | tr '[a-z]' '[A-Z]')
Chris@198 10 SV_MODULE_FAILED=1
Chris@198 11 if test -z "$SV_MODULE_VERSION_TEST" ; then
Chris@198 12 SV_MODULE_VERSION_TEST=$SV_MODULE_MODULE
Chris@198 13 fi
Chris@198 14 if test -n "$PKG_CONFIG"; then
Chris@198 15 PKG_CHECK_MODULES($1,[$SV_MODULE_VERSION_TEST],[HAVES="$HAVES $SV_MODULE_HAVE";CXXFLAGS="$CXXFLAGS $$1_CFLAGS";LIBS="$LIBS $$1_LIBS";SV_MODULE_FAILED=""],[AC_MSG_NOTICE([Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means])])
Chris@198 16 fi
Chris@198 17 if test -n "$SV_MODULE_FAILED"; then
Chris@198 18 AC_CHECK_HEADER([$SV_MODULE_HEADER],[HAVES="$HAVES $SV_MODULE_HAVE"],[AC_MSG_ERROR([Failed to find header $SV_MODULE_HEADER for required module $SV_MODULE_MODULE])])
Chris@198 19 if test -n "$SV_MODULE_LIB"; then
Chris@198 20 AC_CHECK_LIB([$SV_MODULE_LIB],[$SV_MODULE_FUNC],[LIBS="$LIBS -l$SV_MODULE_LIB"],[AC_MSG_ERROR([Failed to find library $SV_MODULE_LIB for required module $SV_MODULE_MODULE])])
Chris@198 21 fi
Chris@198 22 fi
Chris@198 23 ])
Chris@198 24
Chris@198 25 AC_DEFUN([SV_MODULE_OPTIONAL],
Chris@198 26 [
Chris@198 27 SV_MODULE_MODULE=$1
Chris@198 28 SV_MODULE_VERSION_TEST="$2"
Chris@198 29 SV_MODULE_HEADER=$3
Chris@198 30 SV_MODULE_LIB=$4
Chris@198 31 SV_MODULE_FUNC=$5
Chris@198 32 SV_MODULE_HAVE=HAVE_$(echo $1 | tr '[a-z]' '[A-Z]')
Chris@198 33 SV_MODULE_FAILED=1
Chris@198 34 if test -z "$SV_MODULE_VERSION_TEST" ; then
Chris@198 35 SV_MODULE_VERSION_TEST=$SV_MODULE_MODULE
Chris@198 36 fi
Chris@198 37 if test -n "$PKG_CONFIG"; then
Chris@200 38 PKG_CHECK_MODULES($1,[$SV_MODULE_VERSION_TEST],[HAVES="$HAVES $SV_MODULE_HAVE";CXXFLAGS="$CXXFLAGS $$1_CFLAGS";LIBS="$LIBS $$1_LIBS";SV_MODULE_FAILED=""],[AC_MSG_NOTICE([Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means])])
Chris@198 39 fi
Chris@198 40 if test -n "$SV_MODULE_FAILED"; then
Chris@198 41 AC_CHECK_HEADER([$SV_MODULE_HEADER],[HAVES="$HAVES $SV_MODULE_HAVE";SV_MODULE_FAILED=""],[AC_MSG_NOTICE([Failed to find header $SV_MODULE_HEADER for optional module $SV_MODULE_MODULE])])
Chris@198 42 if test -z "$SV_MODULE_FAILED"; then
Chris@198 43 if test -n "$SV_MODULE_LIB"; then
Chris@198 44 AC_CHECK_LIB([$SV_MODULE_LIB],[$SV_MODULE_FUNC],[LIBS="$LIBS -l$SV_MODULE_LIB"],[AC_MSG_NOTICE([Failed to find library $SV_MODULE_LIB for optional module $SV_MODULE_MODULE])])
Chris@198 45 fi
Chris@198 46 fi
Chris@198 47 fi
Chris@198 48 ])
Chris@198 49
Chris@198 50 # Check for Qt compiler flags, linker flags, and binary packages
Chris@198 51 AC_DEFUN([SV_CHECK_QT],
Chris@198 52 [
Chris@198 53 AC_REQUIRE([AC_PROG_CXX])
Chris@198 54
Chris@198 55 AC_MSG_CHECKING([QTDIR])
Chris@198 56 AC_ARG_WITH([qtdir], [ --with-qtdir=DIR Qt installation directory [default=$QTDIR]], QTDIR=$withval)
Chris@198 57 # Check that QTDIR is defined or that --with-qtdir given
Chris@198 58 if test x"$QTDIR" = x ; then
Chris@198 59 # some usual Qt locations
Chris@198 60 QT_SEARCH="/usr /opt /usr/lib/qt"
Chris@198 61 else
Chris@198 62 case "$QTDIR" in *3*)
Chris@198 63 AC_MSG_WARN([
Chris@198 64 *** The QTDIR environment variable is set to "$QTDIR".
Chris@198 65 This looks like it could be the location of a Qt3 installation
Chris@198 66 instead of the Qt4 installation we require. If configure fails,
Chris@198 67 please ensure QTDIR is either set correctly or not set at all.
Chris@198 68 ])
Chris@198 69 ;;
Chris@198 70 esac
Chris@198 71 QT_SEARCH=$QTDIR
Chris@198 72 QTDIR=""
Chris@198 73 fi
Chris@198 74 for i in $QT_SEARCH ; do
Chris@198 75 QT_INCLUDE_SEARCH="include/qt4 include"
Chris@198 76 for j in $QT_INCLUDE_SEARCH ; do
Chris@198 77 if test -f $i/$j/Qt/qglobal.h && test x$QTDIR = x ; then
Chris@198 78 QTDIR=$i
Chris@198 79 QT_INCLUDES=$i/$j
Chris@198 80 fi
Chris@198 81 done
Chris@198 82 done
Chris@198 83 if test x"$QTDIR" = x ; then
Chris@198 84 AC_MSG_ERROR([*** Failed to find Qt4 installation. QTDIR must be defined, or --with-qtdir option given])
Chris@198 85 fi
Chris@198 86 AC_MSG_RESULT([$QTDIR])
Chris@198 87
Chris@198 88 # Change backslashes in QTDIR to forward slashes to prevent escaping
Chris@198 89 # problems later on in the build process, mainly for Cygwin build
Chris@198 90 # environment using MSVC as the compiler
Chris@198 91 QTDIR=`echo $QTDIR | sed 's/\\\\/\\//g'`
Chris@198 92
Chris@198 93 AC_MSG_CHECKING([Qt includes])
Chris@198 94 # Check where includes are located
Chris@198 95 if test x"$QT_INCLUDES" = x ; then
Chris@198 96 AC_MSG_ERROR([
Chris@198 97 Failed to find required Qt4 headers.
Chris@198 98 Please ensure you have the Qt4 development files installed,
Chris@198 99 and if necessary set QTDIR to the location of your Qt4 installation.
Chris@198 100 ])
Chris@198 101 fi
Chris@198 102 AC_MSG_RESULT([$QT_INCLUDES])
Chris@198 103
Chris@198 104 # Check that qmake is in path
Chris@198 105 AC_CHECK_PROG(QMAKE, qmake-qt4, $QTDIR/bin/qmake-qt4,,$QTDIR/bin/)
Chris@198 106 if test x$QMAKE = x ; then
Chris@198 107 AC_CHECK_PROG(QMAKE, qmake, $QTDIR/bin/qmake,,$QTDIR/bin/)
Chris@198 108 if test x$QMAKE = x ; then
Chris@198 109 AC_CHECK_PROG(QMAKE, qmake.exe, $QTDIR/bin/qmake.exe,,$QTDIR/bin/)
Chris@198 110 if test x$QMAKE = x ; then
Chris@198 111 AC_MSG_ERROR([
Chris@198 112 Failed to find the required qmake-qt4 or qmake program. Please
Chris@198 113 ensure you have the necessary Qt4 development files installed.
Chris@198 114 ])
Chris@198 115 fi
Chris@198 116 fi
Chris@198 117 fi
Chris@198 118
Chris@198 119 # Suitable versions of qmake should print out something like:
Chris@198 120 #
Chris@198 121 # QMake version 2.01a
Chris@198 122 # Using Qt version 4.6.3 in /usr/lib
Chris@198 123 #
Chris@198 124 # This may be translated, so we check only for the numbers (2.x and 4.x
Chris@198 125 # in that order).
Chris@198 126 #
Chris@198 127 QMAKE_VERSION_OUTPUT=`$QMAKE -v`
Chris@198 128 case "$QMAKE_VERSION_OUTPUT" in
Chris@198 129 *2.*4.*) ;;
Chris@198 130 *) AC_MSG_WARN([
Chris@198 131 *** The version of qmake found in "$QMAKE" looks like it might be
Chris@198 132 from the wrong version of Qt (Qt4 is required). Please check
Chris@198 133 that this is the correct version of qmake for Qt4 builds.
Chris@198 134 ])
Chris@198 135 esac
Chris@198 136
Chris@198 137 # Check that moc is in path
Chris@198 138 AC_CHECK_PROG(MOC, moc-qt4, $QTDIR/bin/moc-qt4,,$QTDIR/bin/)
Chris@198 139 if test x$MOC = x ; then
Chris@198 140 AC_CHECK_PROG(MOC, moc, $QTDIR/bin/moc,,$QTDIR/bin/)
Chris@198 141 if test x$MOC = x ; then
Chris@198 142 AC_CHECK_PROG(MOC, moc.exe, $QTDIR/bin/moc.exe,,$QTDIR/bin/)
Chris@198 143 if test x$MOC = x ; then
Chris@198 144 AC_MSG_ERROR([
Chris@198 145 Failed to find required moc-qt4 or moc program.
Chris@198 146 Please ensure you have the Qt4 development files installed,
Chris@198 147 and if necessary set QTDIR to the location of your Qt4 installation.
Chris@198 148 ])
Chris@198 149 fi
Chris@198 150 fi
Chris@198 151 fi
Chris@198 152
Chris@198 153 # Check that uic is in path
Chris@198 154 AC_CHECK_PROG(UIC, uic-qt4, $QTDIR/bin/uic-qt4,,$QTDIR/bin/)
Chris@198 155 if test x$UIC = x ; then
Chris@198 156 AC_CHECK_PROG(UIC, uic, $QTDIR/bin/uic,,$QTDIR/bin/)
Chris@198 157 if test x$UIC = x ; then
Chris@198 158 AC_CHECK_PROG(UIC, uic.exe, $QTDIR/bin/uic.exe,,$QTDIR/bin/)
Chris@198 159 if test x$UIC = x ; then
Chris@198 160 AC_MSG_ERROR([
Chris@198 161 Failed to find required uic-qt4 or uic program.
Chris@198 162 Please ensure you have the Qt4 development files installed,
Chris@198 163 and if necessary set QTDIR to the location of your Qt4 installation.
Chris@198 164 ])
Chris@198 165 fi
Chris@198 166 fi
Chris@198 167 fi
Chris@198 168
Chris@198 169 # Check that rcc is in path
Chris@198 170 AC_CHECK_PROG(RCC, rcc-qt4, $QTDIR/bin/rcc-qt4,,$QTDIR/bin/)
Chris@198 171 if test x$RCC = x ; then
Chris@198 172 AC_CHECK_PROG(RCC, rcc, $QTDIR/bin/rcc,,$QTDIR/bin/)
Chris@198 173 if test x$RCC = x ; then
Chris@198 174 AC_CHECK_PROG(RCC, rcc.exe, $QTDIR/bin/rcc.exe,,$QTDIR/bin/)
Chris@198 175 if test x$RCC = x ; then
Chris@198 176 AC_MSG_ERROR([
Chris@198 177 Failed to find required rcc-qt4 or rcc program.
Chris@198 178 Please ensure you have the Qt4 development files installed,
Chris@198 179 and if necessary set QTDIR to the location of your Qt4 installation.
Chris@198 180 ])
Chris@198 181 fi
Chris@198 182 fi
Chris@198 183 fi
Chris@198 184
Chris@198 185 # lupdate is the Qt translation-update utility.
Chris@198 186 AC_CHECK_PROG(LUPDATE, lupdate-qt4, $QTDIR/bin/lupdate-qt4,,$QTDIR/bin/)
Chris@198 187 if test x$LUPDATE = x ; then
Chris@198 188 AC_CHECK_PROG(LUPDATE, lupdate, $QTDIR/bin/lupdate,,$QTDIR/bin/)
Chris@198 189 if test x$LUPDATE = x ; then
Chris@198 190 AC_CHECK_PROG(LUPDATE, lupdate.exe, $QTDIR/bin/lupdate.exe,,$QTDIR/bin/)
Chris@198 191 if test x$LUPDATE = x ; then
Chris@198 192 AC_MSG_WARN([
Chris@198 193 Failed to find lupdate-qt4 or lupdate program.
Chris@198 194 This program is not needed for a simple build,
Chris@198 195 but it should be part of a Qt4 development installation
Chris@198 196 and its absence is troubling.
Chris@198 197 ])
Chris@198 198 fi
Chris@198 199 fi
Chris@198 200 fi
Chris@198 201
Chris@198 202 # lrelease is the Qt translation-release utility.
Chris@198 203 AC_CHECK_PROG(LRELEASE, lrelease-qt4, $QTDIR/bin/lrelease-qt4,,$QTDIR/bin/)
Chris@198 204 if test x$LRELEASE = x ; then
Chris@198 205 AC_CHECK_PROG(LRELEASE, lrelease, $QTDIR/bin/lrelease,,$QTDIR/bin/)
Chris@198 206 if test x$LRELEASE = x ; then
Chris@198 207 AC_CHECK_PROG(LRELEASE, lrelease.exe, $QTDIR/bin/lrelease.exe,,$QTDIR/bin/)
Chris@198 208 if test x$LRELEASE = x ; then
Chris@198 209 AC_MSG_WARN([
Chris@198 210 Failed to find lrelease-qt4 or lrelease program.
Chris@198 211 This program is not needed for a simple build,
Chris@198 212 but it should be part of a Qt4 development installation
Chris@198 213 and its absence is troubling.
Chris@198 214 ])
Chris@198 215 fi
Chris@198 216 fi
Chris@198 217 fi
Chris@198 218
Chris@198 219 QT_CXXFLAGS="-I$QT_INCLUDES/QtGui -I$QT_INCLUDES/QtXml -I$QT_INCLUDES/QtNetwork -I$QT_INCLUDES/QtCore -I$QT_INCLUDES"
Chris@198 220
Chris@198 221 AC_MSG_CHECKING([QTLIBDIR])
Chris@198 222 AC_ARG_WITH([qtlibdir], [ --with-qtlibdir=DIR Qt library directory [default=$QTLIBDIR]], QTLIBDIR=$withval)
Chris@198 223 if test x"$QTLIBDIR" = x ; then
Chris@198 224 # bin is included because that's where Qt DLLs hide on Windows
Chris@198 225 # On Mandriva Qt libraries are in /usr/lib or /usr/lib64 although
Chris@198 226 # QTDIR is /usr/lib/qt4
Chris@198 227 QTLIB_SEARCH="$QTDIR/lib $QTDIR/lib64 $QTDIR/lib32 $QTDIR/bin /usr/lib /usr/lib64"
Chris@198 228 else
Chris@198 229 case "$QTLIBDIR" in *3*)
Chris@198 230 AC_MSG_WARN([
Chris@198 231 The QTLIBDIR environment variable is set to "$QTLIBDIR".
Chris@198 232 This looks suspiciously like the location for Qt3 libraries
Chris@198 233 instead of the Qt4 libraries we require. If configure fails,
Chris@198 234 please ensure QTLIBDIR is either set correctly or not set at all.
Chris@198 235 ])
Chris@198 236 ;;
Chris@198 237 esac
Chris@198 238 QTLIB_SEARCH="$QTLIBDIR"
Chris@198 239 QTDIR=""
Chris@198 240 fi
Chris@198 241 QTLIB_EXTS=".so .a .dylib 4.dll"
Chris@198 242 QTLIB_NEED_4=""
Chris@198 243 for i in $QTLIB_SEARCH ; do
Chris@198 244 for j in $QTLIB_EXTS ; do
Chris@198 245 if test -f $i/libQtGui$j && test x$QTLIBDIR = x ; then
Chris@198 246 QTLIBDIR=$i
Chris@198 247 elif test -f $i/QtGui$j && test x$QTLIBDIR = x ; then
Chris@198 248 QTLIBDIR=$i
Chris@198 249 if test x$j = x4.dll ; then
Chris@198 250 QTLIB_NEED_4=1
Chris@198 251 fi
Chris@198 252 fi
Chris@198 253 done
Chris@198 254 done
Chris@198 255 if test x"$QTLIBDIR" = x ; then
Chris@198 256 AC_MSG_ERROR([
Chris@198 257 Failed to find required Qt4 GUI link entry point (libQtGui.so or equivalent).
Chris@198 258 Define QTLIBDIR or use --with-qtlibdir to specify the library location.
Chris@198 259 ])
Chris@198 260 fi
Chris@198 261 AC_MSG_RESULT([$QTLIBDIR])
Chris@198 262
Chris@198 263 if test x$QTLIB_NEED_4 = x ; then
Chris@198 264 QT_LIBS="-L$QTLIBDIR -lQtGui -lQtXml -lQtNetwork -lQtCore"
Chris@198 265 else
Chris@198 266 QT_LIBS="-L$QTLIBDIR -lQtGui4 -lQtXml4 -lQtNetwork4 -lQtCore4"
Chris@198 267 fi
Chris@198 268
Chris@198 269 AC_MSG_CHECKING([QT_CXXFLAGS])
Chris@198 270 AC_MSG_RESULT([$QT_CXXFLAGS])
Chris@198 271 AC_MSG_CHECKING([QT_LIBS])
Chris@198 272 AC_MSG_RESULT([$QT_LIBS])
Chris@198 273
Chris@198 274 AC_SUBST(QT_CXXFLAGS)
Chris@198 275 AC_SUBST(QT_LIBS)
Chris@198 276
Chris@198 277 ])
Chris@198 278