view usr/src/lib/libsldap/Makefile.com @ 6842:e0ac183a8194

PSARC/2008/256 Native LDAP standalone tools (Duckwater) 4624732 ldapaddent not fully internationalized 4796766 idsconfig and ldapaddent should support project database 4877152 Performance of ldapaddent 4880322 TLSv1/SSL support needs to become integrated in all LDAP client programs 4942874 RFE: native ldap client with ssl restricted to ports 636/389 5035244 Make ldapaddent a standalone tool 6227396 *ldaplist* should refer to ldapclient(1M) when ldap not configured 6238952 solaris 10/nevada: 4624458 seems to be back 6561249 idsconfig prints out incorrect information for VLV indexing when run against DS5.2 & 6.0 6619071 Connection management works incorrectly in multiple authentication methods case if 1st one fails 6619173 the first hosts request failed after restarting keep alive connection on server side 6681185 libsldap: connection management cleanup and enhancement 6712098 PSARC/2008/256 Native LDAP standalone tools (Duckwater Phase 0)
author th160488
date Tue, 10 Jun 2008 17:10:24 -0700
parents 056b84d6bf52
children 58bc6f85b799
line wrap: on
line source

#
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License (the "License").
# You may not use this file except in compliance with the License.
#
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
# or http://www.opensolaris.org/os/licensing.
# See the License for the specific language governing permissions
# and limitations under the License.
#
# When distributing Covered Code, include this CDDL HEADER in each
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
# If applicable, add the following below this CDDL HEADER, with the
# fields enclosed by brackets "[]" replaced with your own identifying
# information: Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
#
#
# Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
# Use is subject to license terms.
#
#ident	"%Z%%M%	%I%	%E% SMI"
#
# lib/libsldap/Makefile.com

LIBRARY= libsldap.a
VERS= .1

SLDAPOBJ=	ns_common.o	ns_reads.o	ns_writes.o \
		ns_connect.o	ns_config.o	ns_error.o \
		ns_cache_door.o ns_getalias.o	ns_trace.o \
		ns_init.o	ns_crypt.o	ns_confmgr.o \
		ns_mapping.o	ns_wrapper.o	ns_sasl.o \
		ns_standalone.o ns_connmgmt.o

OBJECTS=	$(SLDAPOBJ)

include ../../Makefile.lib

SRCS =		$(SLDAPOBJ:%.o=../common/%.c)
LIBS =		$(DYNLIB) $(LINTLIB)
$(LINTLIB):= 	SRCS=../common/llib-lsldap
LDLIBS +=	-lnsl -lldap -lscf -lc

SRCDIR =	../common

CFLAGS +=	$(CCVERBOSE)
LOCFLAGS +=	-D_REENTRANT -DSUNW_OPTIONS
CPPFLAGS +=	-I../common -I$(SRC)/lib/libldap5/include/ldap \
		-I/usr/include/mps $(LOCFLAGS)
LINTFLAGS +=	-erroff=E_BAD_PTR_CAST_ALIGN
LINTFLAGS64 +=	-erroff=E_BAD_PTR_CAST_ALIGN

.KEEP_STATE:

all: $(LIBS)

lint: lintcheck

include ../../Makefile.targ