summaryrefslogtreecommitdiffstats
path: root/package/ipsec-tools
Commit message (Collapse)AuthorAgeFilesLines
* Normalize separator size to 80Alexandre Belloni2013-06-061-2/+2
| | | | | Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* packages/flex: remove unnecessary BR2_PACKAGE_FLEX_LIBFLGustavo Zacarias2013-03-091-1/+0
| | | | | | | | | | The BR2_PACKAGE_FLEX_LIBFL knob was removed by bd72a13a4ca3033bacbaf9e9a2b424acf149f83d so remove it from the packages that used it since it's completely unnecessary. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* all packages: rename XXXTARGETS to xxx-packageArnout Vandecappelle (Essensium/Mind)2012-07-171-1/+1
| | | | | | | | | | | | | Also remove the redundant $(call ...). This is a purely mechanical change, performed with find package linux toolchain boot -name \*.mk | \ xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \ -e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \ -e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* ipsec-tools: get rid of explicit ipv6 handlingPeter Korsgaard2012-02-101-6/+0
| | | | | | This is taken care of by autotargets. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* ipsec-tools: cleanup: remove trailing . after option textPeter Korsgaard2012-02-101-4/+4
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* ipsec-tools: add option for dead peer detection supportPeter Korsgaard2012-02-102-0/+11
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package: remove useless arguments from AUTOTARGETSThomas Petazzoni2011-09-291-1/+1
| | | | | | | | | | Thanks to the pkgparentdir and pkgname functions, we can rewrite the AUTOTARGETS macro in a way that avoids the need for each package to repeat its name and the directory in which it is present. [Peter: pkgdir->pkgparentdir] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* ipsec-tools: bump to version 0.8.0Gustavo Zacarias2011-09-131-2/+2
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* ipsec-tools: breaks with parallel buildsPeter Korsgaard2010-10-051-0/+1
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* ipsec-tools: replace sysv3 legacy functions with modern equivalentsJulien Boibessot2010-07-191-0/+35
| | | | | Signed-off-by: Julien Boibessot <julien.boibessot@armadeus.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* ipsec-tools: bump version, convert to autotools format and simplify Config.inPeter Korsgaard2010-06-132-146/+31
| | | | | | | | | | Closes #2035 - Remove -Werror from CFLAGS - Always enable ipv6 support if available in toolchain - Always install into staging Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Do not let packages remove man pages, info pages and documentationThomas Petazzoni2010-04-111-7/+0
| | | | | | | | | | The cleanup of $(TARGET_DIR)/usr/share/man, $(TARGET_DIR)/usr/man, $(TARGET_DIR)/usr/share/info, $(TARGET_DIR)/usr/info, $(TARGET_DIR)/usr/share/doc and $(TARGET_DIR)/usr/doc is already done globally in the main Makefile. Therefore, there's no need to handle that on a per-package basis. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* ipsec-tools: add host-flex dependencyThomas Petazzoni2010-02-241-1/+1
| | | | | | | | | | | | This fixes the following build failure: checking lex output file root... configure: error: cannot find output from flex; giving up Caused by the fact that a host version of flex is missing in $(HOST_DIR). Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* buildroot: silence ./configure step when building with 'make -s'Peter Korsgaard2009-10-011-1/+1
| | | | | | | | | | We have been passing -q to ./configure when using 'make -s' for packages using Makefile.autotools.in for some time. Do the same for packages using autotools, but not using the Makefile.autotools.in infrastructure, taking care to not do it for packages with hand written configure scripts. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package: Remove unnecessary dependencies on uclibc.Will Newton2009-09-031-1/+1
| | | | | | | | A C library will have been built by the toolchain makefiles, so there is no need for packages to explicitly depend on uclibc. Signed-off-by: Will Newton <will.newton@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* ipsec-tools: only show the security context choice when ipsec enabledThomas Petazzoni2009-08-041-0/+4
| | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* ipsec-tools: Bump version to 0.7.2.Will Newton2009-06-236-170/+41
| | | | | | | | | | Add support for configuring security context support to allow building for non-SELinux targets. Remove some obsolete patches. Signed-off-by: Will Newton <will.newton@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* ipsec-tools: fix printf format string for size_t (on 64bit)Peter Korsgaard2009-03-101-0/+64
| | | | | Use %zu instead of %d for printing out size_t variables. Fixes a build issue on 64bit as ipsec-tools uses -Werror.
* ipsec-tools: use select rather than depends for library dependenciesPeter Korsgaard2009-03-021-4/+3
| | | | As noticed on the mailing list.
* readline: s/BR2_READLINE/BR2_PACKAGE_READLINE/Peter Korsgaard2009-01-301-1/+1
| | | | Package configs should start with BR2_PACKAGE_.
* package/: convert to DOWNLOAD helperPeter Korsgaard2009-01-161-1/+1
|
* package/: get rid of unneeded $(strip ..)Peter Korsgaard2008-12-081-11/+11
|
* buildroot: remove trailing spacesPeter Korsgaard2008-08-041-5/+5
| | | | | | | for i in `find -name 'Config*' -o -name 'Makefile*' -o -name '*.mk'`; do sed -i 's/ \+$//' $i; done
* Kconfig: remove 'default n'Peter Korsgaard2008-07-171-4/+0
| | | | 'default n' is the default, so there's no need to say it explicitly.
* buildroot: s/depends/depends on/Peter Korsgaard2008-06-191-1/+1
| | | | | The new kconfig is more strict regarding depends/depends on, so fixup the tree.
* buildroot: cleanup <package>-clean targets.Peter Korsgaard2008-03-271-3/+2
| | | | Based on input from Arndt Kritzner & Bernhard Fischer.
* Make ipsec-tools depend on packets, instead of selecting them, depend on flexUlf Samuelsson2007-11-292-4/+6
|
* - just use the strip binary to avoid confusing libtool (quotes)Bernhard Reutner-Fischer2007-10-011-1/+1
| | | | - use $(STRIPCMD) in packages to avoid clashes with $(STRIP)
* Fix syntax error when using addprefix in ipsec-tools.mkUlf Samuelsson2007-09-231-2/+2
|
* - cleanup and fixes (Cristian Ionescu-Idbohrn)Bernhard Reutner-Fischer2007-09-171-20/+17
|
* - global whitespace trimmingBernhard Reutner-Fischer2007-08-221-16/+16
|
* - semicolon touchup. No other changesBernhard Reutner-Fischer2007-08-221-7/+7
|
* Remove switches if sstrip is runUlf Samuelsson2007-08-211-2/+2
|
* Replace space by tabsUlf Samuelsson2007-07-282-5/+5
|
* Use <package>_VERSION in all <package>.mk instead of <package>_VERUlf Samuelsson2007-07-111-4/+4
|
* - add endian handling, mmap, memcmp checks to TARGET_CONFIGURE_ARGSBernhard Reutner-Fischer2007-06-271-1/+2
| | | | - use TARGET_CONFIGURE_ARGS where appropriate.
* - use BR2_INET_IPV6Bernhard Reutner-Fischer2007-06-262-6/+4
|
* - bump versionBernhard Reutner-Fischer2007-06-254-10/+16
| | | | - add SUSV legacy fixups
* fixup package LDFLAGS handlingEric Andersen2007-03-131-0/+1
|
* - remove some hardcoded occurances of "make" and use the proper variable insteadBernhard Reutner-Fischer2007-01-211-2/+2
|
* - ignore GLOB_TILDE if it's not available.Bernhard Reutner-Fischer2006-11-221-0/+15
|
* - setkeys needs libflBernhard Reutner-Fischer2006-11-201-0/+1
|
* - add and use BR2_BZCAT config option.Bernhard Reutner-Fischer2006-11-171-1/+2
|
* - bump versionBernhard Reutner-Fischer2006-11-173-1/+79
|
* - use cross strip instead of host strip; closes #773Bernhard Reutner-Fischer2006-08-281-2/+2
|
* if uClibc_config.h doesnt exist yet, make sure grep doesnt complain about itMike Frysinger2006-02-151-1/+1
|
* add ipsec-tools package per case 0000439David Anders2006-01-232-0/+218