Changeset 004ae7 for m4


Ignore:
Timestamp:
Nov 3, 2011, 7:21:42 PM (13 years ago)
Author:
Frederik Heber <heber@…>
Branches:
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
Children:
862b6a
Parents:
bbff92
git-author:
Frederik Heber <heber@…> (11/03/11 15:44:19)
git-committer:
Frederik Heber <heber@…> (11/03/11 19:21:42)
Message:

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.
Location:
m4
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • m4/bnv_have_qt.m4

    rbbff92 r004ae7  
    102102dnl   - removed libXt and libXi which are just shared libs linked in
    103103dnl     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
    104113
    105114dnl Copyright (C) 2001, 2002, 2003, 2005, 2006 Bastiaan Veelo
     
    207216      # Only search for the lib if the user did not define one already
    208217      if test x"$bnv_qt_lib" = x; then
    209         bnv_qt_lib="`ls $bnv_qt_lib_dir/lib[[Qq]]t* | sed -n 1p |
     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 |
    210222                     sed s@$bnv_qt_lib_dir/lib@@ | [sed s@[.].*@@]`"
    211       fi
    212       bnv_qt_LIBS="-L$bnv_qt_lib_dir -l$bnv_qt_lib $X_PRE_LIBS $X_LIBS -lX11 -lXext $X_EXTRA_LIBS"
     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"
    213230    else
    214231      # Use cached value or do search, starting with suggestions from
     
    360377            cat bnv_qt_main.$ac_ext >&AC_FD_CC
    361378          else
    362             bnv_try_4="$CXX $QT_LIBS $LIBS -o bnv_qt_main bnv_qt_main.o moc_bnv_qt_test.o >/dev/null 2>/dev/null"
     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"
    363380            AC_TRY_EVAL(bnv_try_4)
    364381            if test x"$ac_status" != x0; then
  • m4/boost.m4

    rbbff92 r004ae7  
    135135    # If the user provided a value to --with-boost, use it and only it.
    136136    case $with_boost in #(
    137       ''|yes) set x '' /opt/local/include /usr/local/include /opt/include \
    138                  /usr/include C:/Boost/include;; #(
     137      ''|yes) set x '' /usr/local/include /usr/include \
     138              /opt/local/include /opt/include \
     139              C:/Boost/include;; #(
    139140      *)      set x "$with_boost/include" "$with_boost";;
    140141    esac
     
    380381    test x"$with_boost" = x && boost_tmp_lib=${boost_cv_inc_path%/include}
    381382    for boost_ldpath in "$boost_tmp_lib/lib" '' \
    382              /opt/local/lib* /usr/local/lib* /opt/lib* /usr/lib* \
    383              "$with_boost" C:/Boost/lib /lib*
     383             /usr/local/lib* /usr/lib* \
     384             "$with_boost" C:/Boost/lib /lib* \
     385             /opt/local/lib* /opt/lib*
    384386    do
    385387      test -e "$boost_ldpath" || continue
Note: See TracChangeset for help on using the changeset viewer.