diff options
author | Jamie Lenehan <lenehan@twibble.org> | 2006-05-27 10:36:20 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-05-27 10:36:20 +0000 |
commit | 8ffeeaa3df9bb741af5341aa8acd88f671532252 (patch) | |
tree | 03eb495cfd473957e19e6d2cbc8301fd126e295c /packages/pmacct | |
parent | e2ea34b1e3675f0f0b8b1b3c05ee7f9590c773f5 (diff) |
pmacct 0.7.9: Don't look for pcap headers in /usr/include, look for them in
the staging area. Closes bug #712.
Diffstat (limited to 'packages/pmacct')
-rw-r--r-- | packages/pmacct/pmacct_0.7.9.bb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/packages/pmacct/pmacct_0.7.9.bb b/packages/pmacct/pmacct_0.7.9.bb index d557cae0e2..375eadce24 100644 --- a/packages/pmacct/pmacct_0.7.9.bb +++ b/packages/pmacct/pmacct_0.7.9.bb @@ -2,7 +2,7 @@ DESCRIPTION = "Promiscuous mode IP Accounting package" HOMEPAGE = "http://www.ba.cnr.it/~paolo/pmacct/" LICENSE = "GPLv2" DEPENDS = "libpcap" -PR = "r1" +PR = "r2" SRC_URI = "http://www.ba.cnr.it/~paolo/pmacct/pmacct-${PV}.tar.gz \ file://pmacct.init \ @@ -10,6 +10,9 @@ SRC_URI = "http://www.ba.cnr.it/~paolo/pmacct/pmacct-${PV}.tar.gz \ inherit autotools +# Without this it'll check for the headers in /usr/include +EXTRA_OECONF = "--with-pcap-includes=${STAGING_INCDIR}" + do_configure () { oe_runconf } |