mirror of
https://github.com/fwbuilder/fwbuilder
synced 2026-09-12 16:13:13 +02:00
* applied patch to provide configure command line option to specify
path to ccache. Thanks to user "a. k. huettel " on SourceForge.
This commit is contained in:
+19
-4
@@ -638,12 +638,27 @@ AC_SUBST(DATADIR)
|
|||||||
AC_SUBST(MANDIR)
|
AC_SUBST(MANDIR)
|
||||||
AC_SUBST(ICONSDIR)
|
AC_SUBST(ICONSDIR)
|
||||||
|
|
||||||
AC_PATH_PROG(CCACHE, ccache, , )
|
AC_ARG_WITH(ccache,[ --with-ccache=yes Use ccache to speed up repeated compilation])
|
||||||
AC_SUBST(CCACHE)
|
|
||||||
|
|
||||||
if test -n "$CCACHE"
|
if test -n "$with_ccache"; then
|
||||||
then
|
if test "x$with_ccache" != "xno"; then
|
||||||
|
AC_PATH_PROG(CCACHE, ccache, , )
|
||||||
|
AC_SUBST(CCACHE)
|
||||||
|
if test -n "$CCACHE"
|
||||||
|
then
|
||||||
|
ccache -s
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
CCACHE=""
|
||||||
|
AC_SUBST(CCACHE)
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
AC_PATH_PROG(CCACHE, ccache, , )
|
||||||
|
AC_SUBST(CCACHE)
|
||||||
|
if test -n "$CCACHE"
|
||||||
|
then
|
||||||
ccache -s
|
ccache -s
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
AC_ARG_WITH(distcc,[ --with-distcc=N Use distcc with N parallel make count])
|
AC_ARG_WITH(distcc,[ --with-distcc=N Use distcc with N parallel make count])
|
||||||
|
|||||||
@@ -1,5 +1,8 @@
|
|||||||
2011-06-03 vadim <vadim@netcitadel.com>
|
2011-06-03 vadim <vadim@netcitadel.com>
|
||||||
|
|
||||||
|
* applied patch to provide configure command line option to specify
|
||||||
|
path to ccache. Thanks to user "a. k. huettel " on SourceForge.
|
||||||
|
|
||||||
* NATCompiler_pf.cpp (_expand_addr): see #2455 NAT Compiler for PF
|
* NATCompiler_pf.cpp (_expand_addr): see #2455 NAT Compiler for PF
|
||||||
should use "(interface)" syntax to the right of "->" in NAT rules.
|
should use "(interface)" syntax to the right of "->" in NAT rules.
|
||||||
This now works for all interfaces, including those that have ip
|
This now works for all interfaces, including those that have ip
|
||||||
|
|||||||
Reference in New Issue
Block a user