Codebase list ipset / upstream/7.14
New upstream version 7.14 Neutron Soutmun 2 years ago
11 changed file(s) with 30 addition(s) and 17 deletion(s). Raw diff Collapse all Expand all
0 7.14
1 - Add missing function to libipset.map and bump library version
2 (reported by Jan Engelhardt)
3
04 7.13
15 - When parsing protocols by number, do not check it in /etc/protocols.
26 - Add missing hunk to patch "Allow specifying protocols by number"
6868 # interface.
6969
7070 # curr:rev:age
71 LIBVERSION = 15:0:2
71 LIBVERSION = 16:0:3
7272
7373 AM_CPPFLAGS = $(kinclude_CFLAGS) $(all_includes) -I$(top_srcdir)/include
7474
495495 ACLOCAL_AMFLAGS = -I m4
496496
497497 # curr:rev:age
498 LIBVERSION = 15:0:2
498 LIBVERSION = 16:0:3
499499 AM_CPPFLAGS = $(kinclude_CFLAGS) $(all_includes) -I$(top_srcdir)/include
500500 AM_CFLAGS = -std=gnu99 $(am__append_1) $(am__append_2)
501501 SPARSE = sparse
00 #! /bin/sh
11 # Guess values for system-dependent variables and create Makefiles.
2 # Generated by GNU Autoconf 2.69 for ipset 7.13.
2 # Generated by GNU Autoconf 2.69 for ipset 7.14.
33 #
44 # Report bugs to <kadlec@netfilter.org>.
55 #
593593 # Identity of this package.
594594 PACKAGE_NAME='ipset'
595595 PACKAGE_TARNAME='ipset'
596 PACKAGE_VERSION='7.13'
597 PACKAGE_STRING='ipset 7.13'
596 PACKAGE_VERSION='7.14'
597 PACKAGE_STRING='ipset 7.14'
598598 PACKAGE_BUGREPORT='kadlec@netfilter.org'
599599 PACKAGE_URL=''
600600
14511451 # Omit some internal or obsolete options to make the list less imposing.
14521452 # This message is too long to be a string in the A/UX 3.1 sh.
14531453 cat <<_ACEOF
1454 \`configure' configures ipset 7.13 to adapt to many kinds of systems.
1454 \`configure' configures ipset 7.14 to adapt to many kinds of systems.
14551455
14561456 Usage: $0 [OPTION]... [VAR=VALUE]...
14571457
15221522
15231523 if test -n "$ac_init_help"; then
15241524 case $ac_init_help in
1525 short | recursive ) echo "Configuration of ipset 7.13:";;
1525 short | recursive ) echo "Configuration of ipset 7.14:";;
15261526 esac
15271527 cat <<\_ACEOF
15281528
16601660 test -n "$ac_init_help" && exit $ac_status
16611661 if $ac_init_version; then
16621662 cat <<\_ACEOF
1663 ipset configure 7.13
1663 ipset configure 7.14
16641664 generated by GNU Autoconf 2.69
16651665
16661666 Copyright (C) 2012 Free Software Foundation, Inc.
20382038 This file contains any messages produced by compilers while
20392039 running configure, to aid debugging if configure makes a mistake.
20402040
2041 It was created by ipset $as_me 7.13, which was
2041 It was created by ipset $as_me 7.14, which was
20422042 generated by GNU Autoconf 2.69. Invocation command line was
20432043
20442044 $ $0 $@
29752975
29762976 # Define the identity of the package.
29772977 PACKAGE='ipset'
2978 VERSION='7.13'
2978 VERSION='7.14'
29792979
29802980
29812981 cat >>confdefs.h <<_ACEOF
1826018260 # report actual input values of CONFIG_FILES etc. instead of their
1826118261 # values after options handling.
1826218262 ac_log="
18263 This file was extended by ipset $as_me 7.13, which was
18263 This file was extended by ipset $as_me 7.14, which was
1826418264 generated by GNU Autoconf 2.69. Invocation command line was
1826518265
1826618266 CONFIG_FILES = $CONFIG_FILES
1832618326 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
1832718327 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
1832818328 ac_cs_version="\\
18329 ipset config.status 7.13
18329 ipset config.status 7.14
1833018330 configured by $0, generated by GNU Autoconf 2.69,
1833118331 with options \\"\$ac_cs_config\\"
1833218332
00 dnl Boilerplate
1 AC_INIT([ipset], [7.13], [kadlec@netfilter.org])
1 AC_INIT([ipset], [7.14], [kadlec@netfilter.org])
22 AC_CONFIG_AUX_DIR([build-aux])
33 AC_CANONICAL_HOST
44 AC_CONFIG_MACRO_DIR([m4])
0 7.14
1 - 64bit division isn't allowed on 32bit, replace it with shift
2
03 7.13
14 - Limit the maximal range of consecutive elements to add/delete fix
25
147147
148148 hosts = h->netmask == 32 ? 1 : 2 << (32 - h->netmask - 1);
149149
150 if (((u64)ip_to - ip + 1)/hosts > IPSET_MAX_RANGE)
150 /* 64bit division is not allowed on 32bit */
151 if (((u64)ip_to - ip + 1) >> (32 - h->netmask) > IPSET_MAX_RANGE)
151152 return -ERANGE;
152153
153154 if (retried) {
503503 top_srcdir = @top_srcdir@
504504
505505 # curr:rev:age
506 LIBVERSION = 15:0:2
506 LIBVERSION = 16:0:3
507507 AM_CPPFLAGS = $(kinclude_CFLAGS) $(all_includes) -I$(top_srcdir)/include
508508 AM_CFLAGS = -std=gnu99 $(am__append_1) $(am__append_2) \
509509 ${libmnl_CFLAGS} $(am__append_3)
207207 ipset_print_hexnumber;
208208 } LIBIPSET_4.9;
209209
210 LIBIPSET_4.11 {
211 global:
212 ipset_xlate_argv;
213 } LIBIPSET_4.10;
214
483483 top_srcdir = @top_srcdir@
484484
485485 # curr:rev:age
486 LIBVERSION = 15:0:2
486 LIBVERSION = 16:0:3
487487 AM_CPPFLAGS = $(kinclude_CFLAGS) $(all_includes) -I$(top_srcdir)/include
488488 AM_CFLAGS = -std=gnu99 $(am__append_1) $(am__append_2)
489489 SPARSE = sparse
431431 top_srcdir = @top_srcdir@
432432
433433 # curr:rev:age
434 LIBVERSION = 15:0:2
434 LIBVERSION = 16:0:3
435435 AM_CPPFLAGS = $(kinclude_CFLAGS) $(all_includes) -I$(top_srcdir)/include
436436 AM_CFLAGS = -std=gnu99 $(am__append_1) $(am__append_2)
437437 SPARSE = sparse