steps.mk
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sat Apr 26 21:31:05 2008 +0000 (2008-04-26)
changeset 454 372b2f397baa
parent 305 00a7e6c275da
child 461 63586e9dcfc3
permissions -rw-r--r--
Configure tsocks with a simple heuristic.

Consider the proxy has to be in a 'local' network. It means it is directly
reachable by the local machine, even if the local machine has to hop through
one or more gates to reach the proxy (often the case in enterprise networks
where class A 10.0.0.0/8 is in fact sub-divided into smaller networks, each
one of them in a different location, eg. 10.1.0.0/16 in a place, while
10.2.0.0/16 would be on the other side of the world). Not being in the same
subnet does not mean the proxy is not available.

So we will build a mask with at most high bits set, which defines a network
that has both the local machine and the proxy. Because a machine may have
more than one interface, build a mask for each of them, removing 127.0.0.1
which is added automagically by tsocks, and removing duplicate masks.

If all of this does not work, then it means the local machine can NOT in fact
reach the proxy, which in turn means the user mis-configured something (most
probably a typo...).

/trunk/scripts/crosstool.sh | 61 52 9 0 +++++++++++++++++++++++++++++++++++++++++++--------
1 file changed, 52 insertions(+), 9 deletions(-)
yann@136
     1
# Makefile for each steps
yann@136
     2
# Copyright 2006 Yann E. MORIN <yann.morin.1998@anciens.enib.fr>
yann@136
     3
yann@181
     4
CT_STEPS := libc_check_config       \
yann@181
     5
            kernel_check_config     \
yann@181
     6
            kernel_headers          \
yann@181
     7
            binutils                \
yann@181
     8
            cc_core_pass_1          \
yann@181
     9
            libc_headers            \
yann@181
    10
            libc_start_files        \
yann@181
    11
            cc_core_pass_2          \
yann@181
    12
            libc                    \
yann@181
    13
            cc                      \
yann@181
    14
            libc_finish             \
yann@181
    15
            tools                   \
yann@181
    16
            debug                   \
yann@181
    17
yann@181
    18
$(CT_STEPS):
yann@205
    19
	@$(CT_NG) RESTART=$@ STOP=$@ build
yann@136
    20
yann@304
    21
$(patsubst %,+%,$(CT_STEPS)):
yann@304
    22
	@$(CT_NG) STOP=$(patsubst +%,%,$@) build
yann@136
    23
yann@304
    24
$(patsubst %,%+,$(CT_STEPS)):
yann@304
    25
	@$(CT_NG) RESTART=$(patsubst %+,%,$@) build
yann@181
    26
yann@181
    27
help-build::
yann@333
    28
	@echo  '  liststeps          - List all build steps'
yann@181
    29
yann@181
    30
liststeps:
yann@181
    31
	@echo  'Available build steps, in order:'
yann@181
    32
	@for step in $(CT_STEPS); do    \
yann@181
    33
	     echo "  - $${step}";       \
yann@181
    34
	 done