summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: e953c7a)
raw | patch | inline | side by side (parent: e953c7a)
author | Florian Forster <octo@leeloo.lan.home.verplant.org> | |
Sun, 15 Mar 2009 11:13:17 +0000 (12:13 +0100) | ||
committer | Florian Forster <octo@leeloo.lan.home.verplant.org> | |
Sun, 15 Mar 2009 11:13:17 +0000 (12:13 +0100) |
ChangeLog | patch | blob | history | |
configure.ac | patch | blob | history | |
src/Makefile.am | patch | blob | history | |
src/oping.h | patch | blob | history |
diff --git a/ChangeLog b/ChangeLog
index eb7ae7c94e7f8eacb8f5bf86727091fdc040dc00..ef4e5d0fe895bafa0875a3993e2de654706a0ffa 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
+2009-03-15, Version 1.1.0
+ * liboping.c: Eliminate the use of `strerror' and use `strerror_r'
+ instead, removing the (hopefully) last thread-unsafe function.
+ * liboping.c: Provide the TTL of received IP packets.
+ * oping.c: Allow setting of the TTL using the `-t' command line
+ option.
+
2009-02-17, Version 1.0.0
* oping.h: Provide the OPING_VERSION to easily determine the library's
version at compile time.
diff --git a/configure.ac b/configure.ac
index 984ad856833abf517315b577522597863d5277ec..0c45bc41c503d2e36db794421e90b7502f03fa44 100644 (file)
--- a/configure.ac
+++ b/configure.ac
-AC_INIT(liboping, 1.0.0)
+AC_INIT(liboping, 1.1.0)
AC_CONFIG_SRCDIR(src/liboping.c)
AC_CONFIG_HEADERS(src/config.h)
AM_INIT_AUTOMAKE(dist-bzip2)
diff --git a/src/Makefile.am b/src/Makefile.am
index 12c92c9d87c948c198fd543942802ccf61eaf48f..4dc11f9d16a3820888dad31ade882006a614c3ca 100644 (file)
--- a/src/Makefile.am
+++ b/src/Makefile.am
include_HEADERS = oping.h
lib_LTLIBRARIES = liboping.la
-liboping_la_LDFLAGS = -version-info 0:3:0
+# version-info: current:revision:age
+#
+# * If the library source code has changed at all since the last update, then
+# increment revision (‘c:r:a’ becomes ‘c:r+1:a’).
+# * If any interfaces have been added, removed, or changed since the last
+# update, increment current, and set revision to 0.
+# * If any interfaces have been added since the last public release, then
+# increment age.
+# * If any interfaces have been removed since the last public release, then
+# set age to 0.
+#
+# <http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html>
+liboping_la_LDFLAGS = -version-info 1:0:1
if BUILD_WITH_LIBSOCKET
liboping_la_LDFLAGS += -lsocket
endif
diff --git a/src/oping.h b/src/oping.h
index fe80ff5c537c18b4847d3242070af0246f7615e1..d519245b02bf959d9feec3077c487bdcab7e958c 100644 (file)
--- a/src/oping.h
+++ b/src/oping.h
extern "C" {
#endif
-#define OPING_VERSION 1000000
+#define OPING_VERSION 1001000
/*
* Type definitions