summaryrefslogtreecommitdiffstats
path: root/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* bump version from 1.4.0rc1 to 1.4.0 finaliptables_1_4_0/C=EU/ST=EU/CN=Pablo Neira Ayuso/emailAddress=pablo@netfilter.org2007-12-221-2/+2
|
* [PATCH] Introducing libxt_*.man files. Sorted matches and modules/C=EU/ST=EU/CN=Patrick McHardy/emailAddress=kaber@trash.net2007-10-311-2/+2
| | | | | | | | | | | The iptables.8 and ip6tables.8 man pages are now generated from libxt_*.man files too. For xtables modules one man page is enough with libxt_ prefix. The match and target lists are sorted alphabetically. The make command doesn't print anything when creates man pages. Signed-off-by: Laszlo Attila Toth <panther@balabit.hu>
* [PATCH] let DO_MULTI=1 work for ip6tables* binaries/C=EU/ST=EU/CN=Patrick McHardy/emailAddress=kaber@trash.net2007-10-231-0/+20
| | | | | | | | When defining DO_MULTI=1 in Makefile, only iptables is built as a single multipurpose binary. This patch makes ip6tables also be built in the same manner. Hann-huei Chiou <koala@ascenvision.com>
* Install ip6tables-{save,restore} manpages/C=EU/ST=EU/CN=Patrick McHardy/emailAddress=kaber@trash.net2007-10-171-1/+1
|
* Add ip6tables-{save,restore} to non-experimental target, fix strict aliasing ↵/C=EU/ST=EU/CN=Patrick McHardy/emailAddress=kaber@trash.net2007-10-161-2/+2
| | | | warnings
* bump version to 1.4.0rc1svn_t_iptables_1_4_0rc1/C=EU/ST=EU/CN=Pablo Neira Ayuso/emailAddress=pablo@netfilter.org2007-10-151-2/+2
|
* Introduces DEST_IPT_LIBDIR to simplify $(DESTDIR)$(LIBDIR)/iptables/C=JP/ST=JP/CN=Yasuyuki Kozakai/emailAddress=yasuyuki@netfilter.org2007-07-241-0/+1
|
* Adds xtables.[ch] and change Makefile to compile it/C=JP/ST=JP/CN=Yasuyuki Kozakai/emailAddress=yasuyuki@netfilter.org2007-07-241-7/+7
|
* [PATCH] Change default KERNEL_DIR location and add KBUILD_OUTPUT (Sven ↵/C=EU/ST=EU/CN=Patrick McHardy/emailAddress=kaber@trash.net2007-07-151-2/+8
| | | | Wegener <sven.wegener@stealer.net>)
* Removes KERNEL_64_USERSPACE_32/C=JP/ST=JP/CN=Yasuyuki Kozakai/emailAddress=yasuyuki@netfilter.org2007-06-301-33/+0
| | | | | | | The recent kernel has compat layer for iptables. It doesn't have compat layer for libipq and ip6tables, but ip6tables with KERNEL_64_USERSPACE_32 is still broken. We should fix kernel instead of fixing them if and when we want use their 32bit binary with 64bit kernel.
* bump versionsvn_t_iptables_1_3_8/C=EU/ST=EU/CN=Pablo Neira Ayuso/emailAddress=pablo@netfilter.org2007-06-251-2/+2
|
* Use posix conform directory existance check (Roy Marples <uberlord@gentoo.org>)/C=EU/ST=EU/CN=Patrick McHardy/emailAddress=kaber@trash.net2007-05-101-1/+1
| | | | | | Makefile uses [ -a /dir ] which is invalid on non bash shells Bugzilla #569
* Remove libnsl from LDLIBS/C=EU/ST=EU/CN=Patrick McHardy/emailAddress=kaber@trash.net2007-04-181-1/+1
| | | | Bugzilla 557
* revert some slipped through patches/C=EU/ST=EU/CN=Pablo Neira Ayuso/emailAddress=pablo@netfilter.org2007-04-161-1/+1
|
* prepare conntrack and conntrackd merge: rename conntrack to conntrack-tools/C=EU/ST=EU/CN=Pablo Neira Ayuso/emailAddress=pablo@netfilter.org2007-04-161-1/+1
|
* [PATCH]: Fix greedy debug grep/C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=kaber/emailAddress=kaber@netfilter.org2007-01-101-1/+1
| | | | | | | | | | | | | | | | | | | | | From Bugzilla #527: if you have a kernel with say a '-g' in it, then KERNEL_DIR will include the '-g' in it, CFLAGS will include the '-g' in it, and then the grep will think you have -g in your CFLAGS for example, if you use the grsec or gentoo patchset: $ uname -r 2.6.19.1-grsec $ uname -r 2.6.19-gentoo-r2 then your CFLAGS will look like: -O2 -Wall -Wunused -I"/lib/modules/2.6.19.1-grsec/build"/include -Iinclude/ -DIPTABLES_VERSION=\"1.3.7\" and the greedy check grep will incorrectly flag this: egrep -e '-g|-pg|IPTC_DEBUG'
* fix compile/install error for iptables-xml with DO_MULTI=1 (Lutz Jaenicke)/C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=yasuyuki/emailAddress=yasuyuki@netfilter.org2006-12-091-1/+1
|
* Bump version to 1.3.7svn_t_iptables_1_3_7/C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=kaber/emailAddress=kaber@netfilter.org2006-12-041-2/+2
|
* Use /lib/modules/$(uname -r)/build instead of /usr/src/linux as KERNEL_DIR ↵/C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=kaber/emailAddress=kaber@netfilter.org2006-11-141-1/+1
| | | | default
* Add iptables-xml tool (Amin Azez <azez@ufomechanic.net>)/C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=kaber/emailAddress=kaber@netfilter.org2006-11-131-3/+16
|
* Version number was not bumped in Makefile in svnsvn_t_iptables_1_3_6/C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=kadlec/emailAddress=kadlec@netfilter.org2006-10-091-2/+2
|
* [PATCH] Use gcc to build shared objects (Phil Oester <kernel@linuxace.com>)/C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=kaber/emailAddress=kaber@netfilter.org2006-07-201-1/+1
| | | | | | | | | | | | As suggested by Dmitry Levin and included in Fedora Core releases, use gcc instead of ld to link shared objects. Fedora rpm notes refer to this fixing a plugin problem, but does not offer specifics. But in any event, 'gcc -dumpspecs' does show gcc will pass a number of parameters which in theory it thinks are better. Compile tested both with and without NO_SHARED_LIBS. Closes bug #454.
* [PATCH 01/05] secmark: Add libselinux support/C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=kaber/emailAddress=kaber@netfilter.org2006-05-241-1/+13
| | | | | | | | | This patch adds the infrastructure for linking iptables against libselinux, for use with the SECMARK target. This is enabled by setting DO_SELINUX=1 in the build environment. Signed-off-by: James Morris <jmorris@namei.org>
* remove other bits of old ip pool code, people should use ipset ↵/C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=laforge/emailAddress=laforge@netfilter.org2006-02-011-2/+2
| | | | (ipset.netfilter.org) these days
* about to release 1.3.4/C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=laforge/emailAddress=laforge@netfilter.org2005-10-311-2/+2
|
* 1.3.3 releasesvn_t_iptables_1_3_3/C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=laforge/emailAddress=laforge@netfilter.org2005-07-291-2/+2
|
* bump version number to 1.3.2/C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=laforge/emailAddress=laforge@netfilter.org2005-07-101-2/+2
|
* bump version to 1.3.1svn_t_iptables_1_3_1/C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=laforge/emailAddress=laforge@netfilter.org2005-03-071-2/+2
|
* time to release 1.3.0 finalsvn_t_iptables_1_3_0/C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=laforge/emailAddress=laforge@netfilter.org2005-02-121-1/+1
|
* we now need to exclude .svn instead of CVSsvn_t_iptables_1_3_0rc1/C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=laforge/emailAddress=laforge@netfilter.org2005-02-011-1/+1
|
* release rc1/C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=laforge/emailAddress=laforge@netfilter.org2005-02-011-1/+1
|
* Fix typo. (Phil Oester) Closes #239gandalf2004-09-091-1/+1
|
* complete libiptc rewrite. Time to load 10k rules goes down from 2.20 ↵laforge2004-08-291-2/+2
| | | | minutes to 1.255 seconds (!). Might still contain bugs, use with caution.
* Bastiaan Bakker's patch to combine iptables, iptables-save and iptables-restorekadlec2004-06-251-0/+19
| | | | for size reduction applied
* pom-ng only deals with numerical versionslaforge2004-06-171-2/+2
|
* fix 'make distrib'laforge2004-06-141-1/+1
|
* Better(?) detection for 64bit kernel / 32bit userspace.gandalf2004-05-261-21/+42
| | | | Add some ld-flags for sparc64.
* iptables-1.2.10 coming uplaforge2004-04-151-2/+2
|
* split manpages into per-extension manpage snippet (Henrik Nordstrom)laforge2004-01-221-2/+7
| | | | add lots of missing manpage snippets (Harald Welte)
* final 1.2.9 releasesvn_t_iptables_1_2_9laforge2003-11-021-1/+1
|
* old version is 1.2.8, not 1.2.7asvn_t_iptables_1_2_9rc1laforge2003-10-071-1/+1
|
* increment version number to 1.2.9rc1laforge2003-10-071-1/+1
|
* version 1.2.8 upcominglaforge2003-04-131-2/+2
|
* make DO_IPV6 work again..laforge2003-03-041-3/+6
|
* make NO_SHARED_LIBS work again (Roberto Nibali)laforge2002-08-261-4/+4
|
* 1.2.7a is the successor of 1.2.6asvn_t_iptables_1_2_7alaforge2002-08-261-2/+2
|
* increase version numberlaforge2002-08-071-2/+2
|
* update INSTALL file to reflect seperation of patch-o-maticlaforge2002-08-021-15/+0
|
* globally replace NETFILTER_VERSION with IPTABLES_VERSION to have consistent ↵laforge2002-05-291-11/+11
| | | | naming
* version 1.2.7 coming up...laforge2002-04-101-2/+2
|