~ubuntu-branches/ubuntu/maverick/exim4/maverick-updates

« back to all changes in this revision

Viewing changes to OS/Makefile-GNUkNetBSD

  • Committer: Bazaar Package Importer
  • Author(s): Michael Bienia
  • Date: 2010-01-01 16:28:19 UTC
  • mfrom: (2.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20100101162819-htn71my7yj4v1vkr
Tags: 4.71-3ubuntu1
* Merge with Debian unstable (lp: #501657). 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
    (Debian bug 542726).

Show diffs side-by-side

added added

removed removed

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