Hello, On Sat, Jun 2, 2012 at 5:14 PM, Arne Schwabe <a...@rfc2549.org> wrote: > Hello, > > while preparing my patches for OS X I also noticed that the build is > broken on OS X: > > [...] > checking net/if_tun.h usability... no > checking net/if_tun.h presence... no > checking for net/if_tun.h... no > checking net/tun/if_tun.h usability... no > checking net/tun/if_tun.h presence... no > checking for net/tun/if_tun.h... no > checking linux/if_tun.h usability... no > checking linux/if_tun.h presence... no > checking for linux/if_tun.h... no > checking tap-windows.h usability... no > checking tap-windows.h presence... no > checking for tap-windows.h... no > configure: error: no tap header could be found > > > The bad commit is: 7cacdfd4b7f221139e0d2a0334f1f1cd8f2a1b75 > > build: tap: search for tap header
Can you please tell me which tap header is expected and send me the config.log as well? or just send me the config.log... > > It aborts build if no tap headers is found. If the check is disabled > configure works but the build still does not work. > > In the INSTALL file --with-lzo-headers and --with-lzo-lib is mentioned, > which do not work: > <snip> > > LZO_CFLAGS="-I/opt/local/include" LZO_LIBS=-L/opt/local/lib ./configure This should have been: LZO_CFLAGS="-I/opt/local/include" LZO_LIBS="-L/opt/local/lib -llzo" ./configure The -llzo is also needs in XXX_LIBS phrase. Thanks, Alon.