updated method for building privoxy from src
This commit is contained in:
parent
a8fab5e851
commit
a80d029fef
|
@ -116,6 +116,29 @@ libevent-clean:
|
||||||
-cd libevent && \
|
-cd libevent && \
|
||||||
git clean -fdx
|
git clean -fdx
|
||||||
|
|
||||||
|
#------------------------------------------------------------------------------#
|
||||||
|
# iptables
|
||||||
|
|
||||||
|
iptables/Makefile:
|
||||||
|
cd iptables && ./autogen.sh
|
||||||
|
cp config.sub iptables
|
||||||
|
cp config.guess iptables
|
||||||
|
cd iptables && \
|
||||||
|
CC="$(CC)" AR="$(AR)" RANLIB=$(RANLIB) CFLAGS="$(CFLAGS) -DNO_SHARED_LIBS -DXTABLES_INTERNAL -DIPTABLES_VERSION=\"1.4.10\" =-DXTABLES_VERSION=\"1.4.10\" # -DIPT_LIB_DIR=\"$(IPT_LIBDIR)\" -DXTABLES_LIBDIR -I$(EXTERNAL_ROOT)/include" LDFLAGS="$(LDFLAGS)" \
|
||||||
|
./configure \
|
||||||
|
--host=$(HOST) \
|
||||||
|
--disable-shared
|
||||||
|
|
||||||
|
iptables-build-stamp: iptables/Makefile
|
||||||
|
$(MAKE) -C iptables
|
||||||
|
touch iptables-build-stamp
|
||||||
|
|
||||||
|
iptables: iptables-build-stamp
|
||||||
|
|
||||||
|
iptables-clean:
|
||||||
|
-rm -f iptables-build-stamp
|
||||||
|
-cd iptables
|
||||||
|
|
||||||
#------------------------------------------------------------------------------#
|
#------------------------------------------------------------------------------#
|
||||||
# tor
|
# tor
|
||||||
|
|
||||||
|
@ -193,6 +216,9 @@ obfsproxy-clean:
|
||||||
|
|
||||||
|
|
||||||
privoxy/config.log:
|
privoxy/config.log:
|
||||||
|
tar xzvf privoxy.tar.gz
|
||||||
|
mv privoxy*stable privoxy
|
||||||
|
cp privoxy.configure.in privoxy/configure.in
|
||||||
cd privoxy && \
|
cd privoxy && \
|
||||||
autoheader
|
autoheader
|
||||||
cd privoxy && \
|
cd privoxy && \
|
||||||
|
@ -216,8 +242,7 @@ privoxy: privoxy-build-stamp
|
||||||
privoxy-clean:
|
privoxy-clean:
|
||||||
-rm -f bin/privoxy
|
-rm -f bin/privoxy
|
||||||
-rm -f privoxy-build-stamp
|
-rm -f privoxy-build-stamp
|
||||||
-cd privoxy && \
|
-rm -rf privoxy
|
||||||
git clean -fdx .
|
|
||||||
|
|
||||||
#------------------------------------------------------------------------------#
|
#------------------------------------------------------------------------------#
|
||||||
# JTorControl library
|
# JTorControl library
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Loading…
Reference in New Issue