Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Bump pkg version to 1.1.0 & libbgpstream to 2.0.0
  • Loading branch information
alistairking committed Jan 22, 2016
1 parent e478def commit 992215a
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 10 deletions.
33 changes: 24 additions & 9 deletions configure.ac
Expand Up @@ -23,18 +23,37 @@

AC_PREREQ([2.68])

AC_INIT([bgpstream], [1.0.0], [bgpstream-info@caida.org])
AC_INIT([bgpstream], [1.1.0], [bgpstream-info@caida.org])

BGPSTREAM_MAJOR_VERSION=1
BGPSTREAM_MID_VERSION=0
BGPSTREAM_MID_VERSION=1
BGPSTREAM_MINOR_VERSION=0

LIBBGPSTREAM_MAJOR_VERSION=2
LIBBGPSTREAM_MID_VERSION=0
LIBBGPSTREAM_MINOR_VERSION=0

AC_DEFINE_UNQUOTED([BGPSTREAM_MAJOR_VERSION],$BGPSTREAM_MAJOR_VERSION,
[bgpstream major version])
[bgpstream major version])
AC_DEFINE_UNQUOTED([BGPSTREAM_MID_VERSION],$BGPSTREAM_MID_VERSION,
[bgpstream mid version])
[bgpstream mid version])
AC_DEFINE_UNQUOTED([BGPSTREAM_MINOR_VERSION],$BGPSTREAM_MINOR_VERSION,
[bgpstream minor version])
[bgpstream minor version])

AC_SUBST([BGPSTREAM_MAJOR_VERSION])
AC_SUBST([BGPSTREAM_MID_VERSION])
AC_SUBST([BGPSTREAM_MINOR_VERSION])

AC_DEFINE_UNQUOTED([LIBBGPSTREAM_MAJOR_VERSION],$LIBBGPSTREAM_MAJOR_VERSION,
[libbgpstream major version])
AC_DEFINE_UNQUOTED([LIBBGPSTREAM_MID_VERSION],$LIBBGPSTREAM_MID_VERSION,
[libbgpstream mid version])
AC_DEFINE_UNQUOTED([LIBBGPSTREAM_MINOR_VERSION],$LIBBGPSTREAM_MINOR_VERSION,
[libbgpstream minor version])

AC_SUBST([LIBBGPSTREAM_MAJOR_VERSION])
AC_SUBST([LIBBGPSTREAM_MID_VERSION])
AC_SUBST([LIBBGPSTREAM_MINOR_VERSION])

LT_INIT

Expand Down Expand Up @@ -246,10 +265,6 @@ AC_MSG_NOTICE([----------------------------------])
# we may want to come back later and add compile-time configuration for things
# like datastructure providers, but for now it will all get compiled

AC_SUBST([BGPSTREAM_MAJOR_VERSION])
AC_SUBST([BGPSTREAM_MID_VERSION])
AC_SUBST([BGPSTREAM_MINOR_VERSION])

AC_HEADER_ASSERT

AC_CONFIG_FILES([Makefile
Expand Down
2 changes: 1 addition & 1 deletion lib/Makefile.am
Expand Up @@ -72,7 +72,7 @@ libbgpstream_la_LIBADD = $(top_builddir)/lib/bgpdump/libbgpstream-bgpdump.la \
$(top_builddir)/lib/utils/libbgpstream-utils.la \
$(top_builddir)/common/libcccommon.la

libbgpstream_la_LDFLAGS = -version-info @BGPSTREAM_MAJOR_VERSION@:@BGPSTREAM_MINOR_VERSION@:@BGPSTREAM_MID_VERSION@
libbgpstream_la_LDFLAGS = -version-info @LIBBGPSTREAM_MAJOR_VERSION@:@LIBBGPSTREAM_MINOR_VERSION@:@LIBBGPSTREAM_MID_VERSION@

ACLOCAL_AMFLAGS = -I m4

Expand Down

0 comments on commit 992215a

Please sign in to comment.