mirror of
https://github.com/beard7n/bsdports.git
synced 2026-04-10 02:21:15 +02:00
24 lines
590 B
Plaintext
24 lines
590 B
Plaintext
Index: configure
|
|
===================================================================
|
|
--- src/configure (revision 2259)
|
|
+++ src/configure (working copy)
|
|
@@ -33,7 +33,9 @@ else
|
|
fi
|
|
|
|
echo -n "Looking for ng_ipacct ..."
|
|
-if [ -e /usr/include/netgraph/ng_ipacct.h \
|
|
+if [ "$USE_NG_IPACCT" = no ]; then
|
|
+ echo " disabled."
|
|
+else if [ -e /usr/include/netgraph/ng_ipacct.h \
|
|
-o -e /usr/local/include/netgraph/ng_ipacct.h ]
|
|
then
|
|
echo " found."
|
|
@@ -41,6 +43,7 @@ then
|
|
else
|
|
echo " not found."
|
|
fi
|
|
+fi
|
|
|
|
echo -n "Looking for ng_mppc ..."
|
|
if [ -e /usr/include/netgraph/ng_mppc.h \
|