summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure7
1 files changed, 6 insertions, 1 deletions
diff --git a/configure b/configure
index edb10fd..5055654 100755
--- a/configure
+++ b/configure
@@ -378,7 +378,12 @@ int main(void)
}
EOF
- $CC -o $TMPDIR/nfcttest $TMPDIR/nfcttest.c $(pkg-config libnetfilter_conntrack --cflags) -lnetfilter_conntrack >> config.log 2>&1
+ $CC \
+ $($PKG_CONFIG --cflags libnetfilter_conntrack 2>> config.log) \
+ -o $TMPDIR/nfcttest \
+ $TMPDIR/nfcttest.c \
+ $($PKG_CONFIG --libs libnetfilter_conntrack 2>> config.log) \
+ >> config.log 2>&1
if [ ! -x $TMPDIR/nfcttest ] ; then
echo "[NO]"
MISSING_DEFS=1
ming/outgoing streams ...Xin Long2-0/+10 2017-02-09sctp: implement sender-side procedures for SSN/TSN Reset Request ParameterXin Long2-0/+2 2017-02-09sctp: add support for generating stream reconf ssn/tsn reset request chunkXin Long2-0/+7 2017-02-09sctp: drop unnecessary __packed from some stream reconf structuresXin Long1-3/+3 2017-02-08ipv4: fib: Notify about nexthop status changesIdo Schimmel1-0/+7 2017-02-08net: stmmac: Remove the bus_setup function pointerLABBE Corentin1-1/+0 2017-02-08gro_cells: move to net/core/gro_cells.cEric Dumazet1-82/+4 2017-02-08net: phy: Add LED mode driver for Microsemi PHYs.Raju Lakkaraju