~ubuntu-branches/ubuntu/trusty/avr-libc/trusty

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Package Import Robot
  • Author(s): Hakan Ardo
  • Date: 2012-05-23 10:30:07 UTC
  • mfrom: (1.1.11) (4.1.7 sid)
  • Revision ID: package-import@ubuntu.com-20120523103007-h7u5fhm6n13wds9e
Tags: 1:1.8.0-2
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31
31
# POSSIBILITY OF SUCH DAMAGE.
32
32
#
33
 
# $Id: configure.ac 2214 2011-02-16 20:53:25Z joerg_wunsch $
 
33
# $Id: configure.ac 2272 2011-12-29 08:49:21Z joerg_wunsch $
34
34
#
35
35
# Process this file with autoconf to produce a configure script.
36
36
#
38
38
dnl library versioning -- modify these on releases
39
39
dnl        macro name           value            description
40
40
m4_define([avr_libc_major],    [1])dnl           major version
41
 
m4_define([avr_libc_minor],    [7])dnl           minor version
42
 
m4_define([avr_libc_revision], [1])dnl           revision (dot-dot version)
43
 
m4_define([avr_libc_reldate],  [20110216])dnl    release date
 
41
m4_define([avr_libc_minor],    [8])dnl           minor version
 
42
m4_define([avr_libc_revision], [0])dnl           revision (dot-dot version)
 
43
m4_define([avr_libc_revision_suffix], [])dnl  revision suffix (if any)
 
44
m4_define([avr_libc_reldate],  [20111228])dnl    release date
44
45
dnl end of library versioning data
45
46
 
46
 
dnl odd minor number marks a development branch, append date to version there
47
47
m4_define([avr_libc_version],
48
 
          avr_libc_major.avr_libc_minor.avr_libc_revision)dnl
 
48
          avr_libc_major.avr_libc_minor.avr_libc_revision()avr_libc_revision_suffix)dnl
49
49
m4_define([avr_libc_version_numeric],
50
50
          m4_eval(10000 * avr_libc_major + dnl
51
51
                    100 * avr_libc_minor + dnl
54
54
AC_INIT(avr-libc, avr_libc_version, avr-libc-dev@nongnu.org)
55
55
 
56
56
AC_PREREQ(2.59)
57
 
AC_REVISION($Revision: 2214 $)
 
57
AC_REVISION($Revision: 2272 $)
58
58
 
59
59
AC_CONFIG_SRCDIR([doc/examples/demo/demo.c])
60
60
AC_CONFIG_HEADER([config.h])
145
145
# Make sure that we found the right avr cross-compiler.
146
146
 
147
147
case "${CC}" in
148
 
   *avr-gcc*) ;;
 
148
   *avr*gcc*) ;;
149
149
   *) AC_MSG_ERROR(Wrong C compiler found; check the PATH!) ;;
150
150
esac
151
151
case "${AS}" in
152
 
   *avr-as*) ;;
 
152
   *avr*as*) ;;
153
153
   *) AC_MSG_ERROR(Wrong assembler found; check the PATH!) ;;
154
154
esac
155
155
case "${AR}" in
156
 
   *avr-ar*) ;;
 
156
   *avr*ar*) ;;
157
157
   *) AC_MSG_ERROR(Wrong archiver found; check the PATH!) ;;
158
158
esac
159
159
case "${RANLIB}" in
160
 
   *avr-ranlib*) ;;
 
160
   *avr*ranlib*) ;;
161
161
   *) AC_MSG_ERROR(Wrong ranlib found; check the PATH!) ;;
162
162
esac
163
163