~ubuntu-branches/debian/squeeze/nss-pam-ldapd/squeeze

« back to all changes in this revision

Viewing changes to common/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Arthur de Jong
  • Date: 2009-12-28 13:30:00 UTC
  • Revision ID: james.westby@ubuntu.com-20091228133000-n0hyju3c5tmo8bjq
Tags: 0.7.2
* some attributes may be mapped to a shell-like expression that expand
  attributes from LDAP entries; this allows attributes overrides, defaults
  and much more (as a result the passwd cn attribute mapping has been
  removed because the gecos mapping is now "${gecos:-$cn}" by default)
* update the NSS module to follow the change in Glibc where the addr 
  parameter of getnetbyaddr_r() was changed from network-byte-order to
  host-byte-order
* properly escape searches for uniqueMember attributes for DN with a comma
  in an attribute value
* miscellaneous improvements to the configure script implementing better
  (and simpler) library detection
* some general refactoring and other miscellaneous improvements
* make configure check if we need to explicitly link to -llber
  (closes: #555779)
* libnss-ldapd: recommend libpam-krb5 as an alternative to libpam-ldapd for
  Kerberos environments
* updated Italian debconf translation by Vincenzo Campanella
  (closes: #556107)
* fix nslcd postrm to remove old config file (thanks piuparts)

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 
18
18
# Makefile.am - use automake to generate Makefile.in
19
19
#
20
 
# Copyright (C) 2007, 2008 Arthur de Jong
 
20
# Copyright (C) 2007, 2008, 2009 Arthur de Jong
21
21
#
22
22
# This library is free software; you can redistribute it and/or
23
23
# modify it under the terms of the GNU Lesser General Public
72
72
libdict_a_LIBADD =
73
73
am_libdict_a_OBJECTS = dict.$(OBJEXT) set.$(OBJEXT)
74
74
libdict_a_OBJECTS = $(am_libdict_a_OBJECTS)
 
75
libexpr_a_AR = $(AR) $(ARFLAGS)
 
76
libexpr_a_LIBADD =
 
77
am_libexpr_a_OBJECTS = expr.$(OBJEXT)
 
78
libexpr_a_OBJECTS = $(am_libexpr_a_OBJECTS)
75
79
libprot_a_AR = $(AR) $(ARFLAGS)
76
80
libprot_a_LIBADD =
77
81
am_libprot_a_OBJECTS = nslcd-prot.$(OBJEXT)
88
92
        $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
89
93
CCLD = $(CC)
90
94
LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
91
 
SOURCES = $(libdict_a_SOURCES) $(libprot_a_SOURCES) \
92
 
        $(libtio_a_SOURCES)
93
 
DIST_SOURCES = $(libdict_a_SOURCES) $(libprot_a_SOURCES) \
94
 
        $(libtio_a_SOURCES)
 
95
SOURCES = $(libdict_a_SOURCES) $(libexpr_a_SOURCES) \
 
96
        $(libprot_a_SOURCES) $(libtio_a_SOURCES)
 
97
DIST_SOURCES = $(libdict_a_SOURCES) $(libexpr_a_SOURCES) \
 
98
        $(libprot_a_SOURCES) $(libtio_a_SOURCES)
95
99
ETAGS = etags
96
100
CTAGS = ctags
97
101
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
205
209
top_build_prefix = @top_build_prefix@
206
210
top_builddir = @top_builddir@
207
211
top_srcdir = @top_srcdir@
208
 
noinst_LIBRARIES = libtio.a libprot.a libdict.a
 
212
noinst_LIBRARIES = libtio.a libprot.a libdict.a libexpr.a
209
213
AM_CPPFLAGS = -I$(top_srcdir)
210
214
AM_CFLAGS = -fPIC
211
215
libtio_a_SOURCES = tio.c tio.h
213
217
libdict_a_SOURCES = dict.c dict.h \
214
218
                    set.c set.h
215
219
 
 
220
libexpr_a_SOURCES = expr.c expr.h
216
221
all: all-am
217
222
 
218
223
.SUFFIXES:
254
259
        -rm -f libdict.a
255
260
        $(libdict_a_AR) libdict.a $(libdict_a_OBJECTS) $(libdict_a_LIBADD)
256
261
        $(RANLIB) libdict.a
 
262
libexpr.a: $(libexpr_a_OBJECTS) $(libexpr_a_DEPENDENCIES) 
 
263
        -rm -f libexpr.a
 
264
        $(libexpr_a_AR) libexpr.a $(libexpr_a_OBJECTS) $(libexpr_a_LIBADD)
 
265
        $(RANLIB) libexpr.a
257
266
libprot.a: $(libprot_a_OBJECTS) $(libprot_a_DEPENDENCIES) 
258
267
        -rm -f libprot.a
259
268
        $(libprot_a_AR) libprot.a $(libprot_a_OBJECTS) $(libprot_a_LIBADD)
270
279
        -rm -f *.tab.c
271
280
 
272
281
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dict.Po@am__quote@
 
282
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/expr.Po@am__quote@
273
283
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nslcd-prot.Po@am__quote@
274
284
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/set.Po@am__quote@
275
285
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tio.Po@am__quote@