aboutsummaryrefslogtreecommitdiff
path: root/lib/libarchive/Makefile
diff options
context:
space:
mode:
authorTim Kientzle <kientzle@FreeBSD.org>2006-11-26 19:09:42 +0000
committerTim Kientzle <kientzle@FreeBSD.org>2006-11-26 19:09:42 +0000
commit24d698ea89504602d24bc66f4410b6e86258539a (patch)
tree1c9307b44664fd1fd67fae164b219a0cc25196a9 /lib/libarchive/Makefile
parente1ad9834a0de5610b8f668bea696c477e5e34ac6 (diff)
Notes
Diffstat (limited to 'lib/libarchive/Makefile')
-rw-r--r--lib/libarchive/Makefile11
1 files changed, 6 insertions, 5 deletions
diff --git a/lib/libarchive/Makefile b/lib/libarchive/Makefile
index ac670266f005..3a5651cccfe7 100644
--- a/lib/libarchive/Makefile
+++ b/lib/libarchive/Makefile
@@ -6,12 +6,13 @@ LDADD= -lbz2 -lz
# The libarchive version stamp.
# Version is three numbers:
-# Major: Bumped ONLY when API/ABI breakage happens.
-# Minor: Bumped when significant new features are added (see SHLIB_MAJOR)
+# Major: Bumped ONLY when API/ABI breakage happens (see SHLIB_MAJOR)
+# Minor: Bumped when significant new features are added
# Revision: Bumped on any notable change
-VERSION= 1.2.53
-ARCHIVE_API_MAJOR!= echo ${VERSION} | sed -e 's/\..*//'
-ARCHIVE_API_MINOR!= echo ${VERSION} | sed -e 's/[0-9]*\.//' | sed -e 's/\..*//'
+VERSION= 1.3.1
+
+ARCHIVE_API_MAJOR!= echo ${VERSION} | sed -e 's/[^0-9]/./g' -e 's/\..*//'
+ARCHIVE_API_MINOR!= echo ${VERSION} | sed -e 's/[^0-9]/./g' -e 's/[0-9]*\.//' -e 's/\..*//'
# FreeBSD SHLIB_MAJOR value is managed as part of the FreeBSD system.
# It has no real relation to the version number above.