I tried building latest beta16 with gcc 3.4.1 and MingW and
struck what I suspect is a gcc bug. While linking I got:
tun.o(.stab+0x11024): In function `ipset2ascii_all':
G:/MingW32/src/inet/OpenVPN/tun.c:3321: undefined reference to `get_netsh_id'
tun.o(.stab+0x110b4):G:/MingW32/src/inet/OpenVPN/tun.c:3321:
undefined reference to `get_netsh_id'
Line 3321 has no reference to get_netsh_id(). And what is this ".stab" section
doing there?
Seems gcc has problems with prototypes at > 1 scope. Moving the protype to
file-scope or removing 'static' from the prototype and definition of
get_netshid()
fixed it though. Anybody else seen this?
--gv