~ubuntu-branches/ubuntu/utopic/atlas-cpp/utopic

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Package Import Robot
  • Author(s): Stephen M. Webb
  • Date: 2012-03-03 10:39:45 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20120303103945-3i40c27uefb26epw
Tags: 0.6.2-1
* new upstream release
* new maintainer (Debian games team) (closes: #653950)
* converted to 3.0 (quilt) source format
* updated Standards-Version to 3.9.3
* debian/control: added Vcs- fields
* regenerate the autotools at build time to fix rpath problems
* debian/libatlas-cpp-0.6-1.symbols: added
* added .doc-base files for the -doc package
* removed unneeded patches
* added a manpage for the atlas_convert tool
* added lintian override for multiple DSOs in package
* added zlib and libbz build dependencies
* debian/rules: convert to use dh build sequencer
* use xz compression for packaging
* moved to debhelper compat level 9, including multi-arch
* debian/copyright: convert to DEP-5 format

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
dnl Initialise autoconf
2
2
 
3
 
AC_INIT([Atlas-C++],[0.6.1],[alriddoch@googlemail.com],[Atlas-C++])
 
3
AC_INIT([Atlas-C++],[0.6.2],[alriddoch@googlemail.com],[Atlas-C++])
4
4
AC_CONFIG_SRCDIR([Atlas/Bridge.cpp])
5
5
AC_CONFIG_HEADERS([config.h])
6
6
 
14
14
 
15
15
dnl Initialise automake
16
16
 
17
 
INTERFACE_VERSION='-version-info 1:0:0'
 
17
ATLAS_CURRENT=1
 
18
INTERFACE_VERSION="-version-info $ATLAS_CURRENT:0:0"
18
19
 
 
20
AC_SUBST(ATLAS_CURRENT)
19
21
AC_SUBST(INTERFACE_VERSION)
20
22
 
21
23
dnl Test for GNU libtool
33
35
        if test "$enableval" = "yes"; then
34
36
            CXXFLAGS="$CXXFLAGS -Wall -Werror -DDEBUG"
35
37
        else
36
 
            CXXFLAGS="$CXXFLAGS -Wall -Werror -DNDEBUG"
 
38
            CXXFLAGS="$CXXFLAGS -Wall -DNDEBUG"
37
39
        fi
38
40
    ],[
39
 
        CXXFLAGS="$CXXFLAGS -Wall -Werror -DNDEBUG"
 
41
        CXXFLAGS="$CXXFLAGS -Wall -DNDEBUG"
40
42
    ]
41
43
)
42
44
 
43
45
AC_LANG(C++)
44
46
 
45
 
dnl Test for <cassert> header file
46
 
 
47
 
AC_CHECK_HEADERS(cassert)
48
 
 
49
 
dnl Test for <cstdio> header file
50
 
 
51
 
AC_CHECK_HEADERS(cstdio)
52
 
 
53
 
dnl Test for <iostream> header file
54
 
 
55
 
AC_CHECK_HEADERS(iostream)
56
 
 
57
 
dnl Test for <list> header file
58
 
 
59
 
AC_CHECK_HEADERS(list)
60
 
 
61
 
dnl Test for <map> header file
62
 
 
63
 
AC_CHECK_HEADERS(map)
64
 
 
65
 
dnl Test for <cstdlib> header file
66
 
 
67
 
AC_CHECK_HEADERS(string)
68
 
 
69
 
dnl Test for <vector> header file
70
 
 
71
 
AC_CHECK_HEADERS(vector)
72
 
 
73
47
OTHER_LIBS=
74
48
 
75
49
dnl Test for gzip compression library
141
115
        Atlas/Net/Makefile
142
116
        Atlas/Objects/Makefile
143
117
        tests/Makefile
144
 
        tests/unit/Makefile
145
118
        tests/Objects/Makefile
146
119
        tools/Makefile
147
120
        benchmark/Makefile
148
121
        tutorial/Makefile
149
122
        atlas-cpp.spec
 
123
        mingw32-atlas-cpp.spec
150
124
        atlascpp-0.6.pc
151
125
])
152
126
AC_OUTPUT