view m4/autotroll.m4 @ 250:c130f47f6f48

*: many many changes e.g. the search page is actually implemented now!
author Paper <paper@paper.us.eu.org>
date Sun, 04 Feb 2024 21:17:17 -0500
parents
children
line wrap: on
line source

# Build Qt apps with the autotools (Autoconf/Automake).
# M4 macros.
#
# This file is part of AutoTroll.
#
# Copyright (C) 2006-2018  Benoit Sigoure <benoit.sigoure@lrde.epita.fr>
# Copyright (C) 2012-2023  Werner Lemberg <wl@gnu.org>
#
# AutoTroll is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
# 02110-1301, USA.
#
# In addition, as a special exception, the copyright holders of
# AutoTroll give you unlimited permission to copy, distribute and
# modify the configure scripts that are the output of Autoconf when
# processing the macros of AutoTroll.  You need not follow the terms
# of the GNU General Public License when using or distributing such
# scripts, even though portions of the text of AutoTroll appear in
# them.  The GNU General Public License (GPL) does govern all other
# use of the material that constitutes AutoTroll.
#
# This special exception to the GPL applies to versions of AutoTroll
# released by the copyright holders of AutoTroll.  Note that people
# who make modified versions of AutoTroll are not obligated to grant
# this special exception for their modified versions; it is their
# choice whether to do so.  The GNU General Public License gives
# permission to release a modified version without this exception;
# this exception also makes it possible to release a modified version
# which carries forward this exception.

 # ------------- #
 # DOCUMENTATION #
 # ------------- #

# Disclaimer: Tested with Qt 4.2, 4.8, Qt 5.x, and Qt 6 only.
# Feedback welcome.  Simply invoke AT_WITH_QT in your configure.ac.
# AT_WITH_QT can take arguments which are documented in depth below.
# The default arguments are equivalent to the default .pro file
# generated by qmake.
#
# Invoking AT_WITH_QT will do the following:
#
#  - Add option `--with-qt[=ARG]' to your configure script.  Possible
#    values for ARG are `yes' (which is the default) and `no' to
#    enable and disable Qt support, respectively, or a path to the
#    directory which contains the Qt binaries in case you have a
#    non-stardard location.
#
#  - Add option `--without-qt', which is equivalent to `--with-qt=no'.
#
#  - On MacOS, add `-spec macx-g++' or `-spec macx-lang' (if `$CXX
#    --version' output contains `clang').  This can be overridden with
#    the QMAKESPEC environment variable, for example
#
#      QMAKESPEC='macx-clang' ./configure ...
#
#    (The QMAKESPEC variable is honoured for non-MacOS builds also.)
#
#  - If Qt support is enabled, define C preprocessor macro HAVE_QT.
#
#  - Find the programs `qmake', `moc', `uic', and `rcc' and save them
#    in the make variables $(QMAKE), $(MOC), $(UIC), and $(RCC).
#
#  - Save the path to Qt binaries in $(QT_PATH).
#
#  - Find the flags necessary to compile and link Qt, that is:
#
#     * $(QT_DEFINES): -D's defined by qmake.
#     * $(QT_CFLAGS): CFLAGS as defined by qmake (C?!)
#     * $(QT_CXXFLAGS): CXXFLAGS as defined by qmake.
#     * $(QT_INCPATH): -I's defined by qmake.
#     * $(QT_CPPFLAGS): Same as $(QT_DEFINES) + $(QT_INCPATH).
#     * $(QT_LFLAGS): LFLAGS defined by qmake.
#     * $(QT_LDFLAGS): Same thing as $(QT_LFLAGS).
#     * $(QT_LIBS): LIBS defined by qmake.
#
#  - Provide @QT_STATIC_PLUGINS@, which holds some additional C++
#    declarations necessary for linking with static Qt plugins (for
#    dynamic Qt builds it contains a dummy typedef declaration
#    instead).  Use this substitution in a `foo.cpp.in' C++ template
#    file or something similar, which must be registered in
#    configure.ac's call to AC_CONFIG_FILES so that a proper `foo.cpp'
#    file gets created.  Then compile and link `foo.cpp' with your
#    program in the usual automake way.
#
#    NOTE: It is not possible to automatically detect whether a Qt
#    release earlier than version 5 is built as a static library!  For
#    this reason, @QT_STATIC_PLUGINS@ always contains the dummy
#    typedef declaration if not using Qt5.
#
# You *MUST* invoke $(MOC) and/or $(UIC) by yourself where necessary.
# AutoTroll provides you with Makerules to ease this; here is a sample
# Makefile.am to use with AutoTroll which builds the code given in
# chapter 7 of the Qt Tutorial
# (http://doc.trolltech.com/4.2/tutorial-t7.html).
#
# -------------------------------------------------------------------------
# include $(top_srcdir)/build-aux/autotroll.mk
#
# ACLOCAL_AMFLAGS = -I build-aux
#
# bin_PROGRAMS = lcdrange
# lcdrange_SOURCES  = $(BUILT_SOURCES) lcdrange.cpp lcdrange.h main.cpp
# lcdrange_CXXFLAGS = $(QT_CXXFLAGS) $(AM_CXXFLAGS)
# lcdrange_CPPFLAGS = $(QT_CPPFLAGS) $(AM_CPPFLAGS)
# lcdrange_LDFLAGS  = $(QT_LDFLAGS) $(LDFLAGS)
# lcdrange_LDADD    = $(QT_LIBS) $(LDADD)
#
# BUILT_SOURCES = lcdrange.moc.cpp
# -------------------------------------------------------------------------
#
# Note that your MOC, UIC, and RCC files *MUST* be listed explicitly
# in BUILT_SOURCES.  If you name them properly (e.g. `.moc.cc',
# `.qrc.cc', `.ui.cc' -- of course you can use `.cpp' or `.cxx' or
# `.C' rather than `.cc') AutoTroll will build them automagically for
# you, using implicit rules defined in `autotroll.mk'.

m4_define([_AUTOTROLL_SERIAL],
  [m4_translit([
# serial 17
], [#
], [])])


m4_ifdef([AX_INSTEAD_IF],
  [],
  [AC_DEFUN([AX_INSTEAD_IF],
    [m4_ifval([$1],
      [AC_MSG_WARN([$2])
       [$1]],
      [AC_MSG_ERROR([$2])])])])


# AX_PATH_TOOLS(VARIABLE, PROGS-TO-CHECK-FOR, [VALUE-IF-NOT-FOUND], [PATH])
# -------------------------------------------------------------------------
AC_DEFUN([AX_PATH_TOOLS],
  [for ax_tool in $2; do
     AC_PATH_TOOL([$1], [$ax_tool], [], [$4])
     test -n "$$1" && break
   done
   m4_ifval([$3], [test -n "$$1" || $1="$3"])
  ])


m4_pattern_forbid([^AT_])
m4_pattern_forbid([^_AT_])


# AT_WITH_QT([QT_modules], [QT_config], [QT_misc], [RUN-IF-FAILED], [RUN-IF-OK])
# ------------------------------------------------------------------------------
# Enable Qt support and add an option --with-qt to the configure
# script.
#
# The QT_modules argument is optional and defines extra modules to
# enable or disable (it's equivalent to the QT variable in .pro
# files).  Modules can be specified as follows:
#
# AT_WITH_QT   =>  No argument -> No QT value.
#                                 Qmake sets it to "core gui" by
#                                 default.
# AT_WITH_QT([xml])   =>  QT += xml
# AT_WITH_QT([+xml])  =>  QT += xml
# AT_WITH_QT([-gui])  =>  QT -= gui
# AT_WITH_QT([xml -gui +sql svg])  =>  QT += xml sql svg
#                                      QT -= gui
#
# The QT_config argument is also optional and follows the same
# convention as QT_modules.  Instead of changing the QT variable, it
# changes the CONFIG variable, which is used to tweak configuration
# and compiler options.
#
# The last argument, QT_misc (also optional) will be copied as-is the
# .pro file used to guess how to compile Qt apps.  You may use it to
# further tweak the build process of Qt apps if tweaking the QT or
# CONFIG variables isn't enough for you (for example, to control which
# static plugins get used).
#
# RUN-IF-FAILED is arbitrary code to execute if Qt cannot be found or
# if any problem happens.  If this argument is omitted, then
# AC_MSG_ERROR will be called.  RUN-IF-OK is arbitrary code to execute
# if Qt was successfully found.

AC_DEFUN([AT_WITH_QT],
  [AC_REQUIRE([AC_CANONICAL_HOST])
   AC_REQUIRE([AC_CANONICAL_BUILD])
   AC_REQUIRE([AC_PROG_CXX])

   echo "$as_me: this is autotroll.m4[]_AUTOTROLL_SERIAL" \
     >& AS_MESSAGE_LOG_FD

   # This is a hack to get decent flow control with `break'.
   for _qt_ignored in once; do

     AC_ARG_WITH([qt],
       AS_HELP_STRING([--with-qt@<:@=ARG@:>@],
         [Qt support.  ARG can be `yes' (the default), `no',
          or a path to Qt binaries; if `yes' or empty,
          use PATH and some default directories to find Qt binaries]))

     if test x"$with_qt" = x"no"; then
       break
     else
       AC_DEFINE([HAVE_QT],[1],
         [Define if the Qt framework is available.])
     fi

     if test x"$with_qt" = x"yes"; then
       QT_PATH=
     else
       QT_PATH=$with_qt
     fi

     # Find Qt.
     AC_ARG_VAR([QT_PATH],
       [path to Qt binaries])
     QT_TOOL_PATH=$QT_PATH:$PATH

     # Find qmake.
     AC_ARG_VAR([QMAKE],
       [Qt Makefile generator command])
     AX_PATH_TOOLS([QMAKE],
       [qmake qmake-qt5 qmake-qt4 qmake-qt3],
       [missing],
       [$QT_TOOL_PATH])
     if test x"$QMAKE" = xmissing; then
       if test x"$with_qt" = "x"; then
          with_qt="no"
       else
         AX_INSTEAD_IF([$4],
           [Cannot find qmake.  Try --with-qt=PATH.])
       fi
       break
     fi

     # Find moc (Meta Object Compiler).
     AC_ARG_VAR([MOC],
       [Qt Meta Object Compiler command])
     AX_PATH_TOOLS([MOC],
       [moc moc-qt5 moc-qt4 moc-qt3],
       [missing],
       [$QT_TOOL_PATH])
     if test x"$MOC" = xmissing; then
       AX_INSTEAD_IF([$4],
         [Cannot find moc (Meta Object Compiler).  Try --with-qt=PATH.])
       break
     fi

     # Find uic (User Interface Compiler).
     AC_ARG_VAR([UIC],
       [Qt User Interface Compiler command])
     AX_PATH_TOOLS([UIC],
       [uic uic-qt5 uic-qt4 uic-qt3 uic3],
       [missing],
       [$QT_TOOL_PATH])
     if test x"$UIC" = xmissing; then
       AX_INSTEAD_IF([$4],
         [Cannot find uic (User Interface Compiler).  Try --with-qt=PATH.])
       break
     fi

     # Find rcc (Qt Resource Compiler).
     AC_ARG_VAR([RCC],
       [Qt Resource Compiler command])
     AX_PATH_TOOLS([RCC],
       [rcc rcc-qt5],
       [missing],
       [$QT_TOOL_PATH])
     if test x"$RCC" = xmissing; then
       AC_MSG_WARN(
         [Cannot find rcc (Qt Resource Compiler).  Try --with-qt=PATH.])
     fi

     AC_ARG_VAR([LUPDATE],
       [Qt Linguist updater command])
     AX_PATH_TOOLS([LUPDATE],
       [lupdate lupdate-qt5 lrelease-qt6],
       [missing],
       [$QT_TOOL_PATH])
     if test "x$LUPDATE" = "xmissing"; then
       AC_MSG_WARN(
         [Cannot find lupdate (Qt Linguist updater).  Try --with-qt=PATH.])
     fi

     AC_ARG_VAR([LRELEASE],
       [Qt Linguist compiler command])
     AX_PATH_TOOLS([LRELEASE],
       [lrelease lrelease-qt5 lrelease-qt6],
       [missing],
       [$QT_TOOL_PATH])
     if test "x$LRELEASE" = "xmissing"; then
       AC_MSG_WARN(
         [Cannot find lrelease (Qt Linguist compiler).  Try --with-qt=PATH.])
     fi

     AC_MSG_CHECKING([whether host operating system is Darwin])
     at_darwin=no
     at_qmake_args=
     case $host_os in
       dnl (
       darwin*)
         at_darwin=yes
         ;;
     esac
     AC_MSG_RESULT([$at_darwin])

     AC_MSG_CHECKING([whether QMAKESPEC environment variable is set])
     if test x"$QMAKESPEC" = x; then
       if test x"$at_darwin" = xyes; then
         if $CXX --version | grep -q -i clang; then
           at_qmake_args='-spec macx-clang'
         else
           at_qmake_args='-spec macx-g++'
         fi
         AC_MSG_RESULT([no, using $at_qmake_args])
       else
         AC_MSG_RESULT([no])
       fi
     else
       AC_MSG_RESULT([yes, using $QMAKESPEC])
     fi

     # If we don't know the path to Qt, guess it from the path to
     # qmake.
     if test x"$QT_PATH" = x; then
       QT_PATH=`dirname "$QMAKE"`
     fi
     if test x"$QT_PATH" = x; then
       AX_INSTEAD_IF([$4],
         [Cannot find your Qt installation.  Try --with-qt=PATH.])
       break
     fi
     AC_SUBST([QT_PATH])

     # Get ready to build a test-app with Qt.
     if mkdir conftest.dir \
        && cd conftest.dir; then
       :
     else
       AX_INSTEAD_IF([$4],
         [Cannot mkdir conftest.dir or cd to that directory.])
       break
     fi

     cat >conftest.h <<_ASEOF

#include <QObject>

class Foo: public QObject
{
  Q_OBJECT;
public:
  Foo();
  ~Foo() {}
public Q_SLOTS:
  void setValue(int value);
Q_SIGNALS:
  void valueChanged(int newValue);
private:
  int value_;
};

_ASEOF

     cat >conftest.cpp <<_ASEOF

#include "conftest.h"

Foo::Foo()
  : value_ (42)
{
  connect(this, SIGNAL(valueChanged(int)),
          this, SLOT(setValue(int)));
}

void Foo::setValue(int value)
{
  value_ = value;
}

int main()
{
  Foo f;
}

_ASEOF

     if $QMAKE -project; then
       :
     else
       AX_INSTEAD_IF([$4],
         [Calling $QMAKE -project failed.])
       break
     fi

     # Find the .pro file generated by qmake.
     pro_file=conftest.dir.pro
     test -f $pro_file || pro_file=`echo *.pro`
     if test -f "$pro_file"; then
       :
     else
       AX_INSTEAD_IF([$4],
         [Can't find the .pro file generated by Qmake.])
       break
     fi

     dnl This is for Qt5; for Qt4 it does nothing special.
     _AT_TWEAK_PRO_FILE([QT], [+widgets])

     dnl Undocumented qmake: always use absolute paths.
     dnl Defaults to 4.
     _AT_TWEAK_PRO_FILE([QMAKE_PROJECT_DEPTH], [0])

     dnl Tweak the value of QT in the .pro file if we have a first
     dnl argument.
     m4_ifval([$1],
       [_AT_TWEAK_PRO_FILE([QT], [$1])])

     dnl Tweak the value of CONFIG in the .pro file if we have a
     dnl second argument.
     m4_ifval([$2],
       [_AT_TWEAK_PRO_FILE([CONFIG], [$2])])

     m4_ifval([$3],
       [ # Add the extra-settings the user wants to set in the .pro
         # file.
         echo "$3" >>"$pro_file"
       ])

     echo "$as_me:$LINENO: Invoking $QMAKE on $pro_file" \
       >& AS_MESSAGE_LOG_FD
     sed 's/^/| /' "$pro_file" >& AS_MESSAGE_LOG_FD

     if $QMAKE $at_qmake_args; then
       :
     else
       AX_INSTEAD_IF([$4],
         [Calling $QMAKE $at_qmake_args failed.])
       break
     fi

     # Try to compile a simple Qt app.
     AC_CACHE_CHECK([whether we can build a simple Qt application],
       [at_cv_qt_build],
       [at_cv_qt_build=ko
        : ${MAKE=make}

        if $MAKE >& AS_MESSAGE_LOG_FD 2>&1; then
          at_cv_qt_build='ok, looks like Qt 4, Qt 5, or Qt 6'
        else
          echo "$as_me:$LINENO: Build failed, trying to #include <qobject.h> instead" \
            >& AS_MESSAGE_LOG_FD
          sed 's/<QObject>/<qobject.h>/' conftest.h > tmp.h \
            && mv tmp.h conftest.h
          if $MAKE >& AS_MESSAGE_LOG_FD 2>&1; then
            at_cv_qt_build='ok, looks like Qt 3'
          else
            # Sometimes (such as on Debian) build will fail because Qt
            # hasn't been installed in debug mode and qmake tries (by
            # default) to build apps in debug mode => Try again in
            # release mode.
            echo "$as_me:$LINENO: Build failed, trying to enforce release mode" \
              >& AS_MESSAGE_LOG_FD

            _AT_TWEAK_PRO_FILE([CONFIG], [+release])

            sed 's/<qobject.h>/<QObject>/' conftest.h > tmp.h \
              && mv tmp.h conftest.h
            if $MAKE >& AS_MESSAGE_LOG_FD 2>&1; then
              at_cv_qt_build='ok, looks like Qt 4 or Qt 5, release mode forced'
            else
              echo "$as_me:$LINENO: Build failed, trying to #include <qobject.h> instead" \
                >& AS_MESSAGE_LOG_FD
              sed 's/<QObject>/<qobject.h>/' conftest.h > tmp.h \
                && mv tmp.h conftest.h
              if $MAKE >& AS_MESSAGE_LOG_FD 2>&1; then
                at_cv_qt_build='ok, looks like Qt 3, release mode forced'
              else
                at_cv_qt_build=ko
                echo "$as_me:$LINENO: failed program was:" \
                  >& AS_MESSAGE_LOG_FD
                sed 's/^/| /' conftest.h >& AS_MESSAGE_LOG_FD
                echo "$as_me:$LINENO: failed program was:" \
                  >& AS_MESSAGE_LOG_FD
                sed 's/^/| /' conftest.cpp >& AS_MESSAGE_LOG_FD
              fi # if make with Qt3-style #include and release mode forced.
            fi # if make with Qt4/5-style #include and release mode forced.
          fi # if make with Qt3-style #include.
        fi # if make with Qt4/5-style #include.
       ])dnl end: AC_CACHE_CHECK(at_cv_qt_build)

     if test x"$at_cv_qt_build" = xko; then
       AX_INSTEAD_IF([$4],
         [Cannot build a test Qt program])
       cd ..
       break
     fi

     QT_VERSION_MAJOR=`echo "$at_cv_qt_build" | sed 's/[[^0-9]]*//g'`
     AC_SUBST([QT_VERSION_MAJOR])

     # This sed filter is applied after an expression of the form
     # /^FOO.*=/!d; it starts by removing the beginning of the line
     # (using the empty regular expression //, which repeats the last
     # regular expression match), removing references to SUBLIBS,
     # removing unnecessary whitespace at the beginning, then prefixing
     # our exported variables with QT_.  Note that `LDFLAGS' is
     # intentionally omitted.
     qt_sed_filter='s///;
                    s/$(SUBLIBS)//g;
                    s/^ *//;
                    s/\$(DEFINES)/$(QT_DEFINES)/g;
                    s/\$(CFLAGS)/$(QT_CFLAGS)/g;
                    s/\$(CXXFLAGS)/$(QT_CXXFLAGS)/g;
                    s/\$(INCPATH)/$(QT_INCPATH)/g;
                    s/\$(CPPFLAGS)/$(QT_CPPFLAGS)/g;
                    s/\$(LFLAGS)/$(QT_LFLAGS)/g;
                    s/\$(LIBS)/$(QT_LIBS)/g'

     # Find the Makefile (qmake happens to generate a fake Makefile
     # which invokes a Makefile.Debug or Makefile.Release).  If we
     # have both, we'll pick the Makefile.Release.  The reason is that
     # this release uses -Os and debug -g.  We can override -Os by
     # passing another -O but we usually don't override -g.
     if test -f Makefile.Release; then
       at_mfile='Makefile.Release'
     else
       at_mfile='Makefile'
     fi
     if test -f $at_mfile; then
       :
     else
       AX_INSTEAD_IF([$4],
         [Cannot find the Makefile generated by qmake.])
       cd ..
       break
     fi

     # Find the DEFINES of Qt (should have been named CPPFLAGS).
     AC_CACHE_CHECK([for the DEFINES to use with Qt],
       [at_cv_env_QT_DEFINES],
       [at_cv_env_QT_DEFINES=`sed "/^DEFINES@<:@^A-Z=@:>@*=/!d;
                                   $qt_sed_filter" $at_mfile`])
     AC_SUBST([QT_DEFINES],
       [$at_cv_env_QT_DEFINES])

     # Find the CFLAGS of Qt.  (We can use Qt in C?!)
     AC_CACHE_CHECK([for the CFLAGS to use with Qt],
       [at_cv_env_QT_CFLAGS],
       [at_cv_env_QT_CFLAGS=`sed "/^CFLAGS@<:@^A-Z=@:>@*=/!d;
                                  $qt_sed_filter" $at_mfile`])
     AC_SUBST([QT_CFLAGS],
       [$at_cv_env_QT_CFLAGS])

     # Find the CXXFLAGS of Qt.
     AC_CACHE_CHECK([for the CXXFLAGS to use with Qt],
       [at_cv_env_QT_CXXFLAGS],
       [at_cv_env_QT_CXXFLAGS=`sed "/^CXXFLAGS@<:@^A-Z=@:>@*=/!d;
                                    $qt_sed_filter" $at_mfile`])
     AC_SUBST([QT_CXXFLAGS],
       [$at_cv_env_QT_CXXFLAGS])

     # Find the INCPATH of Qt.
     AC_CACHE_CHECK([for the INCPATH to use with Qt],
       [at_cv_env_QT_INCPATH],
       [at_cv_env_QT_INCPATH=`sed "/^INCPATH@<:@^A-Z=@:>@*=/!d;
                                   $qt_sed_filter" $at_mfile`])
     AC_SUBST([QT_INCPATH],
       [$at_cv_env_QT_INCPATH])

     AC_SUBST([QT_CPPFLAGS],
       ["$at_cv_env_QT_DEFINES $at_cv_env_QT_INCPATH"])

     # Find the LFLAGS of Qt (should have been named LDFLAGS).
     AC_CACHE_CHECK([for the LDFLAGS to use with Qt],
       [at_cv_env_QT_LDFLAGS],
       [at_cv_env_QT_LDFLAGS=`sed "/^LFLAGS@<:@^A-Z=@:>@*=/!d;
                                   $qt_sed_filter" $at_mfile`])
     AC_SUBST([QT_LFLAGS],
       [$at_cv_env_QT_LDFLAGS])
     AC_SUBST([QT_LDFLAGS],
       [$at_cv_env_QT_LDFLAGS])

     # Find the LIBS of Qt.
     AC_CACHE_CHECK([for the LIBS to use with Qt],
      [at_cv_env_QT_LIBS],
      [at_cv_env_QT_LIBS=`sed "/^LIBS@<:@^A-Z@:>@*=/!d;
                               $qt_sed_filter" $at_mfile`
       if test x$at_darwin = xyes; then
         # Fix QT_LIBS: as of today Libtool (GNU Libtool 1.5.23a)
         # doesn't handle -F properly.  The "bug" has been fixed on 22
         # October 2006 by Peter O'Gorman but we provide backward
         # compatibility here.
         at_cv_env_QT_LIBS=`echo "$at_cv_env_QT_LIBS" \
                            | sed 's/^-F/-Wl,-F/;
                                   s/ -F/ -Wl,-F/g'`
       fi])
     AC_SUBST([QT_LIBS],
       [$at_cv_env_QT_LIBS])

     # We can't use AC_CACHE_CHECK for data that contains newlines.
     AC_MSG_CHECKING([for necessary static plugin code])
     # find static plugin data generated by qmake
     if test -f conftest.dir_plugin_import.cpp; then
       QT_STATIC_PLUGINS=`cat conftest.dir_plugin_import.cpp`
     else
       QT_STATIC_PLUGINS="\
// We have Qt earlier than version 5 or a dynamic build.
// Provide dummy typedef to avoid empty source code.
typedef int _qt_not_a_static_build;"
     fi
     AC_SUBST([QT_STATIC_PLUGINS])
     AM_SUBST_NOTMAKE([QT_STATIC_PLUGINS])
     AC_MSG_RESULT([$QT_STATIC_PLUGINS])

     cd .. && rm -rf conftest.dir

     # Run the user code
     $5

   done  # end hack (useless FOR to be able to use break)
  ])


# AT_REQUIRE_QT_VERSION(QT_version, [RUN-IF-FAILED], [RUN-IF-OK])
# ---------------------------------------------------------------
# Check (using qmake) that Qt's version "matches" QT_version.  Must be
# run *AFTER* AT_WITH_QT.  Requires autoconf 2.60.
#
# This macro is ignored if Qt support has been disabled (using
# `--with-qt=no' or `--without-qt').
#
# RUN-IF-FAILED is arbitrary code to execute if Qt cannot be found or
# if any problem happens.  If this argument is omitted, then
# AC_MSG_ERROR will be called.  RUN-IF-OK is arbitrary code to execute
# if Qt was successfully found.
#
# This macro provides the Qt version in $(QT_VERSION).

AC_DEFUN([AT_REQUIRE_QT_VERSION],
  [AC_PREREQ([2.60])

   # This is a hack to get decent flow control with `break'.
   for _qt_ignored in once; do

     if test x"$with_qt" = x"no"; then
       break
     fi

     if test x"$QMAKE" = x; then
       AX_INSTEAD_IF([$2],
        [\$QMAKE is empty.  Did you invoke AT@&t@_WITH_QT before AT@&t@_REQUIRE_QT_VERSION?])
       break
     fi

     AC_CACHE_CHECK([for Qt's version],
       [at_cv_QT_VERSION],
       [echo "$as_me:$LINENO: Running $QMAKE --version:" \
          >& AS_MESSAGE_LOG_FD
        $QMAKE --version >& AS_MESSAGE_LOG_FD 2>&1
        qmake_version_sed=['/^.*\([0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\).*$/!d;s//\1/']
        at_cv_QT_VERSION=`$QMAKE --version 2>&1 \
                          | sed "$qmake_version_sed"`])
     if test x"$at_cv_QT_VERSION" = x; then
       AX_INSTEAD_IF([$2],
         [Cannot detect Qt's version.])
       break
     fi
     AC_SUBST([QT_VERSION],
       [$at_cv_QT_VERSION])
     AS_VERSION_COMPARE([$QT_VERSION], [$1],
       [AX_INSTEAD_IF([$2],
          [This package requires Qt $1 or above.])
        break])

     # Run the user code
     $3

   done  # end hack (useless FOR to be able to use break)
  ])


# _AT_TWEAK_PRO_FILE(QT_VAR, VALUE)
# ---------------------------------
# @internal.  Tweak the variable QT_VAR in the .pro file.  VALUE is an
# IFS-separated list of values, and each value is rewritten as
# follows:
#
#   +value  => QT_VAR += value
#   -value  => QT_VAR -= value
#    value  => QT_VAR += value

AC_DEFUN([_AT_TWEAK_PRO_FILE],
  [ # Tweak the value of $1 in the .pro file for $2.
   qt_conf=''
   for at_mod in $2; do
     at_mod=`echo "$at_mod" | sed 's/^-//; tough
                                   s/^+//; beef
                                   :ough
                                   s/^/$1 -= /;n
                                   :eef
                                   s/^/$1 += /'`
     qt_conf="\
$qt_conf
$at_mod"
   done
    echo "$qt_conf" | sed 1d >>"$pro_file"
  ])

# eof