Deleted Added
full compact
Makefile.am (1.1.1.2) Makefile.am (1.1.1.3)
1# Makefile.am for libevent
2# Copyright 2000-2007 Niels Provos
3# Copyright 2007-2012 Niels Provos and Nick Mathewson
4#
5# See LICENSE for copying information.
6
7# 'foreign' means that we're not enforcing GNU package rules strictly.
8# '1.9' means that we need automake 1.9 or later (and we do).

--- 24 unchanged lines hidden (view full) ---

33# Return (current:revision+1:age)
34# If the ABI changed, but it's backward-compatible:
35# Return (current+1:0:age+1)
36# If the ABI changed and it isn't backward-compatible:
37# Return (current+1:0:0)
38#
39# Once an RC is out, DO NOT MAKE ANY ABI-BREAKING CHANGES IN THAT SERIES
40# UNLESS YOU REALLY REALLY HAVE TO.
1# Makefile.am for libevent
2# Copyright 2000-2007 Niels Provos
3# Copyright 2007-2012 Niels Provos and Nick Mathewson
4#
5# See LICENSE for copying information.
6
7# 'foreign' means that we're not enforcing GNU package rules strictly.
8# '1.9' means that we need automake 1.9 or later (and we do).

--- 24 unchanged lines hidden (view full) ---

33# Return (current:revision+1:age)
34# If the ABI changed, but it's backward-compatible:
35# Return (current+1:0:age+1)
36# If the ABI changed and it isn't backward-compatible:
37# Return (current+1:0:0)
38#
39# Once an RC is out, DO NOT MAKE ANY ABI-BREAKING CHANGES IN THAT SERIES
40# UNLESS YOU REALLY REALLY HAVE TO.
41VERSION_INFO = 3:0:0
41VERSION_INFO = 5:0:0
42
43# History: RELEASE VERSION_INFO
44# 2.0.1-alpha -- 2.0 1:0:0
45# 2.0.2-alpha -- 2:0:0
46# 2.0.3-alpha -- 2:0:0 (should have incremented; didn't.)
47# 2.0.4-alpha -- 3:0:0
48# 2.0.5-beta -- 4:0:0
49# 2.0.6-rc -- 2.0 2:0:0

--- 12 unchanged lines hidden (view full) ---

62# 2.0.19-stable-- 2.0 6:7:1 (No ABI change)
63# 2.0.20-stable-- 2.0 6:8:1 (No ABI change)
64# 2.0.21-stable-- 2.0 6:9:1 (No ABI change)
65#
66# For Libevent 2.1:
67# 2.1.1-alpha -- 2.1 1:0:0
68# 2.1.2-alpha -- 2.1 1:0:0 (should have been 2:0:1)
69# 2.1.3-alpha -- 2.1 3:0:0 (ABI changed slightly)
42
43# History: RELEASE VERSION_INFO
44# 2.0.1-alpha -- 2.0 1:0:0
45# 2.0.2-alpha -- 2:0:0
46# 2.0.3-alpha -- 2:0:0 (should have incremented; didn't.)
47# 2.0.4-alpha -- 3:0:0
48# 2.0.5-beta -- 4:0:0
49# 2.0.6-rc -- 2.0 2:0:0

--- 12 unchanged lines hidden (view full) ---

62# 2.0.19-stable-- 2.0 6:7:1 (No ABI change)
63# 2.0.20-stable-- 2.0 6:8:1 (No ABI change)
64# 2.0.21-stable-- 2.0 6:9:1 (No ABI change)
65#
66# For Libevent 2.1:
67# 2.1.1-alpha -- 2.1 1:0:0
68# 2.1.2-alpha -- 2.1 1:0:0 (should have been 2:0:1)
69# 2.1.3-alpha -- 2.1 3:0:0 (ABI changed slightly)
70# 2.1.4-alpha -- 2.1 4:0:0 (ABI changed slightly)
71# 2.1.5-beta -- 2.1 5:0:0 (ABI changed slightly)
70
71# ABI version history for this package effectively restarts every time
72# we change RELEASE. Version 1.4.x had RELEASE of 1.4.
73#
74# Ideally, we would not be using RELEASE at all; instead we could just
75# use the VERSION_INFO field to label our backward-incompatible ABI
76# changes, and those would be few and far between. Unfortunately,
77# Libevent still exposes far too many volatile structures in its

--- 224 unchanged lines hidden ---
72
73# ABI version history for this package effectively restarts every time
74# we change RELEASE. Version 1.4.x had RELEASE of 1.4.
75#
76# Ideally, we would not be using RELEASE at all; instead we could just
77# use the VERSION_INFO field to label our backward-incompatible ABI
78# changes, and those would be few and far between. Unfortunately,
79# Libevent still exposes far too many volatile structures in its

--- 224 unchanged lines hidden ---