2001-01-26 10:16:05 +00:00
|
|
|
# Configure paths and libs when using Qt2 GUI
|
|
|
|
## -*- shell-script -*-
|
|
|
|
|
|
|
|
## Based on KDE file written by :
|
|
|
|
## Copyright (C) 1997 Janos Farkas (chexum@shadow.banki.hu)
|
|
|
|
## (C) 1997 Stephan Kulow (coolo@kde.org)
|
|
|
|
|
|
|
|
## This file is free software; you can redistribute it and/or
|
|
|
|
## modify it under the terms of the GNU Library General Public
|
|
|
|
## License as published by the Free Software Foundation; either
|
|
|
|
## version 2 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
## This library 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
|
|
|
|
## Library General Public License for more details.
|
|
|
|
|
|
|
|
## You should have received a copy of the GNU Library General Public License
|
|
|
|
## along with this library; see the file COPYING.LIB. If not, write to
|
|
|
|
## the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
## Boston, MA 02111-1307, USA.
|
|
|
|
|
|
|
|
## ------------------------------------------------------------------------
|
|
|
|
## Find a file (or one of more files in a list of dirs)
|
|
|
|
## ------------------------------------------------------------------------
|
|
|
|
##
|
|
|
|
|
|
|
|
AC_DEFUN(QT2_MOC_ERROR_MESSAGE,
|
|
|
|
[
|
|
|
|
AC_MSG_ERROR([No Qt meta object compiler (moc) found!
|
|
|
|
Please check whether you installed Qt correctly.
|
|
|
|
You need to have a running moc binary.
|
|
|
|
configure tried to run $ac_cv_path_qt2moc and the test didn't
|
|
|
|
succeed. If configure shouldn't have tried this one, set
|
|
|
|
the environment variable MOC to the right one before running
|
|
|
|
configure.
|
|
|
|
])
|
|
|
|
])
|
|
|
|
|
|
|
|
AC_DEFUN(QT2_FIND_PATH,
|
|
|
|
[
|
|
|
|
AC_MSG_CHECKING([for $1])
|
|
|
|
AC_CACHE_VAL(qt2_cv_path_$1,
|
|
|
|
[
|
|
|
|
qt2_cv_path_$1="NONE"
|
|
|
|
if test -n "$$2"; then
|
|
|
|
qt2_cv_path_$1="$$2";
|
|
|
|
else
|
|
|
|
dirs="$3"
|
|
|
|
qt2_save_IFS=$IFS
|
|
|
|
IFS=':'
|
|
|
|
for dir in $PATH; do
|
|
|
|
dirs="$dirs $dir"
|
|
|
|
done
|
|
|
|
IFS=$qt2_save_IFS
|
|
|
|
|
|
|
|
for dir in $dirs; do
|
|
|
|
if test -x "$dir/$1"; then
|
|
|
|
if test -n "$5"
|
|
|
|
then
|
|
|
|
evalstr="$dir/$1 $5 2>&1 "
|
|
|
|
if eval $evalstr; then
|
|
|
|
qt2_cv_path_$1="$dir/$1"
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
qt2_cv_path_$1="$dir/$1"
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
])
|
|
|
|
|
|
|
|
if test -z "$qt2_cv_path_$1" || test "$qt2_cv_path_$1" = "NONE"; then
|
|
|
|
AC_MSG_RESULT(not found)
|
|
|
|
$4
|
|
|
|
else
|
|
|
|
AC_MSG_RESULT($qt2_cv_path_$1)
|
|
|
|
$2=$qt2_cv_path_$1
|
|
|
|
fi
|
|
|
|
])
|
|
|
|
|
2001-02-12 14:09:09 +00:00
|
|
|
dnl ------------------------------------------------------------------------
|
|
|
|
dnl Find the UIC compiler if available
|
|
|
|
dnl ------------------------------------------------------------------------
|
|
|
|
AC_DEFUN(QT2_AC_PATH_UIC,
|
|
|
|
[
|
|
|
|
QT2_FIND_PATH(uic, UIC, [$ac_qt2_bindir $QTDIR/bin \
|
|
|
|
/usr/bin /usr/X11R6/bin /usr/lib/qt2/bin \
|
|
|
|
/usr/local/qt2/bin /usr/local/qt/bin /usr/lib/qt/bin], )
|
|
|
|
AC_SUBST(UIC)
|
|
|
|
])
|
|
|
|
|
2001-01-26 10:16:05 +00:00
|
|
|
dnl ------------------------------------------------------------------------
|
|
|
|
dnl Find the meta object compiler in the PATH, in $QTDIR/bin, and some
|
|
|
|
dnl more usual places
|
|
|
|
dnl ------------------------------------------------------------------------
|
|
|
|
dnl
|
|
|
|
AC_DEFUN(QT2_AC_PATH_MOC,
|
|
|
|
[
|
|
|
|
QT2_FIND_PATH(moc, MOC, [$ac_qt2_bindir $QTDIR/bin \
|
|
|
|
/usr/bin /usr/X11R6/bin /usr/lib/qt2/bin \
|
|
|
|
/usr/local/qt2/bin /usr/local/qt/bin /usr/lib/qt/bin], [QT2_MOC_ERROR_MESSAGE])
|
|
|
|
|
|
|
|
if test -z "$MOC"; then
|
|
|
|
if test -n "$ac_cv_path_qt2moc"; then
|
|
|
|
output=`eval "$ac_cv_path_qt2moc --help 2>&1 | sed -e '1q' | grep Qt"`
|
|
|
|
fi
|
|
|
|
echo "configure:__oline__: tried to call $ac_cv_path_qt2moc --help 2>&1 | sed -e '1q' | grep Qt" >&AC_FD_CC
|
|
|
|
echo "configure:__oline__: moc output: $output" >&AC_FD_CC
|
|
|
|
|
|
|
|
if test -z "$output"; then
|
|
|
|
MOC_ERROR_MESSAGE
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
AC_SUBST(MOC)
|
|
|
|
])
|
|
|
|
|
|
|
|
AC_DEFUN(QT2_PRINT_PROGRAM,
|
|
|
|
[
|
|
|
|
AC_LANG_CPLUSPLUS
|
|
|
|
cat > conftest.$ac_ext <<EOF
|
|
|
|
#include "confdefs.h"
|
|
|
|
#include <qmovie.h>
|
|
|
|
#include <qapplication.h>
|
|
|
|
int main() {
|
|
|
|
QMovie m;
|
|
|
|
m.setSpeed(20);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EOF
|
|
|
|
])
|
|
|
|
|
|
|
|
AC_DEFUN(QT2_CHECK_DIRECT,
|
|
|
|
[
|
|
|
|
AC_MSG_CHECKING([if Qt2 compiles without flags])
|
|
|
|
AC_CACHE_VAL(cv_qt2_direct,
|
|
|
|
[
|
|
|
|
ac_LD_LIBRARY_PATH_safe=$LD_LIBRARY_PATH
|
|
|
|
ac_LIBRARY_PATH="$LIBRARY_PATH"
|
|
|
|
ac_cxxflags_safe="$CXXFLAGS"
|
|
|
|
ac_ldflags_safe="$LDFLAGS"
|
|
|
|
ac_libs_safe="$LIBS"
|
|
|
|
|
|
|
|
CXXFLAGS="$CXXFLAGS -I$qt2_includes"
|
|
|
|
LDFLAGS="$X_LDFLAGS"
|
|
|
|
LIBS="-lqt -lXext -lX11 $LIBSOCKET"
|
|
|
|
LD_LIBRARY_PATH=
|
|
|
|
export LD_LIBRARY_PATH
|
|
|
|
LIBRARY_PATH=
|
|
|
|
export LIBRARY_PATH
|
|
|
|
|
|
|
|
QT2_PRINT_PROGRAM
|
|
|
|
|
|
|
|
if AC_TRY_EVAL(ac_link) && test -s conftest; then
|
|
|
|
cv_qt2_direct="yes"
|
|
|
|
else
|
|
|
|
cv_qt2_direct="no"
|
|
|
|
echo "configure: failed program was:" >&AC_FD_CC
|
|
|
|
cat conftest.$ac_ext >&AC_FD_CC
|
|
|
|
fi
|
|
|
|
rm -f conftest*
|
|
|
|
CXXFLAGS="$ac_cxxflags_safe"
|
|
|
|
LDFLAGS="$ac_ldflags_safe"
|
|
|
|
LIBS="$ac_libs_safe"
|
|
|
|
|
|
|
|
LD_LIBRARY_PATH="$ac_LD_LIBRARY_PATH_safe"
|
|
|
|
export LD_LIBRARY_PATH
|
|
|
|
LIBRARY_PATH="$ac_LIBRARY_PATH"
|
|
|
|
export LIBRARY_PATH
|
|
|
|
])
|
|
|
|
|
|
|
|
if test "$cv_qt2_direct" = "yes"; then
|
|
|
|
AC_MSG_RESULT(yes)
|
|
|
|
$1
|
|
|
|
else
|
|
|
|
AC_MSG_RESULT(no)
|
|
|
|
$2
|
|
|
|
fi
|
|
|
|
])
|
|
|
|
|
|
|
|
## ------------------------------------------------------------------------
|
|
|
|
## Try to find the Qt2 headers and libraries.
|
|
|
|
## $(QT2_LDFLAGS) will be -Lqt2liblocation (if needed)
|
|
|
|
## and $(QT2_INCLUDES) will be -Iqt2hdrlocation (if needed)
|
|
|
|
## ------------------------------------------------------------------------
|
|
|
|
##
|
|
|
|
AC_DEFUN(QT2_AC_PATH,
|
|
|
|
[
|
|
|
|
AC_MSG_CHECKING([for Qt 2])
|
|
|
|
ac_qt2_includes=NO ac_qt2_libraries=NO ac_qt2_bindir=NO
|
|
|
|
qt2_libraries=""
|
|
|
|
qt2_includes=""
|
2001-02-12 14:09:09 +00:00
|
|
|
|
2001-01-26 10:16:05 +00:00
|
|
|
AC_ARG_WITH(qt2-dir,
|
|
|
|
[ --with-qt2-dir where the root of Qt2 is installed ],
|
|
|
|
[ ac_qt2_includes="$withval"/include
|
|
|
|
ac_qt2_libraries="$withval"/lib
|
|
|
|
ac_qt2_bindir="$withval"/bin
|
|
|
|
])
|
|
|
|
|
|
|
|
AC_ARG_WITH(qt2-includes,
|
|
|
|
[ --with-qt2-includes where the Qt2 includes are. ],
|
|
|
|
[
|
|
|
|
ac_qt2_includes="$withval"
|
|
|
|
])
|
|
|
|
|
|
|
|
qt2_libs_given=no
|
|
|
|
|
|
|
|
AC_ARG_WITH(qt2-libraries,
|
|
|
|
[ --with-qt2-libraries where the Qt2 library is installed.],
|
|
|
|
[ ac_qt2_libraries="$withval"
|
|
|
|
qt2_libs_given=yes
|
|
|
|
])
|
|
|
|
|
|
|
|
if test "$ac_qt2_includes" = NO || test "$ac_qt2_libraries" = NO; then
|
|
|
|
|
|
|
|
AC_CACHE_VAL(ac_cv_have_qt2,
|
|
|
|
[#try to guess Qt2 locations
|
|
|
|
|
2001-05-18 15:21:01 +00:00
|
|
|
qt2_incdirs="$ac_qt2_includes usr/lib/qt2/include /usr/local/qt2/include /usr/include/qt2 /usr/X11R6/include/X11/qt2 /usr/lib/qt/include /usr/local/qt/include /usr/include/qt /usr/include /usr/X11R6/include/X11/qt $x_includes $QTINC"
|
2001-01-26 10:16:05 +00:00
|
|
|
test -n "$QTDIR" && qt2_incdirs="$QTDIR/include/qt2 $QTDIR/include/qt $QTDIR/include $QTDIR $qt2_incdirs"
|
|
|
|
AC_FIND_FILE(qmovie.h, $qt2_incdirs, qt2_incdir)
|
|
|
|
ac_qt2_includes="$qt2_incdir"
|
|
|
|
|
|
|
|
if test ! "$ac_qt2_libraries" = "NO"; then
|
|
|
|
qt2_libdirs="$ac_qt2_libraries"
|
|
|
|
fi
|
|
|
|
|
|
|
|
qt2_libdirs="$qt2_libdirs /usr/lib/qt2/lib /usr/lib/qt/lib /usr/X11R6/lib /usr/lib /usr/local/qt2/lib /usr/lib/qt2 /usr/local/qt/lib /usr/lib/qt $x_libraries $QTLIB"
|
|
|
|
test -n "$QTDIR" && qt2_libdirs="$QTDIR/lib $QTDIR $qt2_libdirs"
|
|
|
|
|
|
|
|
test=NONE
|
|
|
|
qt2_libdir=NONE
|
|
|
|
for dir in $qt2_libdirs; do
|
|
|
|
try="ls -1 $dir/libqt*"
|
|
|
|
if test=`eval $try 2> /dev/null`; then qt2_libdir=$dir; break; else echo "tried $dir" >&AC_FD_CC ; fi
|
|
|
|
done
|
|
|
|
|
|
|
|
dnl AC_FIND_FILE(libqt.so.2.2.3 libqt.so.2.2 libqt.so.2 libqt2.so libqt.a libqt.sl, $qt2_libdirs, qt2_libdir)
|
|
|
|
ac_qt2_libraries="$qt2_libdir"
|
|
|
|
|
|
|
|
ac_cxxflags_safe="$CXXFLAGS"
|
|
|
|
ac_ldflags_safe="$LDFLAGS"
|
|
|
|
ac_libs_safe="$LIBS"
|
|
|
|
|
|
|
|
CXXFLAGS="$CXXFLAGS -I$qt2_incdir"
|
|
|
|
LDFLAGS="-L$qt2_libdir $X_LDFLAGS"
|
|
|
|
LIBS="$LIBS -lqt -lXext -lX11 $LIBSOCKET"
|
|
|
|
|
|
|
|
QT2_PRINT_PROGRAM
|
|
|
|
|
|
|
|
if AC_TRY_EVAL(ac_link) && test -s conftest; then
|
|
|
|
rm -f conftest*
|
|
|
|
else
|
|
|
|
echo "configure: failed program was:" >&AC_FD_CC
|
|
|
|
cat conftest.$ac_ext >&AC_FD_CC
|
|
|
|
ac_qt2_libraries="NO"
|
|
|
|
fi
|
|
|
|
rm -f conftest*
|
|
|
|
CXXFLAGS="$ac_cxxflags_safe"
|
|
|
|
LDFLAGS="$ac_ldflags_safe"
|
|
|
|
LIBS="$ac_libs_safe"
|
|
|
|
|
|
|
|
if test "$ac_qt2_includes" = NO || test "$ac_qt2_libraries" = NO; then
|
|
|
|
ac_cv_have_qt2="have_qt2=no"
|
|
|
|
ac_qt2_notfound=""
|
|
|
|
if test "$ac_qt2_includes" = NO; then
|
|
|
|
if test "$ac_qt2_libraries" = NO; then
|
|
|
|
ac_qt2_notfound="(headers and libraries)";
|
|
|
|
else
|
|
|
|
ac_qt2_notfound="(headers)";
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
ac_qt2_notfound="(libraries)";
|
|
|
|
fi
|
|
|
|
|
|
|
|
AC_MSG_ERROR([Qt2 $ac_qt2_notfound not found. Please check your installation! ]);
|
|
|
|
else
|
|
|
|
have_qt2="yes"
|
|
|
|
fi
|
|
|
|
])
|
|
|
|
else
|
|
|
|
have_qt2="yes"
|
|
|
|
fi
|
|
|
|
|
|
|
|
eval "$ac_cv_have_qt2"
|
|
|
|
|
|
|
|
if test "$have_qt2" != yes; then
|
|
|
|
AC_MSG_RESULT([$have_qt2]);
|
|
|
|
else
|
|
|
|
ac_cv_have_qt2="have_qt2=yes \
|
|
|
|
ac_qt2_includes=$ac_qt2_includes ac_qt2_libraries=$ac_qt2_libraries"
|
|
|
|
AC_MSG_RESULT([libraries $ac_qt2_libraries, headers $ac_qt2_includes])
|
|
|
|
|
|
|
|
qt2_libraries="$ac_qt2_libraries"
|
|
|
|
qt2_includes="$ac_qt2_includes"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test ! "$qt2_libs_given" = "yes"; then
|
|
|
|
QT2_CHECK_DIRECT(qt2_libraries= ,[])
|
|
|
|
fi
|
|
|
|
|
|
|
|
dnl check it is Qt2
|
|
|
|
|
|
|
|
SAVE_CXXFLAGS="$CXXFLAGS"
|
|
|
|
CXXFLAGS="$CXXFLAGS -I$qt2_includes -L$qt2_libraries"
|
|
|
|
dnl specify we are definitely C++ compiling first
|
|
|
|
AC_LANG_CPLUSPLUS
|
|
|
|
AC_TRY_COMPILE([
|
|
|
|
#include <qglobal.h>
|
|
|
|
],
|
|
|
|
[
|
2001-03-15 12:54:01 +00:00
|
|
|
#if (QT_VERSION < 221)
|
2001-01-26 10:16:05 +00:00
|
|
|
break_me_(\\\);
|
|
|
|
#endif
|
|
|
|
],
|
|
|
|
ac_qt2_ok=yes,
|
|
|
|
ac_qt2_ok=no
|
|
|
|
)
|
|
|
|
test "$ac_qt2_ok" = no && AC_MSG_ERROR([Found an earlier version of Qt - you must specify the path to Qt2])
|
|
|
|
CXXFLAGS="$SAVE_CXXFLAGS"
|
|
|
|
|
|
|
|
AC_SUBST(qt2_libraries)
|
|
|
|
AC_SUBST(qt2_includes)
|
|
|
|
|
|
|
|
if test "$qt2_includes" = "$x_includes" || test -z "$qt2_includes"; then
|
|
|
|
QT2_INCLUDES="";
|
|
|
|
else
|
|
|
|
QT2_INCLUDES="-I$qt2_includes"
|
|
|
|
all_includes="$QT2_INCLUDES $all_includes"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test "$qt2_libraries" = "$x_libraries" || test -z "$qt2_libraries"; then
|
|
|
|
QT2_LDFLAGS=""
|
|
|
|
else
|
|
|
|
QT2_LDFLAGS="-L$qt2_libraries"
|
|
|
|
all_libraries="$QT2_LDFLAGS $all_libraries"
|
|
|
|
fi
|
|
|
|
|
|
|
|
QT2_LIBS="-lqt"
|
|
|
|
|
|
|
|
AC_SUBST(QT2_INCLUDES)
|
|
|
|
AC_SUBST(QT2_LDFLAGS)
|
|
|
|
AC_SUBST(QT2_LIBS)
|
|
|
|
QT2_AC_PATH_MOC
|
2001-02-12 14:09:09 +00:00
|
|
|
QT2_AC_PATH_UIC
|
2001-01-26 10:16:05 +00:00
|
|
|
])
|
|
|
|
|
|
|
|
AC_DEFUN(QT2_DO_IT_ALL,
|
|
|
|
[
|
|
|
|
if test "$QT2DIR" != ""; then
|
|
|
|
QTDIR=$QT2DIR
|
|
|
|
fi
|
|
|
|
QT2_AC_PATH
|
|
|
|
])
|