Changeset 1324


Ignore:
Timestamp:
May 24, 2008, 6:00:18 AM (15 years ago)
Author:
Peter
Message:

Boost is now required (ticket:370). Boost 1.33 is required, which is a
pretty arbitrary number. I happen to have 1.33 installed on my
machine. If someone can test that it works with an earlier version, I
am more than happy to soften this requirement. Currently, there is no
linking to Boost. I added a file yat.am that is included in most of
our Makefile.am, to avoid parallel modifications.

Location:
trunk
Files:
2 added
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/configure.ac

    r1321 r1324  
    9191   LIBS="-lgsl $LIBS"
    9292fi
     93
     94# Boost http://www.boost.org
     95m4_sinclude(./build_support/ax_boost.m4)
     96AX_BOOST("1.33",[boost_found="yes"], [echo AHA])
    9397
    9498# Checks for header files.
  • trunk/test/Makefile.am

    r1292 r1324  
    5353LDADD = @top_builddir@/$(YAT_LIB_LOCATION)/$(YAT_LIB) libyattest.la
    5454
    55 AM_CPPFLAGS = -I@top_srcdir@
     55include $(top_srcdir)/build_support/yat.am
    5656
    5757libyattest_la_SOURCES = Suite.cc
  • trunk/yat/classifier/Makefile.am

    r1275 r1324  
    2222# 02111-1307, USA.
    2323
    24 AM_CPPFLAGS = -I@top_srcdir@
     24include $(top_srcdir)/build_support/yat.am
    2525
    2626noinst_LTLIBRARIES = libclassifier.la
  • trunk/yat/random/Makefile.am

    r1275 r1324  
    2323# 02111-1307, USA.
    2424
    25 AM_CPPFLAGS = -I@top_srcdir@
     25include $(top_srcdir)/build_support/yat.am
    2626
    2727noinst_LTLIBRARIES = librandom.la
  • trunk/yat/regression/Makefile.am

    r1000 r1324  
    2323# 02111-1307, USA.
    2424
    25 AM_CPPFLAGS = -I@top_srcdir@
     25include $(top_srcdir)/build_support/yat.am
    2626
    2727noinst_LTLIBRARIES = libregression.la
  • trunk/yat/statistics/Makefile.am

    r1317 r1324  
    2424# 02111-1307, USA.
    2525
    26 AM_CPPFLAGS = -I@top_srcdir@
     26include $(top_srcdir)/build_support/yat.am
    2727
    2828noinst_LTLIBRARIES = libstatistics.la
  • trunk/yat/utility/Makefile.am

    r1321 r1324  
    2323# 02111-1307, USA.
    2424
    25 AM_CPPFLAGS = -I@top_srcdir@
     25include $(top_srcdir)/build_support/yat.am
    2626
    2727noinst_LTLIBRARIES = libutility.la
Note: See TracChangeset for help on using the changeset viewer.