diff options
author | Fabrice Fontaine <fabrice.fontaine@orange.com> | 2017-02-12 21:26:56 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-04-01 23:28:18 +0200 |
commit | 69cdc6a362321125073cb809db27b95e4beb8f5d (patch) | |
tree | 0aab562e564b2d8d0695a7facf4d4ed45e66f353 /package/libmaxminddb/0001-Add-disable-tests-to-configure.patch | |
parent | 0e3d0582bb259c4d76efb2c3f08e7eae4094e0e4 (diff) | |
download | buildroot-69cdc6a362321125073cb809db27b95e4beb8f5d.tar.gz buildroot-69cdc6a362321125073cb809db27b95e4beb8f5d.zip |
libmaxminddb: new package
C library for the MaxMind DB file format
The libmaxminddb library provides a C library for reading
MaxMind DB files, including the GeoIP2 databases from MaxMind.
This is a custom binary format designed to facilitate fast
lookups of IP addresses while allowing for great flexibility
in the type of data associated with an address.
The MaxMind DB format is an open format. The spec is available
at http://maxmind.github.io/MaxMind-DB/. This spec is licensed
under the Creative Commons Attribution-ShareAlike 3.0 Unported
License.
http://maxmind.github.io/libmaxminddb
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
[Thomas: add entry in DEVELOPERS file.]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/libmaxminddb/0001-Add-disable-tests-to-configure.patch')
-rw-r--r-- | package/libmaxminddb/0001-Add-disable-tests-to-configure.patch | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/package/libmaxminddb/0001-Add-disable-tests-to-configure.patch b/package/libmaxminddb/0001-Add-disable-tests-to-configure.patch new file mode 100644 index 0000000000..1ae5acc1dd --- /dev/null +++ b/package/libmaxminddb/0001-Add-disable-tests-to-configure.patch @@ -0,0 +1,53 @@ +From b12ca226c111730e2ef5d8a3d929dbd943fbe763 Mon Sep 17 00:00:00 2001 +From: Fabrice Fontaine <fontaine.fabrice@gmail.com> +Date: Thu, 9 Feb 2017 21:40:43 +0100 +Subject: [PATCH] Add --disable-tests to configure + +Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> +--- + Makefile.am | 6 +++++- + configure.ac | 10 ++++++++++ + 2 files changed, 15 insertions(+), 1 deletion(-) + +diff --git a/Makefile.am b/Makefile.am +index 1804945..cebcd31 100644 +--- a/Makefile.am ++++ b/Makefile.am +@@ -5,8 +5,12 @@ nodist_include_HEADERS = include/maxminddb_config.h + + SUBDIRS = \ + src \ +- bin \ ++ bin ++ ++if TESTS ++SUBDIRS += \ + t ++endif + + EXTRA_DIST = doc t Changes.md LICENSE NOTICE README.md projects/VS12 projects/VS12-tests + dist-hook: +diff --git a/configure.ac b/configure.ac +index 7916212..fc53ffd 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -119,6 +119,16 @@ AC_ARG_ENABLE( + esac],[debug=false]) + AM_CONDITIONAL([DEBUG], [test x$debug = xtrue]) + ++AC_ARG_ENABLE( ++ [tests], ++ [ --enable-tests Compilation of tests code], ++ [case "${enableval}" in ++ yes) tests=true ;; ++ no) tests=false ;; ++ *) AC_MSG_ERROR([bad value ${enableval} for --enable-tests]) ;; ++ esac],[tests=false]) ++AM_CONDITIONAL([TESTS], [test x$tests = xtrue]) ++ + AC_CONFIG_FILES([Makefile + src/Makefile + bin/Makefile +-- +2.5.0 + |