2005-01-18 01:28:09 +01:00
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# libpcap
|
|
|
|
#
|
|
|
|
#############################################################
|
|
|
|
# Copyright (C) 2001-2003 by Erik Andersen <andersen@codepoet.org>
|
|
|
|
# Copyright (C) 2002 by Tim Riker <Tim@Rikers.org>
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Library General Public License as
|
|
|
|
# published by the Free Software Foundation; either version 2 of the
|
|
|
|
# License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful, but
|
|
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
# Library General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Library General Public
|
|
|
|
# License along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
# USA
|
|
|
|
|
2007-07-11 16:06:06 +02:00
|
|
|
LIBPCAP_VERSION:=0.9.5
|
|
|
|
LIBPCAP_DIR:=$(BUILD_DIR)/libpcap-$(LIBPCAP_VERSION)
|
2005-01-18 01:28:09 +01:00
|
|
|
LIBPCAP_SITE:=http://www.tcpdump.org/release
|
2007-07-11 16:06:06 +02:00
|
|
|
LIBPCAP_SOURCE:=libpcap-$(LIBPCAP_VERSION).tar.gz
|
2006-10-01 17:17:52 +02:00
|
|
|
LIBPCAP_CAT:=$(ZCAT)
|
2005-01-18 01:28:09 +01:00
|
|
|
|
|
|
|
$(DL_DIR)/$(LIBPCAP_SOURCE):
|
|
|
|
$(WGET) -P $(DL_DIR) $(LIBPCAP_SITE)/$(LIBPCAP_SOURCE)
|
|
|
|
|
|
|
|
libpcap-source: $(DL_DIR)/$(LIBPCAP_SOURCE)
|
|
|
|
|
|
|
|
$(LIBPCAP_DIR)/.unpacked: $(DL_DIR)/$(LIBPCAP_SOURCE)
|
|
|
|
$(LIBPCAP_CAT) $(DL_DIR)/$(LIBPCAP_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
|
2007-06-20 15:25:44 +02:00
|
|
|
toolchain/patch-kernel.sh $(LIBPCAP_DIR) package/libpcap/ \*.patch
|
2007-05-15 13:24:27 +02:00
|
|
|
touch $@
|
2005-01-18 01:28:09 +01:00
|
|
|
|
|
|
|
$(LIBPCAP_DIR)/.configured: $(LIBPCAP_DIR)/.unpacked
|
2007-06-27 11:40:25 +02:00
|
|
|
(cd $(LIBPCAP_DIR) ; rm -rf config.cache ; \
|
2005-01-18 01:28:09 +01:00
|
|
|
ac_cv_linux_vers=$(BR2_DEFAULT_KERNEL_HEADERS) \
|
2005-12-21 09:17:34 +01:00
|
|
|
BUILD_CC=$(TARGET_CC) HOSTCC="$(HOSTCC)" \
|
2005-01-18 01:28:09 +01:00
|
|
|
$(TARGET_CONFIGURE_OPTS) \
|
2007-06-27 11:48:23 +02:00
|
|
|
$(TARGET_CONFIGURE_ARGS) \
|
2005-01-18 01:28:09 +01:00
|
|
|
./configure \
|
|
|
|
--target=$(GNU_TARGET_NAME) \
|
|
|
|
--host=$(GNU_TARGET_NAME) \
|
|
|
|
--build=$(GNU_HOST_NAME) \
|
2007-01-14 04:52:21 +01:00
|
|
|
--prefix=/usr \
|
|
|
|
--exec-prefix=/usr \
|
|
|
|
--bindir=/usr/bin \
|
|
|
|
--sbindir=/usr/sbin \
|
2007-06-27 11:40:25 +02:00
|
|
|
--libdir=/usr/lib \
|
2007-01-14 04:52:21 +01:00
|
|
|
--libexecdir=/usr/lib \
|
|
|
|
--sysconfdir=/etc \
|
|
|
|
--datadir=/usr/share \
|
|
|
|
--localstatedir=/var \
|
2007-06-27 11:40:25 +02:00
|
|
|
--includedir=/usr/include \
|
2007-01-14 04:52:21 +01:00
|
|
|
--mandir=/usr/man \
|
|
|
|
--infodir=/usr/info \
|
2005-12-21 09:17:34 +01:00
|
|
|
--with-build-cc="$(HOSTCC)" \
|
2005-01-18 01:28:09 +01:00
|
|
|
--disable-yydebug \
|
|
|
|
--prefix=/usr \
|
|
|
|
--with-pcap=linux \
|
2007-06-27 11:40:25 +02:00
|
|
|
$(DISABLE_IPV6) \
|
2005-01-18 01:28:09 +01:00
|
|
|
)
|
2007-05-15 13:24:27 +02:00
|
|
|
touch $@
|
2005-01-18 01:28:09 +01:00
|
|
|
|
|
|
|
$(LIBPCAP_DIR)/libpcap.a: $(LIBPCAP_DIR)/.configured
|
2007-06-27 11:40:25 +02:00
|
|
|
$(MAKE) AR=$(TARGET_CROSS)ar -C $(LIBPCAP_DIR)
|
2005-01-18 01:28:09 +01:00
|
|
|
|
2007-06-27 11:40:25 +02:00
|
|
|
$(STAGING_DIR)/usr/lib/libpcap.a: $(LIBPCAP_DIR)/libpcap.a
|
2007-01-14 04:52:21 +01:00
|
|
|
$(MAKE) DESTDIR=$(STAGING_DIR) -C $(LIBPCAP_DIR) install
|
2005-01-18 01:28:09 +01:00
|
|
|
|
2007-06-27 11:40:25 +02:00
|
|
|
libpcap: uclibc zlib $(STAGING_DIR)/usr/lib/libpcap.a
|
2005-01-18 01:28:09 +01:00
|
|
|
|
|
|
|
libpcap-clean:
|
2007-06-27 11:40:25 +02:00
|
|
|
rm -f $(STAGING_DIR)/usr/include/pcap*.h \
|
|
|
|
$(STAGING_DIR)/usr/lib/libpcap.a
|
2005-01-18 01:28:09 +01:00
|
|
|
-$(MAKE) -C $(LIBPCAP_DIR) clean
|
|
|
|
|
|
|
|
libpcap-dirclean:
|
|
|
|
rm -rf $(LIBPCAP_DIR)
|
2005-02-10 04:06:39 +01:00
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# Toplevel Makefile options
|
|
|
|
#
|
|
|
|
#############################################################
|
|
|
|
ifeq ($(strip $(BR2_PACKAGE_LIBPCAP)),y)
|
|
|
|
TARGETS+=libpcap
|
|
|
|
endif
|