~ttx/openldap/lucid-gssapi-495418

« back to all changes in this revision

Viewing changes to clients/tools/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Steve Langasek, Updated debconf translations
  • Date: 2009-07-28 10:17:15 UTC
  • mfrom: (1.1.4 upstream) (0.2.2 sid)
  • mto: (0.2.4 sid)
  • mto: This revision was merged to the branch mainline in revision 16.
  • Revision ID: james.westby@ubuntu.com-20090728101715-epwmqmsk0d3h22k3
* New upstream version.
  - Fixes FTBFS on ia64 with -fPIE. Closes: #524770.
  - Fixes some TLS issues with GnuTLS.  Closes: #505191.
* Update priority of libldap-2.4-2 to match the archive override.
* Add the missing ldapexop and ldapurl tools to ldap-utils, as well as the
  ldapurl(1) manpage.  Thanks to Peter Marschall for the patch.
  Closes: #496749.
* Bump build-dependency on debhelper to 6 instead of 5, since that's
  what we're using.  Closes: #498116.
* Set the default SLAPD_SERVICES to ldap:/// ldapi:///, instead of using
  the built-in default of ldap:/// only.
* Build-depend on libltdl-dev | libltdl3-dev (>= 1.4.3), for the package
  name change.  Closes: #522965.

[ Updated debconf translations ]
* Spanish, thanks to Francisco Javier Cuadrado <fcocuadrado@gmail.com>.
  Closes: #521804.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# Makefile for LDAP tools
2
 
# $OpenLDAP: pkg/ldap/clients/tools/Makefile.in,v 1.45.2.3 2008/02/11 23:26:38 kurt Exp $
 
2
# $OpenLDAP: pkg/ldap/clients/tools/Makefile.in,v 1.45.2.5 2009/01/22 00:00:42 kurt Exp $
3
3
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
4
4
##
5
 
## Copyright 1998-2008 The OpenLDAP Foundation.
 
5
## Copyright 1998-2009 The OpenLDAP Foundation.
6
6
## All rights reserved.
7
7
##
8
8
## Redistribution and use in source and binary forms, with or without
15
15
 
16
16
SRCS    = ldapsearch.c ldapmodify.c ldapdelete.c ldapmodrdn.c \
17
17
                ldappasswd.c ldapwhoami.c ldapcompare.c \
18
 
                ldapexop.c common.c
 
18
                ldapexop.c ldapurl.c common.c
19
19
OBJS    = ldapsearch.o ldapmodify.o ldapdelete.o ldapmodrdn.o \
20
20
                ldappasswd.o ldapwhoami.o ldapcompare.o \
21
 
                ldapexop.o common.o
 
21
                ldapexop.o ldapurl.o common.o
22
22
 
23
23
LDAP_INCDIR= ../../include       
24
24
LDAP_LIBDIR= ../../libraries
29
29
XXLIBS  = $(SECURITY_LIBS) $(LUTIL_LIBS)
30
30
 
31
31
XSRCS   = ldsversion.c ldmversion.c lddversion.c ldrversion.c \
32
 
        ldpversion.c ldwversion.c ldcversion.c ldeversion.c
 
32
        ldpversion.c ldwversion.c ldcversion.c ldeversion.c lduversion.c
33
33
 
34
34
PROGRAMS = ldapsearch ldapmodify ldapdelete ldapmodrdn \
35
 
        ldappasswd ldapwhoami ldapcompare ldapexop
 
35
        ldappasswd ldapwhoami ldapcompare ldapexop ldapurl
36
36
 
37
37
 
38
38
ldapsearch:     ldsversion.o
59
59
ldapexop: ldeversion.o
60
60
        $(LTLINK) -o $@ ldapexop.o common.o ldeversion.o $(LIBS)
61
61
 
 
62
ldapurl: lduversion.o
 
63
        $(LTLINK) -o $@ ldapurl.o lduversion.o $(LIBS)
 
64
 
62
65
ldsversion.c: Makefile
63
66
        @-$(RM) $@
64
67
        $(MKVERSION) $(MKVOPTS) ldapsearch > $@
107
110
 
108
111
ldeversion.o: ldapexop.o common.o $(XLIBS)
109
112
 
 
113
lduversion.c: Makefile
 
114
        @-$(RM) $@
 
115
        $(MKVERSION) $(MKVOPTS) ldapurl > $@
 
116
 
 
117
lduversion.o: ldapurl.o $(XLIBS)
 
118
 
110
119
install-local:  FORCE
111
120
        -$(MKDIR) $(DESTDIR)$(bindir)
112
121
        @(                                                              \