diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-01-06 18:48:54 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-01-06 18:48:54 +0100 |
commit | 43255b790d08156bb6474e0ca72c9a3440bd4302 (patch) | |
tree | a4135095572054b779a3e808739277aa71f15436 /package/privoxy | |
parent | 426e6ef0749fcc407512f130d463019334b8886c (diff) |
document and fix setpgrp overwrite
not all packages do the right overwrite of this variable.
uClibc does not need any arguments to setpgrp function.
Finetune package template accordingly.
Diffstat (limited to 'package/privoxy')
-rw-r--r-- | package/privoxy/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/package/privoxy/Makefile b/package/privoxy/Makefile index aa6fa2b2f..985ac546e 100644 --- a/package/privoxy/Makefile +++ b/package/privoxy/Makefile @@ -6,12 +6,12 @@ include ${TOPDIR}/rules.mk PKG_NAME:= privoxy PKG_VERSION:= 3.0.15 PKG_RELEASE:= 1 -PKG_BUILDDEP+= pcre PKG_VARIANT:= beta PKG_MD5SUM:= 6571dc9524e945e79c2af62fefe7b107 PKG_DESCR:= web proxy with advanced filtering capabilities PKG_SECTION:= net -PKG_DEPENDS:= libpthread +PKG_DEPENDS:= libpthread libpcre +PKG_BUILDDEP+= pcre PKG_URL:= http://www.privoxy.org PKG_SITES:= ${MASTER_SITE_SOURCEFORGE:=ijbswa/} @@ -27,7 +27,8 @@ CONFIGURE_STYLE:= gnu CONFIGURE_ARGS+= --disable-editor \ --disable-jar-files \ --sysconfdir=/etc/privoxy -CONFIGURE_ENV+= ac_cv_func_setpgrp_void=no \ +# uClibc setpgrp does not take arguments +CONFIGURE_ENV+= ac_cv_func_setpgrp_void=yes \ ac_cv_lib_nsl_gethostbyname=no BUILD_STYLE:= auto MAKE_FLAGS+= SPECIAL_CFLAGS='${TLDFLAGS}' |