Changeset 115378 for configure.ac


Ignore:
Timestamp:
Dec 22, 2010, 9:16:51 AM (15 years ago)
Author:
Frederik Heber <heber@…>
Children:
9098f9
Parents:
1d77e1a
git-author:
Frederik Heber <heber@…> (12/22/10 08:22:13)
git-committer:
Frederik Heber <heber@…> (12/22/10 09:16:51)
Message:

Changes to allow for (re-)incorporation of CodePatterns into MoleCuilder.

library:

  • no more suffixed with version, this should be dealt by pkg-config (.pc) or a contained version information.
  • corrected and extended .pc file
  • m4 macro ax_codepatterns.m4 created to allow for easy checking with autotools

codepatterns-config:

  • if pkg-config fails there is a small tool that tells about necessary cflags and the likes to compile with CodePatterns library (this was developed before we noticed we had a (half-)working pkg-config present).

smaller changes:

  • moved all Helpers files to src/Helpers (again).
  • changed include paths for Assert.hpp, ... accordingly.
  • version is not prefixed with "v" anymore.
  • small stuff in fast_functions.hpp is absolete (stl::algorithms)
  • Helpers/enumeration.hpp contains enumeration class ("iterable enum")
File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure.ac

    r1d77e1a r115378  
    33
    44AC_PREREQ([2.65])
    5 AC_INIT([CodePatterns], [0.0.1], [heber@ins.uni-bonn.de])
     5AC_INIT([CodePatterns], [1.0.0], [heber@ins.uni-bonn.de], [codepatterns], [http://trac.ins.uni-bonn.de/projects/CodePatterns/])
    66AC_CONFIG_AUX_DIR(config)
    77AC_CONFIG_SRCDIR([src/Patterns/Singleton_impl.hpp])
     
    3535AX_BOOST_BASE([1.40])
    3636AX_BOOST_THREAD
     37AX_BOOST_PROGRAM_OPTIONS
    3738
    3839# Checks for typedefs, structures, and compiler characteristics.
     
    4546AC_CHECK_FUNCS([floor memset])
    4647
     48# -${CODEPATTERNS_API_VERSION}
    4749AC_CONFIG_FILES([
    48   CodePatterns-${CODEPATTERNS_API_VERSION}.pc:CodePatterns.pc.in])
     50  CodePatterns.pc:CodePatterns.pc.in])
    4951AC_CONFIG_FILES([
    5052        Makefile
    5153        doc/Makefile
    5254        src/Makefile
    53         src/Patterns/Makefile
    5455        ])
    5556AC_CONFIG_FILES([
Note: See TracChangeset for help on using the changeset viewer.