2005-01-18 01:28:09 +01:00
|
|
|
#############################################################
|
|
|
|
#
|
2007-08-19 23:11:15 +02:00
|
|
|
# libpcap
|
2005-01-18 01:28:09 +01:00
|
|
|
#
|
|
|
|
#############################################################
|
|
|
|
# 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
|
|
|
|
|
2008-10-07 09:24:41 +02:00
|
|
|
LIBPCAP_VERSION:=0.9.8
|
2007-07-11 16:06:06 +02:00
|
|
|
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):
|
2009-01-16 12:42:52 +01:00
|
|
|
$(call DOWNLOAD,$(LIBPCAP_SITE),$(LIBPCAP_SOURCE))
|
2005-01-18 01:28:09 +01:00
|
|
|
|
|
|
|
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) -
|
2008-11-11 00:50:57 +01:00
|
|
|
rm -f $(LIBPCAP_DIR)/gencode.c.rej
|
2007-06-20 15:25:44 +02:00
|
|
|
toolchain/patch-kernel.sh $(LIBPCAP_DIR) package/libpcap/ \*.patch
|
2007-10-14 01:08:55 +02:00
|
|
|
$(CONFIG_UPDATE) $(LIBPCAP_DIR)
|
2007-05-15 13:24:27 +02:00
|
|
|
touch $@
|
2005-01-18 01:28:09 +01:00
|
|
|
|
|
|
|
$(LIBPCAP_DIR)/.configured: $(LIBPCAP_DIR)/.unpacked
|
2007-08-22 11:56:41 +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) \
|
2009-10-01 21:24:42 +02:00
|
|
|
./configure $(QUIET) \
|
2005-01-18 01:28:09 +01:00
|
|
|
--target=$(GNU_TARGET_NAME) \
|
|
|
|
--host=$(GNU_TARGET_NAME) \
|
|
|
|
--build=$(GNU_HOST_NAME) \
|
2007-01-14 04:52:21 +01:00
|
|
|
--prefix=/usr \
|
|
|
|
--localstatedir=/var \
|
2007-08-19 23:11:15 +02:00
|
|
|
--mandir=/usr/share/man \
|
|
|
|
--infodir=/usr/share/info \
|
2005-01-18 01:28:09 +01:00
|
|
|
--disable-yydebug \
|
|
|
|
--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
|
|
|
|
2009-09-02 17:02:02 +02:00
|
|
|
libpcap: zlib $(STAGING_DIR)/usr/lib/libpcap.a
|
2005-01-18 01:28:09 +01:00
|
|
|
|
|
|
|
libpcap-clean:
|
2007-08-19 23:11:15 +02:00
|
|
|
rm -f $(addprefix $(STAGING_DIR)/usr/,include/pcap*.h \
|
|
|
|
lib/libpcap.a \
|
|
|
|
share/man/man?/pcap.*)
|
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
|
|
|
|
#
|
|
|
|
#############################################################
|
2008-12-08 09:15:27 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_LIBPCAP),y)
|
2005-02-10 04:06:39 +01:00
|
|
|
TARGETS+=libpcap
|
|
|
|
endif
|