~ubuntu-branches/ubuntu/trusty/freeipa/trusty-updates

« back to all changes in this revision

Viewing changes to .pc/include-ldflags-otpd.diff/daemons/ipa-otpd/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Timo Aaltonen
  • Date: 2014-04-10 11:57:53 UTC
  • Revision ID: package-import@ubuntu.com-20140410115753-epi2yo0kuv8g11vc
Tags: 3.3.4-0ubuntu3
* Merge from unreleased debian git:
  Fix ipa-client-install issues (LP: #1282818)
  - fix auth platform module
  - use new pykerberos api
  - don't install a default conf
  - use sqlite-based nssdb's instead of old

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
AM_CFLAGS := $(CFLAGS) @LDAP_CFLAGS@ @LIBVERTO_CFLAGS@
 
2
AM_LDFLAGS := $(LDFLAGS) @LDAP_LIBS@ @LIBVERTO_LIBS@ @KRAD_LIBS@ -pie -Wl,-z,relro -Wl,-z,now
 
3
 
 
4
noinst_HEADERS = internal.h
 
5
libexec_PROGRAMS = ipa-otpd
 
6
dist_noinst_DATA = ipa-otpd.socket.in ipa-otpd@.service.in test.py
 
7
systemdsystemunit_DATA = ipa-otpd.socket ipa-otpd@.service
 
8
 
 
9
ipa_otpd_SOURCES = bind.c forward.c main.c parse.c query.c queue.c stdio.c
 
10
 
 
11
%.socket: %.socket.in
 
12
        @sed -e 's|@krb5kdcdir[@]|$(krb5kdcdir)|g' \
 
13
             -e 's|@UNLINK[@]|@UNLINK@|g' \
 
14
             $< > $@
 
15
 
 
16
%.service: %.service.in
 
17
        @sed -e 's|@libexecdir[@]|$(libexecdir)|g' \
 
18
             -e 's|@sysconfdir[@]|$(sysconfdir)|g' \
 
19
             $< > $@
 
20
 
 
21
CLEANFILES = $(systemdsystemunit_DATA)