source: m4/bnv_have_qt.m4@ 004ae7

Action_Thermostats Add_AtomRandomPerturbation Add_FitFragmentPartialChargesAction Add_RotateAroundBondAction Add_SelectAtomByNameAction Added_ParseSaveFragmentResults AddingActions_SaveParseParticleParameters Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_ParticleName_to_Atom Adding_StructOpt_integration_tests AtomFragments Automaking_mpqc_open AutomationFragmentation_failures Candidate_v1.5.4 Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator CombiningParticlePotentialParsing Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_BoundInBox_CenterInBox_MoleculeActions Fix_ChargeSampling_PBC Fix_ChronosMutex Fix_FitPartialCharges Fix_FitPotential_needs_atomicnumbers Fix_ForceAnnealing Fix_IndependentFragmentGrids Fix_ParseParticles Fix_ParseParticles_split_forward_backward_Actions Fix_PopActions Fix_QtFragmentList_sorted_selection Fix_Restrictedkeyset_FragmentMolecule Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns Fix_fitting_potentials Fixes ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion FragmentAction_writes_AtomFragments FragmentMolecule_checks_bonddegrees GeometryObjects Gui_Fixes Gui_displays_atomic_force_velocity ImplicitCharges IndependentFragmentGrids IndependentFragmentGrids_IndividualZeroInstances IndependentFragmentGrids_IntegrationTest IndependentFragmentGrids_Sole_NN_Calculation JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix MoreRobust_FragmentAutomation ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PdbParser_setsAtomName PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks Rewrite_FitPartialCharges RotateToPrincipalAxisSystem_UndoRedo SaturateAtoms_findBestMatching SaturateAtoms_singleDegree StoppableMakroAction Subpackage_CodePatterns Subpackage_JobMarket Subpackage_LinearAlgebra Subpackage_levmar Subpackage_mpqc_open Subpackage_vmg Switchable_LogView ThirdParty_MPQC_rebuilt_buildsystem TrajectoryDependenant_MaxOrder TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps TremoloParser_setsAtomName Ubuntu_1604_changes stable
Last change on this file since 004ae7 was 004ae7, checked in by Frederik Heber <heber@…>, 13 years ago

FIX: Changes to bnv_have_qt.m4 and boost.m4.

  • moved search in /opt to very end of list, wherever occurring. /opt is often a network drive and hence fails in case of network outtage.
  • bnv_have_qt.m4: Moved Libs in test compile to end, gcc 4.6 is picky and we are checking specifically for QtCore, QtGui, and Qt3D libs, not just any.
  • Property mode set to 100644
File size: 21.2 KB
Line 
1dnl @synopsis BNV_HAVE_QT [--with-Qt-dir=DIR] [--with-Qt-lib-dir=DIR] [--with-Qt-lib=LIB]
2dnl @synopsis BNV_HAVE_QT [--with-Qt-include-dir=DIR] [--with-Qt-bin-dir=DIR] [--with-Qt-lib-dir=DIR] [--with-Qt-lib=LIB]
3dnl
4dnl @summary Search for Trolltech's Qt GUI framework.
5dnl
6dnl Searches common directories for Qt include files, libraries and Qt
7dnl binary utilities. The macro supports several different versions of
8dnl the Qt framework being installed on the same machine. Without
9dnl options, the macro is designed to look for the latest library,
10dnl i.e., the highest definition of QT_VERSION in qglobal.h. By use of
11dnl one or more options a different library may be selected. There are
12dnl two different sets of options. Both sets contain the option
13dnl --with-Qt-lib=LIB which can be used to force the use of a
14dnl particular version of the library file when more than one are
15dnl available. LIB must be in the form as it would appear behind the
16dnl "-l" option to the compiler. Examples for LIB would be "qt-mt" for
17dnl the multi-threaded version and "qt" for the regular version. In
18dnl addition to this, the first set consists of an option
19dnl --with-Qt-dir=DIR which can be used when the installation conforms
20dnl to Trolltech's standard installation, which means that header files
21dnl are in DIR/include, binary utilities are in DIR/bin and the library
22dnl is in DIR/lib. The second set of options can be used to indicate
23dnl individual locations for the header files, the binary utilities and
24dnl the library file, in addition to the specific version of the
25dnl library file.
26dnl
27dnl The following shell variable is set to either "yes" or "no":
28dnl
29dnl have_qt
30dnl
31dnl Additionally, the following variables are exported:
32dnl
33dnl QT_CXXFLAGS
34dnl QT_LIBS
35dnl QT_MOC
36dnl QT_RCC
37dnl QT_UIC
38dnl QT_DIR
39dnl
40dnl which respectively contain an "-I" flag pointing to the Qt include
41dnl directory (and "-DQT_THREAD_SUPPORT" when LIB is "qt-mt"), link
42dnl flags necessary to link with Qt and X, the name of the meta object
43dnl compiler and the user interface compiler both with full path, and
44dnl finaly the variable QTDIR as Trolltech likes to see it defined (if
45dnl possible).
46dnl
47dnl Example lines for Makefile.in:
48dnl
49dnl CXXFLAGS = @QT_CXXFLAGS@
50dnl MOC = @QT_MOC@
51dnl
52dnl After the variables have been set, a trial compile and link is
53dnl performed to check the correct functioning of the meta object
54dnl compiler. This test may fail when the different detected elements
55dnl stem from different releases of the Qt framework. In that case, an
56dnl error message is emitted and configure stops.
57dnl
58dnl No common variables such as $LIBS or $CFLAGS are polluted.
59dnl
60dnl Options:
61dnl
62dnl --with-Qt-dir=DIR: DIR is equal to $QTDIR if you have followed the
63dnl installation instructions of Trolltech. Header files are in
64dnl DIR/include, binary utilities are in DIR/bin and the library is in
65dnl DIR/lib.
66dnl
67dnl --with-Qt-include-dir=DIR: Qt header files are in DIR.
68dnl
69dnl --with-Qt-bin-dir=DIR: Qt utilities such as moc and uic are in DIR.
70dnl
71dnl --with-Qt-lib-dir=DIR: The Qt library is in DIR.
72dnl
73dnl --with-Qt-lib=LIB: Use -lLIB to link with the Qt library.
74dnl
75dnl If some option "=no" or, equivalently, a --without-Qt-* version is
76dnl given in stead of a --with-Qt-*, "have_qt" is set to "no" and the
77dnl other variables are set to the empty string.
78dnl
79dnl @category InstalledPackages
80dnl @author Bastiaan Veelo <Bastiaan@Veelo.net>
81dnl @version 2006-03-12
82dnl @license AllPermissive
83dnl
84dnl Note by Frederik Heber <heber@ins.uni-bonn.de>
85dnl added fix from RTXI manual:
86dnl if configure throws with "syntax error in line blabla" when checking Qt,
87dnl then it is because of empty if-then-else construct, add line with single
88dnl colon ":" in it to (leave bnv_qt_lib_dir defined).
89dnl
90dnl Second Note by Frederik Heber <heber@ins.uni-bonn.de>
91dnl some changes by me, to get it working with Qt4 and Qwt
92dnl - bnv_qt_include_dir is now list of dirs, extended to -I<> syntax
93dnl - all subdirs of qt-include directory
94dnl - look for lib[[Qq]]t not only libqt
95dnl
96dnl Third Note by Frederik Heber <heber@ins.uni-bonn.de>
97dnl added QT_RCC flag
98dnl
99dnl Fourth Note by Frederik Heber <heber@ins.uni-bonn.de>
100dnl some changes to get it working with Ubuntu 10.04
101dnl - bn_qt_lib_dir is now issued when specified --with-qt-dir
102dnl - removed libXt and libXi which are just shared libs linked in
103dnl the other libs
104dnl
105dnl Fifth note by Frederik Heber <heber@ins.uni-bonn.de>
106dnl Some changes to get it working with Ubuntu 11.10:
107dnl - Replace [[Qq]]t* by simply the two variants and piping errors to
108dnl /dev/null
109dnl - The new gcc version (4.6) does not like libs specified before objects.
110dnl Hence, $LIBS is given at the very end of the link attempt.
111dnl - First lib in alphabetical order is Qt3Support, hence use QtGui and
112dnl QtCore by hand
113
114dnl Copyright (C) 2001, 2002, 2003, 2005, 2006 Bastiaan Veelo
115
116dnl THANKS! This code includes bug fixes and contributions made by:
117dnl Tim McClarren,
118dnl Dennis R. Weilert,
119dnl Qingning Huo,
120dnl Brian Mingus,
121dnl Jens Hannemann,
122dnl Pavel Roskin,
123dnl Scott J. Bertin.
124
125dnl ChangeLog
126dnl 2006-03-12 * Hide output of ls and fix an m4 quoting problem (due to Scott J. Bertin).
127dnl 2006-02-13 * Check compiler return value instead of parsing the error stream,
128dnl which detected warnings as false negatives (due to Jens Hannemann).
129dnl 2006-02-02 * Spelling of "Success".
130dnl * Fixed unsave test for $bnv_qt_lib without quotes.
131dnl * Put dnl in front of all comments.
132dnl * Changed -l$bnv_qt_lib_dir into -L$bnv_qt_lib_dir (all due to Pavel Roskin).
133dnl 2006-01-19 * Support for 64bit architectures.
134dnl * Updated documentation.
135dnl 2006-01-18: * Fix "cat: bnv_qt_test.c: No such file or directory" (due to Jens Hannemann).
136dnl * Hide output of failing ls.
137dnl 2006-01-11: * Check in /Developer on Mac OS X; Check in $QTDIR (due to Brian Mingus).
138
139dnl Calls BNV_PATH_QT_DIRECT (contained in this file) as a subroutine.
140AC_DEFUN([BNV_HAVE_QT],
141[
142 AC_REQUIRE([AC_PROG_CXX])
143 AC_REQUIRE([AC_PATH_X])
144 AC_REQUIRE([AC_PATH_XTRA])
145
146 AC_MSG_CHECKING(for Qt)
147
148 AC_ARG_WITH([Qt-dir],
149 [ --with-Qt-dir=DIR DIR is equal to $QTDIR if you have followed the
150 installation instructions of Trolltech. Header
151 files are in DIR/include, binary utilities are
152 in DIR/bin. The library is in DIR/lib, unless
153 --with-Qt-lib-dir is also set.])
154 AC_ARG_WITH([Qt-include-dir],
155 [ --with-Qt-include-dir=DIR
156 Qt header files are in DIR])
157 AC_ARG_WITH([Qt-bin-dir],
158 [ --with-Qt-bin-dir=DIR Qt utilities such as moc and uic are in DIR])
159 AC_ARG_WITH([Qt-lib-dir],
160 [ --with-Qt-lib-dir=DIR The Qt library is in DIR])
161 AC_ARG_WITH([Qt-lib],
162 [ --with-Qt-lib=LIB Use -lLIB to link with the Qt library])
163 if test x"$with_Qt_dir" = x"no" ||
164 test x"$with_Qt_include-dir" = x"no" ||
165 test x"$with_Qt_bin_dir" = x"no" ||
166 test x"$with_Qt_lib_dir" = x"no" ||
167 test x"$with_Qt_lib" = x"no"; then
168 # user disabled Qt. Leave cache alone.
169 have_qt="User disabled Qt."
170 else
171 # "yes" is a bogus option
172 if test x"$with_Qt_dir" = xyes; then
173 with_Qt_dir=
174 fi
175 if test x"$with_Qt_include_dir" = xyes; then
176 with_Qt_include_dir=
177 fi
178 if test x"$with_Qt_bin_dir" = xyes; then
179 with_Qt_bin_dir=
180 fi
181 if test x"$with_Qt_lib_dir" = xyes; then
182 with_Qt_lib_dir=
183 fi
184 if test x"$with_Qt_lib" = xyes; then
185 with_Qt_lib=
186 fi
187 # No Qt unless we discover otherwise
188 have_qt=no
189 # Check whether we are requested to link with a specific version
190 if test x"$with_Qt_lib" != x; then
191 bnv_qt_lib="$with_Qt_lib"
192 fi
193 # Check whether we were supplied with an answer already
194 if test x"$with_Qt_dir" != x; then
195 have_qt=yes
196 bnv_qt_dir="$with_Qt_dir"
197 if test x`echo $with_Qt_dir | grep qt3` != x; then
198 # qt3
199 bnv_qt_include_dir="$with_Qt_dir/include"
200 else
201 # Qt4
202 bnv_qt_include_dir="$with_Qt_dir/include"
203 # FH: due to laziness of certain programmers and to simulate qmake
204 # bhavior, we have to add all subdirectories, too
205 for dir in `ls $with_Qt_dir/include`
206 do
207 bnv_qt_include_dir="${bnv_qt_include_dir} $with_Qt_dir/include/$dir"
208 done
209 fi
210 bnv_qt_bin_dir="$with_Qt_dir/bin"
211 if test x"$with_Qt_lib_dir" != x; then
212 bnv_qt_lib_dir="$with_Qt_lib_dir"
213 else
214 bnv_qt_lib_dir="$with_Qt_dir/lib"
215 fi
216 # Only search for the lib if the user did not define one already
217 if test x"$bnv_qt_lib" = x; then
218 bnv_qt_libs=""
219 for lib in [[gG]]ui [[Cc]]ore 3D
220 do
221 bnv_qt_lib="`ls $bnv_qt_lib_dir/libqt${lib}* $bnv_qt_lib_dir/libQt${lib}* 2>/dev/null | sed -n 1p |
222 sed s@$bnv_qt_lib_dir/lib@@ | [sed s@[.].*@@]`"
223 echo "LIB $lib: $bnv_qt_lib"
224 if test ! -z $bnv_qt_lib; then
225 bnv_qt_libs="$bnv_qt_libs -l$bnv_qt_lib"
226 fi
227 done
228 fi
229 bnv_qt_LIBS="-L$bnv_qt_lib_dir $bnv_qt_libs $X_PRE_LIBS $X_LIBS -lX11 -lXext $X_EXTRA_LIBS"
230 else
231 # Use cached value or do search, starting with suggestions from
232 # the command line
233 AC_CACHE_VAL(bnv_cv_have_qt,
234 [
235 # We are not given a solution and there is no cached value.
236 bnv_qt_dir=NO
237 bnv_qt_include_dir=NO
238 bnv_qt_lib_dir=NO
239 if test x"$bnv_qt_lib" = x; then
240 bnv_qt_lib=NO
241 fi
242 BNV_PATH_QT_DIRECT
243 if test "$bnv_qt_dir" = NO ||
244 test "$bnv_qt_include_dir" = NO ||
245 test "$bnv_qt_lib_dir" = NO ||
246 test "$bnv_qt_lib" = NO; then
247 # Problem with finding complete Qt. Cache the known absence of Qt.
248 bnv_cv_have_qt="have_qt=no"
249 else
250 # Record where we found Qt for the cache.
251 bnv_cv_have_qt="have_qt=yes \
252 bnv_qt_dir=$bnv_qt_dir \
253 bnv_qt_include_dir=$bnv_qt_include_dir \
254 bnv_qt_bin_dir=$bnv_qt_bin_dir \
255 bnv_qt_LIBS=\"$bnv_qt_LIBS\""
256 fi
257 ])dnl
258 eval "$bnv_cv_have_qt"
259 fi # all $bnv_qt_* are set
260 fi # $have_qt reflects the system status
261 if test x"$have_qt" = xyes; then
262 # FH: expect a list of dirs and add all
263 for dir in $bnv_qt_include_dir
264 do
265 QT_CXXFLAGS="${QT_CXXFLAGS} -I${dir}"
266 done
267 if test x"$bnv_qt_lib" = xqt-mt; then
268 QT_CXXFLAGS="$QT_CXXFLAGS -DQT_THREAD_SUPPORT"
269 fi
270 QT_DIR="$bnv_qt_dir"
271 QT_LIBS="$bnv_qt_LIBS"
272 # If bnv_qt_dir is defined, utilities are expected to be in the
273 # bin subdirectory
274 if test x"$bnv_qt_dir" != x; then
275 if test -x "$bnv_qt_dir/bin/uic"; then
276 QT_UIC="$bnv_qt_dir/bin/uic"
277 else
278 # Old versions of Qt don't have uic
279 QT_UIC=
280 fi
281 QT_MOC="$bnv_qt_dir/bin/moc"
282 QT_RCC="$bnv_qt_dir/bin/rcc"
283 else
284 # Or maybe we are told where to look for the utilities
285 if test x"$bnv_qt_bin_dir" != x; then
286 if test -x "$bnv_qt_bin_dir/uic"; then
287 QT_UIC="$bnv_qt_bin_dir/uic"
288 else
289 # Old versions of Qt don't have uic
290 QT_UIC=
291 fi
292 QT_MOC="$bnv_qt_bin_dir/moc"
293 QT_RCC="$bnv_qt_bin_dir/rcc"
294 else
295 # Last possibility is that they are in $PATH
296 QT_UIC="`which uic`"
297 QT_MOC="`which moc`"
298 QT_RCC="`which rcc`"
299 fi
300 fi
301 # All variables are defined, report the result
302 AC_MSG_RESULT([$have_qt:
303 QT_CXXFLAGS=$QT_CXXFLAGS
304 QT_DIR=$QT_DIR
305 QT_LIBS=$QT_LIBS
306 QT_UIC=$QT_UIC
307 QT_MOC=$QT_MOC
308 QT_RCC=$QT_RCC])
309 else
310 # Qt was not found
311 QT_CXXFLAGS=
312 QT_DIR=
313 QT_LIBS=
314 QT_UIC=
315 QT_MOC=
316 QT_RCC=
317 AC_MSG_RESULT($have_qt)
318 fi
319 AC_SUBST(QT_CXXFLAGS)
320 AC_SUBST(QT_DIR)
321 AC_SUBST(QT_LIBS)
322 AC_SUBST(QT_UIC)
323 AC_SUBST(QT_MOC)
324 AC_SUBST(QT_RCC)
325
326 #### Being paranoid:
327 if test x"$have_qt" = xyes; then
328 AC_MSG_CHECKING(correct functioning of Qt installation)
329 AC_CACHE_VAL(bnv_cv_qt_test_result,
330 [
331 cat > bnv_qt_test.h << EOF
332#include <qobject.h>
333class Test : public QObject
334{
335Q_OBJECT
336public:
337 Test() {}
338 ~Test() {}
339public slots:
340 void receive() {}
341signals:
342 void send();
343};
344EOF
345
346 cat > bnv_qt_main.$ac_ext << EOF
347#include "bnv_qt_test.h"
348#include <qapplication.h>
349int main( int argc, char **argv )
350{
351 QApplication app( argc, argv );
352 Test t;
353 QObject::connect( &t, SIGNAL(send()), &t, SLOT(receive()) );
354}
355EOF
356
357 bnv_cv_qt_test_result="failure"
358 bnv_try_1="$QT_MOC bnv_qt_test.h -o moc_bnv_qt_test.$ac_ext >/dev/null 2>/dev/null"
359 AC_TRY_EVAL(bnv_try_1)
360 if test x"$ac_status" != x0; then
361 echo "$bnv_err_1" >&AC_FD_CC
362 echo "configure: could not run $QT_MOC on:" >&AC_FD_CC
363 cat bnv_qt_test.h >&AC_FD_CC
364 else
365 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"
366 AC_TRY_EVAL(bnv_try_2)
367 if test x"$ac_status" != x0; then
368 echo "$bnv_err_2" >&AC_FD_CC
369 echo "configure: could not compile:" >&AC_FD_CC
370 cat moc_bnv_qt_test.$ac_ext >&AC_FD_CC
371 else
372 bnv_try_3="$CXX $QT_CXXFLAGS -c $CXXFLAGS -o bnv_qt_main.o bnv_qt_main.$ac_ext >/dev/null 2>/dev/null"
373 AC_TRY_EVAL(bnv_try_3)
374 if test x"$ac_status" != x0; then
375 echo "$bnv_err_3" >&AC_FD_CC
376 echo "configure: could not compile:" >&AC_FD_CC
377 cat bnv_qt_main.$ac_ext >&AC_FD_CC
378 else
379 bnv_try_4="$CXX -o bnv_qt_main bnv_qt_main.o moc_bnv_qt_test.o $QT_LIBS $LIBS >/dev/null 2>/dev/null"
380 AC_TRY_EVAL(bnv_try_4)
381 if test x"$ac_status" != x0; then
382 echo "$bnv_err_4" >&AC_FD_CC
383 else
384 bnv_cv_qt_test_result="success"
385 fi
386 fi
387 fi
388 fi
389 ])dnl AC_CACHE_VAL bnv_cv_qt_test_result
390 AC_MSG_RESULT([$bnv_cv_qt_test_result]);
391 if test x"$bnv_cv_qt_test_result" = "xfailure"; then
392 AC_MSG_ERROR([Failed to find matching components of a complete
393 Qt installation. Try using more options,
394 see ./configure --help.])
395 fi
396
397 rm -f bnv_qt_test.h moc_bnv_qt_test.$ac_ext moc_bnv_qt_test.o \
398 bnv_qt_main.$ac_ext bnv_qt_main.o bnv_qt_main
399 fi
400])
401
402dnl Internal subroutine of BNV_HAVE_QT
403dnl Set bnv_qt_dir bnv_qt_include_dir bnv_qt_bin_dir bnv_qt_lib_dir bnv_qt_lib
404AC_DEFUN([BNV_PATH_QT_DIRECT],
405[
406 ## Binary utilities ##
407 if test x"$with_Qt_bin_dir" != x; then
408 bnv_qt_bin_dir=$with_Qt_bin_dir
409 fi
410 ## Look for header files ##
411 if test x"$with_Qt_include_dir" != x; then
412 bnv_qt_include_dir="$with_Qt_include_dir"
413 else
414 # The following header file is expected to define QT_VERSION.
415 qt_direct_test_header=qglobal.h
416 # Look for the header file in a standard set of common directories.
417 # FH: added some more system directories, also fuer qt4
418 bnv_include_path_list="
419 /usr/include
420 `ls -dr ${QTDIR}/include 2>/dev/null`
421 `ls -dr /usr/share/qt*/include/ 2>/dev/null`
422 `ls -dr /usr/share/qt*/include/Qt/ 2>/dev/null`
423 `ls -dr /usr/include/qt* 2>/dev/null`
424 `ls -dr /usr/lib/qt*/include 2>/dev/null`
425 `ls -dr /usr/local/qt*/include 2>/dev/null`
426 `ls -dr /opt/qt*/include 2>/dev/null`
427 `ls -dr /Developer/qt*/include 2>/dev/null`
428 "
429 for bnv_dir in $bnv_include_path_list; do
430 if test -r "$bnv_dir/$qt_direct_test_header"; then
431 bnv_dirs="$bnv_dirs $bnv_dir"
432 fi
433 done
434 # Now look for the newest in this list
435 bnv_prev_ver=0
436 for bnv_dir in $bnv_dirs; do
437 bnv_this_ver=`egrep -w '#define QT_VERSION' $bnv_dir/$qt_direct_test_header | sed s/'#define QT_VERSION'//`
438 if expr $bnv_this_ver '>' $bnv_prev_ver > /dev/null; then
439 bnv_qt_include_dir=$bnv_dir
440 bnv_prev_ver=$bnv_this_ver
441 fi
442 done
443 fi dnl Found header files.
444
445 # Are these headers located in a traditional Trolltech installation?
446 # That would be $bnv_qt_include_dir stripped from its last element:
447 bnv_possible_qt_dir=`dirname $bnv_qt_include_dir`
448 if (test -x $bnv_possible_qt_dir/bin/moc) &&
449 ((ls $bnv_possible_qt_dir/lib/lib[[Qq]]t* > /dev/null 2>/dev/null) ||
450 (ls $bnv_possible_qt_dir/lib64/lib[[Qq]]t* > /dev/null 2>/dev/null)); then
451 # Then the rest is a piece of cake
452 bnv_qt_dir=$bnv_possible_qt_dir
453 bnv_qt_bin_dir="$bnv_qt_dir/bin"
454 if test x"$with_Qt_lib_dir" != x; then
455 bnv_qt_lib_dir="$with_Qt_lib_dir"
456 else
457 if (test -d $bnv_qt_dir/lib64); then
458 bnv_qt_lib_dir="$bnv_qt_dir/lib64"
459 else
460 bnv_qt_lib_dir="$bnv_qt_dir/lib"
461 fi
462 fi
463 # Only look for lib if the user did not supply it already
464 if test x"$bnv_qt_lib" = xNO; then
465 bnv_qt_lib="`ls $bnv_qt_lib_dir/lib[[Qq]]t* | sed -n 1p |
466 sed s@$bnv_qt_lib_dir/lib@@ | [sed s@[.].*@@]`"
467 fi
468 bnv_qt_LIBS="-L$bnv_qt_lib_dir -l$bnv_qt_lib $X_PRE_LIBS $X_LIBS -lX11 -lXext $X_EXTRA_LIBS"
469 else
470 # There is no valid definition for $QTDIR as Trolltech likes to see it
471 bnv_qt_dir=
472 ## Look for Qt library ##
473 if test x"$with_Qt_lib_dir" != x; then
474 bnv_qt_lib_dir="$with_Qt_lib_dir"
475 # Only look for lib if the user did not supply it already
476 if test x"$bnv_qt_lib" = xNO; then
477 bnv_qt_lib="`ls $bnv_qt_lib_dir/lib[[Qq]]t* | sed -n 1p |
478 sed s@$bnv_qt_lib_dir/lib@@ | [sed s@[.].*@@]`"
479 fi
480 bnv_qt_LIBS="-L$bnv_qt_lib_dir -l$bnv_qt_lib $X_PRE_LIBS $X_LIBS -lX11 -lXext $X_EXTRA_LIBS"
481 else
482 # Normally, when there is no traditional Trolltech installation,
483 # the library is installed in a place where the linker finds it
484 # automatically.
485 # If the user did not define the library name, try with qt
486 if test x"$bnv_qt_lib" = xNO; then
487 bnv_qt_lib=qt
488 fi
489 qt_direct_test_header=qapplication.h
490 qt_direct_test_main="
491 int argc;
492 char ** argv;
493 QApplication app(argc,argv);
494 "
495 # See if we find the library without any special options.
496 # Don't add top $LIBS permanently yet
497 bnv_save_LIBS="$LIBS"
498 LIBS="-l$bnv_qt_lib $X_PRE_LIBS $X_LIBS -lX11 -lXext $X_EXTRA_LIBS"
499 bnv_qt_LIBS="$LIBS"
500 bnv_save_CXXFLAGS="$CXXFLAGS"
501 CXXFLAGS="-I$bnv_qt_include_dir"
502 AC_TRY_LINK([#include <$qt_direct_test_header>],
503 $qt_direct_test_main,
504 [
505 # Success.
506 # We can link with no special library directory.
507 bnv_qt_lib_dir=
508 ], [
509 # That did not work. Try the multi-threaded version
510 echo "Non-critical error, please neglect the above." >&AC_FD_CC
511 bnv_qt_lib=qt-mt
512 LIBS="-l$bnv_qt_lib $X_PRE_LIBS $X_LIBS -lX11 -lXext $X_EXTRA_LIBS"
513 AC_TRY_LINK([#include <$qt_direct_test_header>],
514 $qt_direct_test_main,
515 [
516 # Success.
517 # We can link with no special library directory.
518 bnv_qt_lib_dir=
519 ], [
520 # That did not work. Try the OpenGL version
521 echo "Non-critical error, please neglect the above." >&AC_FD_CC
522 bnv_qt_lib=qt-gl
523 LIBS="-l$bnv_qt_lib $X_PRE_LIBS $X_LIBS -lX11 -lXext $X_EXTRA_LIBS"
524 AC_TRY_LINK([#include <$qt_direct_test_header>],
525 $qt_direct_test_main,
526 [
527 # Success.
528 # We can link with no special library directory.
529 bnv_qt_lib_dir=
530 ], [
531 # That did not work. Maybe a library version I don't know about?
532 echo "Non-critical error, please neglect the above." >&AC_FD_CC
533 # Look for some Qt lib in a standard set of common directories.
534 bnv_dir_list="
535 `echo $bnv_qt_includes | sed ss/includess`
536 /lib
537 /usr/lib64
538 /usr/lib
539 /usr/local/lib64
540 /usr/local/lib
541 /opt/lib64
542 /opt/lib
543 `ls -dr /usr/lib64/qt* 2>/dev/null`
544 `ls -dr /usr/lib64/qt*/lib64 2>/dev/null`
545 `ls -dr /usr/lib/qt* 2>/dev/null`
546 `ls -dr /usr/local/qt* 2>/dev/null`
547 `ls -dr /opt/qt* 2>/dev/null`
548 "
549 for bnv_dir in $bnv_dir_list; do
550 if ls $bnv_dir/lib[[Qq]]t* >/dev/null 2>/dev/null; then
551 # Gamble that it's the first one...
552 bnv_qt_lib="`ls $bnv_dir/lib[[Qq]]t* | sed -n 1p |
553 sed s@$bnv_dir/lib@@ | sed s/[[.]].*//`"
554 bnv_qt_lib_dir="$bnv_dir"
555 break
556 fi
557 done
558 # Try with that one
559 LIBS="-l$bnv_qt_lib $X_PRE_LIBS $X_LIBS -lX11 -lXext $X_EXTRA_LIBS"
560 AC_TRY_LINK([#include <$qt_direct_test_header>],
561 $qt_direct_test_main,
562 [
563 # Success.
564 # We can link with no special library directory.
565 bnv_qt_lib_dir=
566 ], [
567 :
568 # Leave bnv_qt_lib_dir defined
569 ])
570 ])
571 ])
572 ])
573 if test x"$bnv_qt_lib_dir" != x; then
574 bnv_qt_LIBS="-L$bnv_qt_lib_dir $LIBS"
575 else
576 bnv_qt_LIBS="$LIBS"
577 fi
578 LIBS="$bnv_save_LIBS"
579 CXXFLAGS="$bnv_save_CXXFLAGS"
580 fi dnl $with_Qt_lib_dir was not given
581 fi dnl Done setting up for non-traditional Trolltech installation
582])
Note: See TracBrowser for help on using the repository browser.