~ubuntu-branches/ubuntu/natty/checkpolicy/natty

« back to all changes in this revision

Viewing changes to debian/common/automake.mk

  • Committer: Bazaar Package Importer
  • Author(s): Caleb Case, Caleb Case, Joseph Jackson IV
  • Date: 2008-02-09 21:34:46 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20080209213446-hqazy6s0r3lpdekc
Tags: 2.0.9-0ubuntu1
[ Caleb Case ]
* New upstream SVN HEAD.
 + Added support for policy capabilities from Todd Miller.
 + Initialize the source file name from the command line argument so
   that checkpolicy/checkmodule report something more useful than
   "unknown source".
 + Merged remove use of REJECT and trailing context in lex rules; make
   ipv4 address parsing like ipv6 from James Carter.
 + Merged handle unknown policydb flag support from Eric Paris.
   Adds new command line options -U {allow, reject, deny} for selecting
   the flag when a base module or kernel policy is built.
 + Merged fix for segfault on duplicate require of sensitivity from
   Caleb Case.
 + Merged fix for dead URLs in checkpolicy man pages from Dan Walsh.

[ Joseph Jackson IV ]
* debian/control
  - Update Debian Maintainer field

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
############################ -*- Mode: Makefile -*- ###########################
2
 
## automake.mk --- 
3
 
## Author           : Manoj Srivastava ( srivasta@glaurung.green-gryphon.com ) 
4
 
## Created On       : Sat Nov 15 02:47:23 2003
5
 
## Created On Node  : glaurung.green-gryphon.com
6
 
## Last Modified By : Manoj Srivastava
7
 
## Last Modified On : Sat Nov 15 02:47:53 2003
8
 
## Last Machine Used: glaurung.green-gryphon.com
9
 
## Update Count     : 1
10
 
## Status           : Unknown, Use with caution!
11
 
## HISTORY          : 
12
 
## Description      : 
13
 
## 
14
 
## arch-tag: 1fabe69b-7cc8-4ecc-9411-bc5906b19857
15
 
## 
16
 
###############################################################################
17
 
 
18
 
AUTOCONF_VERSION:=$(shell if [ -e configure ]; then                       \
19
 
                       grep "Generated automatically using autoconf"      \
20
 
                       configure | sed -e 's/^.*autoconf version //g';    \
21
 
                      fi)
22
 
HAVE_NEW_AUTOMAKE:=$(shell if [ "X$(AUTOCONF_VERSION)" != "X2.13" ]; then \
23
 
                             echo 'YES' ; fi)
24
 
 
25
 
ifneq ($(strip $(HAVE_NEW_AUTOMAKE)),)
26
 
  ifeq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE))
27
 
       confflags += --build $(DEB_BUILD_GNU_TYPE) 
28
 
  else
29
 
       confflags += --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE)
30
 
  endif
31
 
else
32
 
  ifeq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE))
33
 
       confflags += $(DEB_HOST_GNU_TYPE)
34
 
  else
35
 
       confflags += --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE)
36
 
  endif
37
 
endif