~ubuntu-branches/ubuntu/precise/exim4/precise-security

« back to all changes in this revision

Viewing changes to .pc/30_dontoverridecflags.dpatch/OS/Makefile-Linux

  • Committer: Bazaar Package Importer
  • Author(s): Artur Rona
  • Date: 2010-07-25 02:00:42 UTC
  • mfrom: (2.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20100725020042-bk1uw1p7ysmnsn9f
Tags: 4.72-1ubuntu1
* Merge with Debian unstable (LP: #609620). Remaining changes:
  + debian/patches/71_exiq_grep_error_on_messages_without_size.dpatch:
    Improve handling of broken messages when "exim4 -bp" (mailq) reports
    lines without size info.
  + Don't declare a Provides: default-mta; in Ubuntu, we want postfix to be
    the default.
  + debian/control: Change build dependencies to MySQL 5.1.
  + debian/{control,rules}: add and enable hardened build for PIE
    (Closes: #542726).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# $Cambridge: exim/exim-src/OS/Makefile-Linux,v 1.4 2008/08/11 15:30:02 fanf2 Exp $
 
2
 
 
3
# Exim: OS-specific make file for Linux. This is for modern Linuxes,
 
4
# which use libc6.
 
5
 
 
6
HAVE_ICONV=yes
 
7
 
 
8
BASENAME_COMMAND=look_for_it
 
9
CHOWN_COMMAND=look_for_it
 
10
CHGRP_COMMAND=look_for_it
 
11
CHMOD_COMMAND=look_for_it
 
12
 
 
13
CFLAGS=-O -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
 
14
 
 
15
DBMLIB = -ldb
 
16
USE_DB = yes
 
17
 
 
18
LIBS = -lnsl -lcrypt -lm
 
19
LIBRESOLV = -lresolv
 
20
 
 
21
X11=/usr/X11R6
 
22
XINCLUDE=-I$(X11)/include
 
23
XLFLAGS=-L$(X11)/lib
 
24
X11_LD_LIB=$(X11)/lib
 
25
 
 
26
EXIWHAT_PS_ARG=ax
 
27
EXIWHAT_EGREP_ARG='/exim( |$$)'
 
28
EXIWHAT_MULTIKILL_CMD=killall
 
29
EXIWHAT_MULTIKILL_ARG=exim
 
30
EXIWHAT_KILL_SIGNAL=-USR1
 
31
 
 
32
# End