~vcs-imports/ipfire/ipfire-2.x

« back to all changes in this revision

Viewing changes to lfs/libpcap

  • Committer: Dirk Wagner
  • Date: 2014-12-23 08:02:23 UTC
  • mfrom: (4405.56.108)
  • Revision ID: git-v1:601f8347ccb1e9c5e3f250ff26d4097ecd698875
Merge branch 'next' of ssh://git.ipfire.org/pub/git/ipfire-2.x into asterisk-update

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
###############################################################################
2
2
#                                                                             #
3
3
# IPFire.org - A linux based firewall                                         #
4
 
# Copyright (C) 2007  Michael Tremer & Christian Schmidt                      #
 
4
# Copyright (C) 2014  Michael Tremer & Christian Schmidt                      #
5
5
#                                                                             #
6
6
# This program is free software: you can redistribute it and/or modify        #
7
7
# it under the terms of the GNU General Public License as published by        #
24
24
 
25
25
include Config
26
26
 
27
 
VER        = 1.4.0
 
27
VER        = 1.6.2
28
28
 
29
29
THISAPP    = libpcap-$(VER)
30
30
DL_FILE    = $(THISAPP).tar.gz
42
42
 
43
43
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
44
44
 
45
 
$(DL_FILE)_MD5 = 56e88a5aabdd1e04414985ac24f7e76c
 
45
$(DL_FILE)_MD5 = 5f14191c1a684a75532c739c2c4059fa
46
46
 
47
47
install : $(TARGET)
48
48
 
72
72
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
73
73
        @$(PREBUILD)
74
74
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
75
 
        cd $(DIR_APP) && ./configure --prefix=/usr
 
75
        cd $(DIR_APP) && ./configure \
 
76
                --prefix=/usr \
 
77
                --enable-bluetooth=no
 
78
 
76
79
        cd $(DIR_APP) && make $(MAKETUNING)
77
80
        cd $(DIR_APP) && make install
78
81
        @rm -rf $(DIR_APP)