source: freewrt/package/dnsmasq/Makefile@ 13e1b9c

freewrt_2_0
Last change on this file since 13e1b9c was a72a15a, checked in by Dirk Nehring <dnehring@…>, 16 years ago

Dnsmasq Heap Overflow and Null-pointer Dereference on TFTP Server

http://www.coresecurity.com/content/dnsmasq-vulnerabilities

Todo: Patches on trunk still not updated

git-svn-id: svn://www.freewrt.org/branches/freewrt_1_0@3874 afb5a338-a214-0410-bd46-81f09a774fd1

  • Property mode set to 100644
File size: 1.1 KB
Line 
1# $FreeWRT$
2#-
3# This file is part of the FreeWRT project. FreeWRT is copyrighted
4# material, please see the LICENCE file in the top-level directory
5# or at http://www.freewrt.org/licence for details.
6
7include $(TOPDIR)/rules.mk
8
9PKG_NAME:= dnsmasq
10PKG_VERSION:= 2.50
11PKG_RELEASE:= 1
12PKG_MD5SUM:= f7b1e17c590e493039537434c57c9de7
13PKG_INIT:= 50
14
15PKG_SOURCE_URL:= http://thekelleys.org.uk/dnsmasq
16PKG_SOURCE:= $(PKG_NAME)-$(PKG_VERSION).tar.gz
17
18include $(TOPDIR)/mk/package.mk
19
20$(eval $(call PKG_template,DNSMASQ,$(PKG_NAME),$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
21
22$(WRKBUILD)/.configured:
23 touch $@
24
25$(WRKBUILD)/.built:
26 $(MAKE) -C $(WRKBUILD) \
27 CC=$(TARGET_CC) CFLAGS="$(TARGET_CFLAGS)" \
28 BINDIR=/usr/sbin MANDIR=/usr/man
29 touch $@
30
31$(IPKG_DNSMASQ):
32 $(INSTALL_DIR) $(IDIR_DNSMASQ)/usr/sbin
33 $(INSTALL_DIR) $(IDIR_DNSMASQ)/etc/init.d
34 $(INSTALL_BIN) $(WRKBUILD)/src/$(PKG_NAME) $(IDIR_DNSMASQ)/usr/sbin/
35 $(INSTALL_DATA) ./files/dnsmasq.conf $(IDIR_DNSMASQ)/etc/dnsmasq.conf
36 $(INSTALL_BIN) ./files/dnsmasq.init \
37 $(IDIR_DNSMASQ)/etc/init.d/S$(PKG_INIT)dnsmasq
38 $(RSTRIP) $(IDIR_DNSMASQ)
39 $(IPKG_BUILD) $(IDIR_DNSMASQ) $(PACKAGE_DIR)
Note: See TracBrowser for help on using the repository browser.