diff options
author | wbx <wbx@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-03-13 20:48:48 +0000 |
---|---|---|
committer | wbx <wbx@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-03-13 20:48:48 +0000 |
commit | af3c8d623f5e2d2014ac24ebbb0272482cbacc53 (patch) | |
tree | 9db7a1fd5e7bff4be521340743643b22ab608264 /openwrt/package/privoxy/patches | |
parent | 69e6087004c0bacb0149e4c3721cd115c8b6982d (diff) |
privoxy port, first try
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@3364 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/privoxy/patches')
-rw-r--r-- | openwrt/package/privoxy/patches/100-crosscompile.patch | 13 | ||||
-rw-r--r-- | openwrt/package/privoxy/patches/101-destdir.patch | 32 |
2 files changed, 45 insertions, 0 deletions
diff --git a/openwrt/package/privoxy/patches/100-crosscompile.patch b/openwrt/package/privoxy/patches/100-crosscompile.patch new file mode 100644 index 000000000..c2b6738b2 --- /dev/null +++ b/openwrt/package/privoxy/patches/100-crosscompile.patch @@ -0,0 +1,13 @@ +diff -Nur privoxy-3.0.3-stable/configure.in privoxy-3.0.3-stable.patched/configure.in +--- privoxy-3.0.3-stable/configure.in 2004-01-30 10:26:03.000000000 +0100 ++++ privoxy-3.0.3-stable.patched/configure.in 2006-03-13 20:50:57.000000000 +0100 +@@ -1092,7 +1092,8 @@ + AC_PROG_GCC_TRADITIONAL + dnl uncommenting does not work for swa. suse linux + dnl AC_FUNC_MALLOC +-AC_FUNC_SETPGRP ++dnl uncommenting does not work for openwrt ++dnl AC_FUNC_SETPGRP + AC_TYPE_SIGNAL + dnl uncommenting does not work for swa. suse linux + dnl AC_FUNC_STAT diff --git a/openwrt/package/privoxy/patches/101-destdir.patch b/openwrt/package/privoxy/patches/101-destdir.patch new file mode 100644 index 000000000..9e22ab670 --- /dev/null +++ b/openwrt/package/privoxy/patches/101-destdir.patch @@ -0,0 +1,32 @@ +diff -Nur privoxy-3.0.3-stable/GNUmakefile.in privoxy-3.0.3-stable.patched/GNUmakefile.in +--- privoxy-3.0.3-stable/GNUmakefile.in 2004-01-31 02:15:33.000000000 +0100 ++++ privoxy-3.0.3-stable.patched/GNUmakefile.in 2006-03-13 21:39:29.000000000 +0100 +@@ -55,17 +55,17 @@ + USER = @USER@ + GROUP = @GROUP@ + +-prefix = @prefix@ +-exec_prefix = @exec_prefix@ +-CONF_BASE = @sysconfdir@ +-SBIN_DEST = @sbindir@ +-MAN_DIR = @mandir@ +-MAN_DEST = $(MAN_DIR)/man1 +-SHARE_DEST = @datadir@ +-DOC_DEST = $(SHARE_DEST)/doc/privoxy +-VAR_DEST = @localstatedir@ +-LOGS_DEST = $(VAR_DEST)/log/privoxy +-PIDS_DEST = $(VAR_DEST)/run ++prefix = $(DESTDIR)@prefix@ ++exec_prefix = $(DESTDIR)@exec_prefix@ ++CONF_BASE = $(DESTDIR)@sysconfdir@ ++SBIN_DEST = $(DESTDIR)@sbindir@ ++MAN_DIR = $(DESTDIR)@mandir@ ++MAN_DEST = $(DESTDIR)$(MAN_DIR)/man1 ++SHARE_DEST = $(DESTDIR)@datadir@ ++DOC_DEST = $(DESTDIR)$(SHARE_DEST)/doc/privoxy ++VAR_DEST = $(DESTDIR)@localstatedir@ ++LOGS_DEST = $(DESTDIR)$(VAR_DEST)/log/privoxy ++PIDS_DEST = $(DESTDIR)$(VAR_DEST)/run + + # if $prefix = /usr/local then the default CONFDEST change from + # CONF_DEST = $(CONF_BASE) to CONF_DEST = $(CONF_BASE)/privoxy |