Changeset c5412f in git for libpolys/tests/Makefile.am


Ignore:
Timestamp:
Apr 20, 2011, 6:01:43 PM (13 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
2945379dfb56330fb50187871415af6e9c6ec7d3
Parents:
13366d2378411800abb16557d58c0777dd923739
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-04-20 18:01:43+02:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:31:22+01:00
Message:
FIX: use -ldl whenever linking against DYNAMIC version of libpolys...
TODO: fix the configure!
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libpolys/tests/Makefile.am

    r13366d rc5412f  
    2222polys_test_SOURCES = polys_test_runner.cpp
    2323
     24
     25if ENABLE_P_PROCS_DYNAMIC
     26  ### TODO -> ${LD_LIBS} ??? instead of -ldl,
     27  ### add it to AM_LDFLAGS?
     28  USE_P_PROCS_DYNAMIC_LD = -ldl
     29else
     30  USE_P_PROCS_DYNAMIC_LD =
     31endif
     32
     33
    2434coeffs_test_LDADD = -lcoeffs_g ${GMP_LIBS} -lresources_g -lreporter_g -lmisc -lomalloc_debug
    25 polys_test_LDADD = -lpolys_g -ldl $(coeffs_test_LDADD)
     35polys_test_LDADD = -lpolys_g $(USE_P_PROCS_DYNAMIC_LD) $(coeffs_test_LDADD)
    2636
    2737
Note: See TracChangeset for help on using the changeset viewer.