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

« back to all changes in this revision

Viewing changes to OS/Makefile-HP-UX

  • 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-HP-UX,v 1.5 2006/03/17 09:39:00 ph10 Exp $
 
2
 
 
3
# Exim: OS-specific make file for HP-UX later than 9
 
4
 
 
5
# HP ANSI C compiler
 
6
#CC=cc
 
7
#CFLAGS=+O2 +Onolimit -z -D_XOPEN_SOURCE_EXTENDED
 
8
# Users of the A.06.00 compiler might need to use +O1 rather than +O2 as
 
9
# there have been some problems reported with this compiler with +O2 set.
 
10
 
 
11
# gcc
 
12
CFLAGS=-O -D_XOPEN_SOURCE_EXTENDED
 
13
LDFLAGS=-Wl,-z
 
14
LIBS=-lm
 
15
 
 
16
BASENAME_COMMAND=/bin/basename
 
17
HAVE_ICONV=yes
 
18
HAVE_SETRESUID=YES
 
19
HAVE_SETEUID=NO
 
20
XINCLUDE=-I/usr/include/X11R6 -I/usr/contrib/X11R6/include
 
21
XLFLAGS=-L/usr/lib/X11R6 -L/usr/contrib/X11R6/lib
 
22
X11_LD_LIB=/usr/contrib/X11R6/lib
 
23
EXIMON_TEXTPOP=
 
24
DBMLIB=-lndbm
 
25
RANLIB=@true
 
26
 
 
27
# End