From f92ce9efedd7e9b37e8ae8a238bdb52b276da01b Mon Sep 17 00:00:00 2001 From: CentOS Sources Date: Mar 05 2015 12:40:37 +0000 Subject: import 389-ds-base-1.3.3.1-15.el7_1 --- diff --git a/.389-ds-base.metadata b/.389-ds-base.metadata index a9c8cd5..39e4851 100644 --- a/.389-ds-base.metadata +++ b/.389-ds-base.metadata @@ -1 +1 @@ -ce4e6293a996e1045bc8f75533418f3172b391ee SOURCES/389-ds-base-1.3.1.6.tar.bz2 +952e538aa0fd95a4cbee5cf2bb2795fbed43a826 SOURCES/389-ds-base-1.3.3.1.tar.bz2 diff --git a/.gitignore b/.gitignore index fa91146..a20c80c 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -SOURCES/389-ds-base-1.3.1.6.tar.bz2 +SOURCES/389-ds-base-1.3.3.1.tar.bz2 diff --git a/SOURCES/0000-Ticket-47748-Simultaneous-adding-a-user-and-binding-.patch b/SOURCES/0000-Ticket-47748-Simultaneous-adding-a-user-and-binding-.patch new file mode 100644 index 0000000..049a080 --- /dev/null +++ b/SOURCES/0000-Ticket-47748-Simultaneous-adding-a-user-and-binding-.patch @@ -0,0 +1,73 @@ +From dc2157e3a4b04b522147a86477bbd974a9c0b63a Mon Sep 17 00:00:00 2001 +From: Noriko Hosoi +Date: Tue, 9 Sep 2014 12:45:58 -0700 +Subject: [PATCH 0/7] Ticket #47748 - Simultaneous adding a user and binding as + the user could fail in the password policy check + +Description: commit 4fc53e1a63222d0ff67c30a59f2cff4b535f90a8 fix for +Ticket #47748 introduced a bug: "Simple bind hangs after enabling +password policy". + +In do_bind, slapi_check_account_lock and need_new_pw overwrote the +return code from backend bind which is used later. This patch fixes +it not to override the return code. + +https://fedorahosted.org/389/ticket/47748 + +Reviewed by mreynolds@redhat.com (Thank you, Mark!!) + +(cherry picked from commit 4f11606b02419c8ccdb319b8040e683af9109d1b) +(cherry picked from commit 8c82941c0f2b0b5d7fa698a1ca3e4f26245cf85a) +--- + ldap/servers/slapd/bind.c | 13 +++++++------ + 1 file changed, 7 insertions(+), 6 deletions(-) + +diff --git a/ldap/servers/slapd/bind.c b/ldap/servers/slapd/bind.c +index 58a4e13..bc4aa24 100644 +--- a/ldap/servers/slapd/bind.c ++++ b/ldap/servers/slapd/bind.c +@@ -769,6 +769,7 @@ do_bind( Slapi_PBlock *pb ) + } + + if ( rc == SLAPI_BIND_SUCCESS ) { ++ int myrc = 0; + if (!auto_bind) { + /* + * There could be a race that bind_target_entry was not added +@@ -779,9 +780,9 @@ do_bind( Slapi_PBlock *pb ) + if (!bind_target_entry) { + bind_target_entry = get_entry(pb, slapi_sdn_get_ndn(sdn)); + if (bind_target_entry) { +- rc = slapi_check_account_lock(pb, bind_target_entry, ++ myrc = slapi_check_account_lock(pb, bind_target_entry, + pw_response_requested, 1, 1); +- if (1 == rc) { /* account is locked */ ++ if (1 == myrc) { /* account is locked */ + goto account_locked; + } + } else { +@@ -795,8 +796,8 @@ do_bind( Slapi_PBlock *pb ) + if (!slapi_be_is_flag_set(be, SLAPI_BE_FLAG_REMOTE_DATA)) { + /* check if need new password before sending + the bind success result */ +- rc = need_new_pw(pb, &t, bind_target_entry, pw_response_requested); +- switch (rc) { ++ myrc = need_new_pw(pb, &t, bind_target_entry, pw_response_requested); ++ switch (myrc) { + case 1: + (void)slapi_add_pwd_control(pb, LDAP_CONTROL_PWEXPIRED, 0); + break; +@@ -811,8 +812,8 @@ do_bind( Slapi_PBlock *pb ) + if (auth_response_requested) { + slapi_add_auth_response_control(pb, slapi_sdn_get_ndn(sdn)); + } +- if (-1 == rc) { +- /* neeed_new_pw failed; need_new_pw already send_ldap_result in it. */ ++ if (-1 == myrc) { ++ /* need_new_pw failed; need_new_pw already send_ldap_result in it. */ + goto free_and_return; + } + } else { /* anonymous */ +-- +1.9.3 + diff --git a/SOURCES/0001-Ticket-47488-Users-from-AD-sub-OU-does-not-sync-to-I.patch b/SOURCES/0001-Ticket-47488-Users-from-AD-sub-OU-does-not-sync-to-I.patch deleted file mode 100644 index ad3e273..0000000 --- a/SOURCES/0001-Ticket-47488-Users-from-AD-sub-OU-does-not-sync-to-I.patch +++ /dev/null @@ -1,63 +0,0 @@ -From ba999074cab9ae43c636a0ae9dfa870bfcda215f Mon Sep 17 00:00:00 2001 -From: Noriko Hosoi -Date: Tue, 20 Aug 2013 14:09:26 -0700 -Subject: [PATCH 1/2] Ticket #47488 - Users from AD sub OU does not sync to IPA - -Bug description: When processing a DN from AD, the DN is passed to -a helper function is_subject_of_agreement_remote (windows_protocol_ -util.c) to check if the DN is a subject of the sync service or not. -The helper function was checking if the AD DN is just one-level -child of the agreement subtree top (nsds7WindowsReplicaSubtree) but -not the subtree-level descendents. Note: the DN is an original one -in AD, which has not be flattened yet. Therefore, the AD entry was -determined not to be synchronized. - -Fix description: This bug was fixed in the master tree with the -ticket #521 - modrdn + NSMMReplicationPlugin - Consumer failed to -replay change. - 3) is_subject_of_agreement_remote (windows_protocol_util.c): - When checking if the entry was in the subtree defined in the - agreement or not, it returned true only if the entry is a - direct child of the agreement subtree top. This patch returns - true if the entry is the further descendent of the subtree. -The fix is back ported to 389-ds-base-1.3.1 branch. - -Reviewed by Rich (Thank you!!) - -https://fedorahosted.org/389/ticket/47488 -(cherry picked from commit 529a544a2fe9961d9286e191346fb5faca27d38b) ---- - ldap/servers/plugins/replication/windows_protocol_util.c | 10 ++++++++-- - 1 file changed, 8 insertions(+), 2 deletions(-) - -diff --git a/ldap/servers/plugins/replication/windows_protocol_util.c b/ldap/servers/plugins/replication/windows_protocol_util.c -index 964566a..730d9a6 100644 ---- a/ldap/servers/plugins/replication/windows_protocol_util.c -+++ b/ldap/servers/plugins/replication/windows_protocol_util.c -@@ -3950,7 +3950,12 @@ error: - return retval; - } - --/* Tests if the entry is subject to our agreement (i.e. is it in the sync'ed subtree in AD and either a user or a group ?) */ -+/* -+ * Tests if the entry is subject to our agreement -+ * (i.e. is it in the sync'ed subtree in AD and either a user or a group ?) -+ * return value: 1 -- it is subject to the agreement -+ * 0 -- out of scope -+ */ - static int - is_subject_of_agreement_remote(Slapi_Entry *e, const Repl_Agmt *ra) - { -@@ -3981,7 +3986,8 @@ is_subject_of_agreement_remote(Slapi_Entry *e, const Repl_Agmt *ra) - * 'e' as out of scope. - */ - slapi_sdn_get_parent(sdn, &psdn); -- if (0 == slapi_sdn_compare(&psdn, agreement_subtree)) { -+ if (slapi_sdn_issuffix(&psdn, agreement_subtree)) { -+ /* parent is in agreement_subtree. */ - retval = 1; - } else { - /* If parent entry is not local, the entry is out of scope */ --- -1.8.1.4 - diff --git a/SOURCES/0001-Ticket-47834-Tombstone_to_glue-if-parents-are-also-c.patch b/SOURCES/0001-Ticket-47834-Tombstone_to_glue-if-parents-are-also-c.patch new file mode 100644 index 0000000..6486e03 --- /dev/null +++ b/SOURCES/0001-Ticket-47834-Tombstone_to_glue-if-parents-are-also-c.patch @@ -0,0 +1,120 @@ +From 2566e87a956938a6be3addc586fb2fe53cc8b9f8 Mon Sep 17 00:00:00 2001 +From: Noriko Hosoi +Date: Mon, 8 Sep 2014 14:29:29 -0700 +Subject: [PATCH 1/7] Ticket #47834 - Tombstone_to_glue: if parents are also + converted to glue, the target entry's DN must be adjusted. + +Description: Previous fix for the ticket #47834 broke the CI test case +47815. + +The fix for 47815 removed the addingentry from the entry cache if +SLAPI_PLUGIN_BE_TXN_POST_ADD_FN failed. The #47834 patch accidentally +deleted the code. + +Instead of adding it back, this patch moves the deletion of the entry +from the entry cache to cover both cases SLAPI_PLUGIN_BE_TXN_POST_ADD +_FN successes or fails. + +https://fedorahosted.org/389/ticket/47834 + +Reviewed by mreynolds@redhat.com (Thank you, Mark!!) + +(cherry picked from commit 7db4fa90caa543b59352046138f453236c0fd652) +(cherry picked from commit 78fdd6165cb2c9da4e30452ebdcdcf7aad3d30c7) +--- + ldap/servers/slapd/back-ldbm/ldbm_add.c | 59 ++++++++++++++++++++++++--------- + 1 file changed, 43 insertions(+), 16 deletions(-) + +diff --git a/ldap/servers/slapd/back-ldbm/ldbm_add.c b/ldap/servers/slapd/back-ldbm/ldbm_add.c +index 2f1b398..b74154a 100644 +--- a/ldap/servers/slapd/back-ldbm/ldbm_add.c ++++ b/ldap/servers/slapd/back-ldbm/ldbm_add.c +@@ -1209,21 +1209,6 @@ error_return: + { + next_id_return( be, addingentry->ep_id ); + } +- if ( addingentry ) +- { +- if (inst && cache_is_in_cache(&inst->inst_cache, addingentry)) { +- CACHE_REMOVE(&inst->inst_cache, addingentry); +- /* tell frontend not to free this entry */ +- slapi_pblock_set(pb, SLAPI_ADD_ENTRY, NULL); +- } +- else if (!cache_has_otherref(&inst->inst_cache, addingentry)) +- { +- if (!is_resurect_operation) { /* if resurect, tombstoneentry is dupped. */ +- backentry_clear_entry(addingentry); /* e is released in the frontend */ +- } +- } +- CACHE_RETURN( &inst->inst_cache, &addingentry ); +- } + if (rc == DB_RUNRECOVERY) { + dblayer_remember_disk_filled(li); + ldbm_nasty("Add",80,rc); +@@ -1244,6 +1229,20 @@ error_return: + } + diskfull_return: + if (disk_full) { ++ if ( addingentry ) { ++ if (inst && cache_is_in_cache(&inst->inst_cache, addingentry)) { ++ CACHE_REMOVE(&inst->inst_cache, addingentry); ++ /* tell frontend not to free this entry */ ++ slapi_pblock_set(pb, SLAPI_ADD_ENTRY, NULL); ++ } ++ else if (!cache_has_otherref(&inst->inst_cache, addingentry)) ++ { ++ if (!is_resurect_operation) { /* if resurect, tombstoneentry is dupped. */ ++ backentry_clear_entry(addingentry); /* e is released in the frontend */ ++ } ++ } ++ CACHE_RETURN( &inst->inst_cache, &addingentry ); ++ } + rc = return_on_disk_full(li); + } else { + /* It is safer not to abort when the transaction is not started. */ +@@ -1277,13 +1276,41 @@ diskfull_return: + } + slapi_pblock_get(pb, SLAPI_PB_RESULT_TEXT, &ldap_result_message); + } +- ++ if ( addingentry ) { ++ if (inst && cache_is_in_cache(&inst->inst_cache, addingentry)) { ++ CACHE_REMOVE(&inst->inst_cache, addingentry); ++ /* tell frontend not to free this entry */ ++ slapi_pblock_set(pb, SLAPI_ADD_ENTRY, NULL); ++ } ++ else if (!cache_has_otherref(&inst->inst_cache, addingentry)) ++ { ++ if (!is_resurect_operation) { /* if resurect, tombstoneentry is dupped. */ ++ backentry_clear_entry(addingentry); /* e is released in the frontend */ ++ } ++ } ++ CACHE_RETURN( &inst->inst_cache, &addingentry ); ++ } + /* Release SERIAL LOCK */ + if (!noabort) { + dblayer_txn_abort(be, &txn); /* abort crashes in case disk full */ + } + /* txn is no longer valid - reset the txn pointer to the parent */ + slapi_pblock_set(pb, SLAPI_TXN, parent_txn); ++ } else { ++ if ( addingentry ) { ++ if (inst && cache_is_in_cache(&inst->inst_cache, addingentry)) { ++ CACHE_REMOVE(&inst->inst_cache, addingentry); ++ /* tell frontend not to free this entry */ ++ slapi_pblock_set(pb, SLAPI_ADD_ENTRY, NULL); ++ } ++ else if (!cache_has_otherref(&inst->inst_cache, addingentry)) ++ { ++ if (!is_resurect_operation) { /* if resurect, tombstoneentry is dupped. */ ++ backentry_clear_entry(addingentry); /* e is released in the frontend */ ++ } ++ } ++ CACHE_RETURN( &inst->inst_cache, &addingentry ); ++ } + } + if (!not_an_error) { + rc = SLAPI_FAIL_GENERAL; +-- +1.9.3 + diff --git a/SOURCES/0002-Bug-999634-ns-slapd-crash-due-to-bogus-DN.patch b/SOURCES/0002-Bug-999634-ns-slapd-crash-due-to-bogus-DN.patch deleted file mode 100644 index 6604bb6..0000000 --- a/SOURCES/0002-Bug-999634-ns-slapd-crash-due-to-bogus-DN.patch +++ /dev/null @@ -1,58 +0,0 @@ -From 2a210d1d35cf28b3ec0e7961e674feea8a394289 Mon Sep 17 00:00:00 2001 -From: Rich Megginson -Date: Fri, 23 Aug 2013 14:16:29 -0600 -Subject: [PATCH 2/2] Bug 999634 - ns-slapd crash due to bogus DN - -https://bugzilla.redhat.com/show_bug.cgi?id=999634 -Reviewed by: ??? -Branch: embargo-rhel-6.4-bug999634 -Fix Description: When the target DN is not a valid DN, the code will bypass -the initialization of unhashed_pw_smod, and attempt to call slapi_smods_done. -Depending on what memory is in the unhashed_pw_smod, if both mods and -free_mods are true, an attempt will be made to free mods or *mods and the -server will crash. It is tricky to find the right sequence of operations -that will write the stack in such a way that both unhashed_pw_smod.mods -and unhashed_pw_smod.free_mods are set. -The fix is to just get rid of unhashed_pw_smod which is not used. -I also check this code and other operation code for similar cases, but the -rest of the code is clean. -Platforms tested: RHEL6 x86_64 -Flag Day: no -Doc impact: no -(cherry picked from commit a3d65ac00df871675896f587b0da2c24eab961bb) ---- - ldap/servers/slapd/modify.c | 4 ---- - 1 file changed, 4 deletions(-) - -diff --git a/ldap/servers/slapd/modify.c b/ldap/servers/slapd/modify.c -index 2677b92..957f36e 100644 ---- a/ldap/servers/slapd/modify.c -+++ b/ldap/servers/slapd/modify.c -@@ -653,7 +653,6 @@ static void op_shared_modify (Slapi_PBlock *pb, int pw_change, char *old_pw) - int passin_sdn = 0; - LDAPMod **mods, *pw_mod, **tmpmods = NULL; - Slapi_Mods smods; -- Slapi_Mods unhashed_pw_smod; - int repl_op, internal_op, lastmod, skip_modified_attrs; - char *unhashed_pw_attr = NULL; - Slapi_Operation *operation; -@@ -692,8 +691,6 @@ static void op_shared_modify (Slapi_PBlock *pb, int pw_change, char *old_pw) - - slapi_mods_init_passin (&smods, mods); - -- slapi_mods_init(&unhashed_pw_smod, 0); -- - /* target spec is used to decide which plugins are applicable for the operation */ - operation_set_target_spec (pb->pb_op, sdn); - -@@ -1138,7 +1135,6 @@ free_and_return: - if (be) - slapi_be_Unlock(be); - -- slapi_mods_done(&unhashed_pw_smod); /* can finalize now */ - if (unhashed_pw_attr) - slapi_ch_free ((void**)&unhashed_pw_attr); - --- -1.8.1.4 - diff --git a/SOURCES/0002-Ticket-47890-minor-memory-leaks-in-utilities.patch b/SOURCES/0002-Ticket-47890-minor-memory-leaks-in-utilities.patch new file mode 100644 index 0000000..3022e20 --- /dev/null +++ b/SOURCES/0002-Ticket-47890-minor-memory-leaks-in-utilities.patch @@ -0,0 +1,89 @@ +From ed7316fc2e770c4e0c877e220434489318735c76 Mon Sep 17 00:00:00 2001 +From: Noriko Hosoi +Date: Tue, 9 Sep 2014 14:27:40 -0700 +Subject: [PATCH 2/7] Ticket #47890 - minor memory leaks in utilities + +Description: +tools/rsearch/nametable.c - if nt_push fails and the strdup'ed + string is not pushed to the table, + free the string. +tools/migratecred.c - free strdup'ed strings oldpath, newpath, + prefixCred, and pluginpath at the end of + the process. + +https://fedorahosted.org/389/ticket/47890 + +Reviewed by mreynolds@redhat.com (Thank you, Mark!!) + +(cherry picked from commit 1279f0e0fe1d0f5456e42ef5b7a9f395f793cc9e) +(cherry picked from commit aa8ff4b066243f68175f2e664239b7db8747e1d1) +--- + ldap/servers/slapd/tools/migratecred.c | 13 ++++++++++++- + ldap/servers/slapd/tools/rsearch/nametable.c | 13 ++++++++----- + 2 files changed, 20 insertions(+), 6 deletions(-) + +diff --git a/ldap/servers/slapd/tools/migratecred.c b/ldap/servers/slapd/tools/migratecred.c +index 085a21a..c1e37bf 100644 +--- a/ldap/servers/slapd/tools/migratecred.c ++++ b/ldap/servers/slapd/tools/migratecred.c +@@ -163,6 +163,10 @@ main( int argc, char **argv) + + if ( !oldpath || !newpath || !cred ) + { ++ free(oldpath); ++ free(newpath); ++ free(prefixCred); ++ free(pluginpath); + usage(cmd); + } + +@@ -208,6 +212,10 @@ main( int argc, char **argv) + "DES Plugin", 1 /* report errors */ ); + if ( fct == NULL ) + { ++ free(oldpath); ++ free(newpath); ++ free(prefixCred); ++ free(pluginpath); + usage(cmd); + return(1); + } +@@ -215,7 +223,10 @@ main( int argc, char **argv) + newcred = (fct)(oldpath, newpath, cred); + + fprintf(stdout, "%s", newcred); +- ++ free(oldpath); ++ free(newpath); ++ free(prefixCred); ++ free(pluginpath); + return(0); + + } +diff --git a/ldap/servers/slapd/tools/rsearch/nametable.c b/ldap/servers/slapd/tools/rsearch/nametable.c +index e5d04cd..03a6ae1 100644 +--- a/ldap/servers/slapd/tools/rsearch/nametable.c ++++ b/ldap/servers/slapd/tools/rsearch/nametable.c +@@ -152,11 +152,14 @@ int nt_load(NameTable *nt, const char *filename) + if (!fd) return 0; + + while (PR_Available(fd) > 0) { +- char temp[4096], *s; +- if (PR_GetLine(fd, temp, sizeof(temp))) break; +- s = strdup(temp); +- if (!s) break; +- if (!nt_push(nt, s)) break; ++ char temp[4096], *s; ++ if (PR_GetLine(fd, temp, sizeof(temp))) break; ++ s = strdup(temp); ++ if (!s) break; ++ if (!nt_push(nt, s)) { ++ free(s); ++ break; ++ } + } + PR_Close(fd); + return nt->size; +-- +1.9.3 + diff --git a/SOURCES/0003-Ticket-47500-start-dirsrv-restart-dirsrv-stop-disrv-.patch b/SOURCES/0003-Ticket-47500-start-dirsrv-restart-dirsrv-stop-disrv-.patch deleted file mode 100644 index fbd50eb..0000000 --- a/SOURCES/0003-Ticket-47500-start-dirsrv-restart-dirsrv-stop-disrv-.patch +++ /dev/null @@ -1,92 +0,0 @@ -From f808062081e1cbfeaf1419ba037aa0aa677a0e44 Mon Sep 17 00:00:00 2001 -From: Mark Reynolds -Date: Wed, 4 Sep 2013 11:43:22 -0400 -Subject: [PATCH 3/4] Ticket 47500 - start-dirsrv/restart-dirsrv/stop-disrv do not register with systemd correctly - -Description: If "systemctl" is available on the system, and the user is root, then - use systemctl to start & stop the server. - -https://fedorahosted.org/389/ticket/47500 - -Reviewed by: richm(Thanks!) -(cherry picked from commit ba00d4885b93f8cc8d6eb1460bd0b5019e4d2fc2) -(cherry picked from commit 060c05c1d89ee92e17c797aa27d4a87a9f4789de) ---- - ldap/admin/src/scripts/start-dirsrv.in | 18 ++++++++++++++---- - ldap/admin/src/scripts/stop-dirsrv.in | 29 ++++++++++++++++++++++++++--- - 2 files changed, 40 insertions(+), 7 deletions(-) - -diff --git a/ldap/admin/src/scripts/start-dirsrv.in b/ldap/admin/src/scripts/start-dirsrv.in -index a163cef..481797d 100755 ---- a/ldap/admin/src/scripts/start-dirsrv.in -+++ b/ldap/admin/src/scripts/start-dirsrv.in -@@ -60,11 +60,21 @@ start_instance() { - rm -f $PIDFILE - fi - fi -- cd $SERVERBIN_DIR; ./ns-slapd -D $CONFIG_DIR -i $PIDFILE -w $STARTPIDFILE "$@" -- if [ $? -ne 0 ]; then -- return 1 -+ # -+ # Use systemctl if available and running as root, -+ # otherwise start the instance the old way. -+ # -+ if [ -d "@systemdsystemunitdir@" ] && [ "$(id -u)" == "0" ];then -+ @bindir@/systemctl start @package_name@@$SERV_ID.service -+ if [ $? -ne 0 ]; then -+ return 1 -+ fi -+ else -+ cd $SERVERBIN_DIR; ./ns-slapd -D $CONFIG_DIR -i $PIDFILE -w $STARTPIDFILE "$@" -+ if [ $? -ne 0 ]; then -+ return 1 -+ fi - fi -- - loop_counter=1 - # wait for 10 seconds for the start pid file to appear - max_count=${STARTPID_TIME:-10} -diff --git a/ldap/admin/src/scripts/stop-dirsrv.in b/ldap/admin/src/scripts/stop-dirsrv.in -index bc38134..3f02e78 100755 ---- a/ldap/admin/src/scripts/stop-dirsrv.in -+++ b/ldap/admin/src/scripts/stop-dirsrv.in -@@ -35,10 +35,33 @@ stop_instance() { - fi - return 2 - } -- # server is running - kill it -- kill $PID -- loop_counter=1 -+ -+ # -+ # use systemctl if running as root -+ # -+ if [ -d "@systemdsystemunitdir@" ] && [ "$(id -u)" == "0" ];then -+ # -+ # Now, check if systemctl is aware of this running instance -+ # -+ @bindir@/systemctl is-active @package_name@@$SERV_ID.service > /dev/null 2>&1 -+ if [ $? -eq 0 ]; then -+ # -+ # systemctl sees the running process, so stop it correctly -+ # -+ @bindir@/systemctl stop @package_name@@$SERV_ID.service -+ else -+ # -+ # Have to kill it since systemctl doesn't think it's running -+ # -+ kill $PID -+ fi -+ else -+ # server is running - kill it -+ kill $PID -+ fi -+ - # wait for 10 minutes (600 times 1 second) -+ loop_counter=1 - max_count=600 - while test $loop_counter -le $max_count; do - loop_counter=`expr $loop_counter + 1` --- -1.7.1 - diff --git a/SOURCES/0003-fix-for-47885-did-not-always-return-a-response-contr.patch b/SOURCES/0003-fix-for-47885-did-not-always-return-a-response-contr.patch new file mode 100644 index 0000000..93e27f0 --- /dev/null +++ b/SOURCES/0003-fix-for-47885-did-not-always-return-a-response-contr.patch @@ -0,0 +1,96 @@ +From 09f106acd0ad639965fdc1b97fd1718ce4eec355 Mon Sep 17 00:00:00 2001 +From: Ludwig Krispenz +Date: Wed, 10 Sep 2014 13:22:06 +0200 +Subject: [PATCH 3/7] fix for 47885 did not always return a response control + +reviewd by rich, thanks + +(cherry picked from commit 55e317f2a5d8fc488e7eeee6f2b4155298a45d25) +--- + ldap/servers/plugins/deref/deref.c | 30 ++++++++++++------------------ + 1 file changed, 12 insertions(+), 18 deletions(-) + +diff --git a/ldap/servers/plugins/deref/deref.c b/ldap/servers/plugins/deref/deref.c +index 96d42e6..1bab0ab 100644 +--- a/ldap/servers/plugins/deref/deref.c ++++ b/ldap/servers/plugins/deref/deref.c +@@ -591,14 +591,13 @@ deref_values_free(Slapi_ValueSet** results, char** actual_type_name, int buffer_ + slapi_vattr_values_free(results, actual_type_name, buffer_flags); + } + +-static int ++static void + deref_do_deref_attr(Slapi_PBlock *pb, BerElement *ctrlber, const char *derefdn, const char *derefattr, const char **attrs) + { + char **retattrs = NULL; + Slapi_PBlock *derefpb = NULL; + Slapi_Entry **entries = NULL; + int rc; +- int needcontrol = 0; + + /* If the access check on the attributes is done without retrieveing the entry + * it cannot handle acis which need teh entry, eg to apply a targetfilter rule +@@ -628,7 +627,6 @@ deref_do_deref_attr(Slapi_PBlock *pb, BerElement *ctrlber, const char *derefdn, + "The client does not have permission to read the requested " + "attributes in entry %s\n", derefdn); + } else { +- needcontrol = 1; + ber_printf(ctrlber, "{ss", derefattr, derefdn); /* begin DerefRes + derefAttr + derefVal */ + for (ii = 0; retattrs[ii]; ++ii) { + Slapi_Value *sv; +@@ -704,7 +702,6 @@ deref_do_deref_attr(Slapi_PBlock *pb, BerElement *ctrlber, const char *derefdn, + slapi_pblock_destroy(derefpb); + slapi_ch_free((void **)&retattrs); /* retattrs does not own the strings */ + +- return needcontrol; + } + + static int +@@ -718,7 +715,6 @@ deref_pre_entry(Slapi_PBlock *pb) + LDAPControl *ctrl = NULL; + const LDAPControl **searchctrls = NULL; + LDAPControl **newsearchctrls = NULL; +- int needcontrol = 0; + + if (!speclist) { + return 0; /* nothing to do */ +@@ -762,25 +758,23 @@ deref_pre_entry(Slapi_PBlock *pb) + for (; results && sv; idx = slapi_valueset_next_value(results, idx, &sv)) { + const char *derefdn = slapi_value_get_string(sv); + +- needcontrol += deref_do_deref_attr(pb, ctrlber, derefdn, spec->derefattr, (const char **)spec->attrs); ++ deref_do_deref_attr(pb, ctrlber, derefdn, spec->derefattr, (const char **)spec->attrs); + } + deref_values_free(&results, &actual_type_name, buffer_flags); + } + + ber_printf(ctrlber, "}"); /* end control val */ + +- if (needcontrol) { +- slapi_build_control(LDAP_CONTROL_X_DEREF, ctrlber, 0, &ctrl); +- /* get the list of controls */ +- slapi_pblock_get(pb, SLAPI_SEARCH_CTRLS, &searchctrls); +- /* dup them */ +- slapi_add_controls(&newsearchctrls, (LDAPControl **)searchctrls, 1); +- /* add our control */ +- slapi_add_control_ext(&newsearchctrls, ctrl, 0); +- ctrl = NULL; /* newsearchctrls owns it now */ +- /* set the controls in the pblock */ +- slapi_pblock_set(pb, SLAPI_SEARCH_CTRLS, newsearchctrls); +- } ++ slapi_build_control(LDAP_CONTROL_X_DEREF, ctrlber, 0, &ctrl); ++ /* get the list of controls */ ++ slapi_pblock_get(pb, SLAPI_SEARCH_CTRLS, &searchctrls); ++ /* dup them */ ++ slapi_add_controls(&newsearchctrls, (LDAPControl **)searchctrls, 1); ++ /* add our control */ ++ slapi_add_control_ext(&newsearchctrls, ctrl, 0); ++ ctrl = NULL; /* newsearchctrls owns it now */ ++ /* set the controls in the pblock */ ++ slapi_pblock_set(pb, SLAPI_SEARCH_CTRLS, newsearchctrls); + ber_free(ctrlber, 1); + + return 0; +-- +1.9.3 + diff --git a/SOURCES/0004-Ticket-47455-valgrind-value-mem-leaks-uninit-mem-usa.patch b/SOURCES/0004-Ticket-47455-valgrind-value-mem-leaks-uninit-mem-usa.patch deleted file mode 100644 index 7478d1e..0000000 --- a/SOURCES/0004-Ticket-47455-valgrind-value-mem-leaks-uninit-mem-usa.patch +++ /dev/null @@ -1,85 +0,0 @@ -From 6954ce25351d8dd2c88d57b51d3b91900e3de605 Mon Sep 17 00:00:00 2001 -From: Rich Megginson -Date: Thu, 5 Sep 2013 19:45:44 -0600 -Subject: [PATCH 4/4] Ticket #47455 - valgrind - value mem leaks, uninit mem usage - -https://fedorahosted.org/389/ticket/47455 -Reviewed by: nkinder (Thanks!) -Branch: 389-ds-base-1.3.1 -Fix Description: The problem was that slapi_valueset_add_attr_valuearray_ext -was assuming the caller was going to free the entire given vs upon failure. -This is fine for the value replace case but not for the add 1 value case. -Callers of slapi_valueset_add_attr_valuearray_ext must provide -the dup_index parameter if using SLAPI_VALUE_FLAG_PASSIN and -SLAPI_VALUE_FLAG_DUPCHECK, and if there is more than one value. The caller -needs to know which of the values from addvals is in vs to properly clean up -with no memory leaks. -Platforms tested: RHEL6 x86_64 -Flag Day: no -Doc impact: no -(cherry picked from commit 3adc242bcc8c6d0d05d5d9773f32b4f81afb6e6d) -(cherry picked from commit 6357ced2e4380def053966e849eac45e44009662) ---- - ldap/servers/slapd/slapi-private.h | 5 +++++ - ldap/servers/slapd/valueset.c | 13 +++++++++---- - 2 files changed, 14 insertions(+), 4 deletions(-) - -diff --git a/ldap/servers/slapd/slapi-private.h b/ldap/servers/slapd/slapi-private.h -index b2364ab..194f3fd 100644 ---- a/ldap/servers/slapd/slapi-private.h -+++ b/ldap/servers/slapd/slapi-private.h -@@ -846,6 +846,11 @@ void valuearray_add_valuearray_fast( Slapi_Value ***vals, Slapi_Value **addvals, - Slapi_Value * valueset_find_sorted (const Slapi_Attr *a, const Slapi_ValueSet *vs, const Slapi_Value *v, int *index); - int valueset_insert_value_to_sorted(const Slapi_Attr *a, Slapi_ValueSet *vs, Slapi_Value *vi, int dupcheck); - void valueset_array_to_sorted (const Slapi_Attr *a, Slapi_ValueSet *vs); -+/* NOTE: if the flags include SLAPI_VALUE_FLAG_PASSIN and SLAPI_VALUE_FLAG_DUPCHECK -+ * THE CALLER MUST PROVIDE THE dup_index PARAMETER in order to know where in addval -+ * the un-copied values start e.g. to free them for cleanup -+ * see valueset_replace_valuearray_ext() for an example -+ */ - int slapi_valueset_add_attr_valuearray_ext(const Slapi_Attr *a, Slapi_ValueSet *vs, Slapi_Value **addval, int nvals, unsigned long flags, int *dup_index); - int valuearray_find(const Slapi_Attr *a, Slapi_Value **va, const Slapi_Value *v); - int valuearray_dn_normalize_value(Slapi_Value **vals); -diff --git a/ldap/servers/slapd/valueset.c b/ldap/servers/slapd/valueset.c -index 85d2274..8a4bd03 100644 ---- a/ldap/servers/slapd/valueset.c -+++ b/ldap/servers/slapd/valueset.c -@@ -1134,8 +1134,9 @@ slapi_valueset_add_attr_valuearray_ext(const Slapi_Attr *a, Slapi_ValueSet *vs, - rc = LDAP_TYPE_OR_VALUE_EXISTS; - if (dup_index) *dup_index = i; - if (passin) { -- /* we have to NULL out the first value so valuearray_free won't delete values in addvals */ -- (vs->va)[0] = NULL; -+ PR_ASSERT((i == 0) || dup_index); -+ /* caller must provide dup_index to know how far we got in addvals */ -+ (vs->va)[vs->num] = NULL; - } else { - slapi_value_free(&(vs->va)[vs->num]); - } -@@ -1379,8 +1380,9 @@ valueset_replace_valuearray_ext(Slapi_Attr *a, Slapi_ValueSet *vs, Slapi_Value * - } else { - /* verify the given values are not duplicated. */ - unsigned long flags = SLAPI_VALUE_FLAG_PASSIN|SLAPI_VALUE_FLAG_DUPCHECK; -+ int dupindex = 0; - Slapi_ValueSet *vs_new = slapi_valueset_new(); -- rc = slapi_valueset_add_attr_valuearray_ext (a, vs_new, valstoreplace, vals_count, flags, NULL); -+ rc = slapi_valueset_add_attr_valuearray_ext (a, vs_new, valstoreplace, vals_count, flags, &dupindex); - - if ( rc == LDAP_SUCCESS ) - { -@@ -1408,8 +1410,11 @@ valueset_replace_valuearray_ext(Slapi_Attr *a, Slapi_ValueSet *vs, Slapi_Value * - { - /* caller expects us to own valstoreplace - since we cannot - use them, just delete them */ -+ /* using PASSIN, some of the Slapi_Value* are in vs_new, and the rest -+ * after dupindex are in valstoreplace -+ */ - slapi_valueset_free(vs_new); -- valuearray_free(&valstoreplace); -+ valuearray_free_ext(&valstoreplace, dupindex); - PR_ASSERT((vs->sorted == NULL) || (vs->num == 0) || ((vs->sorted[0] >= 0) && (vs->sorted[0] < vs->num))); - } - } --- -1.7.1 - diff --git a/SOURCES/0004-Ticket-47838-harden-the-list-of-ciphers-available-by.patch b/SOURCES/0004-Ticket-47838-harden-the-list-of-ciphers-available-by.patch new file mode 100644 index 0000000..b9cea64 --- /dev/null +++ b/SOURCES/0004-Ticket-47838-harden-the-list-of-ciphers-available-by.patch @@ -0,0 +1,468 @@ +From 2c550346512bc3dec27c9329f4902663759e4b65 Mon Sep 17 00:00:00 2001 +From: Noriko Hosoi +Date: Thu, 11 Sep 2014 11:46:51 -0700 +Subject: [PATCH 4/7] Ticket #47838 - harden the list of ciphers available by + default + +Description: +1. Introducing a new attribute allowWeakCipher in "cn=encryption,cn=config". + allowWeakCipher: [on | off] + on -- allows weak ciphers. + Default setting for user specified ciphers. + off -- rejects weak ciphers. + Default setting for +all and default. + +2. allowWeakCipher is applied only to the user specified cipher suites + such as "nsSSL3Ciphers: +rsa_rc4_128_md5". + If allowWeakCipher is enabled and the user specified cipher is weak, + SSL alert is logged in the error log: + SSL alert: Cipher rsa_rc4_128_md5 is weak. It is enabled since + allowWeakCipher is "on" (default setting for the backward compatibility). + We strongly recommend to set it to "off". Please replace the value of + allowWeakCipher with "off" in the encryption config entry cn=encryption, + cn=config and restart the server. + +3. If specified cipher suite is not supported, ignore the cipher suite + and continue setting ciphers. + +https://fedorahosted.org/389/ticket/47838 + +Reviewed by rmeggins@redhat.com (Thank you, Rich!!) + +(cherry picked from commit 5f3c87e1380e56d76d4a4bef3af07633a8589891) +(cherry picked from commit 58cb12a7b8cf938c5a4b920c4a1ad1da02fecdb8) +--- + ldap/schema/01core389.ldif | 3 +- + ldap/servers/slapd/ssl.c | 262 +++++++++++++++++++++++++++------------------ + 2 files changed, 162 insertions(+), 103 deletions(-) + +diff --git a/ldap/schema/01core389.ldif b/ldap/schema/01core389.ldif +index 1b8a70b..c7aec70 100644 +--- a/ldap/schema/01core389.ldif ++++ b/ldap/schema/01core389.ldif +@@ -128,6 +128,7 @@ attributeTypes: ( nsSSL3SessionTimeout-oid NAME 'nsSSL3SessionTimeout' DESC 'Net + attributeTypes: ( nsSSL2Ciphers-oid NAME 'nsSSL2Ciphers' DESC 'Netscape defined attribute type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'Netscape' ) + attributeTypes: ( nsSSL3Ciphers-oid NAME 'nsSSL3Ciphers' DESC 'Netscape defined attribute type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'Netscape' ) + attributeTypes: ( nsSSLSupportedCiphers-oid NAME 'nsSSLSupportedCiphers' DESC 'Netscape defined attribute type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'Netscape' ) ++attributeTypes: ( allowWeakCipher-oid NAME 'allowWeakCipher' DESC 'Netscape defined attribute type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'Netscape' ) + attributeTypes: ( nsSSLToken-oid NAME 'nsSSLToken' DESC 'Netscape defined attribute type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'Netscape' ) + attributeTypes: ( nsSSLPersonalitySSL-oid NAME 'nsSSLPersonalitySSL' DESC 'Netscape defined attribute type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'Netscape' ) + attributeTypes: ( nsSSLActivation-oid NAME 'nsSSLActivation' DESC 'Netscape defined attribute type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'Netscape' ) +@@ -316,7 +317,7 @@ objectClasses: ( 2.16.840.1.113730.3.2.103 NAME 'nsDS5ReplicationAgreement' DESC + objectClasses: ( 2.16.840.1.113730.3.2.39 NAME 'nsslapdConfig' DESC 'Netscape defined objectclass' SUP top MAY ( cn ) X-ORIGIN 'Netscape Directory Server' ) + objectClasses: ( 2.16.840.1.113730.3.2.317 NAME 'nsSaslMapping' DESC 'Netscape defined objectclass' SUP top MUST ( cn $ nsSaslMapRegexString $ nsSaslMapBaseDNTemplate $ nsSaslMapFilterTemplate ) MAY ( nsSaslMapPriority ) X-ORIGIN 'Netscape Directory Server' ) + objectClasses: ( 2.16.840.1.113730.3.2.43 NAME 'nsSNMP' DESC 'Netscape defined objectclass' SUP top MUST ( cn $ nsSNMPEnabled ) MAY ( nsSNMPOrganization $ nsSNMPLocation $ nsSNMPContact $ nsSNMPDescription $ nsSNMPName $ nsSNMPMasterHost $ nsSNMPMasterPort ) X-ORIGIN 'Netscape Directory Server' ) +-objectClasses: ( nsEncryptionConfig-oid NAME 'nsEncryptionConfig' DESC 'Netscape defined objectclass' SUP top MUST ( cn ) MAY ( nsCertfile $ nsKeyfile $ nsSSL2 $ nsSSL3 $ nsTLS1 $ sslVersionMin $ sslVersionMax $ nsSSLSessionTimeout $ nsSSL3SessionTimeout $ nsSSLClientAuth $ nsSSL2Ciphers $ nsSSL3Ciphers $ nsSSLSupportedCiphers) X-ORIGIN 'Netscape' ) ++objectClasses: ( nsEncryptionConfig-oid NAME 'nsEncryptionConfig' DESC 'Netscape defined objectclass' SUP top MUST ( cn ) MAY ( nsCertfile $ nsKeyfile $ nsSSL2 $ nsSSL3 $ nsTLS1 $ sslVersionMin $ sslVersionMax $ nsSSLSessionTimeout $ nsSSL3SessionTimeout $ nsSSLClientAuth $ nsSSL2Ciphers $ nsSSL3Ciphers $ nsSSLSupportedCiphers $ allowWeakCipher) X-ORIGIN 'Netscape' ) + objectClasses: ( nsEncryptionModule-oid NAME 'nsEncryptionModule' DESC 'Netscape defined objectclass' SUP top MUST ( cn ) MAY ( nsSSLToken $ nsSSLPersonalityssl $ nsSSLActivation ) X-ORIGIN 'Netscape' ) + objectClasses: ( 2.16.840.1.113730.3.2.327 NAME 'rootDNPluginConfig' DESC 'Netscape defined objectclass' SUP top MUST ( cn ) MAY ( rootdn-open-time $ rootdn-close-time $ rootdn-days-allowed $ rootdn-allow-host $ rootdn-deny-host $ rootdn-allow-ip $ rootdn-deny-ip ) X-ORIGIN 'Netscape' ) + objectClasses: ( 2.16.840.1.113730.3.2.328 NAME 'nsSchemaPolicy' DESC 'Netscape defined objectclass' SUP top MAY ( cn $ schemaUpdateObjectclassAccept $ schemaUpdateObjectclassReject $ schemaUpdateAttributeAccept $ schemaUpdateAttributeReject) X-ORIGIN 'Netscape Directory Server' ) +diff --git a/ldap/servers/slapd/ssl.c b/ldap/servers/slapd/ssl.c +index 1a21df0..03b5904 100644 +--- a/ldap/servers/slapd/ssl.c ++++ b/ldap/servers/slapd/ssl.c +@@ -119,7 +119,21 @@ static char * configDN = "cn=encryption,cn=config"; + #define FILE_PATHSEP '/' + + /* ----------------------- Multiple cipher support ------------------------ */ +- ++/* cipher set flags */ ++#define CIPHER_SET_ALL 0x1 ++#define CIPHER_SET_NONE 0x0 ++#define CIPHER_SET_DEFAULT 0x2 ++#define CIPHER_SET_CORE (CIPHER_SET_ALL|CIPHER_SET_DEFAULT|CIPHER_SET_NONE) ++#define CIPHER_SET_ALLOWWEAKCIPHER 0x10 /* can be or'ed with other CIPHER_SET flags */ ++ ++#define CIPHER_SET_ISDEFAULT(flag) \ ++ ((((flag)&CIPHER_SET_CORE) == CIPHER_SET_DEFAULT) ? PR_TRUE : PR_FALSE) ++#define CIPHER_SET_ISALL(flag) \ ++ ((((flag)&CIPHER_SET_CORE) == CIPHER_SET_ALL) ? PR_TRUE : PR_FALSE) ++#define CIPHER_SET_ALLOWSWEAKCIPHER(flag) \ ++ (((flag)&CIPHER_SET_ALLOWWEAKCIPHER) ? PR_TRUE : PR_FALSE) ++#define CIPHER_SET_DISABLE_ALLOWSWEAKCIPHER(flag) \ ++ ((flag)&~CIPHER_SET_ALLOWWEAKCIPHER) + + /* flags */ + #define CIPHER_IS_DEFAULT 0x1 +@@ -158,7 +172,7 @@ static lookup_cipher _lookup_cipher[] = { + {"tls_rsa_3des_sha", "TLS_RSA_WITH_3DES_EDE_CBC_SHA"}, + {"rsa_fips_3des_sha", "SSL_RSA_FIPS_WITH_3DES_EDE_CBC_SHA"}, + {"fips_3des_sha", "SSL_RSA_FIPS_WITH_3DES_EDE_CBC_SHA"}, +- {"rsa_des_sha", "TLS_RSA_WITH_DES_CBC_SHA"}, ++ {"rsa_des_sha", "SSL_RSA_WITH_DES_CBC_SHA"}, + {"rsa_fips_des_sha", "SSL_RSA_FIPS_WITH_DES_CBC_SHA"}, + {"fips_des_sha", "SSL_RSA_FIPS_WITH_DES_CBC_SHA"}, /* ditto */ + {"rsa_rc4_40_md5", "TLS_RSA_EXPORT_WITH_RC4_40_MD5"}, +@@ -339,21 +353,20 @@ _conf_init_ciphers() + return; + } + +-#define CIPHER_SET_ALL 1 +-#define CIPHER_SET_NONE 0 +-#define CIPHER_SET_DEFAULT 2 + /* +- * flag: 1 -- enable all +- * 0 -- disable all +- * 2 -- set default ciphers ++ * flag: CIPHER_SET_ALL -- enable all ++ * CIPHER_SET_NONE -- disable all ++ * CIPHER_SET_DEFAULT -- set default ciphers ++ * CIPHER_SET_ALLOW_WEAKCIPHER -- allow weak ciphers (can be or'ed with the ather CIPHER_SET flags) + */ + static void + _conf_setallciphers(int flag, char ***suplist, char ***unsuplist) + { + int x; + SECStatus rc; +- PRBool setdefault = (flag == CIPHER_SET_DEFAULT) ? PR_TRUE : PR_FALSE; +- PRBool enabled = (flag == CIPHER_SET_ALL) ? PR_TRUE : PR_FALSE; ++ PRBool setdefault = CIPHER_SET_ISDEFAULT(flag); ++ PRBool enabled = CIPHER_SET_ISALL(flag); ++ PRBool allowweakcipher = CIPHER_SET_ALLOWSWEAKCIPHER(flag); + PRBool setme = PR_FALSE; + const PRUint16 *implementedCiphers = SSL_GetImplementedCiphers(); + +@@ -361,8 +374,9 @@ _conf_setallciphers(int flag, char ***suplist, char ***unsuplist) + + for (x = 0; implementedCiphers && (x < SSL_NumImplementedCiphers); x++) { + if (_conf_ciphers[x].flags & CIPHER_IS_DEFAULT) { ++ /* certainly, not the first time. */ + setme = PR_TRUE; +- } else { ++ } else if (setdefault) { + /* + * SSL_CipherPrefGetDefault + * If the application has not previously set the default preference, +@@ -375,15 +389,16 @@ _conf_setallciphers(int flag, char ***suplist, char ***unsuplist) + _conf_ciphers[x].name); + continue; + } +- if (_conf_ciphers[x].flags & CIPHER_IS_WEAK) { ++ if (!allowweakcipher && (_conf_ciphers[x].flags & CIPHER_IS_WEAK)) { + setme = PR_FALSE; + } + _conf_ciphers[x].flags |= setme?CIPHER_IS_DEFAULT:0; +- } +- if (setdefault) { +- /* Use the NSS default settings */ + } else if (enabled && !(_conf_ciphers[x].flags & CIPHER_MUST_BE_DISABLED)) { +- setme = PR_TRUE; ++ if (!allowweakcipher && (_conf_ciphers[x].flags & CIPHER_IS_WEAK)) { ++ setme = PR_FALSE; ++ } else { ++ setme = PR_TRUE; ++ } + } else { + setme = PR_FALSE; + } +@@ -433,7 +448,7 @@ _conf_dumpciphers() + } + + char * +-_conf_setciphers(char *ciphers) ++_conf_setciphers(char *ciphers, int flags) + { + char *t, err[MAGNUS_ERROR_LEN]; + int x, i, active; +@@ -445,7 +460,7 @@ _conf_setciphers(char *ciphers) + /* #47838: harden the list of ciphers available by default */ + /* Default is to activate all of them ==> none of them*/ + if (!ciphers || (ciphers[0] == '\0') || !PL_strcasecmp(ciphers, "default")) { +- _conf_setallciphers(CIPHER_SET_DEFAULT, NULL, NULL); ++ _conf_setallciphers((CIPHER_SET_DEFAULT|CIPHER_SET_DISABLE_ALLOWSWEAKCIPHER(flags)), NULL, NULL); + slapd_SSL_warn("Security Initialization: Enabling default cipher set."); + _conf_dumpciphers(); + return NULL; +@@ -458,11 +473,11 @@ _conf_setciphers(char *ciphers) + * set of ciphers in the table. Right now there is no support for this + * from the console + */ +- _conf_setallciphers(CIPHER_SET_ALL, &suplist, NULL); ++ _conf_setallciphers(CIPHER_SET_ALL|CIPHER_SET_DISABLE_ALLOWSWEAKCIPHER(flags), &suplist, NULL); + } else { + /* If "+all" is not in nsSSL3Ciphers value, disable all first, + * then enable specified ciphers. */ +- _conf_setallciphers(0 /* disabled */, NULL, NULL); ++ _conf_setallciphers(CIPHER_SET_NONE /* disabled */, NULL, NULL); + } + + t = ciphers; +@@ -482,12 +497,28 @@ _conf_setciphers(char *ciphers) + if( (t = strchr(ciphers, ',')) ) + *t++ = '\0'; + +- if(strcasecmp(ciphers, "all")) { /* if not all */ ++ if (strcasecmp(ciphers, "all")) { /* if not all */ + PRBool enabled = active ? PR_TRUE : PR_FALSE; + lookup = 1; +- for(x = 0; _conf_ciphers[x].name; x++) { +- if(!PL_strcasecmp(ciphers, _conf_ciphers[x].name)) { ++ for (x = 0; _conf_ciphers[x].name; x++) { ++ if (!PL_strcasecmp(ciphers, _conf_ciphers[x].name)) { ++ if (_conf_ciphers[x].flags & CIPHER_IS_WEAK) { ++ if (CIPHER_SET_ALLOWSWEAKCIPHER(flags)) { ++ slapd_SSL_warn("Cipher %s is weak. It is enabled since allowWeakCipher is \"on\" " ++ "(default setting for the backward compatibility). " ++ "We strongly recommend to set it to \"off\". " ++ "Please replace the value of allowWeakCipher with \"off\" in " ++ "the encryption config entry cn=encryption,cn=config and " ++ "restart the server.", ciphers); ++ } else { ++ /* if the cipher is weak and we don't allow weak cipher, ++ disable it. */ ++ enabled = PR_FALSE; ++ } ++ } + if (enabled) { ++ /* if the cipher is not weak or we allow weak cipher, ++ check fips. */ + enabled = cipher_check_fips(x, NULL, &unsuplist); + } + SSL_CipherPrefSetDefault(_conf_ciphers[x].num, enabled); +@@ -499,14 +530,33 @@ _conf_setciphers(char *ciphers) + for (i = 0; _lookup_cipher[i].alias; i++) { + if (!PL_strcasecmp(ciphers, _lookup_cipher[i].alias)) { + if (!_lookup_cipher[i].name[0]) { +- slapd_SSL_warn("Cipher suite %s is not available in NSS %d.%d", +- ciphers, NSS_VMAJOR, NSS_VMINOR); +- break; ++ slapd_SSL_warn("Cipher suite %s is not available in NSS %d.%d. Ignoring %s", ++ ciphers, NSS_VMAJOR, NSS_VMINOR, ciphers); ++ continue; + } + for (x = 0; _conf_ciphers[x].name; x++) { + if (!PL_strcasecmp(_lookup_cipher[i].name, _conf_ciphers[x].name)) { + if (enabled) { +- enabled = cipher_check_fips(x, NULL, &unsuplist); ++ if (_conf_ciphers[x].flags & CIPHER_IS_WEAK) { ++ if (CIPHER_SET_ALLOWSWEAKCIPHER(flags)) { ++ slapd_SSL_warn("Cipher %s is weak. " ++ "It is enabled since allowWeakCipher is \"on\" " ++ "(default setting for the backward compatibility). " ++ "We strongly recommend to set it to \"off\". " ++ "Please replace the value of allowWeakCipher with \"off\" in " ++ "the encryption config entry cn=encryption,cn=config and " ++ "restart the server.", ciphers); ++ } else { ++ /* if the cipher is weak and we don't allow weak cipher, ++ disable it. */ ++ enabled = PR_FALSE; ++ } ++ } ++ if (enabled) { ++ /* if the cipher is not weak or we allow weak cipher, ++ check fips. */ ++ enabled = cipher_check_fips(x, NULL, &unsuplist); ++ } + } + SSL_CipherPrefSetDefault(_conf_ciphers[x].num, enabled); + break; +@@ -1008,6 +1058,7 @@ slapd_ssl_init() + int rv = 0; + PK11SlotInfo *slot; + Slapi_Entry *entry = NULL; ++ int allowweakcipher = CIPHER_SET_ALLOWWEAKCIPHER; + + /* Get general information */ + +@@ -1017,21 +1068,21 @@ slapd_ssl_init() + ciphers = slapi_entry_attr_get_charptr( entry, "nsssl3ciphers" ); + + /* We are currently using the value of sslSessionTimeout +- for ssl3SessionTimeout, see SSL_ConfigServerSessionIDCache() */ ++ for ssl3SessionTimeout, see SSL_ConfigServerSessionIDCache() */ + /* Note from Tom Weinstein on the meaning of the timeout: + + Timeouts are in seconds. '0' means use the default, which is +- 24hrs for SSL3 and 100 seconds for SSL2. ++ 24hrs for SSL3 and 100 seconds for SSL2. + */ + + if(!val) { + errorCode = PR_GetError(); + slapd_SSL_warn("Security Initialization: Failed to retrieve SSL " + "configuration information (" +- SLAPI_COMPONENT_NAME_NSPR " error %d - %s): " +- "nssslSessionTimeout: %s ", +- errorCode, slapd_pr_strerror(errorCode), +- (val ? "found" : "not found")); ++ SLAPI_COMPONENT_NAME_NSPR " error %d - %s): " ++ "nssslSessionTimeout: %s ", ++ errorCode, slapd_pr_strerror(errorCode), ++ (val ? "found" : "not found")); + slapi_ch_free((void **) &val); + slapi_ch_free((void **) &ciphers); + freeConfigEntry( &entry ); +@@ -1042,79 +1093,86 @@ slapd_ssl_init() + slapi_ch_free((void **) &val); + + if (svrcore_setup()) { +- freeConfigEntry( &entry ); +- return -1; ++ freeConfigEntry( &entry ); ++ return -1; + } + +- if((family_list = getChildren(configDN))) { +- char **family; +- char *token; +- char *activation; ++ val = slapi_entry_attr_get_charptr(entry, "allowWeakCipher"); ++ if (val && (!PL_strcasecmp(val, "off") || !PL_strcasecmp(val, "false") || ++ !PL_strcmp(val, "0") || !PL_strcasecmp(val, "no"))) { ++ allowweakcipher = 0; ++ } ++ slapi_ch_free((void **) &val); ++ ++ if ((family_list = getChildren(configDN))) { ++ char **family; ++ char *token; ++ char *activation; + +- for (family = family_list; *family; family++) { ++ for (family = family_list; *family; family++) { + +- token = NULL; +- activation = NULL; ++ token = NULL; ++ activation = NULL; + +- freeConfigEntry( &entry ); ++ freeConfigEntry( &entry ); + +- getConfigEntry( *family, &entry ); +- if ( entry == NULL ) { +- continue; +- } ++ getConfigEntry( *family, &entry ); ++ if ( entry == NULL ) { ++ continue; ++ } + +- activation = slapi_entry_attr_get_charptr( entry, "nssslactivation" ); +- if((!activation) || (!PL_strcasecmp(activation, "off"))) { +- /* this family was turned off, goto next */ +- slapi_ch_free((void **) &activation); +- continue; +- } ++ activation = slapi_entry_attr_get_charptr( entry, "nssslactivation" ); ++ if((!activation) || (!PL_strcasecmp(activation, "off"))) { ++ /* this family was turned off, goto next */ ++ slapi_ch_free((void **) &activation); ++ continue; ++ } + +- slapi_ch_free((void **) &activation); +- +- token = slapi_entry_attr_get_charptr( entry, "nsssltoken" ); +- if( token ) { +- if( !PL_strcasecmp(token, "internal") || +- !PL_strcasecmp(token, "internal (software)")) +- slot = slapd_pk11_getInternalKeySlot(); +- else +- slot = slapd_pk11_findSlotByName(token); +- } else { +- errorCode = PR_GetError(); +- slapd_SSL_warn("Security Initialization: Unable to get token (" +- SLAPI_COMPONENT_NAME_NSPR " error %d - %s)", +- errorCode, slapd_pr_strerror(errorCode)); +- freeChildren(family_list); +- freeConfigEntry( &entry ); +- return -1; +- } ++ slapi_ch_free((void **) &activation); + +- slapi_ch_free((void **) &token); ++ token = slapi_entry_attr_get_charptr( entry, "nsssltoken" ); ++ if ( token ) { ++ if (!PL_strcasecmp(token, "internal") || ++ !PL_strcasecmp(token, "internal (software)")) { ++ slot = slapd_pk11_getInternalKeySlot(); ++ } else { ++ slot = slapd_pk11_findSlotByName(token); ++ } ++ } else { ++ errorCode = PR_GetError(); ++ slapd_SSL_warn("Security Initialization: Unable to get token (" ++ SLAPI_COMPONENT_NAME_NSPR " error %d - %s)", ++ errorCode, slapd_pr_strerror(errorCode)); ++ freeChildren(family_list); ++ freeConfigEntry( &entry ); ++ return -1; ++ } + +- if (!slot) { +- errorCode = PR_GetError(); +- slapd_SSL_warn("Security Initialization: Unable to find slot (" +- SLAPI_COMPONENT_NAME_NSPR " error %d - %s)", +- errorCode, slapd_pr_strerror(errorCode)); +- freeChildren(family_list); +- freeConfigEntry( &entry ); +- return -1; +- } +- /* authenticate */ +- if(slapd_pk11_authenticate(slot, PR_TRUE, NULL) != SECSuccess) +- { +- errorCode = PR_GetError(); +- slapd_SSL_warn("Security Initialization: Unable to authenticate (" +- SLAPI_COMPONENT_NAME_NSPR " error %d - %s)", +- errorCode, slapd_pr_strerror(errorCode)); +- freeChildren(family_list); +- freeConfigEntry( &entry ); +- return -1; +- } +- } +- freeChildren( family_list ); ++ slapi_ch_free((void **) &token); ++ ++ if (!slot) { ++ errorCode = PR_GetError(); ++ slapd_SSL_warn("Security Initialization: Unable to find slot (" ++ SLAPI_COMPONENT_NAME_NSPR " error %d - %s)", ++ errorCode, slapd_pr_strerror(errorCode)); ++ freeChildren(family_list); ++ freeConfigEntry( &entry ); ++ return -1; ++ } ++ /* authenticate */ ++ if (slapd_pk11_authenticate(slot, PR_TRUE, NULL) != SECSuccess) { ++ errorCode = PR_GetError(); ++ slapd_SSL_warn("Security Initialization: Unable to authenticate (" ++ SLAPI_COMPONENT_NAME_NSPR " error %d - %s)", ++ errorCode, slapd_pr_strerror(errorCode)); ++ freeChildren(family_list); ++ freeConfigEntry( &entry ); ++ return -1; ++ } ++ } ++ freeChildren( family_list ); ++ freeConfigEntry( &entry ); + } +- freeConfigEntry( &entry ); + + /* ugaston- Cipher preferences must be set before any sslSocket is created + * for such sockets to take preferences into account. +@@ -1126,13 +1184,13 @@ slapd_ssl_init() + PL_strncpyz(cipher_string, ciphers, sizeof(cipher_string)); + slapi_ch_free((void **) &ciphers); + +- if( NULL != (val = _conf_setciphers(cipher_string)) ) { +- errorCode = PR_GetError(); +- slapd_SSL_warn("Security Initialization: Failed to set SSL cipher " +- "preference information: %s (" SLAPI_COMPONENT_NAME_NSPR " error %d - %s)", +- val, errorCode, slapd_pr_strerror(errorCode)); +- rv = 3; +- slapi_ch_free((void **) &val); ++ if ( NULL != (val = _conf_setciphers(cipher_string, allowweakcipher)) ) { ++ errorCode = PR_GetError(); ++ slapd_SSL_warn("Security Initialization: Failed to set SSL cipher " ++ "preference information: %s (" SLAPI_COMPONENT_NAME_NSPR " error %d - %s)", ++ val, errorCode, slapd_pr_strerror(errorCode)); ++ rv = 3; ++ slapi_ch_free((void **) &val); + } + + freeConfigEntry( &entry ); +-- +1.9.3 + diff --git a/SOURCES/0005-Ticket-47507-automember-rebuild-task-not-working-as-.patch b/SOURCES/0005-Ticket-47507-automember-rebuild-task-not-working-as-.patch deleted file mode 100644 index 292b657..0000000 --- a/SOURCES/0005-Ticket-47507-automember-rebuild-task-not-working-as-.patch +++ /dev/null @@ -1,43 +0,0 @@ -From 6ed6227cb6cead962e36505c3094f5db302f1ffb Mon Sep 17 00:00:00 2001 -From: Mark Reynolds -Date: Tue, 10 Sep 2013 15:39:22 -0400 -Subject: [PATCH 5/7] Ticket 47507 - automember rebuild task not working as - expected - -Bug Description: If the basedn specified in the task is not beneath the automember scope, - the entry is skipped. - - Example: - automember scope: ou=people,dc=example,dc=com - task basedn: dc=example,dc=com --> using this dn will cause - all the candidate entries - to be skipped. - -Fix Description: Regardless what the task basedn is, the candidate entry dn needs to be - checked against the scope of the autommeber config. - -https://fedorahosted.org/389/ticket/47507 - -Revewied by: nhosoi(Thanks!!) -(cherry picked from commit d2637ddddc73f66f8ad874a511b4880884d36950) -(cherry picked from commit 6bdc635caffe8bc031cbc1d7dba1a43f292249a8) ---- - ldap/servers/plugins/automember/automember.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/ldap/servers/plugins/automember/automember.c b/ldap/servers/plugins/automember/automember.c -index 2ba3314..02dcc0d 100644 ---- a/ldap/servers/plugins/automember/automember.c -+++ b/ldap/servers/plugins/automember/automember.c -@@ -2192,7 +2192,7 @@ void automember_rebuild_task_thread(void *arg){ - while (list != g_automember_config) { - config = (struct configEntry *)list; - /* Does the entry meet scope and filter requirements? */ -- if (slapi_dn_issuffix(slapi_sdn_get_dn(td->base_dn), config->scope) && -+ if (slapi_dn_issuffix(slapi_entry_get_dn(entries[i]), config->scope) && - (slapi_filter_test_simple(entries[i], config->filter) == 0)) - { - automember_update_membership(config, entries[i], NULL); --- -1.8.1.4 - diff --git a/SOURCES/0005-Ticket-47838-47895-CI-test-add-test-cases-for-ticket.patch b/SOURCES/0005-Ticket-47838-47895-CI-test-add-test-cases-for-ticket.patch new file mode 100644 index 0000000..ad744c2 --- /dev/null +++ b/SOURCES/0005-Ticket-47838-47895-CI-test-add-test-cases-for-ticket.patch @@ -0,0 +1,494 @@ +From d15c48e4041d3d7ccde3e791c9ee517af42b7447 Mon Sep 17 00:00:00 2001 +From: Noriko Hosoi +Date: Wed, 10 Sep 2014 18:48:07 -0700 +Subject: [PATCH 5/7] Ticket 47838,47895 - CI test: add test cases for ticket + 47838 and 47895 + +Description: +Ticket #47838: harden the list of ciphers available by default +Adding test cases for default behaviour change of allowWeakCipher. + +Ticket #47895 - If no effective ciphers are available, disable security setting. +Test case for "Even if no cipher is available, the server starts +without SSL" is added. + +https://fedorahosted.org/389/ticket/47838 +(cherry picked from commit 4fb1a04ceb9631680a9bcff844250afb4b6e5b7d) +(cherry picked from commit 3877981d63fb82716b60cd1294008b2d272197c9) +--- + dirsrvtests/tickets/ticket47838_test.py | 221 +++++++++++++++++++++++--------- + 1 file changed, 163 insertions(+), 58 deletions(-) + +diff --git a/dirsrvtests/tickets/ticket47838_test.py b/dirsrvtests/tickets/ticket47838_test.py +index dedd61d..0e406f3 100644 +--- a/dirsrvtests/tickets/ticket47838_test.py ++++ b/dirsrvtests/tickets/ticket47838_test.py +@@ -201,6 +201,7 @@ def test_ticket47838_init(topology): + topology.standalone.simple_bind_s(DN_DM, PASSWORD) + topology.standalone.modify_s(ENCRYPTION_DN, [(ldap.MOD_REPLACE, 'nsSSL3', 'on'), + (ldap.MOD_REPLACE, 'nsSSLClientAuth', 'allowed'), ++ (ldap.MOD_REPLACE, 'allowWeakCipher', 'on'), + (ldap.MOD_REPLACE, 'nsSSL3Ciphers', '+all')]) + + topology.standalone.modify_s(CONFIG_DN, [(ldap.MOD_REPLACE, 'nsslapd-security', 'on'), +@@ -217,6 +218,7 @@ def test_ticket47838_run_0(topology): + """ + Check nsSSL3Ciphers: +all + All ciphers are enabled except null. ++ Note: allowWeakCipher: on + """ + _header(topology, 'Test Case 1 - Check the ciphers availability for "+all"') + +@@ -226,42 +228,78 @@ def test_ticket47838_run_0(topology): + log.info("\n######################### Restarting the server ######################\n") + topology.standalone.restart(timeout=120) + +- enabled = os.popen('egrep "SSL alert:" %s | egrep enabled | wc -l' % topology.standalone.errlog) +- disabled = os.popen('egrep "SSL alert:" %s | egrep disabled | wc -l' % topology.standalone.errlog) ++ enabled = os.popen('egrep "SSL alert:" %s | egrep \": enabled\" | wc -l' % topology.standalone.errlog) ++ disabled = os.popen('egrep "SSL alert:" %s | egrep \": disabled\" | wc -l' % topology.standalone.errlog) + ecount = int(enabled.readline().rstrip()) + dcount = int(disabled.readline().rstrip()) + + log.info("Enabled ciphers: %d" % ecount) + log.info("Disabled ciphers: %d" % dcount) +- assert ecount >= 60 +- assert dcount <= 7 ++ assert ecount >= 31 ++ assert dcount <= 36 + global plus_all_ecount + global plus_all_dcount + plus_all_ecount = ecount + plus_all_dcount = dcount +- weak = os.popen('egrep "SSL alert:" %s | egrep "WEAK CIPHER" | wc -l' % topology.standalone.errlog) ++ weak = os.popen('egrep "SSL alert:" %s | egrep "WEAK CIPHER" | wc -l' % topology.standalone.errlog) + wcount = int(weak.readline().rstrip()) + log.info("Weak ciphers: %d" % wcount) + assert wcount <= 29 + + def test_ticket47838_run_1(topology): + """ ++ Check nsSSL3Ciphers: +all ++ All ciphers are enabled except null. ++ Note: allowWeakCipher: off for +all ++ """ ++ _header(topology, 'Test Case 2 - Check the ciphers availability for "+all" with not allowing WeakCiphers') ++ ++ topology.standalone.simple_bind_s(DN_DM, PASSWORD) ++ topology.standalone.modify_s(CONFIG_DN, [(ldap.MOD_REPLACE, 'nsslapd-errorlog-level', '64')]) ++ # Make sure allowWeakCipher is not set. ++ topology.standalone.modify_s(ENCRYPTION_DN, [(ldap.MOD_DELETE, 'allowWeakCipher', None)]) ++ ++ log.info("\n######################### Restarting the server ######################\n") ++ log.info("\n######################### Restarting the server ######################\n") ++ topology.standalone.stop(timeout=10) ++ os.system('mv %s %s.47838_0' % (topology.standalone.errlog, topology.standalone.errlog)) ++ os.system('touch %s' % (topology.standalone.errlog)) ++ topology.standalone.start(timeout=120) ++ ++ enabled = os.popen('egrep "SSL alert:" %s | egrep \": enabled\" | wc -l' % topology.standalone.errlog) ++ disabled = os.popen('egrep "SSL alert:" %s | egrep \": disabled\" | wc -l' % topology.standalone.errlog) ++ ecount = int(enabled.readline().rstrip()) ++ dcount = int(disabled.readline().rstrip()) ++ ++ log.info("Enabled ciphers: %d" % ecount) ++ log.info("Disabled ciphers: %d" % dcount) ++ assert ecount >= 31 ++ assert dcount <= 36 ++ weak = os.popen('egrep "SSL alert:" %s | egrep "WEAK CIPHER" | wc -l' % topology.standalone.errlog) ++ wcount = int(weak.readline().rstrip()) ++ log.info("Weak ciphers: %d" % wcount) ++ assert wcount <= 29 ++ ++def test_ticket47838_run_2(topology): ++ """ + Check nsSSL3Ciphers: +rsa_aes_128_sha,+rsa_aes_256_sha + rsa_aes_128_sha, tls_rsa_aes_128_sha, rsa_aes_256_sha, tls_rsa_aes_256_sha are enabled. + """ +- _header(topology, 'Test Case 2 - Check the ciphers availability for "+rsa_aes_128_sha,+rsa_aes_256_sha"') ++ _header(topology, 'Test Case 3 - Check the ciphers availability for "+rsa_aes_128_sha,+rsa_aes_256_sha"') + + topology.standalone.simple_bind_s(DN_DM, PASSWORD) ++ #topology.standalone.modify_s(ENCRYPTION_DN, [(ldap.MOD_REPLACE, 'nsSSL3Ciphers', '+rsa_aes_128_sha,+rsa_aes_256_sha'), ++ # (ldap.MOD_REPLACE, 'allowWeakCipher', 'on')]) + topology.standalone.modify_s(ENCRYPTION_DN, [(ldap.MOD_REPLACE, 'nsSSL3Ciphers', '+rsa_aes_128_sha,+rsa_aes_256_sha')]) + + log.info("\n######################### Restarting the server ######################\n") + topology.standalone.stop(timeout=10) +- os.system('mv %s %s.47838_0' % (topology.standalone.errlog, topology.standalone.errlog)) ++ os.system('mv %s %s.47838_1' % (topology.standalone.errlog, topology.standalone.errlog)) + os.system('touch %s' % (topology.standalone.errlog)) + topology.standalone.start(timeout=120) + +- enabled = os.popen('egrep "SSL alert:" %s | egrep enabled | wc -l' % topology.standalone.errlog) +- disabled = os.popen('egrep "SSL alert:" %s | egrep disabled | wc -l' % topology.standalone.errlog) ++ enabled = os.popen('egrep "SSL alert:" %s | egrep \": enabled\" | wc -l' % topology.standalone.errlog) ++ disabled = os.popen('egrep "SSL alert:" %s | egrep \": disabled\" | wc -l' % topology.standalone.errlog) + ecount = int(enabled.readline().rstrip()) + dcount = int(disabled.readline().rstrip()) + +@@ -272,24 +310,24 @@ def test_ticket47838_run_1(topology): + assert ecount == 2 + assert dcount == (plus_all_ecount + plus_all_dcount - ecount) + +-def test_ticket47838_run_2(topology): ++def test_ticket47838_run_3(topology): + """ + Check nsSSL3Ciphers: -all + All ciphers are disabled. + """ +- _header(topology, 'Test Case 3 - Check the ciphers availability for "-all"') ++ _header(topology, 'Test Case 4 - Check the ciphers availability for "-all"') + + topology.standalone.simple_bind_s(DN_DM, PASSWORD) + topology.standalone.modify_s(ENCRYPTION_DN, [(ldap.MOD_REPLACE, 'nsSSL3Ciphers', '-all')]) + + log.info("\n######################### Restarting the server ######################\n") + topology.standalone.stop(timeout=10) +- os.system('mv %s %s.47838_1' % (topology.standalone.errlog, topology.standalone.errlog)) ++ os.system('mv %s %s.47838_2' % (topology.standalone.errlog, topology.standalone.errlog)) + os.system('touch %s' % (topology.standalone.errlog)) + topology.standalone.start(timeout=120) + +- enabled = os.popen('egrep "SSL alert:" %s | egrep enabled | wc -l' % topology.standalone.errlog) +- disabled = os.popen('egrep "SSL alert:" %s | egrep disabled | wc -l' % topology.standalone.errlog) ++ enabled = os.popen('egrep "SSL alert:" %s | egrep \": enabled\" | wc -l' % topology.standalone.errlog) ++ disabled = os.popen('egrep "SSL alert:" %s | egrep \": disabled\" | wc -l' % topology.standalone.errlog) + ecount = int(enabled.readline().rstrip()) + dcount = int(disabled.readline().rstrip()) + +@@ -300,24 +338,24 @@ def test_ticket47838_run_2(topology): + assert ecount == 0 + assert dcount == (plus_all_ecount + plus_all_dcount) + +-def test_ticket47838_run_3(topology): ++def test_ticket47838_run_4(topology): + """ + Check no nsSSL3Ciphers + Default ciphers are enabled. + """ +- _header(topology, 'Test Case 4 - Check no nssSSL3Chiphers (default setting)') ++ _header(topology, 'Test Case 5 - Check no nssSSL3Chiphers (default setting)') + + topology.standalone.simple_bind_s(DN_DM, PASSWORD) + topology.standalone.modify_s(ENCRYPTION_DN, [(ldap.MOD_DELETE, 'nsSSL3Ciphers', '-all')]) + + log.info("\n######################### Restarting the server ######################\n") + topology.standalone.stop(timeout=10) +- os.system('mv %s %s.47838_2' % (topology.standalone.errlog, topology.standalone.errlog)) ++ os.system('mv %s %s.47838_3' % (topology.standalone.errlog, topology.standalone.errlog)) + os.system('touch %s' % (topology.standalone.errlog)) + topology.standalone.start(timeout=120) + +- enabled = os.popen('egrep "SSL alert:" %s | egrep enabled | wc -l' % topology.standalone.errlog) +- disabled = os.popen('egrep "SSL alert:" %s | egrep disabled | wc -l' % topology.standalone.errlog) ++ enabled = os.popen('egrep "SSL alert:" %s | egrep \": enabled\" | wc -l' % topology.standalone.errlog) ++ disabled = os.popen('egrep "SSL alert:" %s | egrep \": disabled\" | wc -l' % topology.standalone.errlog) + ecount = int(enabled.readline().rstrip()) + dcount = int(disabled.readline().rstrip()) + +@@ -327,29 +365,29 @@ def test_ticket47838_run_3(topology): + global plus_all_dcount + assert ecount == 12 + assert dcount == (plus_all_ecount + plus_all_dcount - ecount) +- weak = os.popen('egrep "SSL alert:" %s | egrep enabled | egrep "WEAK CIPHER" | wc -l' % topology.standalone.errlog) ++ weak = os.popen('egrep "SSL alert:" %s | egrep \": enabled\" | egrep "WEAK CIPHER" | wc -l' % topology.standalone.errlog) + wcount = int(weak.readline().rstrip()) + log.info("Weak ciphers in the default setting: %d" % wcount) + assert wcount == 0 + +-def test_ticket47838_run_4(topology): ++def test_ticket47838_run_5(topology): + """ + Check nsSSL3Ciphers: default + Default ciphers are enabled. + """ +- _header(topology, 'Test Case 5 - Check default nssSSL3Chiphers (default setting)') ++ _header(topology, 'Test Case 6 - Check default nssSSL3Chiphers (default setting)') + + topology.standalone.simple_bind_s(DN_DM, PASSWORD) + topology.standalone.modify_s(ENCRYPTION_DN, [(ldap.MOD_REPLACE, 'nsSSL3Ciphers', 'default')]) + + log.info("\n######################### Restarting the server ######################\n") + topology.standalone.stop(timeout=10) +- os.system('mv %s %s.47838_3' % (topology.standalone.errlog, topology.standalone.errlog)) ++ os.system('mv %s %s.47838_4' % (topology.standalone.errlog, topology.standalone.errlog)) + os.system('touch %s' % (topology.standalone.errlog)) + topology.standalone.start(timeout=120) + +- enabled = os.popen('egrep "SSL alert:" %s | egrep enabled | wc -l' % topology.standalone.errlog) +- disabled = os.popen('egrep "SSL alert:" %s | egrep disabled | wc -l' % topology.standalone.errlog) ++ enabled = os.popen('egrep "SSL alert:" %s | egrep \": enabled\" | wc -l' % topology.standalone.errlog) ++ disabled = os.popen('egrep "SSL alert:" %s | egrep \": disabled\" | wc -l' % topology.standalone.errlog) + ecount = int(enabled.readline().rstrip()) + dcount = int(disabled.readline().rstrip()) + +@@ -359,29 +397,29 @@ def test_ticket47838_run_4(topology): + global plus_all_dcount + assert ecount == 12 + assert dcount == (plus_all_ecount + plus_all_dcount - ecount) +- weak = os.popen('egrep "SSL alert:" %s | egrep enabled | egrep "WEAK CIPHER" | wc -l' % topology.standalone.errlog) ++ weak = os.popen('egrep "SSL alert:" %s | egrep \": enabled\" | egrep "WEAK CIPHER" | wc -l' % topology.standalone.errlog) + wcount = int(weak.readline().rstrip()) + log.info("Weak ciphers in the default setting: %d" % wcount) + assert wcount == 0 + +-def test_ticket47838_run_5(topology): ++def test_ticket47838_run_6(topology): + """ + Check nssSSL3Chiphers: +all,-rsa_rc4_128_md5 + All ciphers are disabled. + """ +- _header(topology, 'Test Case 6 - Check nssSSL3Chiphers: +all,-rsa_rc4_128_md5') ++ _header(topology, 'Test Case 7 - Check nssSSL3Chiphers: +all,-tls_dhe_rsa_aes_128_gcm_sha') + + topology.standalone.simple_bind_s(DN_DM, PASSWORD) +- topology.standalone.modify_s(ENCRYPTION_DN, [(ldap.MOD_REPLACE, 'nsSSL3Ciphers', '+all,-rsa_rc4_128_md5')]) ++ topology.standalone.modify_s(ENCRYPTION_DN, [(ldap.MOD_REPLACE, 'nsSSL3Ciphers', '+all,-tls_dhe_rsa_aes_128_gcm_sha')]) + + log.info("\n######################### Restarting the server ######################\n") + topology.standalone.stop(timeout=10) +- os.system('mv %s %s.47838_4' % (topology.standalone.errlog, topology.standalone.errlog)) ++ os.system('mv %s %s.47838_5' % (topology.standalone.errlog, topology.standalone.errlog)) + os.system('touch %s' % (topology.standalone.errlog)) + topology.standalone.start(timeout=120) + +- enabled = os.popen('egrep "SSL alert:" %s | egrep enabled | wc -l' % topology.standalone.errlog) +- disabled = os.popen('egrep "SSL alert:" %s | egrep disabled | wc -l' % topology.standalone.errlog) ++ enabled = os.popen('egrep "SSL alert:" %s | egrep \": enabled\" | wc -l' % topology.standalone.errlog) ++ disabled = os.popen('egrep "SSL alert:" %s | egrep \": disabled\" | wc -l' % topology.standalone.errlog) + ecount = int(enabled.readline().rstrip()) + dcount = int(disabled.readline().rstrip()) + +@@ -389,27 +427,29 @@ def test_ticket47838_run_5(topology): + log.info("Disabled ciphers: %d" % dcount) + global plus_all_ecount + global plus_all_dcount ++ log.info("ALL Ecount: %d" % plus_all_ecount) ++ log.info("ALL Dcount: %d" % plus_all_dcount) + assert ecount == (plus_all_ecount - 1) + assert dcount == (plus_all_dcount + 1) + +-def test_ticket47838_run_6(topology): ++def test_ticket47838_run_7(topology): + """ + Check nssSSL3Chiphers: -all,+rsa_rc4_128_md5 + All ciphers are disabled. + """ +- _header(topology, 'Test Case 7 - Check nssSSL3Chiphers: -all,+rsa_rc4_128_md5') ++ _header(topology, 'Test Case 8 - Check nssSSL3Chiphers: -all,+rsa_rc4_128_md5') + + topology.standalone.simple_bind_s(DN_DM, PASSWORD) + topology.standalone.modify_s(ENCRYPTION_DN, [(ldap.MOD_REPLACE, 'nsSSL3Ciphers', '-all,+rsa_rc4_128_md5')]) + + log.info("\n######################### Restarting the server ######################\n") + topology.standalone.stop(timeout=10) +- os.system('mv %s %s.47838_5' % (topology.standalone.errlog, topology.standalone.errlog)) ++ os.system('mv %s %s.47838_6' % (topology.standalone.errlog, topology.standalone.errlog)) + os.system('touch %s' % (topology.standalone.errlog)) + topology.standalone.start(timeout=120) + +- enabled = os.popen('egrep "SSL alert:" %s | egrep enabled | wc -l' % topology.standalone.errlog) +- disabled = os.popen('egrep "SSL alert:" %s | egrep disabled | wc -l' % topology.standalone.errlog) ++ enabled = os.popen('egrep "SSL alert:" %s | egrep \": enabled\" | wc -l' % topology.standalone.errlog) ++ disabled = os.popen('egrep "SSL alert:" %s | egrep \": disabled\" | wc -l' % topology.standalone.errlog) + ecount = int(enabled.readline().rstrip()) + dcount = int(disabled.readline().rstrip()) + +@@ -420,25 +460,59 @@ def test_ticket47838_run_6(topology): + assert ecount == 1 + assert dcount == (plus_all_ecount + plus_all_dcount - ecount) + +-def test_ticket47838_run_7(topology): ++def test_ticket47838_run_8(topology): ++ """ ++ Check nsSSL3Ciphers: default + allowWeakCipher: off ++ Strong Default ciphers are enabled. ++ """ ++ _header(topology, 'Test Case 9 - Check default nssSSL3Chiphers (default setting + allowWeakCipher: off)') ++ ++ topology.standalone.simple_bind_s(DN_DM, PASSWORD) ++ topology.standalone.modify_s(ENCRYPTION_DN, [(ldap.MOD_REPLACE, 'nsSSL3Ciphers', 'default'), ++ (ldap.MOD_REPLACE, 'allowWeakCipher', 'off')]) ++ ++ log.info("\n######################### Restarting the server ######################\n") ++ topology.standalone.stop(timeout=10) ++ os.system('mv %s %s.47838_7' % (topology.standalone.errlog, topology.standalone.errlog)) ++ os.system('touch %s' % (topology.standalone.errlog)) ++ topology.standalone.start(timeout=120) ++ ++ enabled = os.popen('egrep "SSL alert:" %s | egrep \": enabled\" | wc -l' % topology.standalone.errlog) ++ disabled = os.popen('egrep "SSL alert:" %s | egrep \": disabled\" | wc -l' % topology.standalone.errlog) ++ ecount = int(enabled.readline().rstrip()) ++ dcount = int(disabled.readline().rstrip()) ++ ++ log.info("Enabled ciphers: %d" % ecount) ++ log.info("Disabled ciphers: %d" % dcount) ++ global plus_all_ecount ++ global plus_all_dcount ++ assert ecount == 12 ++ assert dcount == (plus_all_ecount + plus_all_dcount - ecount) ++ weak = os.popen('egrep "SSL alert:" %s | egrep \": enabled\" | egrep "WEAK CIPHER" | wc -l' % topology.standalone.errlog) ++ wcount = int(weak.readline().rstrip()) ++ log.info("Weak ciphers in the default setting: %d" % wcount) ++ assert wcount == 0 ++ ++def test_ticket47838_run_9(topology): + """ + Check no nsSSL3Ciphers + Default ciphers are enabled. + """ +- _header(topology, 'Test Case 8 - Check no nssSSL3Chiphers (default setting) with no errorlog-level') ++ _header(topology, 'Test Case 10 - Check no nssSSL3Chiphers (default setting) with no errorlog-level') + + topology.standalone.simple_bind_s(DN_DM, PASSWORD) +- topology.standalone.modify_s(ENCRYPTION_DN, [(ldap.MOD_REPLACE, 'nsSSL3Ciphers', None)]) ++ topology.standalone.modify_s(ENCRYPTION_DN, [(ldap.MOD_REPLACE, 'nsSSL3Ciphers', None), ++ (ldap.MOD_REPLACE, 'allowWeakCipher', 'on')]) + topology.standalone.modify_s(CONFIG_DN, [(ldap.MOD_REPLACE, 'nsslapd-errorlog-level', None)]) + + log.info("\n######################### Restarting the server ######################\n") + topology.standalone.stop(timeout=10) +- os.system('mv %s %s.47838_6' % (topology.standalone.errlog, topology.standalone.errlog)) ++ os.system('mv %s %s.47838_8' % (topology.standalone.errlog, topology.standalone.errlog)) + os.system('touch %s' % (topology.standalone.errlog)) + topology.standalone.start(timeout=120) + +- enabled = os.popen('egrep "SSL alert:" %s | egrep enabled | wc -l' % topology.standalone.errlog) +- disabled = os.popen('egrep "SSL alert:" %s | egrep disabled | wc -l' % topology.standalone.errlog) ++ enabled = os.popen('egrep "SSL alert:" %s | egrep \": enabled\" | wc -l' % topology.standalone.errlog) ++ disabled = os.popen('egrep "SSL alert:" %s | egrep \": disabled\" | wc -l' % topology.standalone.errlog) + ecount = int(enabled.readline().rstrip()) + dcount = int(disabled.readline().rstrip()) + +@@ -446,12 +520,12 @@ def test_ticket47838_run_7(topology): + log.info("Disabled ciphers: %d" % dcount) + assert ecount == 12 + assert dcount == 0 +- weak = os.popen('egrep "SSL alert:" %s | egrep enabled | egrep "WEAK CIPHER" | wc -l' % topology.standalone.errlog) ++ weak = os.popen('egrep "SSL alert:" %s | egrep \": enabled\" | egrep "WEAK CIPHER" | wc -l' % topology.standalone.errlog) + wcount = int(weak.readline().rstrip()) + log.info("Weak ciphers in the default setting: %d" % wcount) + assert wcount == 0 + +-def test_ticket47838_run_8(topology): ++def test_ticket47838_run_10(topology): + """ + Check nssSSL3Chiphers: -TLS_RSA_WITH_NULL_MD5,+TLS_RSA_WITH_RC4_128_MD5, + +TLS_RSA_EXPORT_WITH_RC4_40_MD5,+TLS_RSA_EXPORT_WITH_RC2_CBC_40_MD5, +@@ -462,7 +536,7 @@ def test_ticket47838_run_8(topology): + -SSL_CK_RC2_128_CBC_WITH_MD5,-SSL_CK_RC2_128_CBC_EXPORT40_WITH_MD5, + -SSL_CK_DES_64_CBC_WITH_MD5,-SSL_CK_DES_192_EDE3_CBC_WITH_MD5 + """ +- _header(topology, 'Test Case 9 - Check nssSSL3Chiphers: long list using the NSS Cipher Suite name') ++ _header(topology, 'Test Case 11 - Check nssSSL3Chiphers: long list using the NSS Cipher Suite name') + + topology.standalone.simple_bind_s(DN_DM, PASSWORD) + topology.standalone.modify_s(ENCRYPTION_DN, [(ldap.MOD_REPLACE, 'nsSSL3Ciphers', +@@ -470,12 +544,12 @@ def test_ticket47838_run_8(topology): + + log.info("\n######################### Restarting the server ######################\n") + topology.standalone.stop(timeout=10) +- os.system('mv %s %s.47838_7' % (topology.standalone.errlog, topology.standalone.errlog)) ++ os.system('mv %s %s.47838_9' % (topology.standalone.errlog, topology.standalone.errlog)) + os.system('touch %s' % (topology.standalone.errlog)) + topology.standalone.start(timeout=120) + +- enabled = os.popen('egrep "SSL alert:" %s | egrep enabled | wc -l' % topology.standalone.errlog) +- disabled = os.popen('egrep "SSL alert:" %s | egrep disabled | wc -l' % topology.standalone.errlog) ++ enabled = os.popen('egrep "SSL alert:" %s | egrep \": enabled\" | wc -l' % topology.standalone.errlog) ++ disabled = os.popen('egrep "SSL alert:" %s | egrep \": disabled\" | wc -l' % topology.standalone.errlog) + ecount = int(enabled.readline().rstrip()) + dcount = int(disabled.readline().rstrip()) + +@@ -485,32 +559,56 @@ def test_ticket47838_run_8(topology): + global plus_all_dcount + assert ecount == 9 + assert dcount == 0 +- weak = os.popen('egrep "SSL alert:" %s | egrep enabled | egrep "WEAK CIPHER" | wc -l' % topology.standalone.errlog) ++ weak = os.popen('egrep "SSL alert:" %s | egrep \": enabled\" | egrep "WEAK CIPHER" | wc -l' % topology.standalone.errlog) + wcount = int(weak.readline().rstrip()) + log.info("Weak ciphers in the default setting: %d" % wcount) + +-def test_ticket47838_run_9(topology): ++ topology.standalone.log.info("ticket47838 was successfully verified."); ++ ++def test_ticket47838_run_11(topology): ++ """ ++ Check nssSSL3Chiphers: +fortezza ++ SSL_GetImplementedCiphers does not return this as a secuire cipher suite ++ """ ++ _header(topology, 'Test Case 12 - Check nssSSL3Chiphers: +fortezza, which is not supported') ++ ++ topology.standalone.simple_bind_s(DN_DM, PASSWORD) ++ topology.standalone.modify_s(ENCRYPTION_DN, [(ldap.MOD_REPLACE, 'nsSSL3Ciphers', '+fortezza')]) ++ ++ log.info("\n######################### Restarting the server ######################\n") ++ topology.standalone.stop(timeout=10) ++ os.system('mv %s %s.47838_10' % (topology.standalone.errlog, topology.standalone.errlog)) ++ os.system('touch %s' % (topology.standalone.errlog)) ++ topology.standalone.start(timeout=120) ++ ++ errmsg = os.popen('egrep "SSL alert:" %s | egrep "is not available in NSS"' % topology.standalone.errlog) ++ if errmsg != "": ++ log.info("Expected error message:") ++ log.info("%s" % errmsg.readline()) ++ else: ++ log.info("Expected error message was not found") ++ assert False ++ ++def test_ticket47838_run_last(topology): + """ +- NOTE: Currently, this test case is commented out since if the server fails to start, +- it repeatedly restarted. + Check nssSSL3Chiphers: all <== invalid value + All ciphers are disabled. + """ +- _header(topology, 'Test Case 10 - Check nssSSL3Chiphers: all, which is invalid') ++ _header(topology, 'Test Case 13 - Check nssSSL3Chiphers: all, which is invalid') + + topology.standalone.simple_bind_s(DN_DM, PASSWORD) + topology.standalone.modify_s(ENCRYPTION_DN, [(ldap.MOD_REPLACE, 'nsSSL3Ciphers', 'all')]) + + log.info("\n######################### Restarting the server ######################\n") + topology.standalone.stop(timeout=10) +- os.system('mv %s %s.47838_7' % (topology.standalone.errlog, topology.standalone.errlog)) ++ os.system('mv %s %s.47838_10' % (topology.standalone.errlog, topology.standalone.errlog)) + os.system('touch %s' % (topology.standalone.errlog)) + topology.standalone.start(timeout=120) + +- errmsg = os.popen('egrep "SSL alert:" %s | egrep "invalid ciphers"' % topology.standalone.errlog) ++ errmsg = os.popen('egrep "SSL alert:" %s | egrep "invalid ciphers"' % topology.standalone.errlog) + if errmsg != "": + log.info("Expected error message:") +- log.info("%s" % errmsg) ++ log.info("%s" % errmsg.readline()) + else: + log.info("Expected error message was not found") + assert False +@@ -519,6 +617,9 @@ def test_ticket47838_run_9(topology): + + def test_ticket47838_final(topology): + topology.standalone.simple_bind_s(DN_DM, PASSWORD) ++ topology.standalone.modify_s(CONFIG_DN, [(ldap.MOD_REPLACE, 'nsslapd-errorlog-level', None)]) ++ topology.standalone.modify_s(ENCRYPTION_DN, [(ldap.MOD_REPLACE, 'nsSSL3Ciphers', 'default'), ++ (ldap.MOD_REPLACE, 'allowWeakCipher', 'on')]) + topology.standalone.stop(timeout=10) + + def run_isolated(): +@@ -544,7 +645,11 @@ def run_isolated(): + test_ticket47838_run_6(topo) + test_ticket47838_run_7(topo) + test_ticket47838_run_8(topo) +- # test_ticket47838_run_9(topo) ++ test_ticket47838_run_9(topo) ++ test_ticket47838_run_10(topo) ++ test_ticket47838_run_11(topo) ++ ++ test_ticket47838_run_last(topo) + + test_ticket47838_final(topo) + +-- +1.9.3 + diff --git a/SOURCES/0006-Ticket-449-Allow-macro-aci-keywords-to-be-case-insen.patch b/SOURCES/0006-Ticket-449-Allow-macro-aci-keywords-to-be-case-insen.patch deleted file mode 100644 index 8ca3f65..0000000 --- a/SOURCES/0006-Ticket-449-Allow-macro-aci-keywords-to-be-case-insen.patch +++ /dev/null @@ -1,217 +0,0 @@ -From 5a96717edfa061bf797eec36361deeab64a854f4 Mon Sep 17 00:00:00 2001 -From: Nathan Kinder -Date: Wed, 11 Sep 2013 18:23:14 -0700 -Subject: [PATCH 6/7] Ticket 449 - Allow macro aci keywords to be - case-insensitive - -This allows the macro aci keywords ($attr and $dn) to be -case-insensitive. We were allowing the keywords to be set -regardless of case, but we were only processing them properly -if they were lowercase. This patch makes the processing -case-insensitive as well. - -I also added validation of the attribute name that is appended -to the $attr keyword. We previously performed no validation. The -patch ensures that the attribute name is legal per RFC 4512, but -we don't check if it is defined in the schema. This will allow an -aci to be set prior to adding the attribute to the schema. It -also allows attributes that are used in an extensibleObject entry -to work properly with macro acis. -(cherry picked from commit a7e9f7b2f4df38d81b1cbf6bc53c79d0d56bc36c) ---- - ldap/servers/plugins/acl/acllas.c | 34 +++++++++++++++++----------------- - ldap/servers/plugins/acl/aclparse.c | 34 ++++++++++++++++++++++++++++++---- - ldap/servers/plugins/acl/aclutil.c | 6 +++--- - 3 files changed, 50 insertions(+), 24 deletions(-) - -diff --git a/ldap/servers/plugins/acl/acllas.c b/ldap/servers/plugins/acl/acllas.c -index 5bcb482..ee113bc 100644 ---- a/ldap/servers/plugins/acl/acllas.c -+++ b/ldap/servers/plugins/acl/acllas.c -@@ -584,9 +584,9 @@ DS_LASUserDnEval(NSErr_t *errp, char *attr_name, CmpOp_t comparator, - } else { - /* URL format */ - -- if ((strstr (user, ACL_RULE_MACRO_DN_KEY) != NULL) || -- (strstr (user, ACL_RULE_MACRO_DN_LEVELS_KEY) != NULL) || -- (strstr (user, ACL_RULE_MACRO_ATTR_KEY) != NULL)) { -+ if ((strcasestr (user, ACL_RULE_MACRO_DN_KEY) != NULL) || -+ (strcasestr (user, ACL_RULE_MACRO_DN_LEVELS_KEY) != NULL) || -+ (strcasestr (user, ACL_RULE_MACRO_ATTR_KEY) != NULL)) { - - matched = aclutil_evaluate_macro( s_user, &lasinfo, - ACL_EVAL_USER); -@@ -856,9 +856,9 @@ DS_LASGroupDnEval(NSErr_t *errp, char *attr_name, CmpOp_t comparator, - "Group not evaluated(%s)\n", groupName); - break; - } else { -- if ((strstr (groupName, ACL_RULE_MACRO_DN_KEY) != NULL) || -- (strstr (groupName, ACL_RULE_MACRO_DN_LEVELS_KEY) != NULL) || -- (strstr (groupName, ACL_RULE_MACRO_ATTR_KEY) != NULL)) { -+ if ((strcasestr (groupName, ACL_RULE_MACRO_DN_KEY) != NULL) || -+ (strcasestr (groupName, ACL_RULE_MACRO_DN_LEVELS_KEY) != NULL) || -+ (strcasestr (groupName, ACL_RULE_MACRO_ATTR_KEY) != NULL)) { - matched = aclutil_evaluate_macro( groupName, &lasinfo, - ACL_EVAL_GROUP); - slapi_log_error ( SLAPI_LOG_ACL, plugin_name, -@@ -1075,9 +1075,9 @@ DS_LASRoleDnEval(NSErr_t *errp, char *attr_name, CmpOp_t comparator, - } else { - - /* Take care of param strings */ -- if ((strstr (role, ACL_RULE_MACRO_DN_KEY) != NULL) || -- (strstr (role, ACL_RULE_MACRO_DN_LEVELS_KEY) != NULL) || -- (strstr (role, ACL_RULE_MACRO_ATTR_KEY) != NULL)) { -+ if ((strcasestr (role, ACL_RULE_MACRO_DN_KEY) != NULL) || -+ (strcasestr (role, ACL_RULE_MACRO_DN_LEVELS_KEY) != NULL) || -+ (strcasestr (role, ACL_RULE_MACRO_ATTR_KEY) != NULL)) { - - matched = aclutil_evaluate_macro( role, &lasinfo, - ACL_EVAL_ROLE); -@@ -2598,9 +2598,9 @@ DS_LASGroupDnAttrEval(NSErr_t *errp, char *attr_name, CmpOp_t comparator, - - /* In this case "grppupdnattr="ldap:///base??attr" */ - -- if ((strstr (attrName, ACL_RULE_MACRO_DN_KEY) != NULL) || -- (strstr (attrName, ACL_RULE_MACRO_DN_LEVELS_KEY) != NULL) || -- (strstr (attrName, ACL_RULE_MACRO_ATTR_KEY) != NULL)) { -+ if ((strcasestr (attrName, ACL_RULE_MACRO_DN_KEY) != NULL) || -+ (strcasestr (attrName, ACL_RULE_MACRO_DN_LEVELS_KEY) != NULL) || -+ (strcasestr (attrName, ACL_RULE_MACRO_ATTR_KEY) != NULL)) { - - matched = aclutil_evaluate_macro( attrName, &lasinfo, - ACL_EVAL_GROUPDNATTR); -@@ -4157,12 +4157,12 @@ acllas_replace_dn_macro( char *rule, char *matched_val, lasInfo *lasinfo) { - int has_macro_levels = 0; - - /* Determine what the rule's got once */ -- if ( strstr(rule, ACL_RULE_MACRO_DN_KEY) != NULL) { -+ if ( strcasestr(rule, ACL_RULE_MACRO_DN_KEY) != NULL) { - /* ($dn) exists */ - has_macro_dn = 1; - } - -- if ( strstr(rule, ACL_RULE_MACRO_DN_LEVELS_KEY) != NULL) { -+ if ( strcasestr(rule, ACL_RULE_MACRO_DN_LEVELS_KEY) != NULL) { - /* [$dn] exists */ - has_macro_levels = 1; - } -@@ -4266,7 +4266,7 @@ acllas_replace_attr_macro( char *rule, lasInfo *lasinfo) - int l; - Slapi_Attr *attr = NULL; - -- str = strstr(rule, ACL_RULE_MACRO_ATTR_KEY); -+ str = strcasestr(rule, ACL_RULE_MACRO_ATTR_KEY); - if ( str == NULL ) { - - charray_add(&a, slapi_ch_strdup(rule)); -@@ -4275,7 +4275,7 @@ acllas_replace_attr_macro( char *rule, lasInfo *lasinfo) - } else { - - working_rule = slapi_ch_strdup(rule); -- str = strstr(working_rule, ACL_RULE_MACRO_ATTR_KEY); -+ str = strcasestr(working_rule, ACL_RULE_MACRO_ATTR_KEY); - charray_add(&working_list, working_rule ); - - while( str != NULL) { -@@ -4373,7 +4373,7 @@ acllas_replace_attr_macro( char *rule, lasInfo *lasinfo) - slapi_ch_free_string(¯o_str); - slapi_ch_free_string(¯o_attr_name); - -- str = strstr(working_rule, ACL_RULE_MACRO_ATTR_KEY); -+ str = strcasestr(working_rule, ACL_RULE_MACRO_ATTR_KEY); - - }/* while */ - -diff --git a/ldap/servers/plugins/acl/aclparse.c b/ldap/servers/plugins/acl/aclparse.c -index cabc39f..29203da 100644 ---- a/ldap/servers/plugins/acl/aclparse.c -+++ b/ldap/servers/plugins/acl/aclparse.c -@@ -276,8 +276,8 @@ __aclp__parse_aci(char *str, aci_t *aci_item, char **errbuf) - * have a target and it must have a macro. - */ - -- if ((strstr(str, ACL_RULE_MACRO_DN_KEY) != NULL) || -- (strstr(str, ACL_RULE_MACRO_DN_LEVELS_KEY) != NULL)) { -+ if ((strcasestr(str, ACL_RULE_MACRO_DN_KEY) != NULL) || -+ (strcasestr(str, ACL_RULE_MACRO_DN_LEVELS_KEY) != NULL)) { - - /* Must have a targetmacro */ - if ( !(aci_item->aci_type & ACI_TARGET_MACRO_DN)) { -@@ -497,15 +497,41 @@ __aclp__sanity_check_acltxt (aci_t *aci_item, char *str) - return ACL_INCORRECT_ACI_VERSION; - } - } else if ((s = strstr(word, "($")) || (s = strstr(word, "[$"))) { -+ int attr_macro = -1; -+ -+ /* See if this is a valid macro keyword. */ - if ((0 != strncasecmp(s, ACL_RULE_MACRO_DN_KEY, - sizeof(ACL_RULE_MACRO_DN_KEY) - 1)) && - (0 != strncasecmp(s, ACL_RULE_MACRO_DN_LEVELS_KEY, - sizeof(ACL_RULE_MACRO_DN_LEVELS_KEY) - 1)) && -- (0 != strncasecmp(s, ACL_RULE_MACRO_ATTR_KEY, -- sizeof(ACL_RULE_MACRO_ATTR_KEY) - 1))) { -+ (0 != (attr_macro = strncasecmp(s, ACL_RULE_MACRO_ATTR_KEY, -+ sizeof(ACL_RULE_MACRO_ATTR_KEY) - 1)))) { - slapi_ch_free ( (void **) &newstr ); - return ACL_SYNTAX_ERR; - } -+ -+ /* For the $attr macro, validate that the attribute name is -+ * legal per RFC 4512. */ -+ if (attr_macro == 0) { -+ int start = 1; -+ char *p = NULL; -+ -+ for (p = s + sizeof(ACL_RULE_MACRO_ATTR_KEY) - 1; -+ p && *p && *p != ')'; p++) { -+ if (start) { -+ if (!isalpha(*p)) { -+ slapi_ch_free ( (void **) &newstr ); -+ return ACL_SYNTAX_ERR; -+ } -+ start = 0; -+ } else { -+ if (!(isalnum(*p) || (*p == '-'))) { -+ slapi_ch_free ( (void **) &newstr ); -+ return ACL_SYNTAX_ERR; -+ } -+ } -+ } -+ } - } - } - slapi_ch_free ( (void **) &newstr ); -diff --git a/ldap/servers/plugins/acl/aclutil.c b/ldap/servers/plugins/acl/aclutil.c -index f33b11e..1b8bc12 100644 ---- a/ldap/servers/plugins/acl/aclutil.c -+++ b/ldap/servers/plugins/acl/aclutil.c -@@ -1247,7 +1247,7 @@ acl_replace_str(char * s, char *substr, char* replace_with_str) { - char *working_s, *suffix, *prefix, *patched; - int replace_with_len, substr_len, prefix_len, suffix_len; - -- if (strstr(s, substr) == NULL) { -+ if (strcasestr(s, substr) == NULL) { - return(slapi_ch_strdup(s)); - } else { - -@@ -1257,7 +1257,7 @@ acl_replace_str(char * s, char *substr, char* replace_with_str) { - - working_s = slapi_ch_strdup(s); - prefix = working_s; -- str = strstr(prefix, substr); -+ str = strcasestr(prefix, substr); - - while (str != NULL) { - -@@ -1284,7 +1284,7 @@ acl_replace_str(char * s, char *substr, char* replace_with_str) { - - working_s = patched; - prefix = working_s; -- str = strstr(prefix, substr); -+ str = strcasestr(prefix, substr); - - } - --- -1.8.1.4 - diff --git a/SOURCES/0006-Ticket-47895-If-no-effective-ciphers-are-available-d.patch b/SOURCES/0006-Ticket-47895-If-no-effective-ciphers-are-available-d.patch new file mode 100644 index 0000000..06cfdd1 --- /dev/null +++ b/SOURCES/0006-Ticket-47895-If-no-effective-ciphers-are-available-d.patch @@ -0,0 +1,96 @@ +From dd2dc9218ec91589f03c89f4f38fe2927bf5e3ab Mon Sep 17 00:00:00 2001 +From: Noriko Hosoi +Date: Wed, 10 Sep 2014 18:56:43 -0700 +Subject: [PATCH 6/7] Ticket #47895 - If no effective ciphers are available, + disable security setting. + +Description: If nsslapd-security is "on" and nsSSL3Ciphers is given +AND none of the ciphers are available or some syntax error is detected, +the server sets nsslapd-security "off" and starts up. + +https://fedorahosted.org/389/ticket/47895 + +Reviewed by nkinder@redhat.com (Thank you, Nathan!!) + +(cherry picked from commit 0f1a203a0fe85f3cf0440006685f63409502f093) +(cherry picked from commit cad5b96507caf9e08a12285c52d0353f8e6dcc3b) +--- + ldap/servers/slapd/main.c | 42 ++++++++++++++++++++++++++++++------------ + 1 file changed, 30 insertions(+), 12 deletions(-) + +diff --git a/ldap/servers/slapd/main.c b/ldap/servers/slapd/main.c +index d577514..6bad2a0 100644 +--- a/ldap/servers/slapd/main.c ++++ b/ldap/servers/slapd/main.c +@@ -3077,6 +3077,24 @@ slapd_debug_level_usage( void ) + } + #endif /* LDAP_DEBUG */ + ++static int ++force_to_disable_security(const char *what, int *init_ssl, daemon_ports_t *ports_info) ++{ ++ char errorbuf[SLAPI_DSE_RETURNTEXT_SIZE]; ++ errorbuf[0] = '\0'; ++ ++ LDAPDebug2Args(LDAP_DEBUG_ANY, "ERROR: %s Initialization Failed. Disabling %s.\n", what, what); ++ ports_info->s_socket = SLAPD_INVALID_SOCKET; ++ ports_info->s_port = 0; ++ *init_ssl = 0; ++ if (config_set_security(CONFIG_SECURITY_ATTRIBUTE, "off", errorbuf, 1)) { ++ LDAPDebug2Args(LDAP_DEBUG_ANY, "ERROR: Failed to disable %s: \"%s\".\n", ++ CONFIG_SECURITY_ATTRIBUTE, errorbuf[0]?errorbuf:"no error message"); ++ return 1; ++ } ++ return 0; ++} ++ + /* + This function does all NSS and SSL related initialization + required during startup. We use this function rather +@@ -3113,20 +3131,20 @@ slapd_do_all_nss_ssl_init(int slapd_exemode, int importexport_encrypt, + * modules can assume NSS is available + */ + if ( slapd_nss_init((slapd_exemode == SLAPD_EXEMODE_SLAPD), +- (slapd_exemode != SLAPD_EXEMODE_REFERRAL) /* have config? */ )) { +- LDAPDebug(LDAP_DEBUG_ANY, +- "ERROR: NSS Initialization Failed.\n", 0, 0, 0); +- return 1; ++ (slapd_exemode != SLAPD_EXEMODE_REFERRAL) /* have config? */ )) { ++ if (force_to_disable_security("NSS", &init_ssl, ports_info)) { ++ return 1; ++ } + } + + if (slapd_exemode == SLAPD_EXEMODE_SLAPD) { + client_auth_init(); + } + +- if ( init_ssl && ( 0 != slapd_ssl_init())) { +- LDAPDebug(LDAP_DEBUG_ANY, +- "ERROR: SSL Initialization Failed.\n", 0, 0, 0 ); +- return 1; ++ if (init_ssl && slapd_ssl_init()) { ++ if (force_to_disable_security("SSL", &init_ssl, ports_info)) { ++ return 1; ++ } + } + + if ((slapd_exemode == SLAPD_EXEMODE_SLAPD) || +@@ -3134,10 +3152,10 @@ slapd_do_all_nss_ssl_init(int slapd_exemode, int importexport_encrypt, + if ( init_ssl ) { + PRFileDesc **sock; + for (sock = ports_info->s_socket; sock && *sock; sock++) { +- if ( 0 != slapd_ssl_init2(sock, 0) ) { +- LDAPDebug(LDAP_DEBUG_ANY, +- "ERROR: SSL Initialization phase 2 Failed.\n", 0, 0, 0 ); +- return 1; ++ if ( slapd_ssl_init2(sock, 0) ) { ++ if (force_to_disable_security("SSL2", &init_ssl, ports_info)) { ++ return 1; ++ } + } + } + } +-- +1.9.3 + diff --git a/SOURCES/0007-Ticket-47489-Under-specific-values-of-nsDS5ReplicaNa.patch b/SOURCES/0007-Ticket-47489-Under-specific-values-of-nsDS5ReplicaNa.patch deleted file mode 100644 index d80eff3..0000000 --- a/SOURCES/0007-Ticket-47489-Under-specific-values-of-nsDS5ReplicaNa.patch +++ /dev/null @@ -1,48 +0,0 @@ -From b28da0d94c219c9ccfae51ee603d92220de23084 Mon Sep 17 00:00:00 2001 -From: "Thierry bordaz (tbordaz)" -Date: Wed, 11 Sep 2013 11:08:58 +0200 -Subject: [PATCH 7/7] Ticket 47489 - Under specific values of nsDS5ReplicaName, - replication may get broken or updates missing - -Bug Description: - If the 'nsDS5ReplicaName' (of a replica), contains the database suffix (e.g. 'db', 'db3' or 'db4). - Then replication plugin fails to open the changelog. It could conduct to changelog being recreated or some - last updates to be corrupted. - A consequence that I can reproduce, is that some updates may be removed from the changelog and missing - updates on consumers. - This could conduct to replication break, if for example an entry created is not replicated and then later updated. - -Fix Description: - The fix consist to use 'PL_strrstr' rather than 'strstr' to check the database suffix is valid - -https://fedorahosted.org/389/ticket/47489 - -Reviewed by: Rich Megginson (thanks Rich !) - -Platforms tested: Fedora 17 - -Flag Day: no - -Doc impact: no -(cherry picked from commit 7a7609d88caf9c0971e694d7eeb78f30aea7fec9) -(cherry picked from commit ac8aad8260d3e5ed403e2d4a9967447a97925ba7) ---- - ldap/servers/plugins/replication/cl5_api.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/ldap/servers/plugins/replication/cl5_api.c b/ldap/servers/plugins/replication/cl5_api.c -index 0a70d6b..7bedc2c 100644 ---- a/ldap/servers/plugins/replication/cl5_api.c -+++ b/ldap/servers/plugins/replication/cl5_api.c -@@ -6161,7 +6161,7 @@ static int _cl5FileEndsWith(const char *filename, const char *ext) - { - return 0; - } -- p = strstr(filename, ext); -+ p = PL_strrstr(filename, ext); - if (NULL == p) - { - return 0; --- -1.8.1.4 - diff --git a/SOURCES/0007-Ticket-47889-DS-crashed-during-ipa-server-install-on.patch b/SOURCES/0007-Ticket-47889-DS-crashed-during-ipa-server-install-on.patch new file mode 100644 index 0000000..a5c5bb4 --- /dev/null +++ b/SOURCES/0007-Ticket-47889-DS-crashed-during-ipa-server-install-on.patch @@ -0,0 +1,48 @@ +From ea4b10991ea02274cd4861a123494917c3f2e8d5 Mon Sep 17 00:00:00 2001 +From: "Thierry bordaz (tbordaz)" +Date: Thu, 11 Sep 2014 09:47:29 +0200 +Subject: [PATCH 7/7] Ticket 47889 - DS crashed during ipa-server-install on + test_ava_filter + +Bug Description: + During a MOD the target entry is duplicated and mods are applied + on the duplicated entry that is set in the pblock (SLAPI_MODIFY_EXISTING_ENTRY). + In case of transient DB error, ldbm_back_modify retries. + But when retrying the duplicated entry will be freed and needs to be duplicated again. + The new duplicated entry needs to be set in the pblock. + https://fedorahosted.org/389/ticket/47834 erronously skip the setting of SLAPI_MODIFY_EXISTING_ENTRY + +Fix Description: + Set SLAPI_MODIFY_EXISTING_ENTRY during mod/retry + +https://fedorahosted.org/389/ticket/47889 + +Reviewed by: ? + +Platforms tested: F20 + +Flag Day: no + +Doc impact: no + +(cherry picked from commit 3b5f3fa1b82cde2bda1104cf758acb64f6484009) +(cherry picked from commit 0363fa49265c0c27d510064cea361eb400802548) +--- + ldap/servers/slapd/back-ldbm/ldbm_modify.c | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/ldap/servers/slapd/back-ldbm/ldbm_modify.c b/ldap/servers/slapd/back-ldbm/ldbm_modify.c +index 254ef29..529bd32 100644 +--- a/ldap/servers/slapd/back-ldbm/ldbm_modify.c ++++ b/ldap/servers/slapd/back-ldbm/ldbm_modify.c +@@ -529,6 +529,7 @@ ldbm_back_modify( Slapi_PBlock *pb ) + CACHE_REMOVE(&inst->inst_cache, ec); + } + CACHE_RETURN(&inst->inst_cache, &ec); ++ slapi_pblock_set( pb, SLAPI_MODIFY_EXISTING_ENTRY, original_entry->ep_entry ); + ec = original_entry; + original_entry = tmpentry; + tmpentry = NULL; +-- +1.9.3 + diff --git a/SOURCES/0008-Ticket-47516-replication-stops-with-excessive-clock-.patch b/SOURCES/0008-Ticket-47516-replication-stops-with-excessive-clock-.patch deleted file mode 100644 index add0dee..0000000 --- a/SOURCES/0008-Ticket-47516-replication-stops-with-excessive-clock-.patch +++ /dev/null @@ -1,165 +0,0 @@ -From 93b7d05d9547d498e9cb38da350153d4db340ca6 Mon Sep 17 00:00:00 2001 -From: Rich Megginson -Date: Wed, 18 Sep 2013 12:32:23 -0600 -Subject: [PATCH 08/28] Ticket #47516 replication stops with excessive clock skew - -https://fedorahosted.org/389/ticket/47516 -Reviewed by: nhosoi (Thanks!) -Branch: master -Fix Description: Add a new configuration parameter to cn=config -nsslapd-ignore-time-skew: on|off - default off -If nsslapd-ignore-time-skew: on, the replication consumer will log errors -about excessive time skew, but will allow replication to proceed, and will -not return a time skew error to the replication supplier. -Platforms tested: RHEL6 x86_64 -Flag Day: no -Doc impact: yes - document new config param -(cherry picked from commit 1f2c15119f12b2da83da2305a432bc310ee0d84b) ---- - ldap/servers/plugins/replication/repl_extop.c | 11 +++++++- - ldap/servers/slapd/libglobs.c | 33 ++++++++++++++++++++++++- - ldap/servers/slapd/proto-slap.h | 2 + - ldap/servers/slapd/slap.h | 2 + - 4 files changed, 45 insertions(+), 3 deletions(-) - -diff --git a/ldap/servers/plugins/replication/repl_extop.c b/ldap/servers/plugins/replication/repl_extop.c -index 47348b7..f41cc7d 100644 ---- a/ldap/servers/plugins/replication/repl_extop.c -+++ b/ldap/servers/plugins/replication/repl_extop.c -@@ -835,12 +835,19 @@ multimaster_extop_StartNSDS50ReplicationRequest(Slapi_PBlock *pb) - rc = replica_update_csngen_state_ext (replica, supplier_ruv, replicacsn); /* too much skew */ - if (rc == CSN_LIMIT_EXCEEDED) - { -- response = NSDS50_REPL_EXCESSIVE_CLOCK_SKEW; -+ extern int config_get_ignore_time_skew(); -+ - slapi_log_error(SLAPI_LOG_FATAL, repl_plugin_name, - "conn=%" NSPRIu64 " op=%d repl=\"%s\": " - "Excessive clock skew from supplier RUV\n", - (long long unsigned int)connid, opid, repl_root); -- goto send_response; -+ if (!config_get_ignore_time_skew()) { -+ response = NSDS50_REPL_EXCESSIVE_CLOCK_SKEW; -+ goto send_response; -+ } else { -+ /* else just continue */ -+ rc = 0; -+ } - } - else if (rc != 0) - { -diff --git a/ldap/servers/slapd/libglobs.c b/ldap/servers/slapd/libglobs.c -index 1a889fd..f8c5b01 100644 ---- a/ldap/servers/slapd/libglobs.c -+++ b/ldap/servers/slapd/libglobs.c -@@ -257,6 +257,7 @@ slapi_onoff_t init_sasl_mapping_fallback; - slapi_onoff_t init_return_orig_type; - slapi_onoff_t init_enable_turbo_mode; - slapi_int_t init_listen_backlog_size; -+slapi_onoff_t init_ignore_time_skew; - #ifdef MEMPOOL_EXPERIMENTAL - slapi_onoff_t init_mempool_switch; - #endif -@@ -1047,7 +1048,11 @@ static struct config_get_and_set { - {CONFIG_LISTEN_BACKLOG_SIZE, config_set_listen_backlog_size, - NULL, 0, - (void**)&global_slapdFrontendConfig.listen_backlog_size, CONFIG_INT, -- (ConfigGetFunc)config_get_listen_backlog_size, &init_listen_backlog_size} -+ (ConfigGetFunc)config_get_listen_backlog_size, &init_listen_backlog_size}, -+ {CONFIG_IGNORE_TIME_SKEW, config_set_ignore_time_skew, -+ NULL, 0, -+ (void**)&global_slapdFrontendConfig.ignore_time_skew, -+ CONFIG_ON_OFF, (ConfigGetFunc)config_get_ignore_time_skew, &init_ignore_time_skew} - #ifdef MEMPOOL_EXPERIMENTAL - ,{CONFIG_MEMPOOL_SWITCH_ATTRIBUTE, config_set_mempool_switch, - NULL, 0, -@@ -1488,6 +1493,7 @@ FrontendConfig_init () { - init_enable_turbo_mode = cfg->enable_turbo_mode = LDAP_ON; - - init_listen_backlog_size = cfg->listen_backlog_size = DAEMON_LISTEN_SIZE; -+ init_ignore_time_skew = cfg->ignore_time_skew = LDAP_OFF; - #ifdef MEMPOOL_EXPERIMENTAL - init_mempool_switch = cfg->mempool_switch = LDAP_ON; - cfg->mempool_maxfreelist = 1024; -@@ -6910,6 +6916,18 @@ config_get_unhashed_pw_switch() - } - - int -+config_get_ignore_time_skew(void) -+{ -+ int retVal; -+ slapdFrontendConfig_t *slapdFrontendConfig = getFrontendConfig(); -+ CFG_LOCK_READ(slapdFrontendConfig); -+ retVal = slapdFrontendConfig->ignore_time_skew; -+ CFG_UNLOCK_READ(slapdFrontendConfig); -+ -+ return retVal; -+} -+ -+int - config_set_enable_turbo_mode( const char *attrname, char *value, - char *errorbuf, int apply ) - { -@@ -6923,6 +6941,19 @@ config_set_enable_turbo_mode( const char *attrname, char *value, - } - - int -+config_set_ignore_time_skew( const char *attrname, char *value, -+ char *errorbuf, int apply ) -+{ -+ int retVal = LDAP_SUCCESS; -+ slapdFrontendConfig_t *slapdFrontendConfig = getFrontendConfig(); -+ -+ retVal = config_set_onoff(attrname, value, -+ &(slapdFrontendConfig->ignore_time_skew), -+ errorbuf, apply); -+ return retVal; -+} -+ -+int - config_set_listen_backlog_size( const char *attrname, char *value, - char *errorbuf, int apply ) - { -diff --git a/ldap/servers/slapd/proto-slap.h b/ldap/servers/slapd/proto-slap.h -index 60fa4e4..37f5f85 100644 ---- a/ldap/servers/slapd/proto-slap.h -+++ b/ldap/servers/slapd/proto-slap.h -@@ -396,6 +396,7 @@ int config_set_unhashed_pw_switch(const char *attrname, char *value, char *error - int config_set_return_orig_type_switch(const char *attrname, char *value, char *errorbuf, int apply); - int config_set_sasl_maxbufsize(const char *attrname, char *value, char *errorbuf, int apply ); - int config_set_listen_backlog_size(const char *attrname, char *value, char *errorbuf, int apply); -+int config_set_ignore_time_skew(const char *attrname, char *value, char *errorbuf, int apply); - - #if !defined(_WIN32) && !defined(AIX) - int config_set_maxdescriptors( const char *attrname, char *value, char *errorbuf, int apply ); -@@ -569,6 +570,7 @@ int config_get_listen_backlog_size(void); - - PLHashNumber hashNocaseString(const void *key); - PRIntn hashNocaseCompare(const void *v1, const void *v2); -+int config_get_ignore_time_skew(); - - int is_abspath(const char *); - char* rel2abspath( char * ); -diff --git a/ldap/servers/slapd/slap.h b/ldap/servers/slapd/slap.h -index b1246c5..eaa824d 100644 ---- a/ldap/servers/slapd/slap.h -+++ b/ldap/servers/slapd/slap.h -@@ -2094,6 +2094,7 @@ typedef struct _slapdEntryPoints { - #ifndef DAEMON_LISTEN_SIZE - #define DAEMON_LISTEN_SIZE 128 - #endif -+#define CONFIG_IGNORE_TIME_SKEW "nsslapd-ignore-time-skew" - - #ifdef MEMPOOL_EXPERIMENTAL - #define CONFIG_MEMPOOL_SWITCH_ATTRIBUTE "nsslapd-mempool" -@@ -2335,6 +2336,7 @@ typedef struct _slapdFrontendConfig { - slapi_onoff_t ignore_vattrs; - slapi_onoff_t unhashed_pw_switch; /* switch to on/off/nolog unhashed pw */ - slapi_onoff_t enable_turbo_mode; -+ slapi_onoff_t ignore_time_skew; - } slapdFrontendConfig_t; - - /* possible values for slapdFrontendConfig_t.schemareplace */ --- -1.7.1 - diff --git a/SOURCES/0008-Ticket-47892-coverity-defects-found-in-1.3.3.1.patch b/SOURCES/0008-Ticket-47892-coverity-defects-found-in-1.3.3.1.patch new file mode 100644 index 0000000..9527614 --- /dev/null +++ b/SOURCES/0008-Ticket-47892-coverity-defects-found-in-1.3.3.1.patch @@ -0,0 +1,194 @@ +From 80ee43bf0f6ad4a8702f0695b9294a3797483ebe Mon Sep 17 00:00:00 2001 +From: Rich Megginson +Date: Fri, 12 Sep 2014 13:11:26 -0600 +Subject: [PATCH] Ticket #47892 coverity defects found in 1.3.3.1 +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +https://fedorahosted.org/389/ticket/47892 +Reviewed by: mreynolds, nkinder (Thanks!) +Branch: rhel-7.1 +Fix Description: +9. 389-ds-base-1.3.3.1/ldap/servers/plugins/memberof/memberof.c:2079:var_compare_op – Comparing "group_norm_vals" to null implies that "group_norm_vals" might be null. +11. 389-ds-base-1.3.3.1/ldap/servers/plugins/memberof/memberof.c:2099:var_deref_model – Passing null pointer "group_norm_vals" to function "slapi_valueset_add_value_ext(Slapi_ValueSet *, Slapi_Value const *, unsigned long)", which dereferences it. +12. 389-ds-base-1.3.3.1/ldap/servers/slapd/valueset.c:896:2:deref_parm_in_call – Function "slapi_valueset_add_attr_valuearray_ext(Slapi_Attr const *, Slapi_ValueSet *, Slapi_Value **, int, unsigned long, int *)" dereferences "vs". +15. 389-ds-base-1.3.3.1/ldap/servers/slapd/valueset.c:1075:2:deref_parm – Directly dereferencing parameter "vs". + +Added a check for group_norm_vals == NULL at beginning of function. I think this had a chain effect causing 11, 12, and 15 as well. + +various - deprecated conversion from string constant - added const_cast as recommended by C++ guides. + +2. 389-ds-base-1.3.3.1/ldap/servers/slapd/back-ldbm/ldif2ldbm.c:2198:78:warning – 'j' may be used uninitialized in this function [-Wmaybe-uninitialized] + +Should have been using SLAPI_ATTR_TOMBSTONE_CSN + +2. 389-ds-base-1.3.3.1/ldap/servers/plugins/acl/aclparse.c:538:28:warning – 'is_target_to' may be used uninitialized in this function [-Wmaybe-uninitialized] + +2. 389-ds-base-1.3.3.1/ldap/servers/plugins/acl/acl.c:2493:26:warning – 'attrFilterArray' may be used uninitialized in this function [-Wmaybe-uninitialized] + +These are false positives. + +The minor memleaks were also fixed. + +Platforms tested: Fedora 20 +Flag Day: no +Doc impact: no + +(cherry picked from commit 66e43aee7151acf6939b1a646eb869c7ccf0f7a4) +(cherry picked from commit 6dc23ec794cd5644a40c223e7b66066f195d8d7d) +--- + ldap/servers/plugins/memberof/memberof.c | 6 +++--- + ldap/servers/slapd/back-ldbm/ldif2ldbm.c | 2 +- + ldap/servers/slapd/tools/ldif.c | 5 ++++- + ldap/servers/slapd/tools/rsearch/nametable.c | 1 + + lib/base/pool.cpp | 10 +++++----- + lib/libaccess/aclcache.cpp | 2 +- + 6 files changed, 15 insertions(+), 11 deletions(-) + +diff --git a/ldap/servers/plugins/memberof/memberof.c b/ldap/servers/plugins/memberof/memberof.c +index 6549718..bd87ee9 100644 +--- a/ldap/servers/plugins/memberof/memberof.c ++++ b/ldap/servers/plugins/memberof/memberof.c +@@ -2044,10 +2044,10 @@ int memberof_get_groups_callback(Slapi_Entry *e, void *callback_data) + goto bail; + } + +- if (!groupvals) ++ if (!groupvals || !group_norm_vals) + { + slapi_log_error( SLAPI_LOG_PLUGIN, MEMBEROF_PLUGIN_SUBSYSTEM, +- "memberof_get_groups_callback: NULL groupvals\n"); ++ "memberof_get_groups_callback: NULL groupvals or group_norm_vals\n"); + rc = -1; + goto bail; + +@@ -2076,7 +2076,7 @@ int memberof_get_groups_callback(Slapi_Entry *e, void *callback_data) + * in config. We only need this attribute for it's syntax so the comparison can be + * performed. Since all of the grouping attributes are validated to use the Dinstinguished + * Name syntax, we can safely just use the first group_slapiattr. */ +- if (group_norm_vals && slapi_valueset_find( ++ if (slapi_valueset_find( + ((memberof_get_groups_data*)callback_data)->config->group_slapiattrs[0], group_norm_vals, group_ndn_val)) + { + /* we either hit a recursive grouping, or an entry is +diff --git a/ldap/servers/slapd/back-ldbm/ldif2ldbm.c b/ldap/servers/slapd/back-ldbm/ldif2ldbm.c +index ab3a4a5..523da09 100644 +--- a/ldap/servers/slapd/back-ldbm/ldif2ldbm.c ++++ b/ldap/servers/slapd/back-ldbm/ldif2ldbm.c +@@ -2195,7 +2195,7 @@ ldbm_back_ldbm2index(Slapi_PBlock *pb) + if (task) { + slapi_task_log_notice(task, "%s: ERROR: failed to begin txn for " + "update index '%s' (err %d: %s)", +- inst->inst_name, indexAttrs[j], rc, ++ inst->inst_name, SLAPI_ATTR_TOMBSTONE_CSN, rc, + dblayer_strerror(rc)); + } + return_value = -2; +diff --git a/ldap/servers/slapd/tools/ldif.c b/ldap/servers/slapd/tools/ldif.c +index e8e6f9b..e4527ba 100644 +--- a/ldap/servers/slapd/tools/ldif.c ++++ b/ldap/servers/slapd/tools/ldif.c +@@ -142,7 +142,8 @@ int main( int argc, char **argv ) + } + + if (( out = ldif_type_and_value( type, val, cur )) == NULL ) { +- perror( "ldif_type_and_value" ); ++ perror( "ldif_type_and_value" ); ++ free( val ); + return( 1 ); + } + +@@ -166,6 +167,7 @@ int main( int argc, char **argv ) + maxlen *= 2; + if( (buf = (char *)realloc(buf, maxlen)) == NULL ) { + perror( "realloc" ); ++ free( buf ); + return( 1 ); + } + (void)fgets(buf+curlen, maxlen/2 + 1, stdin); +@@ -176,6 +178,7 @@ int main( int argc, char **argv ) + if (( out = ldif_type_and_value( type, buf, strlen( buf ) )) + == NULL ) { + perror( "ldif_type_and_value" ); ++ free( buf ); + return( 1 ); + } + fputs( out, stdout ); +diff --git a/ldap/servers/slapd/tools/rsearch/nametable.c b/ldap/servers/slapd/tools/rsearch/nametable.c +index 03a6ae1..9d56a34 100644 +--- a/ldap/servers/slapd/tools/rsearch/nametable.c ++++ b/ldap/servers/slapd/tools/rsearch/nametable.c +@@ -160,6 +160,7 @@ int nt_load(NameTable *nt, const char *filename) + free(s); + break; + } ++ free(s); + } + PR_Close(fd); + return nt->size; +diff --git a/lib/base/pool.cpp b/lib/base/pool.cpp +index 9ee1b8c..ab952d1 100644 +--- a/lib/base/pool.cpp ++++ b/lib/base/pool.cpp +@@ -178,7 +178,7 @@ _create_block(int size) + crit_exit(freelist_lock); + if (((newblock = (block_t *)PERM_MALLOC(sizeof(block_t))) == NULL) || + ((newblock->data = (char *)PERM_MALLOC(bytes)) == NULL)) { +- ereport(LOG_CATASTROPHE, "%s", XP_GetAdminStr(DBT_poolCreateBlockOutOfMemory_)); ++ ereport(LOG_CATASTROPHE, const_cast("%s"), XP_GetAdminStr(DBT_poolCreateBlockOutOfMemory_)); + if (newblock) + PERM_FREE(newblock); + return NULL; +@@ -259,7 +259,7 @@ pool_create() + } + + if ( (newpool->curr_block =_create_block(BLOCK_SIZE)) == NULL) { +- ereport(LOG_CATASTROPHE, "%s", XP_GetAdminStr(DBT_poolCreateOutOfMemory_)); ++ ereport(LOG_CATASTROPHE, const_cast("%s"), XP_GetAdminStr(DBT_poolCreateOutOfMemory_)); + PERM_FREE(newpool); + return NULL; + } +@@ -280,7 +280,7 @@ pool_create() + crit_exit(known_pools_lock); + } + else +- ereport(LOG_CATASTROPHE, "%s", XP_GetAdminStr(DBT_poolCreateOutOfMemory_1)); ++ ereport(LOG_CATASTROPHE, const_cast("%s"), XP_GetAdminStr(DBT_poolCreateOutOfMemory_1)); + + return (pool_handle_t *)newpool; + } +@@ -386,7 +386,7 @@ pool_malloc(pool_handle_t *pool_handle, size_t size) + */ + blocksize = ( (size + BLOCK_SIZE-1) / BLOCK_SIZE ) * BLOCK_SIZE; + if ( (pool->curr_block = _create_block(blocksize)) == NULL) { +- ereport(LOG_CATASTROPHE, "%s", XP_GetAdminStr(DBT_poolMallocOutOfMemory_)); ++ ereport(LOG_CATASTROPHE, const_cast("%s"), XP_GetAdminStr(DBT_poolMallocOutOfMemory_)); + #ifdef POOL_LOCKING + crit_exit(pool->lock); + #endif +@@ -408,7 +408,7 @@ pool_malloc(pool_handle_t *pool_handle, size_t size) + + void _pool_free_error() + { +- ereport(LOG_WARN, "%s", XP_GetAdminStr(DBT_freeUsedWherePermFreeShouldHaveB_)); ++ ereport(LOG_WARN, const_cast("%s"), XP_GetAdminStr(DBT_freeUsedWherePermFreeShouldHaveB_)); + + return; + } +diff --git a/lib/libaccess/aclcache.cpp b/lib/libaccess/aclcache.cpp +index 52e019b..a96b0c9 100644 +--- a/lib/libaccess/aclcache.cpp ++++ b/lib/libaccess/aclcache.cpp +@@ -133,7 +133,7 @@ ACL_ListHashInit() + &ACLPermAllocOps, + NULL); + if (ACLListHash == NULL) { +- ereport(LOG_SECURITY, "Unable to allocate ACL List Hash\n"); ++ ereport(LOG_SECURITY, const_cast("Unable to allocate ACL List Hash\n")); + return; + } + +-- +1.9.3 + diff --git a/SOURCES/0009-Ticket-47504-idlistscanlimit-per-index-type-value.patch b/SOURCES/0009-Ticket-47504-idlistscanlimit-per-index-type-value.patch deleted file mode 100644 index 9a615b2..0000000 --- a/SOURCES/0009-Ticket-47504-idlistscanlimit-per-index-type-value.patch +++ /dev/null @@ -1,994 +0,0 @@ -From f0d8c0c43d9c6ebd82cb0a223ad162b1c2fbb8f5 Mon Sep 17 00:00:00 2001 -From: Rich Megginson -Date: Mon, 16 Sep 2013 09:49:14 -0600 -Subject: [PATCH 09/28] Ticket #47504 idlistscanlimit per index/type/value - -https://fedorahosted.org/389/ticket/47504 -Reviewed by: nhosoi (Thanks!) -Branch: 389-ds-base-1.3.1 -Fix Description: Added a new attribute nsIndexIDListScanLimit to nsIndex - nsIndexIDListScanLimit: limit=NNN [type=eq[,sub,...]] [flags=ADD[,XXX..]] [values=val[,val...]] -* The limit is the idlistscanlimit to apply. The value can be -1 (unlimited), 0 -(do not use the index at all), or a number to use for the idlistscanlimit. -* The type is a comma-delimited list of index types (eq,sub,etc.) to which the -limit applies. The index type must be one of the index types configured for the index (you can't configure an id list for type=sub if you do not already have -a substring index configured for the attribute). -* The flags are a comma-delimited list of additional criteria which must match. -** flags ADD - only apply the limit when the index is used in an AND (&) filter -The values are a comma-delimited list of values which must match in the search -filter in order for the limit to be applied. Since the matches are done one -at a time (we evaluate one filter component at a time), the values will match -if any of the values match. -* The values must be used with only one type at a time. If values are specified, -type must be specified, and type must be a type that deals with values, such -as eq or sub. There must be only one type specified - you can't specify values -if you use type=eq,pres or otherwise specify more than one type. The values -must correspond to the index type (eq, sub), and must correspond to the syntax -of the attribute to which the index is applied - that is, if you have -attribute uidNumber (integer) and it is indexed for eq, you can't specify -type=eq values=abc because "abc" is not integer syntax. -If the values contain spaces, commas, nulls, other values which require -escapes, the LDAP filter escape syntax should be used - backslash '\' followed -by the 2 hex digit code for the character. -The values are processed as if they were filter values - so for "sub" values, -values like "values=*sm*ith*" will be processed as if they were values in a -substring search filter like (sn=*sm*ith*) -* nsIndexIDListScanLimit is multi-valued. If a search matches more than one -nsIndexIDListScanLimit, the rules are applied in priority order. -The priority is as follows, from highest to lowest: - * * match type, flags, value - * * match type, value - * * match type, flags - * * match type - * * match flags - * For example, if you have - * dn: cn=objectclass,... - * objectclass: nsIndex - * nsIndexType: eq - * nsIndexIDListScanLimit: limit=0 type=eq flags=AND value=inetOrgPerson - * nsIndexIDListScanLimit: limit=1 type=eq value=inetOrgPerson - * nsIndexIDListScanLimit: limit=2 type=eq flags=AND - * nsIndexIDListScanLimit: limit=3 type=eq - * nsIndexIDListScanLimit: limit=4 flags=AND - * nsIndexIDListScanLimit: limit=5 - * If the search filter is (&(objectclass=inetOrgPerson)(uid=foo)) then the limit=0 because all - * 3 of type, flags, and value match - * If the search filter is (objectclass=inetOrgPerson) then the limit=1 because type and value match - * but flag does not - * If the search filter is (&(objectclass=posixAccount)(uid=foo)) the the limit=2 because type and - * flags match - * If the search filter is (objectclass=posixAccount) then the limit=3 because only the type matches - * If the search filter is (&(objectclass=*account*)(objectclass=*)) then the limit=4 because only - * flags match but not the types (sub and pres) - * If the search filter is (objectclass=*account*) then the limit=5 because only the attribute matches - * but none of flags, type, or value matches -To add in testing/debugging, the LDAP_DEBUG_BACKLDBM log level is used to -print information about searches which exceed the idlistscanlimit. -Platforms tested: RHEL6 x86_64 -Flag Day: no -Doc impact: yes - document new attribute -(cherry picked from commit 824b3019beffa5bf2bc5ab2a2a3e579d50833577) -(cherry picked from commit b348886030318cd43855ae439ec3f30f898b8cd4) ---- - ldap/schema/01core389.ldif | 3 +- - ldap/servers/slapd/back-ldbm/ancestorid.c | 2 +- - ldap/servers/slapd/back-ldbm/back-ldbm.h | 9 + - ldap/servers/slapd/back-ldbm/filterindex.c | 14 +- - ldap/servers/slapd/back-ldbm/idl_new.c | 17 +- - ldap/servers/slapd/back-ldbm/index.c | 121 ++++++- - ldap/servers/slapd/back-ldbm/ldbm_attr.c | 494 ++++++++++++++++++++++++ - ldap/servers/slapd/back-ldbm/proto-back-ldbm.h | 2 +- - ldap/servers/slapd/proto-slap.h | 1 + - 9 files changed, 646 insertions(+), 17 deletions(-) - -diff --git a/ldap/schema/01core389.ldif b/ldap/schema/01core389.ldif -index 8ef702d..b9baae7 100644 ---- a/ldap/schema/01core389.ldif -+++ b/ldap/schema/01core389.ldif -@@ -66,6 +66,7 @@ attributeTypes: ( 2.16.840.1.113730.3.1.593 NAME 'nsSNMPName' DESC 'Netscape def - attributeTypes: ( 2.16.840.1.113730.3.1.242 NAME 'nsSystemIndex' DESC 'Netscape defined attribute type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'Netscape Directory Server' ) - attributeTypes: ( 2.16.840.1.113730.3.1.327 NAME 'nsIndexType' DESC 'Netscape defined attribute type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'Netscape Directory Server' ) - attributeTypes: ( 2.16.840.1.113730.3.1.328 NAME 'nsMatchingRule' DESC 'Netscape defined attribute type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'Netscape Directory Server' ) -+attributeTypes: ( 2.16.840.1.113730.3.1.2161 NAME 'nsIndexIDListScanLimit' DESC 'fine grained idlistscanlimit - per index/type/value' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'Netscape Directory Server' ) - attributeTypes: ( 2.16.840.1.113730.3.1.542 NAME 'nsUniqueId' DESC 'Netscape defined attribute type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'Netscape Directory Server' ) - attributeTypes: ( 2.16.840.1.113730.3.1.543 NAME 'nsState' DESC 'Netscape defined attribute type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.5 SINGLE-VALUE X-ORIGIN 'Netscape Directory Server' ) - attributeTypes: ( 2.16.840.1.113730.3.1.544 NAME 'nsParentUniqueId' DESC 'Netscape defined attribute type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'Netscape Directory Server' ) -@@ -158,7 +159,7 @@ attributeTypes: ( 2.16.840.1.113730.3.1.2156 NAME 'nsslapd-sasl-max-buffer-size' - # - objectClasses: ( 2.16.840.1.113730.3.2.40 NAME 'directoryServerFeature' DESC 'Netscape defined objectclass' SUP top MAY ( oid $ cn $ multiLineDescription ) X-ORIGIN 'Netscape Directory Server' ) - objectClasses: ( 2.16.840.1.113730.3.2.41 NAME 'nsslapdPlugin' DESC 'Netscape defined objectclass' SUP top MUST ( cn $ nsslapd-pluginPath $ nsslapd-pluginInitFunc $ nsslapd-pluginType $ nsslapd-pluginId $ nsslapd-pluginVersion $ nsslapd-pluginVendor $ nsslapd-pluginDescription $ nsslapd-pluginEnabled ) MAY ( nsslapd-pluginConfigArea $ nsslapd-plugin-depends-on-type ) X-ORIGIN 'Netscape Directory Server' ) --objectClasses: ( 2.16.840.1.113730.3.2.44 NAME 'nsIndex' DESC 'Netscape defined objectclass' SUP top MUST ( cn $ nsSystemIndex ) MAY ( description $ nsIndexType $ nsMatchingRule ) X-ORIGIN 'Netscape Directory Server' ) -+objectClasses: ( 2.16.840.1.113730.3.2.44 NAME 'nsIndex' DESC 'Netscape defined objectclass' SUP top MUST ( cn $ nsSystemIndex ) MAY ( description $ nsIndexType $ nsMatchingRule $ nsIndexIDListScanLimit ) X-ORIGIN 'Netscape Directory Server' ) - objectClasses: ( 2.16.840.1.113730.3.2.109 NAME 'nsBackendInstance' DESC 'Netscape defined objectclass' SUP top MUST ( CN ) X-ORIGIN 'Netscape Directory Server' ) - objectClasses: ( 2.16.840.1.113730.3.2.110 NAME 'nsMappingTree' DESC 'Netscape defined objectclass' SUP top MUST ( CN ) X-ORIGIN 'Netscape Directory Server' ) - objectClasses: ( 2.16.840.1.113730.3.2.104 NAME 'nsContainer' DESC 'Netscape defined objectclass' SUP top MUST ( CN ) X-ORIGIN 'Netscape Directory Server' ) -diff --git a/ldap/servers/slapd/back-ldbm/ancestorid.c b/ldap/servers/slapd/back-ldbm/ancestorid.c -index 2f32f8f..8722b68 100644 ---- a/ldap/servers/slapd/back-ldbm/ancestorid.c -+++ b/ldap/servers/slapd/back-ldbm/ancestorid.c -@@ -1008,7 +1008,7 @@ int ldbm_ancestorid_read_ext( - bv.bv_val = keybuf; - bv.bv_len = PR_snprintf(keybuf, sizeof(keybuf), "%lu", (u_long)id); - -- *idl = index_read_ext_allids(be, LDBM_ANCESTORID_STR, indextype_EQUALITY, &bv, txn, &ret, NULL, allidslimit); -+ *idl = index_read_ext_allids(NULL, be, LDBM_ANCESTORID_STR, indextype_EQUALITY, &bv, txn, &ret, NULL, allidslimit); - - return ret; - } -diff --git a/ldap/servers/slapd/back-ldbm/back-ldbm.h b/ldap/servers/slapd/back-ldbm/back-ldbm.h -index c5179d3..970f3c2 100644 ---- a/ldap/servers/slapd/back-ldbm/back-ldbm.h -+++ b/ldap/servers/slapd/back-ldbm/back-ldbm.h -@@ -462,6 +462,14 @@ typedef int (*dup_compare_fn_type)( - #endif - const DBT *,const DBT *); - -+struct index_idlistsizeinfo { -+ int ai_idlistsizelimit; /* max id list size */ -+ int ai_indextype; /* index type */ -+ unsigned int ai_flags; -+#define INDEX_ALLIDS_FLAG_AND 0x01 -+ Slapi_ValueSet *ai_values; /* index keys to apply the max id list size to */ -+}; -+ - /* for the cache of attribute information (which are indexed, etc.) */ - struct attrinfo { - char *ai_type; /* type name (cn, sn, ...) */ -@@ -510,6 +518,7 @@ struct attrinfo { - * the default length triplet is 2, 3, 2. - */ - Slapi_Attr ai_sattr; /* interface to syntax and matching rule plugins */ -+ DataList *ai_idlistinfo; /* fine grained id list */ - }; - - #define MAXDBCACHE 20 -diff --git a/ldap/servers/slapd/back-ldbm/filterindex.c b/ldap/servers/slapd/back-ldbm/filterindex.c -index 489e85e..d1fddf9 100644 ---- a/ldap/servers/slapd/back-ldbm/filterindex.c -+++ b/ldap/servers/slapd/back-ldbm/filterindex.c -@@ -67,6 +67,7 @@ static IDList * range_candidates( - ); - static IDList * - keys2idl( -+ Slapi_PBlock *pb, - backend *be, - char *type, - const char *indextype, -@@ -313,7 +314,7 @@ ava_candidates( - ivals=ptr; - - slapi_attr_assertion2keys_ava_sv( &sattr, &tmp, (Slapi_Value ***)&ivals, LDAP_FILTER_EQUALITY_FAST); -- idl = keys2idl( be, type, indextype, ivals, err, &unindexed, &txn, allidslimit ); -+ idl = keys2idl( pb, be, type, indextype, ivals, err, &unindexed, &txn, allidslimit ); - if ( unindexed ) { - unsigned int opnote = SLAPI_OP_NOTE_UNINDEXED; - slapi_pblock_set( pb, SLAPI_OPERATION_NOTES, &opnote ); -@@ -345,7 +346,7 @@ ava_candidates( - idl = idl_allids( be ); - goto done; - } -- idl = keys2idl( be, type, indextype, ivals, err, &unindexed, &txn, allidslimit ); -+ idl = keys2idl( pb, be, type, indextype, ivals, err, &unindexed, &txn, allidslimit ); - if ( unindexed ) { - unsigned int opnote = SLAPI_OP_NOTE_UNINDEXED; - slapi_pblock_set( pb, SLAPI_OPERATION_NOTES, &opnote ); -@@ -382,7 +383,7 @@ presence_candidates( - return( NULL ); - } - slapi_pblock_get(pb, SLAPI_TXN, &txn.back_txn_txn); -- idl = index_read_ext_allids( be, type, indextype_PRESENCE, -+ idl = index_read_ext_allids( pb, be, type, indextype_PRESENCE, - NULL, &txn, err, &unindexed, allidslimit ); - - if ( unindexed ) { -@@ -491,7 +492,7 @@ extensible_candidates( - { - int unindexed = 0; - IDList* idl3 = (mrOP == SLAPI_OP_EQUAL) ? -- index_read_ext_allids(be, mrTYPE, mrOID, *key, &txn, -+ index_read_ext_allids(pb, be, mrTYPE, mrOID, *key, &txn, - err, &unindexed, allidslimit) : - index_range_read_ext(pb, be, mrTYPE, mrOID, mrOP, - *key, NULL, 0, &txn, err, allidslimit); -@@ -928,7 +929,7 @@ substring_candidates( - * IDLists together. - */ - slapi_pblock_get(pb, SLAPI_TXN, &txn.back_txn_txn); -- idl = keys2idl( be, type, indextype_SUB, ivals, err, &unindexed, &txn, allidslimit ); -+ idl = keys2idl( pb, be, type, indextype_SUB, ivals, err, &unindexed, &txn, allidslimit ); - if ( unindexed ) { - slapi_pblock_set( pb, SLAPI_OPERATION_NOTES, &opnote ); - pagedresults_set_unindexed( pb->pb_conn, pb->pb_op, pr_idx ); -@@ -942,6 +943,7 @@ substring_candidates( - - static IDList * - keys2idl( -+ Slapi_PBlock *pb, - backend *be, - char *type, - const char *indextype, -@@ -961,7 +963,7 @@ keys2idl( - for ( i = 0; ivals[i] != NULL; i++ ) { - IDList *idl2; - -- idl2 = index_read_ext_allids( be, type, indextype, slapi_value_get_berval(ivals[i]), txn, err, unindexed, allidslimit ); -+ idl2 = index_read_ext_allids( pb, be, type, indextype, slapi_value_get_berval(ivals[i]), txn, err, unindexed, allidslimit ); - - #ifdef LDAP_DEBUG - /* XXX if ( slapd_ldap_debug & LDAP_DEBUG_TRACE ) { XXX */ -diff --git a/ldap/servers/slapd/back-ldbm/idl_new.c b/ldap/servers/slapd/back-ldbm/idl_new.c -index 2b52f33..50ad5cb 100644 ---- a/ldap/servers/slapd/back-ldbm/idl_new.c -+++ b/ldap/servers/slapd/back-ldbm/idl_new.c -@@ -274,7 +274,7 @@ idl_new_fetch( - } - memcpy(&id, dataret.data, sizeof(ID)); - if (id == lastid) { /* dup */ -- LDAPDebug1Arg(LDAP_DEBUG_TRACE, "Detedted duplicate id " -+ LDAPDebug1Arg(LDAP_DEBUG_TRACE, "Detected duplicate id " - "%d due to DB_MULTIPLE error - skipping\n", - id); - continue; /* get next one */ -@@ -293,14 +293,17 @@ idl_new_fetch( - } - - LDAPDebug(LDAP_DEBUG_TRACE, "bulk fetch buffer nids=%d\n", count, 0, 0); --#if defined(DB_ALLIDS_ON_READ) -+#if defined(DB_ALLIDS_ON_READ) - /* enforce the allids read limit */ - if ((NEW_IDL_NO_ALLID != *flag_err) && (NULL != a) && -- (idl != NULL) && idl_new_exceeds_allidslimit(count, a, allidslimit)) { -- idl->b_nids = 1; -- idl->b_ids[0] = ALLID; -- ret = DB_NOTFOUND; /* fool the code below into thinking that we finished the dups */ -- break; -+ (idl != NULL) && idl_new_exceeds_allidslimit(count, a, allidslimit)) { -+ idl->b_nids = 1; -+ idl->b_ids[0] = ALLID; -+ ret = DB_NOTFOUND; /* fool the code below into thinking that we finished the dups */ -+ LDAPDebug(LDAP_DEBUG_BACKLDBM, "search for key for attribute index %s " -+ "exceeded allidslimit %d - count is %d\n", -+ a->ai_type, allidslimit, count); -+ break; - } - #endif - ret = cursor->c_get(cursor,&key,&data,DB_NEXT_DUP|DB_MULTIPLE); -diff --git a/ldap/servers/slapd/back-ldbm/index.c b/ldap/servers/slapd/back-ldbm/index.c -index bb69c57..d5ca16a 100644 ---- a/ldap/servers/slapd/back-ldbm/index.c -+++ b/ldap/servers/slapd/back-ldbm/index.c -@@ -52,6 +52,8 @@ - static const char *errmsg = "database index operation failed"; - - static int is_indexed (const char* indextype, int indexmask, char** index_rules); -+static int index_get_allids( int default_allids, const char *indextype, struct attrinfo *ai, const struct berval *val, unsigned int flags ); -+ - static Slapi_Value ** - valuearray_minus_valuearray( - const Slapi_Attr *sattr, -@@ -888,6 +890,7 @@ index_read( - */ - IDList * - index_read_ext_allids( -+ Slapi_PBlock *pb, - backend *be, - char *type, - const char *indextype, -@@ -910,6 +913,8 @@ index_read_ext_allids( - char *basetmp, *basetype; - int retry_count = 0; - struct berval *encrypted_val = NULL; -+ int is_and = 0; -+ unsigned int ai_flags = 0; - - *err = 0; - -@@ -976,6 +981,23 @@ index_read_ext_allids( - slapi_ch_free_string( &basetmp ); - return( idl ); - } -+ if (pb) { -+ slapi_pblock_get(pb, SLAPI_SEARCH_IS_AND, &is_and); -+ } -+ ai_flags = is_and ? INDEX_ALLIDS_FLAG_AND : 0; -+ allidslimit = index_get_allids( allidslimit, indextype, ai, val, ai_flags ); -+ if (allidslimit == 0) { -+ idl = idl_allids( be ); -+ if (unindexed != NULL) *unindexed = 1; -+ LDAPDebug1Arg( LDAP_DEBUG_BACKLDBM, "<= index_read %lu candidates " -+ "(do not use index)\n", (u_long)IDL_NIDS(idl) ); -+ LDAPDebug( LDAP_DEBUG_BACKLDBM, "<= index_read index attr %s type %s " -+ "for value %s does not use index\n", basetype, indextype, -+ (val && val->bv_val) ? val->bv_val : "ALL" ); -+ index_free_prefix( prefix ); -+ slapi_ch_free_string( &basetmp ); -+ return( idl ); -+ } - if ( (*err = dblayer_get_index_file( be, ai, &db, DBOPEN_CREATE )) != 0 ) { - LDAPDebug( LDAP_DEBUG_TRACE, - "<= index_read NULL (index file open for attr %s)\n", -@@ -1063,7 +1085,7 @@ index_read_ext( - int *unindexed - ) - { -- return index_read_ext_allids(be, type, indextype, val, txn, err, unindexed, 0); -+ return index_read_ext_allids(NULL, be, type, indextype, val, txn, err, unindexed, 0); - } - - /* This function compares two index keys. It is assumed -@@ -2341,3 +2363,100 @@ valuearray_minus_valuearray( - - return c; - } -+ -+/* -+ * Find the most specific match for the given index type, flags, and value, and return the allids value -+ * for that match. The priority is as follows, from highest to lowest: -+ * * match type, flags, value -+ * * match type, value -+ * * match type, flags -+ * * match type -+ * * match flags -+ * Note that for value to match, the type must be one that supports values e.g. eq or sub, so that -+ * in order for value to match, there must be a type -+ * For example, if you have -+ * dn: cn=objectclass,... -+ * objectclass: nsIndex -+ * nsIndexType: eq -+ * nsIndexIDListScanLimit: limit=0 type=eq flags=AND value=inetOrgPerson -+ * nsIndexIDListScanLimit: limit=1 type=eq value=inetOrgPerson -+ * nsIndexIDListScanLimit: limit=2 type=eq flags=AND -+ * nsIndexIDListScanLimit: limit=3 type=eq -+ * nsIndexIDListScanLimit: limit=4 flags=AND -+ * nsIndexIDListScanLimit: limit=5 -+ * If the search filter is (&(objectclass=inetOrgPerson)(uid=foo)) then the limit=0 because all -+ * 3 of type, flags, and value match -+ * If the search filter is (objectclass=inetOrgPerson) then the limit=1 because type and value match -+ * but flag does not -+ * If the search filter is (&(objectclass=posixAccount)(uid=foo)) the the limit=2 because type and -+ * flags match -+ * If the search filter is (objectclass=posixAccount) then the limit=3 because only the type matches -+ * If the search filter is (&(objectclass=*account*)(objectclass=*)) then the limit=4 because only -+ * flags match but not the types (sub and pres) -+ * If the search filter is (objectclass=*account*) then the limit=5 because only the attribute matches -+ * but none of flags, type, or value matches -+ */ -+#define AI_HAS_VAL 0x04 -+#define AI_HAS_TYPE 0x02 -+#define AI_HAS_FLAG 0x01 -+static int -+index_get_allids( int default_allids, const char *indextype, struct attrinfo *ai, const struct berval *val, unsigned int flags ) -+{ -+ int allids = default_allids; -+ Slapi_Value sval; -+ struct index_idlistsizeinfo *iter; /* iterator */ -+ int cookie = 0; -+ int best_score = 0; -+ struct index_idlistsizeinfo *best_match = NULL; -+ -+ if (!ai->ai_idlistinfo) { -+ return allids; -+ } -+ -+ if (val) { /* val should already be a Slapi_Value, but some paths do not use Slapi_Value */ -+ sval.bv.bv_val = val->bv_val; -+ sval.bv.bv_len = val->bv_len; -+ sval.v_csnset = NULL; -+ sval.v_flags = SLAPI_ATTR_FLAG_NORMALIZED; /* the value must be a normalized key */ -+ } -+ -+ /* loop through all of the idlistinfo objects to find the best match */ -+ for (iter = (struct index_idlistsizeinfo *)dl_get_first(ai->ai_idlistinfo, &cookie); iter; -+ iter = (struct index_idlistsizeinfo *)dl_get_next(ai->ai_idlistinfo, &cookie)) { -+ int iter_score = 0; -+ -+ if (iter->ai_indextype != 0) { /* info defines a type which must match */ -+ if (is_indexed(indextype, iter->ai_indextype, ai->ai_index_rules)) { -+ iter_score |= AI_HAS_TYPE; -+ } else { -+ continue; /* does not match, go to next one */ -+ } -+ } -+ if (iter->ai_flags != 0) { -+ if (flags & iter->ai_flags) { -+ iter_score |= AI_HAS_FLAG; -+ } else { -+ continue; /* does not match, go to next one */ -+ } -+ } -+ if (iter->ai_values != NULL) { -+ if ((val != NULL) && slapi_valueset_find(&ai->ai_sattr, iter->ai_values, &sval)) { -+ iter_score |= AI_HAS_VAL; -+ } else { -+ continue; /* does not match, go to next one */ -+ } -+ } -+ -+ if (iter_score >= best_score) { -+ best_score = iter_score; -+ best_match = iter; -+ } -+ } -+ -+ if (best_match) { -+ allids = best_match->ai_idlistsizelimit; -+ } -+ -+ return allids; -+} -+ -diff --git a/ldap/servers/slapd/back-ldbm/ldbm_attr.c b/ldap/servers/slapd/back-ldbm/ldbm_attr.c -index fd43ce9..16ffa42 100644 ---- a/ldap/servers/slapd/back-ldbm/ldbm_attr.c -+++ b/ldap/servers/slapd/back-ldbm/ldbm_attr.c -@@ -44,6 +44,22 @@ - - #include "back-ldbm.h" - -+static void -+attr_index_idlistsize_done(struct index_idlistsizeinfo *idlinfo) -+{ -+ if (idlinfo) { -+ slapi_valueset_free(idlinfo->ai_values); -+ idlinfo->ai_values = NULL; -+ } -+} -+ -+static void -+attr_index_idlistsize_free(struct index_idlistsizeinfo **idlinfo) -+{ -+ attr_index_idlistsize_done(*idlinfo); -+ slapi_ch_free((void **)idlinfo); -+} -+ - struct attrinfo * - attrinfo_new() - { -@@ -52,6 +68,15 @@ attrinfo_new() - } - - void -+attrinfo_delete_idlistinfo(DataList **idlinfo_dl) -+{ -+ if (idlinfo_dl && *idlinfo_dl) { -+ dl_cleanup(*idlinfo_dl, (FREEFN)attr_index_idlistsize_free); -+ dl_free(idlinfo_dl); -+ } -+} -+ -+void - attrinfo_delete(struct attrinfo **pp) - { - if(pp!=NULL && *pp!=NULL) -@@ -62,6 +87,7 @@ attrinfo_delete(struct attrinfo **pp) - slapi_ch_free((void**)(*pp)->ai_index_rules); - slapi_ch_free((void**)&((*pp)->ai_attrcrypt)); - attr_done(&((*pp)->ai_sattr)); -+ attrinfo_delete_idlistinfo(&(*pp)->ai_idlistinfo); - slapi_ch_free((void**)pp); - *pp= NULL; - } -@@ -126,6 +152,10 @@ ainfo_dup( - if ( b->ai_indexmask & INDEX_RULES ) { - charray_merge( &a->ai_index_rules, b->ai_index_rules, 1 ); - } -+ /* free the old idlistinfo from a - transfer the list from b to a */ -+ attrinfo_delete_idlistinfo(&a->ai_idlistinfo); -+ a->ai_idlistinfo = b->ai_idlistinfo; -+ b->ai_idlistinfo = NULL; - - return( 1 ); - } -@@ -166,6 +196,464 @@ _set_attr_substrlen(int index, char *str, int **substrlens) - } - } - -+#define NS_INDEX_IDLISTSCANLIMIT "nsIndexIDListScanLimit" -+#define LIMIT_KW "limit=" -+#define LIMIT_LEN sizeof(LIMIT_KW)-1 -+#define TYPE_KW "type=" -+#define TYPE_LEN sizeof(TYPE_KW)-1 -+#define FLAGS_KW "flags=" -+#define FLAGS_LEN sizeof(FLAGS_KW)-1 -+#define VALUES_KW "values=" -+#define VALUES_LEN sizeof(VALUES_KW)-1 -+#define FLAGS_AND_KW "AND" -+#define FLAGS_AND_LEN sizeof(FLAGS_AND_KW)-1 -+ -+static int -+attr_index_parse_idlistsize_values(Slapi_Attr *attr, struct index_idlistsizeinfo *idlinfo, char *values, const char *strval, char *returntext) -+{ -+ int rc = 0; -+ /* if we are here, values is non-NULL and not an empty string - parse it */ -+ char *ptr = NULL; -+ char *lasts = NULL; -+ char *val; -+ int syntaxcheck = config_get_syntaxcheck(); -+ IFP syntax_validate_fn = syntaxcheck ? attr->a_plugin->plg_syntax_validate : NULL; -+ char staticfiltstrbuf[1024]; /* for small filter strings */ -+ char *filtstrbuf = staticfiltstrbuf; /* default if not malloc'd */ -+ size_t filtstrbuflen = sizeof(staticfiltstrbuf); /* default if not malloc'd */ -+ Slapi_Filter *filt = NULL; /* for filter converting/unescaping config values */ -+ -+ /* caller should have already checked that values is valid and contains a "=" */ -+ PR_ASSERT(values); -+ ptr = PL_strchr(values, '='); -+ PR_ASSERT(ptr); -+ ++ptr; -+ for (val = ldap_utf8strtok_r(ptr, ",", &lasts); val; -+ val = ldap_utf8strtok_r(NULL, ",", &lasts)) { -+ Slapi_Value **ivals= NULL; /* for config values converted to keys */ -+ int ii; -+#define FILT_TEMPL_BEGIN "(a=" -+#define FILT_TEMPL_END ")" -+ size_t filttemplen = sizeof(FILT_TEMPL_BEGIN) - 1 + sizeof(FILT_TEMPL_END) - 1; -+ size_t vallen = strlen(val); -+ -+ if ((vallen + filttemplen + 1) > filtstrbuflen) { -+ filtstrbuflen = vallen + filttemplen + 1; -+ if (filtstrbuf == staticfiltstrbuf) { -+ filtstrbuf = (char *)slapi_ch_malloc(sizeof(char) * filtstrbuflen); -+ } else { -+ filtstrbuf = (char *)slapi_ch_realloc(filtstrbuf, sizeof(char) * filtstrbuflen); -+ } -+ } -+ /* each value is a value from a filter which should be escaped like a filter value -+ * for each value, create a dummy filter string, then parse and unescape it just -+ * like a filter -+ */ -+ PR_snprintf(filtstrbuf, filtstrbuflen, FILT_TEMPL_BEGIN "%s" FILT_TEMPL_END, val); -+ filt = slapi_str2filter(filtstrbuf); -+ if (!filt) { -+ rc = LDAP_UNWILLING_TO_PERFORM; -+ PR_snprintf(returntext, SLAPI_DSE_RETURNTEXT_SIZE, -+ "attr_index_parse_idlistsize: invalid value %s in %s", -+ val, strval); -+ break; -+ } -+ -+ if (idlinfo->ai_indextype == INDEX_SUB) { -+ if (syntax_validate_fn) { -+ /* see if the values match the syntax, but only if checking is enabled */ -+ char **subany = filt->f_sub_any; -+ struct berval bv; -+ -+ if (filt->f_sub_initial && *filt->f_sub_initial) { -+ bv.bv_val = filt->f_sub_initial; -+ bv.bv_len = strlen(bv.bv_val); -+ if ((rc = syntax_validate_fn(&bv))) { -+ rc = LDAP_UNWILLING_TO_PERFORM; -+ PR_snprintf(returntext, SLAPI_DSE_RETURNTEXT_SIZE, -+ "attr_index_parse_idlistsize: initial substring value %s " -+ "in value %s violates syntax for attribute %s", -+ bv.bv_val, val, attr->a_type); -+ break; -+ } -+ } -+ for (; !rc && subany && *subany; ++subany) { -+ char *subval = *subany; -+ if (*subval) { -+ bv.bv_val = subval; -+ bv.bv_len = strlen(bv.bv_val); -+ if ((rc = syntax_validate_fn(&bv))) { -+ rc = LDAP_UNWILLING_TO_PERFORM; -+ PR_snprintf(returntext, SLAPI_DSE_RETURNTEXT_SIZE, -+ "attr_index_parse_idlistsize: initial substring value %s in " -+ "value %s violates syntax for attribute %s", -+ bv.bv_val, val, attr->a_type); -+ break; -+ } -+ } -+ } -+ if (rc) { -+ break; -+ } -+ if (filt->f_sub_final) { -+ bv.bv_val = filt->f_sub_final; -+ bv.bv_len = strlen(bv.bv_val); -+ if ((rc = syntax_validate_fn(&bv))) { -+ rc = LDAP_UNWILLING_TO_PERFORM; -+ PR_snprintf(returntext, SLAPI_DSE_RETURNTEXT_SIZE, -+ "attr_index_parse_idlistsize: final substring value %s in value " -+ "%s violates syntax for attribute %s", -+ bv.bv_val, val, attr->a_type); -+ break; -+ } -+ } -+ } -+ /* if we are here, values passed syntax or no checking */ -+ /* generate index keys */ -+ (void)slapi_attr_assertion2keys_sub_sv(attr, filt->f_sub_initial, filt->f_sub_any, filt->f_sub_final, &ivals); -+ -+ } else if (idlinfo->ai_indextype == INDEX_EQUALITY) { -+ Slapi_Value sval; -+ /* see if the value matches the syntax, but only if checking is enabled */ -+ if (syntax_validate_fn && ((rc = syntax_validate_fn(&filt->f_avvalue)))) { -+ rc = LDAP_UNWILLING_TO_PERFORM; -+ PR_snprintf(returntext, SLAPI_DSE_RETURNTEXT_SIZE, -+ "attr_index_parse_idlistsize: value %s violates syntax for attribute %s", -+ val, attr->a_type); -+ break; -+ } -+ -+ sval.bv.bv_val = filt->f_avvalue.bv_val; -+ sval.bv.bv_len = filt->f_avvalue.bv_len; -+ sval.v_flags = 0; -+ sval.v_csnset = NULL; -+ (void)slapi_attr_assertion2keys_ava_sv(attr, &sval, (Slapi_Value ***)&ivals, LDAP_FILTER_EQUALITY); -+ } -+ /* don't need filter any more */ -+ slapi_filter_free(filt, 1); -+ filt = NULL; -+ -+ /* add value(s) in ivals to our value set - disallow duplicates with error */ -+ for (ii = 0; !rc && ivals && ivals[ii]; ++ii) { -+ if (idlinfo->ai_values && -+ slapi_valueset_find(attr, idlinfo->ai_values, ivals[ii])) { -+ rc = LDAP_UNWILLING_TO_PERFORM; -+ PR_snprintf(returntext, SLAPI_DSE_RETURNTEXT_SIZE, -+ "attr_index_parse_idlistsize: duplicate value %s in %s", -+ slapi_value_get_string(ivals[ii]), val); -+ slapi_value_free(&ivals[ii]); -+ } else { -+ if (!idlinfo->ai_values) { -+ idlinfo->ai_values = slapi_valueset_new(); -+ } -+ slapi_valueset_add_value_ext(idlinfo->ai_values, ivals[ii], SLAPI_VALUE_FLAG_PASSIN); -+ } -+ } -+ /* only free members of ivals that were not moved to ai_values */ -+ valuearray_free_ext(&ivals, ii); -+ ivals = NULL; -+ } -+ -+ slapi_filter_free(filt, 1); -+ -+ if (filtstrbuf != staticfiltstrbuf) { -+ slapi_ch_free_string(&filtstrbuf); -+ } -+ -+ return rc; -+} -+ -+static int -+attr_index_parse_idlistsize_limit(char *ptr, struct index_idlistsizeinfo *idlinfo, char *returntext) -+{ -+ int rc = 0; -+ char *endptr; -+ -+ PR_ASSERT(ptr && (*ptr == '=')); -+ ptr++; -+ idlinfo->ai_idlistsizelimit = strtol(ptr, &endptr, 10); -+ if (*endptr) { /* error in parsing */ -+ rc = LDAP_UNWILLING_TO_PERFORM; -+ PR_snprintf(returntext, SLAPI_DSE_RETURNTEXT_SIZE, -+ "attr_index_parse_idlistsize: value %s for %s is not valid - " -+ "must be an integer >= -1", -+ ptr, LIMIT_KW); -+ } else if (idlinfo->ai_idlistsizelimit < -1) { -+ rc = LDAP_UNWILLING_TO_PERFORM; -+ PR_snprintf(returntext, SLAPI_DSE_RETURNTEXT_SIZE, -+ "attr_index_parse_idlistsize: value %s for %s " -+ "must be an integer >= -1", -+ ptr, LIMIT_KW); -+ } -+ return rc; -+} -+ -+static int -+attr_index_parse_idlistsize_type(char *ptr, struct attrinfo *ai, struct index_idlistsizeinfo *idlinfo, const char *val, const char *strval, char *returntext) -+{ -+ int rc = 0; -+ char *ptr_next; -+ size_t len; -+ size_t preslen = strlen(indextype_PRESENCE); -+ size_t eqlen = strlen(indextype_EQUALITY); -+ size_t sublen = strlen(indextype_SUB); -+ -+ PR_ASSERT(ptr && (*ptr == '=')); -+ do { -+ ++ptr; -+ ptr_next = PL_strchr(ptr, ','); /* find next comma */ -+ if (!ptr_next) { -+ ptr_next = PL_strchr(ptr, '\0'); /* find end of string */ -+ } -+ len = ptr_next-ptr; -+ if ((len == preslen) && !PL_strncmp(ptr, indextype_PRESENCE, len)) { -+ if (idlinfo->ai_indextype & INDEX_PRESENCE) { -+ rc = LDAP_UNWILLING_TO_PERFORM; -+ PR_snprintf(returntext, SLAPI_DSE_RETURNTEXT_SIZE, -+ "attr_index_parse_idlistsize: duplicate %s in value %s for %s", -+ indextype_PRESENCE, val, strval); -+ break; -+ } -+ if (!(ai->ai_indexmask & INDEX_PRESENCE)) { -+ rc = LDAP_UNWILLING_TO_PERFORM; -+ PR_snprintf(returntext, SLAPI_DSE_RETURNTEXT_SIZE, -+ "attr_index_parse_idlistsize: attribute %s does not have index type %s", -+ ai->ai_type, indextype_PRESENCE); -+ break; -+ } -+ idlinfo->ai_indextype |= INDEX_PRESENCE; -+ } else if ((len == eqlen) && !PL_strncmp(ptr, indextype_EQUALITY, len)) { -+ if (idlinfo->ai_indextype & INDEX_EQUALITY) { -+ rc = LDAP_UNWILLING_TO_PERFORM; -+ PR_snprintf(returntext, SLAPI_DSE_RETURNTEXT_SIZE, -+ "attr_index_parse_idlistsize: duplicate %s in value %s for %s", -+ indextype_EQUALITY, val, strval); -+ break; -+ } -+ if (!(ai->ai_indexmask & INDEX_EQUALITY)) { -+ rc = LDAP_UNWILLING_TO_PERFORM; -+ PR_snprintf(returntext, SLAPI_DSE_RETURNTEXT_SIZE, -+ "attr_index_parse_idlistsize: attribute %s does not have index type %s", -+ ai->ai_type, indextype_EQUALITY); -+ break; -+ } -+ idlinfo->ai_indextype |= INDEX_EQUALITY; -+ } else if ((len == sublen) && !PL_strncmp(ptr, indextype_SUB, len)) { -+ if (idlinfo->ai_indextype & INDEX_SUB) { -+ rc = LDAP_UNWILLING_TO_PERFORM; -+ PR_snprintf(returntext, SLAPI_DSE_RETURNTEXT_SIZE, -+ "attr_index_parse_idlistsize: duplicate %s in value %s for %s", -+ indextype_SUB, val, strval); -+ break; -+ } -+ if (!(ai->ai_indexmask & INDEX_SUB)) { -+ rc = LDAP_UNWILLING_TO_PERFORM; -+ PR_snprintf(returntext, SLAPI_DSE_RETURNTEXT_SIZE, -+ "attr_index_parse_idlistsize: attribute %s does not have index type %s", -+ ai->ai_type, indextype_SUB); -+ break; -+ } -+ idlinfo->ai_indextype |= INDEX_SUB; -+ } else { -+ rc = LDAP_UNWILLING_TO_PERFORM; -+ PR_snprintf(returntext, SLAPI_DSE_RETURNTEXT_SIZE, -+ "attr_index_parse_idlistsize: unknown or unsupported index type " -+ "%s in value %s for %s", -+ ptr, val, strval); -+ break; -+ } -+ } while ((ptr = PL_strchr(ptr, ','))); -+ -+ return rc; -+} -+ -+static int -+attr_index_parse_idlistsize_flags(char *ptr, struct index_idlistsizeinfo *idlinfo, const char *val, const char *strval, char *returntext) -+{ -+ int rc = 0; -+ char *ptr_next; -+ size_t len; -+ -+ PR_ASSERT(ptr && (*ptr == '=')); -+ do { -+ ++ptr; -+ ptr_next = PL_strchr(ptr, ','); /* find next comma */ -+ if (!ptr_next) { -+ ptr_next = PL_strchr(ptr, '\0'); /* find end of string */ -+ } -+ len = ptr_next-ptr; -+ if ((len == FLAGS_AND_LEN) && !PL_strncmp(ptr, FLAGS_AND_KW, len)) { -+ if (idlinfo->ai_flags & INDEX_ALLIDS_FLAG_AND) { -+ rc = LDAP_UNWILLING_TO_PERFORM; -+ PR_snprintf(returntext, SLAPI_DSE_RETURNTEXT_SIZE, -+ "attr_index_parse_idlistsize: duplicate %s in value %s for %s", -+ FLAGS_AND_KW, val, strval); -+ break; -+ } -+ idlinfo->ai_flags |= INDEX_ALLIDS_FLAG_AND; -+ } else { -+ rc = LDAP_UNWILLING_TO_PERFORM; -+ PR_snprintf(returntext, SLAPI_DSE_RETURNTEXT_SIZE, -+ "attr_index_parse_idlistsize: unknown or unsupported flags %s in value %s for %s", -+ ptr, val, strval); -+ break; -+ } -+ -+ } while ((ptr = PL_strchr(ptr, ','))); -+ return rc; -+} -+ -+static int -+attr_index_parse_idlistsize(struct attrinfo *ai, const char *strval, struct index_idlistsizeinfo *idlinfo, char *returntext) -+{ -+ int rc = 0; /* assume success */ -+ char *mystr = slapi_ch_strdup(strval); /* copy for strtok */ -+ char *values = NULL; -+ char *lasts, *val, *ptr; -+ int seen_limit = 0, seen_type = 0, seen_flags = 0, seen_values = 0; -+ Slapi_Attr *attr = &ai->ai_sattr; -+ -+ if (!mystr) { -+ rc = LDAP_UNWILLING_TO_PERFORM; -+ PR_snprintf(returntext, SLAPI_DSE_RETURNTEXT_SIZE, -+ "attr_index_parse_idlistsize: value is empty"); -+ goto done; -+ } -+ -+ for (val = ldap_utf8strtok_r(mystr, " ", &lasts); val; -+ val = ldap_utf8strtok_r(NULL, " ", &lasts)) { -+ ptr = PL_strchr(val, '='); -+ if (!ptr || !(*(ptr+1))) { -+ rc = LDAP_UNWILLING_TO_PERFORM; -+ PR_snprintf(returntext, SLAPI_DSE_RETURNTEXT_SIZE, -+ "attr_index_parse_idlistsize: invalid value %s - should be keyword=value - in %s", -+ val, strval); -+ goto done; -+ } -+ /* ptr points at first '=' in val */ -+ if (!PL_strncmp(val, LIMIT_KW, LIMIT_LEN)) { -+ if (seen_limit) { -+ rc = LDAP_UNWILLING_TO_PERFORM; -+ PR_snprintf(returntext, SLAPI_DSE_RETURNTEXT_SIZE, -+ "attr_index_parse_idlistsize: can have only 1 %s in value %s", -+ LIMIT_KW, strval); -+ goto done; -+ } -+ if ((rc = attr_index_parse_idlistsize_limit(ptr, idlinfo, returntext))) { -+ goto done; -+ } -+ seen_limit = 1; -+ } else if (!PL_strncmp(val, TYPE_KW, TYPE_LEN)) { -+ if (seen_type) { -+ rc = LDAP_UNWILLING_TO_PERFORM; -+ PR_snprintf(returntext, SLAPI_DSE_RETURNTEXT_SIZE, -+ "attr_index_parse_idlistsize: can have only 1 %s in value %s", -+ TYPE_KW, strval); -+ goto done; -+ } -+ if ((rc = attr_index_parse_idlistsize_type(ptr, ai, idlinfo, val, strval, returntext))) { -+ goto done; -+ } -+ -+ seen_type = 1; -+ } else if (!PL_strncmp(val, FLAGS_KW, FLAGS_LEN)) { -+ if (seen_flags) { -+ rc = LDAP_UNWILLING_TO_PERFORM; -+ PR_snprintf(returntext, SLAPI_DSE_RETURNTEXT_SIZE, -+ "attr_index_parse_idlistsize: can have only 1 %s in value %s", -+ FLAGS_KW, strval); -+ goto done; -+ } -+ if ((rc = attr_index_parse_idlistsize_flags(ptr, idlinfo, val, strval, returntext))) { -+ goto done; -+ } -+ seen_flags = 1; -+ } else if (!PL_strncmp(val, VALUES_KW, VALUES_LEN)) { -+ if (seen_values) { -+ rc = LDAP_UNWILLING_TO_PERFORM; -+ PR_snprintf(returntext, SLAPI_DSE_RETURNTEXT_SIZE, -+ "attr_index_parse_idlistsize: can have only 1 %s in value %s", -+ VALUES_KW, strval); -+ goto done; -+ } -+ values = val; -+ seen_values = 1; -+ } else { -+ rc = LDAP_UNWILLING_TO_PERFORM; -+ PR_snprintf(returntext, SLAPI_DSE_RETURNTEXT_SIZE, -+ "attr_index_parse_idlistsize: unknown keyword %s in %s", -+ val, strval); -+ goto done; -+ } -+ } -+ -+ if (!seen_limit) { -+ rc = LDAP_UNWILLING_TO_PERFORM; -+ PR_snprintf(returntext, SLAPI_DSE_RETURNTEXT_SIZE, -+ "attr_index_parse_idlistsize: no limit specified in %s", -+ strval); -+ goto done; -+ } -+ -+ /* parse values last -+ * can only have values if type is eq or sub, and only eq by itself or sub by itself -+ * eq and sub type values cannot be mixed, so error in that case -+ * cannot have type pres,eq and values - pres must be by itself with no values -+ */ -+ if (values) { -+ if (idlinfo->ai_indextype == INDEX_EQUALITY) { -+ ; /* ok */ -+ } else if (idlinfo->ai_indextype == INDEX_SUB) { -+ ; /* ok */ -+ } else { -+ rc = LDAP_UNWILLING_TO_PERFORM; -+ PR_snprintf(returntext, SLAPI_DSE_RETURNTEXT_SIZE, -+ "attr_index_parse_idlistsize: if %s is specified, the %s " -+ "must be %s or %s - not both, and not any other types", -+ VALUES_KW, TYPE_KW, indextype_PRESENCE, indextype_SUB); -+ goto done; -+ } -+ } else { -+ goto done; -+ } -+ -+ /* if we are here, values contains something - parse it */ -+ rc = attr_index_parse_idlistsize_values(attr, idlinfo, values, strval, returntext); -+ -+done: -+ slapi_ch_free_string(&mystr); -+ return rc; -+} -+ -+static int -+attr_index_idlistsize_config(Slapi_Entry *e, struct attrinfo *ai, char *returntext) -+{ -+ int rc = 0; -+ int ii; -+ Slapi_Attr *idlattr; -+ Slapi_Value *sval; -+ struct index_idlistsizeinfo *idlinfo; -+ -+ slapi_entry_attr_find(e, NS_INDEX_IDLISTSCANLIMIT, &idlattr); -+ if (!idlattr) { -+ return rc; -+ } -+ for (ii = slapi_attr_first_value(idlattr, &sval); !rc && (ii != -1); ii = slapi_attr_next_value(idlattr, ii, &sval)) { -+ idlinfo = (struct index_idlistsizeinfo *)slapi_ch_calloc(1, sizeof(struct index_idlistsizeinfo)); -+ if ((rc = attr_index_parse_idlistsize(ai, slapi_value_get_string(sval), idlinfo, returntext))) { -+ attr_index_idlistsize_free(&idlinfo); -+ attrinfo_delete_idlistinfo(&ai->ai_idlistinfo); -+ } else { -+ if (!ai->ai_idlistinfo) { -+ ai->ai_idlistinfo = dl_new(); -+ dl_init(ai->ai_idlistinfo, 1); -+ } -+ dl_add(ai->ai_idlistinfo, idlinfo); -+ } -+ } -+ return rc; -+} -+ - void - attr_index_config( - backend *be, -@@ -188,6 +676,7 @@ attr_index_config( - Slapi_Value *sval; - Slapi_Attr *attr; - int mr_count = 0; -+ char myreturntext[SLAPI_DSE_RETURNTEXT_SIZE]; - - /* Get the cn */ - if (0 == slapi_entry_attr_find(e, "cn", &attr)) { -@@ -364,6 +853,11 @@ attr_index_config( - } - } - -+ if ((return_value = attr_index_idlistsize_config(e, a, myreturntext))) { -+ LDAPDebug(LDAP_DEBUG_ANY,"attr_index_config: %s: Failed to parse idscanlimit info: %d:%s\n", -+ fname, return_value, myreturntext); -+ } -+ - /* initialize the IDL code's private data */ - return_value = idl_init_private(be, a); - if (0 != return_value) { -diff --git a/ldap/servers/slapd/back-ldbm/proto-back-ldbm.h b/ldap/servers/slapd/back-ldbm/proto-back-ldbm.h -index e87c900..3b2e586 100644 ---- a/ldap/servers/slapd/back-ldbm/proto-back-ldbm.h -+++ b/ldap/servers/slapd/back-ldbm/proto-back-ldbm.h -@@ -300,7 +300,7 @@ int id_array_init(Id_Array *new_guy, int size); - - IDList* index_read( backend *be, char *type, const char* indextype, const struct berval* val, back_txn *txn, int *err ); - IDList* index_read_ext( backend *be, char *type, const char* indextype, const struct berval* val, back_txn *txn, int *err, int *unindexed ); --IDList* index_read_ext_allids( backend *be, char *type, const char* indextype, const struct berval* val, back_txn *txn, int *err, int *unindexed, int allidslimit ); -+IDList* index_read_ext_allids( Slapi_PBlock *pb, backend *be, char *type, const char* indextype, const struct berval* val, back_txn *txn, int *err, int *unindexed, int allidslimit ); - IDList* index_range_read( Slapi_PBlock *pb, backend *be, char *type, const char* indextype, int ftype, struct berval* val, struct berval* nextval, int range, back_txn *txn, int *err ); - IDList* index_range_read_ext( Slapi_PBlock *pb, backend *be, char *type, const char* indextype, int ftype, struct berval* val, struct berval* nextval, int range, back_txn *txn, int *err, int allidslimit ); - const char *encode( const struct berval* data, char buf[BUFSIZ] ); -diff --git a/ldap/servers/slapd/proto-slap.h b/ldap/servers/slapd/proto-slap.h -index 37f5f85..4c1dab9 100644 ---- a/ldap/servers/slapd/proto-slap.h -+++ b/ldap/servers/slapd/proto-slap.h -@@ -158,6 +158,7 @@ int valuearray_init_bervalarray(struct berval **bvals, Slapi_Value ***cvals); - int valuearray_init_bervalarray_with_flags(struct berval **bvals, Slapi_Value ***cvals, unsigned long flags); - int valuearray_get_bervalarray(Slapi_Value **cvals, struct berval ***bvals); /* JCM SLOW FUNCTION */ - void valuearray_free(Slapi_Value ***va); -+void valuearray_free_ext(Slapi_Value ***va, int ii); - Slapi_Value *valuearray_remove_value(const Slapi_Attr *a, Slapi_Value **va, const Slapi_Value *v); - void valuearray_remove_value_atindex(Slapi_Value **va, int index); - int valuearray_isempty( Slapi_Value **va); --- -1.7.1 - diff --git a/SOURCES/0009-Ticket-47750-Creating-a-glue-fails-if-one-above-leve.patch b/SOURCES/0009-Ticket-47750-Creating-a-glue-fails-if-one-above-leve.patch new file mode 100644 index 0000000..a0d1616 --- /dev/null +++ b/SOURCES/0009-Ticket-47750-Creating-a-glue-fails-if-one-above-leve.patch @@ -0,0 +1,72 @@ +From 1ccde69d778878e331311839d1c5d6be0bbfad26 Mon Sep 17 00:00:00 2001 +From: Noriko Hosoi +Date: Mon, 22 Sep 2014 14:34:58 -0700 +Subject: [PATCH 09/14] Ticket #47750 - Creating a glue fails if one above + level is a conflict or missing + +Description: Poring changes made to 1.2.11 branch to newer versions. +1) Enabiling cache lock in cache_is_in_cache and cache_has_otherref. +2) Removing unused field new_entry_in_cache from "struct _modify_context". + +(cherry picked from commit 5ae13072330e9a769a5949b2e8a91085b38ac4e1) +(cherry picked from commit ef766784ed7d09aa81e82316b621e8490a368dc6) +--- + ldap/servers/slapd/back-ldbm/back-ldbm.h | 1 - + ldap/servers/slapd/back-ldbm/cache.c | 10 ++++++---- + 2 files changed, 6 insertions(+), 5 deletions(-) + +diff --git a/ldap/servers/slapd/back-ldbm/back-ldbm.h b/ldap/servers/slapd/back-ldbm/back-ldbm.h +index 938d261..fd17453 100644 +--- a/ldap/servers/slapd/back-ldbm/back-ldbm.h ++++ b/ldap/servers/slapd/back-ldbm/back-ldbm.h +@@ -705,7 +705,6 @@ typedef struct _import_subcount_stuff import_subcount_stuff; + /* Handy structures for modify operations */ + + struct _modify_context { +- int new_entry_in_cache; + struct backentry *old_entry; + struct backentry *new_entry; + Slapi_Mods *smods; +diff --git a/ldap/servers/slapd/back-ldbm/cache.c b/ldap/servers/slapd/back-ldbm/cache.c +index a98cf0c..4746204 100644 +--- a/ldap/servers/slapd/back-ldbm/cache.c ++++ b/ldap/servers/slapd/back-ldbm/cache.c +@@ -1506,10 +1506,12 @@ int cache_add_tentative(struct cache *cache, struct backentry *e, + { + return entrycache_add_int(cache, e, ENTRY_STATE_CREATING, alt); + } ++ + void cache_lock(struct cache *cache) + { + PR_EnterMonitor(cache->c_mutex); + } ++ + void cache_unlock(struct cache *cache) + { + PR_ExitMonitor(cache->c_mutex); +@@ -2095,9 +2097,9 @@ cache_has_otherref(struct cache *cache, void *ptr) + return hasref; + } + bep = (struct backcommon *)ptr; +- /* slows down too much? PR_Lock(cache->c_mutex); */ ++ cache_lock(cache); + hasref = bep->ep_refcnt; +- /* PR_Unlock(cache->c_mutex); */ ++ cache_unlock(cache); + return (hasref>1)?1:0; + } + +@@ -2111,8 +2113,8 @@ cache_is_in_cache(struct cache *cache, void *ptr) + return in_cache; + } + bep = (struct backcommon *)ptr; +- /* slows down too much? PR_Lock(cache->c_mutex); */ ++ cache_lock(cache); + in_cache = (bep->ep_state & (ENTRY_STATE_DELETED|ENTRY_STATE_NOTINCACHE))?0:1; +- /* PR_Unlock(cache->c_mutex); */ ++ cache_unlock(cache); + return in_cache; + } +-- +1.9.3 + diff --git a/SOURCES/0010-Ticket-47504-idlistscanlimit-per-index-type-value.patch b/SOURCES/0010-Ticket-47504-idlistscanlimit-per-index-type-value.patch deleted file mode 100644 index 8d145fa..0000000 --- a/SOURCES/0010-Ticket-47504-idlistscanlimit-per-index-type-value.patch +++ /dev/null @@ -1,85 +0,0 @@ -From 86cc92be7b84f4583bf9ed616848ef178f73d475 Mon Sep 17 00:00:00 2001 -From: Rich Megginson -Date: Wed, 25 Sep 2013 08:51:12 -0600 -Subject: [PATCH 10/28] Ticket #47504 idlistscanlimit per index/type/value - -https://fedorahosted.org/389/ticket/47504 -Reviewed by: nhosoi (Thanks!) -Branch: rhel-7.0 -Fix Description: This patch broke replication. The problem is that we cannot -compare the allidslimit to 0 unless the value is explicitly set by -index_get_allids. The fix is to only return ALLIDS if the allidslimit was -explicitly set to 0 by index_get_allids. -Platforms tested: RHEL6 x86_64 -Flag Day: no -Doc impact: no -(cherry picked from commit 058d01d7479204a2507dab822cd81e32c37be862) -(cherry picked from commit e5405e627439ccaf370d90c42e65c0a987e33e73) ---- - ldap/servers/slapd/back-ldbm/index.c | 20 ++++++++++++-------- - 1 files changed, 12 insertions(+), 8 deletions(-) - -diff --git a/ldap/servers/slapd/back-ldbm/index.c b/ldap/servers/slapd/back-ldbm/index.c -index d5ca16a..f4de2fa 100644 ---- a/ldap/servers/slapd/back-ldbm/index.c -+++ b/ldap/servers/slapd/back-ldbm/index.c -@@ -52,7 +52,7 @@ - static const char *errmsg = "database index operation failed"; - - static int is_indexed (const char* indextype, int indexmask, char** index_rules); --static int index_get_allids( int default_allids, const char *indextype, struct attrinfo *ai, const struct berval *val, unsigned int flags ); -+static int index_get_allids( int *allids, const char *indextype, struct attrinfo *ai, const struct berval *val, unsigned int flags ); - - static Slapi_Value ** - valuearray_minus_valuearray( -@@ -985,8 +985,11 @@ index_read_ext_allids( - slapi_pblock_get(pb, SLAPI_SEARCH_IS_AND, &is_and); - } - ai_flags = is_and ? INDEX_ALLIDS_FLAG_AND : 0; -- allidslimit = index_get_allids( allidslimit, indextype, ai, val, ai_flags ); -- if (allidslimit == 0) { -+ /* the caller can pass in a value of 0 - just ignore those - but if the index -+ * config sets the allidslimit to 0, this means to skip the index -+ */ -+ if (index_get_allids( &allidslimit, indextype, ai, val, ai_flags ) && -+ (allidslimit == 0)) { - idl = idl_allids( be ); - if (unindexed != NULL) *unindexed = 1; - LDAPDebug1Arg( LDAP_DEBUG_BACKLDBM, "<= index_read %lu candidates " -@@ -2400,9 +2403,9 @@ valuearray_minus_valuearray( - #define AI_HAS_TYPE 0x02 - #define AI_HAS_FLAG 0x01 - static int --index_get_allids( int default_allids, const char *indextype, struct attrinfo *ai, const struct berval *val, unsigned int flags ) -+index_get_allids( int *allids, const char *indextype, struct attrinfo *ai, const struct berval *val, unsigned int flags ) - { -- int allids = default_allids; -+ int found = 0; - Slapi_Value sval; - struct index_idlistsizeinfo *iter; /* iterator */ - int cookie = 0; -@@ -2410,7 +2413,7 @@ index_get_allids( int default_allids, const char *indextype, struct attrinfo *ai - struct index_idlistsizeinfo *best_match = NULL; - - if (!ai->ai_idlistinfo) { -- return allids; -+ return found; - } - - if (val) { /* val should already be a Slapi_Value, but some paths do not use Slapi_Value */ -@@ -2454,9 +2457,10 @@ index_get_allids( int default_allids, const char *indextype, struct attrinfo *ai - } - - if (best_match) { -- allids = best_match->ai_idlistsizelimit; -+ *allids = best_match->ai_idlistsizelimit; -+ found = 1; /* found a match */ - } - -- return allids; -+ return found; - } - --- -1.7.1 - diff --git a/SOURCES/0010-Ticket-47908-389-ds-1.3.3.0-does-not-adjust-cipher-s.patch b/SOURCES/0010-Ticket-47908-389-ds-1.3.3.0-does-not-adjust-cipher-s.patch new file mode 100644 index 0000000..066ac23 --- /dev/null +++ b/SOURCES/0010-Ticket-47908-389-ds-1.3.3.0-does-not-adjust-cipher-s.patch @@ -0,0 +1,113 @@ +From 0e32f3731887dbdf9c594a94fee693826f1a96de Mon Sep 17 00:00:00 2001 +From: Noriko Hosoi +Date: Tue, 23 Sep 2014 14:38:00 -0700 +Subject: [PATCH 10/14] Ticket #47908 - 389-ds 1.3.3.0 does not adjust cipher + suite configuration on upgrade, breaks itself and pki-server + +Description: +In the given cipher list: + nsSSL3Ciphers: +rsa_fips_3des_sha,+rsa_fips_des_sha,+rsa_3des_sha, + +rsa_rc4_128_md5,+rsa_des_sha,+rsa_rc2_40_md5,+rsa_rc4_40_md5, + +fortezza +there were 2 issues. +1) An old cipher suite name rsa_des_sha was not correctly mapped + to the name supported by NSS (TLS_RSA_WITH_DES_CBC_SHA) in the + mapping table. And the unsupported cipher name was not gracefully + skipped but returned an error. This patch fixes the mapped name + and the behaviour so that it skips the unknown/unsupported cipher. +2) A cipher "fortezza" is deprecated. It's now skipped with the + proper warning message. + +Reviewed by rmeggins@redhat.com (Thank you, Rich!!) + +https://fedorahosted.org/389/ticket/47908 +(cherry picked from commit 83a6ceb556e769f0d0a201f4a3d783ae3915c6bc) +(cherry picked from commit 4e347407887589635fe077fb6174d20d3d34c7c8) +--- + ldap/servers/slapd/ssl.c | 25 ++++++++++++++++--------- + 1 file changed, 16 insertions(+), 9 deletions(-) + +diff --git a/ldap/servers/slapd/ssl.c b/ldap/servers/slapd/ssl.c +index 03b5904..4e38308 100644 +--- a/ldap/servers/slapd/ssl.c ++++ b/ldap/servers/slapd/ssl.c +@@ -172,7 +172,7 @@ static lookup_cipher _lookup_cipher[] = { + {"tls_rsa_3des_sha", "TLS_RSA_WITH_3DES_EDE_CBC_SHA"}, + {"rsa_fips_3des_sha", "SSL_RSA_FIPS_WITH_3DES_EDE_CBC_SHA"}, + {"fips_3des_sha", "SSL_RSA_FIPS_WITH_3DES_EDE_CBC_SHA"}, +- {"rsa_des_sha", "SSL_RSA_WITH_DES_CBC_SHA"}, ++ {"rsa_des_sha", "TLS_RSA_WITH_DES_CBC_SHA"}, + {"rsa_fips_des_sha", "SSL_RSA_FIPS_WITH_DES_CBC_SHA"}, + {"fips_des_sha", "SSL_RSA_FIPS_WITH_DES_CBC_SHA"}, /* ditto */ + {"rsa_rc4_40_md5", "TLS_RSA_EXPORT_WITH_RC4_40_MD5"}, +@@ -455,7 +455,7 @@ _conf_setciphers(char *ciphers, int flags) + char *raw = ciphers; + char **suplist = NULL; + char **unsuplist = NULL; +- int lookup; ++ PRBool enabledOne = PR_FALSE; + + /* #47838: harden the list of ciphers available by default */ + /* Default is to activate all of them ==> none of them*/ +@@ -474,6 +474,7 @@ _conf_setciphers(char *ciphers, int flags) + * from the console + */ + _conf_setallciphers(CIPHER_SET_ALL|CIPHER_SET_DISABLE_ALLOWSWEAKCIPHER(flags), &suplist, NULL); ++ enabledOne = PR_TRUE; + } else { + /* If "+all" is not in nsSSL3Ciphers value, disable all first, + * then enable specified ciphers. */ +@@ -499,7 +500,7 @@ _conf_setciphers(char *ciphers, int flags) + + if (strcasecmp(ciphers, "all")) { /* if not all */ + PRBool enabled = active ? PR_TRUE : PR_FALSE; +- lookup = 1; ++ int lookup = 1; + for (x = 0; _conf_ciphers[x].name; x++) { + if (!PL_strcasecmp(ciphers, _conf_ciphers[x].name)) { + if (_conf_ciphers[x].flags & CIPHER_IS_WEAK) { +@@ -558,6 +559,9 @@ _conf_setciphers(char *ciphers, int flags) + enabled = cipher_check_fips(x, NULL, &unsuplist); + } + } ++ if (enabled) { ++ enabledOne = PR_TRUE; /* At least one active cipher is set. */ ++ } + SSL_CipherPrefSetDefault(_conf_ciphers[x].num, enabled); + break; + } +@@ -566,15 +570,14 @@ _conf_setciphers(char *ciphers, int flags) + } + } + } +- if(!_conf_ciphers[x].name) { +- PR_snprintf(err, sizeof(err), "unknown cipher %s", ciphers); +- slapi_ch_free((void **)&suplist); /* strings inside are static */ +- slapi_ch_free((void **)&unsuplist); /* strings inside are static */ +- return slapi_ch_strdup(err); ++ if (!lookup && !_conf_ciphers[x].name) { /* If lookup, it's already reported. */ ++ slapd_SSL_warn("Cipher suite %s is not available in NSS %d.%d. Ignoring %s", ++ ciphers, NSS_VMAJOR, NSS_VMINOR, ciphers); + } + } +- if(t) ++ if(t) { + ciphers = t; ++ } + } + if (unsuplist && *unsuplist) { + char *strsup = charray2str(suplist, ","); +@@ -592,6 +595,10 @@ _conf_setciphers(char *ciphers, int flags) + slapi_ch_free((void **)&suplist); /* strings inside are static */ + slapi_ch_free((void **)&unsuplist); /* strings inside are static */ + ++ if (!enabledOne) { ++ char *nocipher = PR_smprintf("No active cipher suite is available."); ++ return nocipher; ++ } + _conf_dumpciphers(); + + return NULL; +-- +1.9.3 + diff --git a/SOURCES/0011-Ticket-47461-logconv.pl-Use-of-comma-less-variable-l.patch b/SOURCES/0011-Ticket-47461-logconv.pl-Use-of-comma-less-variable-l.patch deleted file mode 100644 index acd9c5d..0000000 --- a/SOURCES/0011-Ticket-47461-logconv.pl-Use-of-comma-less-variable-l.patch +++ /dev/null @@ -1,68 +0,0 @@ -From 49245a17ee2e3c3f97ec2d7cd3bc45a744ed2ac8 Mon Sep 17 00:00:00 2001 -From: Mark Reynolds -Date: Wed, 14 Aug 2013 15:32:36 -0400 -Subject: [PATCH 11/28] Ticket 47461 - logconv.pl - Use of comma-less variable list is deprecated - -Description: In newer versions of perl commas are needed to separate variables - when "formatting" output. Also fixed a typo. - -https://fedorahosted.org/389/ticket/47461 - -Reviewed by: nhosoi(Thanks!) -(cherry picked from commit 7e9cae5fa2292168e88e87eee2f9249171a1e9d8) -(cherry picked from commit 3e7ee7ca886feb56b3b26df97882c40d81bfff55) ---- - ldap/admin/src/logconv.pl | 30 +++++++++++++++--------------- - 1 files changed, 15 insertions(+), 15 deletions(-) - -diff --git a/ldap/admin/src/logconv.pl b/ldap/admin/src/logconv.pl -index efc5970..77088ff 100755 ---- a/ldap/admin/src/logconv.pl -+++ b/ldap/admin/src/logconv.pl -@@ -594,7 +594,7 @@ print "Restarts: $serverRestartCount\n"; - print "Total Connections: $connectionCount\n"; - print " - StartTLS Connections: $startTLSCount\n"; - print " - LDAPS Connections: $sslCount\n"; --print " - LDAPI Conections: $ldapiCount\n"; -+print " - LDAPI Connections: $ldapiCount\n"; - print "Peak Concurrent Connections: $maxsimConnection\n"; - print "Total Operations: $allOps\n"; - print "Total Results: $allResults\n"; -@@ -614,20 +614,20 @@ $compareStat = sprintf "(%.2f/sec) (%.2f/min)\n",$cmpCount/$totalTimeInSecs, $c - $bindCountStat = sprintf "(%.2f/sec) (%.2f/min)\n",$bindCount/$totalTimeInSecs, $bindCount/($totalTimeInSecs/60); - - format STDOUT = --Searches: @<<<<<<<<< @<<<<<<<<<<<<<<<<<<<<<<<< -- $srchCount, $searchStat --Modifications: @<<<<<<<<< @<<<<<<<<<<<<<<<<<<<<<<<< -- $modCount, $modStat --Adds: @<<<<<<<<< @<<<<<<<<<<<<<<<<<<<<<<<< -- $addCount, $addStat --Deletes: @<<<<<<<<< @<<<<<<<<<<<<<<<<<<<<<<<< -- $delCount, $deleteStat --Mod RDNs: @<<<<<<<<< @<<<<<<<<<<<<<<<<<<<<<<<< -- $modrdnCount, $modrdnStat --Compares: @<<<<<<<<< @<<<<<<<<<<<<<<<<<<<<<<<< -- $cmpCount, $compareStat --Binds: @<<<<<<<<< @<<<<<<<<<<<<<<<<<<<<<<<< -- $bindCount $bindCountStat -+Searches: @<<<<<<<<<<<< @<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< -+ $srchCount, $searchStat, -+Modifications: @<<<<<<<<<<<< @<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< -+ $modCount, $modStat, -+Adds: @<<<<<<<<<<<< @<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< -+ $addCount, $addStat, -+Deletes: @<<<<<<<<<<<< @<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< -+ $delCount, $deleteStat, -+Mod RDNs: @<<<<<<<<<<<< @<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< -+ $modrdnCount, $modrdnStat, -+Compares: @<<<<<<<<<<<< @<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< -+ $cmpCount, $compareStat, -+Binds: @<<<<<<<<<<<< @<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< -+ $bindCount, $bindCountStat, - . - write STDOUT; - --- -1.7.1 - diff --git a/SOURCES/0011-Ticket-47838-harden-the-list-of-ciphers-available-by.patch b/SOURCES/0011-Ticket-47838-harden-the-list-of-ciphers-available-by.patch new file mode 100644 index 0000000..865d197 --- /dev/null +++ b/SOURCES/0011-Ticket-47838-harden-the-list-of-ciphers-available-by.patch @@ -0,0 +1,154 @@ +From afffe2dde82708b7c4837d5823cbb624a143dd7d Mon Sep 17 00:00:00 2001 +From: Noriko Hosoi +Date: Thu, 25 Sep 2014 13:38:03 -0700 +Subject: [PATCH 11/14] Ticket #47838 - harden the list of ciphers available by + default (phase 2) + +Description: +1) By default (i.e., no explicit allowWeakCipher set in cn=encryption,cn=config), + allowWeakCipher is on for user specified cipher list + allowWeakCipher is off for "+all" and "default" +2) Fixed enabled allowWeakCipher (explicitly set "on" to it) is + applied to "+all" and "default". +3) If an invalid value is set to allowWeakCipher, this message is + logged in the error log and set it to the default value. + SSL alert: The value of allowWeakCipher "poor" in cn=encryption, + cn=config is invalid. Ignoring it and set it to default. + +https://fedorahosted.org/389/ticket/47838 + +Reviewed by tbordaz@redhat.com (Thank you, Thierry!) + +(cherry picked from commit c6febe325a1b5a0e4f7e7e59bcc076c9e4a3b825) +(cherry picked from commit 411ca8f1cc5aade2fbe7d9f91aff8c658f5e8248) +--- + ldap/servers/slapd/ssl.c | 60 +++++++++++++++++++++++++++++++++++------------- + 1 file changed, 44 insertions(+), 16 deletions(-) + +diff --git a/ldap/servers/slapd/ssl.c b/ldap/servers/slapd/ssl.c +index 4e38308..28ff475 100644 +--- a/ldap/servers/slapd/ssl.c ++++ b/ldap/servers/slapd/ssl.c +@@ -120,18 +120,34 @@ static char * configDN = "cn=encryption,cn=config"; + + /* ----------------------- Multiple cipher support ------------------------ */ + /* cipher set flags */ +-#define CIPHER_SET_ALL 0x1 +-#define CIPHER_SET_NONE 0x0 +-#define CIPHER_SET_DEFAULT 0x2 +-#define CIPHER_SET_CORE (CIPHER_SET_ALL|CIPHER_SET_DEFAULT|CIPHER_SET_NONE) +-#define CIPHER_SET_ALLOWWEAKCIPHER 0x10 /* can be or'ed with other CIPHER_SET flags */ ++#define CIPHER_SET_NONE 0x0 ++#define CIPHER_SET_ALL 0x1 ++#define CIPHER_SET_DEFAULT 0x2 ++#define CIPHER_SET_DEFAULTWEAKCIPHER 0x10 /* allowWeakCipher is not set in cn=encryption */ ++#define CIPHER_SET_ALLOWWEAKCIPHER 0x20 /* allowWeakCipher is on */ ++#define CIPHER_SET_DISALLOWWEAKCIPHER 0x40 /* allowWeakCipher is off */ + + #define CIPHER_SET_ISDEFAULT(flag) \ +- ((((flag)&CIPHER_SET_CORE) == CIPHER_SET_DEFAULT) ? PR_TRUE : PR_FALSE) ++ (((flag)&CIPHER_SET_DEFAULT) ? PR_TRUE : PR_FALSE) + #define CIPHER_SET_ISALL(flag) \ +- ((((flag)&CIPHER_SET_CORE) == CIPHER_SET_ALL) ? PR_TRUE : PR_FALSE) +-#define CIPHER_SET_ALLOWSWEAKCIPHER(flag) \ ++ (((flag)&CIPHER_SET_ALL) ? PR_TRUE : PR_FALSE) ++ ++#define ALLOWWEAK_ISDEFAULT(flag) \ ++ (((flag)&CIPHER_SET_DEFAULTWEAKCIPHER) ? PR_TRUE : PR_FALSE) ++#define ALLOWWEAK_ISON(flag) \ + (((flag)&CIPHER_SET_ALLOWWEAKCIPHER) ? PR_TRUE : PR_FALSE) ++#define ALLOWWEAK_ISOFF(flag) \ ++ (((flag)&CIPHER_SET_DISALLOWWEAKCIPHER) ? PR_TRUE : PR_FALSE) ++/* ++ * If ISALL or ISDEFAULT, allowWeakCipher is true only if CIPHER_SET_ALLOWWEAKCIPHER. ++ * Otherwise (user specified cipher list), allowWeakCipher is true ++ * if CIPHER_SET_ALLOWWEAKCIPHER or CIPHER_SET_DEFAULTWEAKCIPHER. ++ */ ++#define CIPHER_SET_ALLOWSWEAKCIPHER(flag) \ ++ ((CIPHER_SET_ISDEFAULT(flag)|CIPHER_SET_ISALL(flag)) ? \ ++ (ALLOWWEAK_ISON(flag) ? PR_TRUE : PR_FALSE) : \ ++ (!ALLOWWEAK_ISOFF(flag) ? PR_TRUE : PR_FALSE)) ++ + #define CIPHER_SET_DISABLE_ALLOWSWEAKCIPHER(flag) \ + ((flag)&~CIPHER_SET_ALLOWWEAKCIPHER) + +@@ -460,7 +476,7 @@ _conf_setciphers(char *ciphers, int flags) + /* #47838: harden the list of ciphers available by default */ + /* Default is to activate all of them ==> none of them*/ + if (!ciphers || (ciphers[0] == '\0') || !PL_strcasecmp(ciphers, "default")) { +- _conf_setallciphers((CIPHER_SET_DEFAULT|CIPHER_SET_DISABLE_ALLOWSWEAKCIPHER(flags)), NULL, NULL); ++ _conf_setallciphers((CIPHER_SET_DEFAULT|flags), NULL, NULL); + slapd_SSL_warn("Security Initialization: Enabling default cipher set."); + _conf_dumpciphers(); + return NULL; +@@ -473,7 +489,7 @@ _conf_setciphers(char *ciphers, int flags) + * set of ciphers in the table. Right now there is no support for this + * from the console + */ +- _conf_setallciphers(CIPHER_SET_ALL|CIPHER_SET_DISABLE_ALLOWSWEAKCIPHER(flags), &suplist, NULL); ++ _conf_setallciphers((CIPHER_SET_ALL|flags), &suplist, NULL); + enabledOne = PR_TRUE; + } else { + /* If "+all" is not in nsSSL3Ciphers value, disable all first, +@@ -504,7 +520,7 @@ _conf_setciphers(char *ciphers, int flags) + for (x = 0; _conf_ciphers[x].name; x++) { + if (!PL_strcasecmp(ciphers, _conf_ciphers[x].name)) { + if (_conf_ciphers[x].flags & CIPHER_IS_WEAK) { +- if (CIPHER_SET_ALLOWSWEAKCIPHER(flags)) { ++ if (active && CIPHER_SET_ALLOWSWEAKCIPHER(flags)) { + slapd_SSL_warn("Cipher %s is weak. It is enabled since allowWeakCipher is \"on\" " + "(default setting for the backward compatibility). " + "We strongly recommend to set it to \"off\". " +@@ -522,6 +538,9 @@ _conf_setciphers(char *ciphers, int flags) + check fips. */ + enabled = cipher_check_fips(x, NULL, &unsuplist); + } ++ if (enabled) { ++ enabledOne = PR_TRUE; /* At least one active cipher is set. */ ++ } + SSL_CipherPrefSetDefault(_conf_ciphers[x].num, enabled); + lookup = 0; + break; +@@ -539,7 +558,7 @@ _conf_setciphers(char *ciphers, int flags) + if (!PL_strcasecmp(_lookup_cipher[i].name, _conf_ciphers[x].name)) { + if (enabled) { + if (_conf_ciphers[x].flags & CIPHER_IS_WEAK) { +- if (CIPHER_SET_ALLOWSWEAKCIPHER(flags)) { ++ if (active && CIPHER_SET_ALLOWSWEAKCIPHER(flags)) { + slapd_SSL_warn("Cipher %s is weak. " + "It is enabled since allowWeakCipher is \"on\" " + "(default setting for the backward compatibility). " +@@ -1065,7 +1084,7 @@ slapd_ssl_init() + int rv = 0; + PK11SlotInfo *slot; + Slapi_Entry *entry = NULL; +- int allowweakcipher = CIPHER_SET_ALLOWWEAKCIPHER; ++ int allowweakcipher = CIPHER_SET_DEFAULTWEAKCIPHER; + + /* Get general information */ + +@@ -1105,9 +1124,18 @@ slapd_ssl_init() + } + + val = slapi_entry_attr_get_charptr(entry, "allowWeakCipher"); +- if (val && (!PL_strcasecmp(val, "off") || !PL_strcasecmp(val, "false") || +- !PL_strcmp(val, "0") || !PL_strcasecmp(val, "no"))) { +- allowweakcipher = 0; ++ if (val) { ++ if (!PL_strcasecmp(val, "off") || !PL_strcasecmp(val, "false") || ++ !PL_strcmp(val, "0") || !PL_strcasecmp(val, "no")) { ++ allowweakcipher = CIPHER_SET_DISALLOWWEAKCIPHER; ++ } else if (!PL_strcasecmp(val, "on") || !PL_strcasecmp(val, "true") || ++ !PL_strcmp(val, "1") || !PL_strcasecmp(val, "yes")) { ++ allowweakcipher = CIPHER_SET_ALLOWWEAKCIPHER; ++ } else { ++ slapd_SSL_warn("The value of allowWeakCipher \"%s\" in " ++ "cn=encryption,cn=config is invalid. " ++ "Ignoring it and set it to default.", val); ++ } + } + slapi_ch_free((void **) &val); + +-- +1.9.3 + diff --git a/SOURCES/0012-Ticket-47512-backend-txn-plugin-fixup-tasks-should-b.patch b/SOURCES/0012-Ticket-47512-backend-txn-plugin-fixup-tasks-should-b.patch deleted file mode 100644 index fa15a52..0000000 --- a/SOURCES/0012-Ticket-47512-backend-txn-plugin-fixup-tasks-should-b.patch +++ /dev/null @@ -1,264 +0,0 @@ -From 9817459cec5df74f9270adc80cd2af5d80567068 Mon Sep 17 00:00:00 2001 -From: Mark Reynolds -Date: Fri, 13 Sep 2013 15:16:31 -0400 -Subject: [PATCH 12/28] Ticket 47512 - backend txn plugin fixup tasks should be done in a txn - -Description: If a plugin is a backend txn plugin, then its fixup tasks should - also be done in a transaction. - -https://fedorahosted.org/389/ticket/47512 - -Reviewed by: richm(Thanks!) -(cherry picked from commit e439c4679b6e422103ec39a08c2013a37c0a7dd0) -(cherry picked from commit 76bad9a5751f1ecb2f792faf1f0687acf6661112) ---- - ldap/servers/plugins/automember/automember.c | 32 +++++++++- - ldap/servers/plugins/linkedattrs/fixup_task.c | 80 ++++++++++++++++++++-- - ldap/servers/plugins/linkedattrs/linked_attrs.c | 3 +- - ldap/servers/plugins/linkedattrs/linked_attrs.h | 2 + - 4 files changed, 106 insertions(+), 11 deletions(-) - -diff --git a/ldap/servers/plugins/automember/automember.c b/ldap/servers/plugins/automember/automember.c -index 02dcc0d..c7168cb 100644 ---- a/ldap/servers/plugins/automember/automember.c -+++ b/ldap/servers/plugins/automember/automember.c -@@ -2135,7 +2135,7 @@ out: - void automember_rebuild_task_thread(void *arg){ - Slapi_Task *task = (Slapi_Task *)arg; - struct configEntry *config = NULL; -- Slapi_PBlock *search_pb = NULL; -+ Slapi_PBlock *search_pb = NULL, *fixup_pb = NULL; - Slapi_Entry **entries = NULL; - task_data *td = NULL; - PRCList *list = NULL; -@@ -2176,6 +2176,27 @@ void automember_rebuild_task_thread(void *arg){ - goto out; - } - slapi_pblock_get(search_pb, SLAPI_PLUGIN_INTOP_SEARCH_ENTRIES, &entries); -+ -+ /* -+ * If this is a backend txn plugin, start the transaction -+ */ -+ if (plugin_is_betxn) { -+ Slapi_Backend *be = slapi_be_select(td->base_dn); -+ -+ if (be) { -+ fixup_pb = slapi_pblock_new(); -+ slapi_pblock_set(fixup_pb, SLAPI_BACKEND, be); -+ if(slapi_back_transaction_begin(fixup_pb) != LDAP_SUCCESS){ -+ slapi_log_error(SLAPI_LOG_FATAL, AUTOMEMBER_PLUGIN_SUBSYSTEM, -+ "automember_rebuild_task_thread: failed to start transaction\n"); -+ } -+ } else { -+ slapi_log_error(SLAPI_LOG_FATAL, AUTOMEMBER_PLUGIN_SUBSYSTEM, -+ "automember_rebuild_task_thread: failed to get be backend from %s\n", -+ slapi_sdn_get_dn(td->base_dn)); -+ } -+ } -+ - /* - * Grab the config read lock, and loop over the entries - */ -@@ -2205,6 +2226,15 @@ void automember_rebuild_task_thread(void *arg){ - slapi_free_search_results_internal(search_pb); - - out: -+ if (plugin_is_betxn && fixup_pb) { -+ if (i == 0 || result != 0) { /* no updates performed */ -+ slapi_back_transaction_abort(fixup_pb); -+ } else { -+ slapi_back_transaction_commit(fixup_pb); -+ } -+ slapi_pblock_destroy(fixup_pb); -+ } -+ - if(result){ - /* error */ - slapi_task_log_notice(task, "Automember rebuild task aborted. Error (%d)", result); -diff --git a/ldap/servers/plugins/linkedattrs/fixup_task.c b/ldap/servers/plugins/linkedattrs/fixup_task.c -index 9fa7f6f..537544d 100644 ---- a/ldap/servers/plugins/linkedattrs/fixup_task.c -+++ b/ldap/servers/plugins/linkedattrs/fixup_task.c -@@ -139,11 +139,11 @@ linked_attrs_fixup_task_destructor(Slapi_Task *task) - static void - linked_attrs_fixup_task_thread(void *arg) - { -- int rc = 0; - Slapi_Task *task = (Slapi_Task *)arg; - task_data *td = NULL; - PRCList *main_config = NULL; - int found_config = 0; -+ int rc = 0; - - /* Fetch our task data from the task */ - td = (task_data *)slapi_task_get_data(task); -@@ -218,8 +218,10 @@ static void - linked_attrs_fixup_links(struct configEntry *config) - { - Slapi_PBlock *pb = slapi_pblock_new(); -+ Slapi_PBlock *fixup_pb = NULL; - char *del_filter = NULL; - char *add_filter = NULL; -+ int rc = 0; - - del_filter = slapi_ch_smprintf("%s=*", config->managedtype); - add_filter = slapi_ch_smprintf("%s=*", config->linktype); -@@ -228,12 +230,33 @@ linked_attrs_fixup_links(struct configEntry *config) - slapi_lock_mutex(config->lock); - - if (config->scope) { -+ /* -+ * If this is a backend txn plugin, start the transaction -+ */ -+ if (plugin_is_betxn) { -+ Slapi_DN *fixup_dn = slapi_sdn_new_dn_byref(config->scope); -+ Slapi_Backend *be = slapi_be_select(fixup_dn); -+ -+ if (be) { -+ fixup_pb = slapi_pblock_new(); -+ slapi_pblock_set(fixup_pb, SLAPI_BACKEND, be); -+ if(slapi_back_transaction_begin(fixup_pb) != LDAP_SUCCESS){ -+ slapi_log_error(SLAPI_LOG_FATAL, LINK_PLUGIN_SUBSYSTEM, -+ "linked_attrs_fixup_links: failed to start transaction\n"); -+ } -+ } else { -+ slapi_log_error(SLAPI_LOG_FATAL, LINK_PLUGIN_SUBSYSTEM, -+ "linked_attrs_fixup_links: failed to get be backend from %s\n", -+ config->scope); -+ } -+ } -+ - /* Find all entries with the managed type present - * within the scope and remove the managed type. */ - slapi_search_internal_set_pb(pb, config->scope, LDAP_SCOPE_SUBTREE, - del_filter, 0, 0, 0, 0, linked_attrs_get_plugin_id(), 0); - -- slapi_search_internal_callback_pb(pb, config->managedtype, 0, -+ rc = slapi_search_internal_callback_pb(pb, config->managedtype, 0, - linked_attrs_remove_backlinks_callback, 0); - - /* Clean out pblock for reuse. */ -@@ -246,16 +269,46 @@ linked_attrs_fixup_links(struct configEntry *config) - - slapi_search_internal_callback_pb(pb, config, 0, - linked_attrs_add_backlinks_callback, 0); -+ /* -+ * Finish the transaction. -+ */ -+ if (plugin_is_betxn && fixup_pb){ -+ if(rc == 0){ -+ slapi_back_transaction_commit(fixup_pb); -+ } else { -+ slapi_back_transaction_abort(fixup_pb); -+ } -+ slapi_pblock_destroy(fixup_pb); -+ } - } else { - /* Loop through all non-private backend suffixes and - * remove the managed type from any entry that has it. - * We then find any entry with the linktype present and - * generate the proper backlinks. */ - void *node = NULL; -- Slapi_DN * suffix = slapi_get_first_suffix (&node, 0); -+ config->suffix = slapi_get_first_suffix (&node, 0); -+ -+ while (config->suffix) { -+ /* -+ * If this is a backend txn plugin, start the transaction -+ */ -+ if (plugin_is_betxn) { -+ Slapi_Backend *be = slapi_be_select(config->suffix); -+ if (be) { -+ fixup_pb = slapi_pblock_new(); -+ slapi_pblock_set(fixup_pb, SLAPI_BACKEND, be); -+ if(slapi_back_transaction_begin(fixup_pb) != LDAP_SUCCESS){ -+ slapi_log_error(SLAPI_LOG_FATAL, LINK_PLUGIN_SUBSYSTEM, -+ "linked_attrs_fixup_links: failed to start transaction\n"); -+ } -+ } else { -+ slapi_log_error(SLAPI_LOG_FATAL, LINK_PLUGIN_SUBSYSTEM, -+ "linked_attrs_fixup_links: failed to get be backend from %s\n", -+ slapi_sdn_get_dn(config->suffix)); -+ } -+ } - -- while (suffix) { -- slapi_search_internal_set_pb(pb, slapi_sdn_get_dn(suffix), -+ slapi_search_internal_set_pb(pb, slapi_sdn_get_dn(config->suffix), - LDAP_SCOPE_SUBTREE, del_filter, - 0, 0, 0, 0, - linked_attrs_get_plugin_id(), 0); -@@ -266,18 +319,29 @@ linked_attrs_fixup_links(struct configEntry *config) - /* Clean out pblock for reuse. */ - slapi_pblock_init(pb); - -- slapi_search_internal_set_pb(pb, slapi_sdn_get_dn(suffix), -+ slapi_search_internal_set_pb(pb, slapi_sdn_get_dn(config->suffix), - LDAP_SCOPE_SUBTREE, add_filter, - 0, 0, 0, 0, - linked_attrs_get_plugin_id(), 0); - -- slapi_search_internal_callback_pb(pb, config, 0, -+ rc = slapi_search_internal_callback_pb(pb, config, 0, - linked_attrs_add_backlinks_callback, 0); - - /* Clean out pblock for reuse. */ - slapi_pblock_init(pb); - -- suffix = slapi_get_next_suffix (&node, 0); -+ config->suffix = slapi_get_next_suffix (&node, 0); -+ /* -+ * Finish the transaction. -+ */ -+ if (plugin_is_betxn && fixup_pb){ -+ if(rc == 0){ -+ slapi_back_transaction_commit(fixup_pb); -+ } else { -+ slapi_back_transaction_abort(fixup_pb); -+ } -+ slapi_pblock_destroy(fixup_pb); -+ } - } - } - -diff --git a/ldap/servers/plugins/linkedattrs/linked_attrs.c b/ldap/servers/plugins/linkedattrs/linked_attrs.c -index 30a8653..1945828 100644 ---- a/ldap/servers/plugins/linkedattrs/linked_attrs.c -+++ b/ldap/servers/plugins/linkedattrs/linked_attrs.c -@@ -55,6 +55,7 @@ static Slapi_RWLock *g_config_lock; - static void *_PluginID = NULL; - static char *_PluginDN = NULL; - static int g_plugin_started = 0; -+int plugin_is_betxn = 0; - - static Slapi_PluginDesc pdesc = { LINK_FEATURE_DESC, - VENDOR, -@@ -164,8 +165,6 @@ linked_attrs_get_plugin_dn() - return _PluginDN; - } - --static int plugin_is_betxn = 0; -- - /* - * Plug-in initialization functions - */ -diff --git a/ldap/servers/plugins/linkedattrs/linked_attrs.h b/ldap/servers/plugins/linkedattrs/linked_attrs.h -index d0909ca..4721151 100644 ---- a/ldap/servers/plugins/linkedattrs/linked_attrs.h -+++ b/ldap/servers/plugins/linkedattrs/linked_attrs.h -@@ -82,6 +82,7 @@ struct configEntry { - char *linktype; - char *managedtype; - char *scope; -+ Slapi_DN *suffix; - Slapi_Mutex *lock; - }; - -@@ -142,3 +143,4 @@ int linked_attrs_fixup_task_add(Slapi_PBlock *pb, Slapi_Entry *e, - * misc - */ - int linked_attrs_is_started(); -+extern int plugin_is_betxn; --- -1.7.1 - diff --git a/SOURCES/0012-Ticket-47838-CI-test-adjusted-test-cases-based-on-th.patch b/SOURCES/0012-Ticket-47838-CI-test-adjusted-test-cases-based-on-th.patch new file mode 100644 index 0000000..63d9653 --- /dev/null +++ b/SOURCES/0012-Ticket-47838-CI-test-adjusted-test-cases-based-on-th.patch @@ -0,0 +1,215 @@ +From d5d6836c9935fe4393e1d2b991271bf7ee53c609 Mon Sep 17 00:00:00 2001 +From: Noriko Hosoi +Date: Wed, 24 Sep 2014 15:47:02 -0700 +Subject: [PATCH 12/14] Ticket 47838 - CI test: adjusted test cases based on + the phase 2 fixes for ticket 47838 + +https://fedorahosted.org/389/ticket/47838 +(cherry picked from commit c6c73e674ecf79fc7404758f90f4837f04bdbed0) +(cherry picked from commit b5ce880cc7e6df5f2a1d4bd24de2ce107cf1a5fe) +--- + dirsrvtests/tickets/ticket47838_test.py | 68 ++++++++++++++++++++------------- + 1 file changed, 41 insertions(+), 27 deletions(-) + +diff --git a/dirsrvtests/tickets/ticket47838_test.py b/dirsrvtests/tickets/ticket47838_test.py +index 0e406f3..1575376 100644 +--- a/dirsrvtests/tickets/ticket47838_test.py ++++ b/dirsrvtests/tickets/ticket47838_test.py +@@ -25,6 +25,8 @@ LDAPSPORT = '10636' + SERVERCERT = 'Server-Cert' + plus_all_ecount = 0 + plus_all_dcount = 0 ++plus_all_ecount_noweak = 0 ++plus_all_dcount_noweak = 0 + + class TopologyStandalone(object): + def __init__(self, standalone): +@@ -220,7 +222,7 @@ def test_ticket47838_run_0(topology): + All ciphers are enabled except null. + Note: allowWeakCipher: on + """ +- _header(topology, 'Test Case 1 - Check the ciphers availability for "+all"') ++ _header(topology, 'Test Case 1 - Check the ciphers availability for "+all"; allowWeakCipher: on') + + topology.standalone.simple_bind_s(DN_DM, PASSWORD) + topology.standalone.modify_s(CONFIG_DN, [(ldap.MOD_REPLACE, 'nsslapd-errorlog-level', '64')]) +@@ -235,8 +237,8 @@ def test_ticket47838_run_0(topology): + + log.info("Enabled ciphers: %d" % ecount) + log.info("Disabled ciphers: %d" % dcount) +- assert ecount >= 31 +- assert dcount <= 36 ++ assert ecount >= 60 ++ assert dcount <= 7 + global plus_all_ecount + global plus_all_dcount + plus_all_ecount = ecount +@@ -250,9 +252,9 @@ def test_ticket47838_run_1(topology): + """ + Check nsSSL3Ciphers: +all + All ciphers are enabled except null. +- Note: allowWeakCipher: off for +all ++ Note: default allowWeakCipher (i.e., off) for +all + """ +- _header(topology, 'Test Case 2 - Check the ciphers availability for "+all" with not allowing WeakCiphers') ++ _header(topology, 'Test Case 2 - Check the ciphers availability for "+all" with default allowWeakCiphers') + + topology.standalone.simple_bind_s(DN_DM, PASSWORD) + topology.standalone.modify_s(CONFIG_DN, [(ldap.MOD_REPLACE, 'nsslapd-errorlog-level', '64')]) +@@ -271,6 +273,11 @@ def test_ticket47838_run_1(topology): + ecount = int(enabled.readline().rstrip()) + dcount = int(disabled.readline().rstrip()) + ++ global plus_all_ecount_noweak ++ global plus_all_dcount_noweak ++ plus_all_ecount_noweak = ecount ++ plus_all_dcount_noweak = dcount ++ + log.info("Enabled ciphers: %d" % ecount) + log.info("Disabled ciphers: %d" % dcount) + assert ecount >= 31 +@@ -284,12 +291,11 @@ def test_ticket47838_run_2(topology): + """ + Check nsSSL3Ciphers: +rsa_aes_128_sha,+rsa_aes_256_sha + rsa_aes_128_sha, tls_rsa_aes_128_sha, rsa_aes_256_sha, tls_rsa_aes_256_sha are enabled. ++ default allowWeakCipher + """ +- _header(topology, 'Test Case 3 - Check the ciphers availability for "+rsa_aes_128_sha,+rsa_aes_256_sha"') ++ _header(topology, 'Test Case 3 - Check the ciphers availability for "+rsa_aes_128_sha,+rsa_aes_256_sha" with default allowWeakCipher') + + topology.standalone.simple_bind_s(DN_DM, PASSWORD) +- #topology.standalone.modify_s(ENCRYPTION_DN, [(ldap.MOD_REPLACE, 'nsSSL3Ciphers', '+rsa_aes_128_sha,+rsa_aes_256_sha'), +- # (ldap.MOD_REPLACE, 'allowWeakCipher', 'on')]) + topology.standalone.modify_s(ENCRYPTION_DN, [(ldap.MOD_REPLACE, 'nsSSL3Ciphers', '+rsa_aes_128_sha,+rsa_aes_256_sha')]) + + log.info("\n######################### Restarting the server ######################\n") +@@ -314,6 +320,7 @@ def test_ticket47838_run_3(topology): + """ + Check nsSSL3Ciphers: -all + All ciphers are disabled. ++ default allowWeakCipher + """ + _header(topology, 'Test Case 4 - Check the ciphers availability for "-all"') + +@@ -327,23 +334,23 @@ def test_ticket47838_run_3(topology): + topology.standalone.start(timeout=120) + + enabled = os.popen('egrep "SSL alert:" %s | egrep \": enabled\" | wc -l' % topology.standalone.errlog) +- disabled = os.popen('egrep "SSL alert:" %s | egrep \": disabled\" | wc -l' % topology.standalone.errlog) + ecount = int(enabled.readline().rstrip()) +- dcount = int(disabled.readline().rstrip()) + + log.info("Enabled ciphers: %d" % ecount) +- log.info("Disabled ciphers: %d" % dcount) + global plus_all_ecount +- global plus_all_dcount + assert ecount == 0 +- assert dcount == (plus_all_ecount + plus_all_dcount) ++ ++ disabledmsg = os.popen('egrep "Disabling SSL" %s' % topology.standalone.errlog) ++ log.info("Disabling SSL message?: %s" % disabledmsg.readline()) ++ assert disabledmsg != '' + + def test_ticket47838_run_4(topology): + """ + Check no nsSSL3Ciphers + Default ciphers are enabled. ++ default allowWeakCipher + """ +- _header(topology, 'Test Case 5 - Check no nssSSL3Chiphers (default setting)') ++ _header(topology, 'Test Case 5 - Check no nssSSL3Chiphers (default setting) with default allowWeakCipher') + + topology.standalone.simple_bind_s(DN_DM, PASSWORD) + topology.standalone.modify_s(ENCRYPTION_DN, [(ldap.MOD_DELETE, 'nsSSL3Ciphers', '-all')]) +@@ -374,8 +381,9 @@ def test_ticket47838_run_5(topology): + """ + Check nsSSL3Ciphers: default + Default ciphers are enabled. ++ default allowWeakCipher + """ +- _header(topology, 'Test Case 6 - Check default nssSSL3Chiphers (default setting)') ++ _header(topology, 'Test Case 6 - Check default nssSSL3Chiphers (default setting) with default allowWeakCipher') + + topology.standalone.simple_bind_s(DN_DM, PASSWORD) + topology.standalone.modify_s(ENCRYPTION_DN, [(ldap.MOD_REPLACE, 'nsSSL3Ciphers', 'default')]) +@@ -406,8 +414,9 @@ def test_ticket47838_run_6(topology): + """ + Check nssSSL3Chiphers: +all,-rsa_rc4_128_md5 + All ciphers are disabled. ++ default allowWeakCipher + """ +- _header(topology, 'Test Case 7 - Check nssSSL3Chiphers: +all,-tls_dhe_rsa_aes_128_gcm_sha') ++ _header(topology, 'Test Case 7 - Check nssSSL3Chiphers: +all,-tls_dhe_rsa_aes_128_gcm_sha with default allowWeakCipher') + + topology.standalone.simple_bind_s(DN_DM, PASSWORD) + topology.standalone.modify_s(ENCRYPTION_DN, [(ldap.MOD_REPLACE, 'nsSSL3Ciphers', '+all,-tls_dhe_rsa_aes_128_gcm_sha')]) +@@ -425,19 +434,20 @@ def test_ticket47838_run_6(topology): + + log.info("Enabled ciphers: %d" % ecount) + log.info("Disabled ciphers: %d" % dcount) +- global plus_all_ecount +- global plus_all_dcount +- log.info("ALL Ecount: %d" % plus_all_ecount) +- log.info("ALL Dcount: %d" % plus_all_dcount) +- assert ecount == (plus_all_ecount - 1) +- assert dcount == (plus_all_dcount + 1) ++ global plus_all_ecount_noweak ++ global plus_all_dcount_noweak ++ log.info("ALL Ecount: %d" % plus_all_ecount_noweak) ++ log.info("ALL Dcount: %d" % plus_all_dcount_noweak) ++ assert ecount == (plus_all_ecount_noweak - 1) ++ assert dcount == (plus_all_dcount_noweak + 1) + + def test_ticket47838_run_7(topology): + """ + Check nssSSL3Chiphers: -all,+rsa_rc4_128_md5 + All ciphers are disabled. ++ default allowWeakCipher + """ +- _header(topology, 'Test Case 8 - Check nssSSL3Chiphers: -all,+rsa_rc4_128_md5') ++ _header(topology, 'Test Case 8 - Check nssSSL3Chiphers: -all,+rsa_rc4_128_md5 with default allowWeakCipher') + + topology.standalone.simple_bind_s(DN_DM, PASSWORD) + topology.standalone.modify_s(ENCRYPTION_DN, [(ldap.MOD_REPLACE, 'nsSSL3Ciphers', '-all,+rsa_rc4_128_md5')]) +@@ -497,8 +507,10 @@ def test_ticket47838_run_9(topology): + """ + Check no nsSSL3Ciphers + Default ciphers are enabled. ++ allowWeakCipher: on ++ nsslapd-errorlog-level: 0 + """ +- _header(topology, 'Test Case 10 - Check no nssSSL3Chiphers (default setting) with no errorlog-level') ++ _header(topology, 'Test Case 10 - Check no nssSSL3Chiphers (default setting) with no errorlog-level & allowWeakCipher on') + + topology.standalone.simple_bind_s(DN_DM, PASSWORD) + topology.standalone.modify_s(ENCRYPTION_DN, [(ldap.MOD_REPLACE, 'nsSSL3Ciphers', None), +@@ -518,12 +530,12 @@ def test_ticket47838_run_9(topology): + + log.info("Enabled ciphers: %d" % ecount) + log.info("Disabled ciphers: %d" % dcount) +- assert ecount == 12 ++ assert ecount == 23 + assert dcount == 0 + weak = os.popen('egrep "SSL alert:" %s | egrep \": enabled\" | egrep "WEAK CIPHER" | wc -l' % topology.standalone.errlog) + wcount = int(weak.readline().rstrip()) + log.info("Weak ciphers in the default setting: %d" % wcount) +- assert wcount == 0 ++ assert wcount == 11 + + def test_ticket47838_run_10(topology): + """ +@@ -535,8 +547,10 @@ def test_ticket47838_run_10(topology): + -SSL_CK_RC4_128_WITH_MD5,-SSL_CK_RC4_128_EXPORT40_WITH_MD5, + -SSL_CK_RC2_128_CBC_WITH_MD5,-SSL_CK_RC2_128_CBC_EXPORT40_WITH_MD5, + -SSL_CK_DES_64_CBC_WITH_MD5,-SSL_CK_DES_192_EDE3_CBC_WITH_MD5 ++ allowWeakCipher: on ++ nsslapd-errorlog-level: 0 + """ +- _header(topology, 'Test Case 11 - Check nssSSL3Chiphers: long list using the NSS Cipher Suite name') ++ _header(topology, 'Test Case 11 - Check nssSSL3Chiphers: long list using the NSS Cipher Suite name with allowWeakCipher on') + + topology.standalone.simple_bind_s(DN_DM, PASSWORD) + topology.standalone.modify_s(ENCRYPTION_DN, [(ldap.MOD_REPLACE, 'nsSSL3Ciphers', +-- +1.9.3 + diff --git a/SOURCES/0013-Coverity-fix-11952.patch b/SOURCES/0013-Coverity-fix-11952.patch deleted file mode 100644 index 6f12e9c..0000000 --- a/SOURCES/0013-Coverity-fix-11952.patch +++ /dev/null @@ -1,27 +0,0 @@ -From 60b07146e7629bc9fc6554893fd9611cacb2b496 Mon Sep 17 00:00:00 2001 -From: Mark Reynolds -Date: Mon, 16 Sep 2013 09:48:05 -0400 -Subject: [PATCH 13/28] Coverity fix - 11952 - -Fix resource leak in linked-attributes fixup task -(cherry picked from commit e92d2165463afe7a7606af6d13532642fa3462c1) -(cherry picked from commit 682920001822c14b45c08e2c668615762ab02c3d) ---- - ldap/servers/plugins/linkedattrs/fixup_task.c | 1 + - 1 files changed, 1 insertions(+), 0 deletions(-) - -diff --git a/ldap/servers/plugins/linkedattrs/fixup_task.c b/ldap/servers/plugins/linkedattrs/fixup_task.c -index 537544d..ff6dd82 100644 ---- a/ldap/servers/plugins/linkedattrs/fixup_task.c -+++ b/ldap/servers/plugins/linkedattrs/fixup_task.c -@@ -236,6 +236,7 @@ linked_attrs_fixup_links(struct configEntry *config) - if (plugin_is_betxn) { - Slapi_DN *fixup_dn = slapi_sdn_new_dn_byref(config->scope); - Slapi_Backend *be = slapi_be_select(fixup_dn); -+ slapi_sdn_free(&fixup_dn); - - if (be) { - fixup_pb = slapi_pblock_new(); --- -1.7.1 - diff --git a/SOURCES/0013-Ticket-47880-provide-enabled-ciphers-as-search-resul.patch b/SOURCES/0013-Ticket-47880-provide-enabled-ciphers-as-search-resul.patch new file mode 100644 index 0000000..4254032 --- /dev/null +++ b/SOURCES/0013-Ticket-47880-provide-enabled-ciphers-as-search-resul.patch @@ -0,0 +1,137 @@ +From 82cf90789bd34622e2ae7b4584ff75214d1dea47 Mon Sep 17 00:00:00 2001 +From: Noriko Hosoi +Date: Thu, 25 Sep 2014 13:34:00 -0700 +Subject: [PATCH 13/14] Ticket #47880 - provide enabled ciphers as search + result + +Description: Implemented getEnabledCiphers, with which + ldapsearch -b "cn=encryption,cn=config" nsSSLEnabledCiphers +returns enabled cipher list. Example of returned enabled cipher + dn: cn=encryption,cn=config + nsSSLEnabledCiphers: TLS_RSA_WITH_RC4_128_MD5::RC4::MD5::128 + nsSSLEnabledCiphers: SSL_CK_DES_192_EDE3_CBC_WITH_MD5::3DES::MD5::192 + +https://fedorahosted.org/389/ticket/47880 + +Reviewed by mreynolds@redhat.com (Thank you, Mark!) + +(cherry picked from commit c675243e018a89291760161998944c04ea04b12f) +(cherry picked from commit 8de80533cbfdb22166f5595839307a6a6db5a636) +--- + ldap/servers/slapd/fedse.c | 14 +++++++++++++- + ldap/servers/slapd/ssl.c | 42 +++++++++++++++++++++++++++++++++++++++++- + 2 files changed, 54 insertions(+), 2 deletions(-) + +diff --git a/ldap/servers/slapd/fedse.c b/ldap/servers/slapd/fedse.c +index 1ffa08d..1f455e5 100644 +--- a/ldap/servers/slapd/fedse.c ++++ b/ldap/servers/slapd/fedse.c +@@ -76,6 +76,7 @@ + #endif /* _WIN32 */ + + extern char ** getSupportedCiphers(); ++extern char ** getEnabledCiphers(); + + /* Note: These DNs are no need to be normalized */ + static const char *internal_entries[] = +@@ -1695,11 +1696,12 @@ search_encryption( Slapi_PBlock *pb, Slapi_Entry *entry, Slapi_Entry *entryAfter + struct berval *vals[2]; + struct berval val; + char ** cipherList = getSupportedCiphers(); /*Get the string array of supported ciphers here */ ++ char ** enabledCipherList = getEnabledCiphers(); /*Get the string array of enabled ciphers here */ + vals[0] = &val; + vals[1] = NULL; + + attrlist_delete ( &entry->e_attrs, "nsSSLSupportedCiphers"); +- while (*cipherList) /* iterarate thru each of them and add to the attr value */ ++ while (cipherList && *cipherList) /* iterarate thru each of them and add to the attr value */ + { + char *cipher = *cipherList; + val.bv_val = (char* ) cipher; +@@ -1708,6 +1710,16 @@ search_encryption( Slapi_PBlock *pb, Slapi_Entry *entry, Slapi_Entry *entryAfter + cipherList++; + } + ++ attrlist_delete ( &entry->e_attrs, "nsSSLEnabledCiphers"); ++ while (enabledCipherList && *enabledCipherList) /* iterarate thru each of them and add to the attr value */ ++ { ++ char *cipher = *enabledCipherList; ++ val.bv_val = (char* ) cipher; ++ val.bv_len = strlen ( val.bv_val ); ++ attrlist_merge ( &entry->e_attrs, "nsSSLEnabledCiphers", vals); ++ enabledCipherList++; ++ } ++ + return SLAPI_DSE_CALLBACK_OK; + } + +diff --git a/ldap/servers/slapd/ssl.c b/ldap/servers/slapd/ssl.c +index 28ff475..5f9916b 100644 +--- a/ldap/servers/slapd/ssl.c ++++ b/ldap/servers/slapd/ssl.c +@@ -157,6 +157,7 @@ static char * configDN = "cn=encryption,cn=config"; + #define CIPHER_IS_WEAK 0x4 + #define CIPHER_IS_DEPRECATED 0x8 + static char **cipher_names = NULL; ++static char **enabled_cipher_names = NULL; + typedef struct { + char *name; + int num; +@@ -265,7 +266,8 @@ slapd_SSL_warn(char *fmt, ...) + va_end(args); + } + +-char ** getSupportedCiphers() ++char ** ++getSupportedCiphers() + { + SSLCipherSuiteInfo info; + char *sep = "::"; +@@ -294,6 +296,44 @@ char ** getSupportedCiphers() + return cipher_names; + } + ++char ** ++getEnabledCiphers() ++{ ++ SSLCipherSuiteInfo info; ++ char *sep = "::"; ++ int number_of_ciphers = 0; ++ int x; ++ int idx = 0; ++ PRBool enabled; ++ ++ /* We have to wait until the SSL initialization is done. */ ++ if (!slapd_ssl_listener_is_initialized()) { ++ return NULL; ++ } ++ if ((enabled_cipher_names == NULL) && _conf_ciphers) { ++ for (x = 0; _conf_ciphers[x].name; x++) { ++ SSL_CipherPrefGetDefault(_conf_ciphers[x].num, &enabled); ++ if (enabled) { ++ number_of_ciphers++; ++ } ++ } ++ enabled_cipher_names = (char **)slapi_ch_calloc((number_of_ciphers + 1), sizeof(char *)); ++ for (x = 0; _conf_ciphers[x].name; x++) { ++ SSL_CipherPrefGetDefault(_conf_ciphers[x].num, &enabled); ++ if (enabled) { ++ SSL_GetCipherSuiteInfo((PRUint16)_conf_ciphers[x].num,&info,sizeof(info)); ++ enabled_cipher_names[idx++] = PR_smprintf("%s%s%s%s%s%s%d", ++ _conf_ciphers[x].name,sep, ++ info.symCipherName,sep, ++ info.macAlgorithmName,sep, ++ info.symKeyBits); ++ } ++ } ++ } ++ ++ return enabled_cipher_names; ++} ++ + static PRBool + cipher_check_fips(int idx, char ***suplist, char ***unsuplist) + { +-- +1.9.3 + diff --git a/SOURCES/0014-Ticket-47509-CLEANALLRUV-doesnt-run-across-all-repli.patch b/SOURCES/0014-Ticket-47509-CLEANALLRUV-doesnt-run-across-all-repli.patch deleted file mode 100644 index 5256f85..0000000 --- a/SOURCES/0014-Ticket-47509-CLEANALLRUV-doesnt-run-across-all-repli.patch +++ /dev/null @@ -1,606 +0,0 @@ -From fedc973133652f22888e7ae26d2d9c34a24fe0a6 Mon Sep 17 00:00:00 2001 -From: Mark Reynolds -Date: Tue, 17 Sep 2013 10:53:12 -0400 -Subject: [PATCH 14/28] Ticket 47509 - CLEANALLRUV doesnt run across all replicas - -Bug Description: If one of the replicas in the environment is older and does not support - cleanallruv, then this would cause the cleanallruv task to never complete. - -Fix Description: Several issues are addressed with this fix: - - - Corrected error handling of replicas that do not support cleanallruv(prevent task hanging) - - - Created helper function to get local maxcsn: replica_cleanallruv_get_local_maxcsn(). - This code was taken from the extended op "multimaster_extop_cleanruv_get_maxcsn". - - - Improved replica_cleanallruv_find_maxcsn() to also include the local maxcsn, and not just the remote replicas. - - - Improved abort task processing. Abort task now waits for the cleanallruv task to be aborted before continuing. - - - Improved task configuration cleanup. Removed places where the config attribute value was manually created. - Now we search for the exact value to delete. - -https://fedorahosted.org/389/ticket/47509 - -Reviewed by: richm(Thanks!!) -(cherry picked from commit 26253234c7b1c69286d8cde8f5e000bae946b6a5) -(cherry picked from commit b80706245e0a04e34d2c532ea4acf758886e3037) ---- - ldap/servers/plugins/replication/repl5.h | 1 + - .../plugins/replication/repl5_replica_config.c | 314 ++++++++++++-------- - ldap/servers/plugins/replication/repl_extop.c | 53 +---- - 3 files changed, 188 insertions(+), 180 deletions(-) - -diff --git a/ldap/servers/plugins/replication/repl5.h b/ldap/servers/plugins/replication/repl5.h -index 6752ac8..5bec1c7 100644 ---- a/ldap/servers/plugins/replication/repl5.h -+++ b/ldap/servers/plugins/replication/repl5.h -@@ -656,6 +656,7 @@ void delete_aborted_rid(Replica *replica, ReplicaId rid, char *repl_root, int sk - int is_pre_cleaned_rid(ReplicaId rid); - void set_cleaned_rid(ReplicaId rid); - void cleanruv_log(Slapi_Task *task, char *task_type, char *fmt, ...); -+char * replica_cleanallruv_get_local_maxcsn(ReplicaId rid, char *base_dn); - - #define CLEANRIDSIZ 4 /* maximum number for concurrent CLEANALLRUV tasks */ - -diff --git a/ldap/servers/plugins/replication/repl5_replica_config.c b/ldap/servers/plugins/replication/repl5_replica_config.c -index 79ac5b0..fb0b746 100644 ---- a/ldap/servers/plugins/replication/repl5_replica_config.c -+++ b/ldap/servers/plugins/replication/repl5_replica_config.c -@@ -1834,7 +1834,7 @@ replica_cleanallruv_is_finished(Repl_Agmt *agmt, char *filter, Slapi_Task *task) - int rc = -1; - - if((conn = conn_new(agmt)) == NULL){ -- return -1; -+ return rc; - } - if(conn_connect(conn) == CONN_OPERATION_SUCCESS){ - payload = create_cleanruv_payload(filter); -@@ -1848,7 +1848,10 @@ replica_cleanallruv_is_finished(Repl_Agmt *agmt, char *filter, Slapi_Task *task) - char *response = NULL; - - decode_cleanruv_payload(retsdata, &response); -- if(response && strcmp(response,CLEANRUV_FINISHED) == 0){ -+ if(response == NULL){ -+ /* this replica does not support cleanallruv */ -+ rc = 0; -+ } else if(strcmp(response,CLEANRUV_FINISHED) == 0){ - /* finished cleaning */ - rc = 0; - } -@@ -1858,8 +1861,6 @@ replica_cleanallruv_is_finished(Repl_Agmt *agmt, char *filter, Slapi_Task *task) - slapi_ch_free_string(&retoid); - } - } -- } else { -- rc = -1; - } - conn_delete_internal_ext(conn); - if(payload) -@@ -2114,16 +2115,16 @@ replica_send_cleanruv_task(Repl_Agmt *agmt, cleanruv_data *clean_data) - val.bv_val = data; - mods[0] = &mod; - mods[1] = NULL; -- repl_dn = slapi_create_dn_string("cn=replica,cn=%s,cn=mapping tree,cn=config", slapi_sdn_get_dn(sdn)); -+ repl_dn = slapi_create_dn_string("cn=replica,cn=\"%s\",cn=mapping tree,cn=config", slapi_sdn_get_dn(sdn)); - /* - * Add task to remote replica - */ - rc = ldap_modify_ext_s( ld, repl_dn, mods, NULL, NULL); - - if(rc != LDAP_SUCCESS){ -- cleanruv_log(clean_data->task, CLEANALLRUV_ID, "Failed to add CLEANRUV task replica " -+ cleanruv_log(clean_data->task, CLEANALLRUV_ID, "Failed to add CLEANRUV task (%s) to replica " - "(%s). You will need to manually run the CLEANRUV task on this replica (%s) error (%d)", -- agmt_get_long_name(agmt), agmt_get_hostname(agmt), rc); -+ repl_dn, agmt_get_long_name(agmt), agmt_get_hostname(agmt), rc); - } - slapi_ch_free_string(&repl_dn); - slapi_sdn_free(&sdn); -@@ -2349,7 +2350,6 @@ delete_aborted_rid(Replica *r, ReplicaId rid, char *repl_root, int skip){ - } else { - /* only remove the config, leave the in-memory rid */ - dn = replica_get_dn(r); -- pb = slapi_pblock_new(); - data = PR_smprintf("%d:%s", (int)rid, repl_root); - - mod.mod_op = LDAP_MOD_DELETE|LDAP_MOD_BVALUES; -@@ -2362,6 +2362,7 @@ delete_aborted_rid(Replica *r, ReplicaId rid, char *repl_root, int skip){ - mods[0] = &mod; - mods[1] = NULL; - -+ pb = slapi_pblock_new(); - slapi_modify_internal_set_pb(pb, dn, mods, NULL, NULL, repl_get_plugin_identity (PLUGIN_MULTIMASTER_REPLICATION), 0); - slapi_modify_internal_pb (pb); - slapi_pblock_get(pb, SLAPI_PLUGIN_INTOP_RESULT, &rc); -@@ -2381,40 +2382,29 @@ delete_aborted_rid(Replica *r, ReplicaId rid, char *repl_root, int skip){ - static void - delete_cleaned_rid_config(cleanruv_data *clean_data) - { -- Slapi_PBlock *pb; -+ Slapi_PBlock *pb, *modpb; - Slapi_Entry **entries = NULL; - LDAPMod *mods[2]; - LDAPMod mod; -- struct berval *vals[2]; -- struct berval val; -- char data[CSN_STRSIZE + 15]; -- char *csnstr = NULL; -+ struct berval *vals[5]= {0, 0, 0, 0, 0}; /* maximum of 4 tasks */ -+ struct berval val[5]; - char *iter = NULL; -- char *dn; -- int found = 0, i; -- int rc, ret, rid; -+ char *dn = NULL; -+ int i, ii; -+ int rc = -1, ret, rid; - - if(clean_data == NULL){ -- slapi_log_error(SLAPI_LOG_FATAL, repl_plugin_name, "delete_cleaned_rid_config: cleanruv data is NULL, " -- "failed to clean the config.\n"); -+ cleanruv_log(NULL, CLEANALLRUV_ID, "delete_cleaned_rid_config: cleanruv data is NULL, " -+ "failed to clean the config."); - return; - } - /* -- * If there is no maxcsn, set the proper csnstr -- */ -- csnstr = csn_as_string(clean_data->maxcsn, PR_FALSE, csnstr); -- if ((csnstr == NULL) || (csn_get_replicaid(clean_data->maxcsn) == 0)) { -- slapi_ch_free_string(&csnstr); /* no problem to pass NULL */ -- csnstr = slapi_ch_strdup("00000000000000000000"); -- } -- /* - * Search the config for the exact attribute value to delete - */ - pb = slapi_pblock_new(); - if(clean_data->replica){ - dn = replica_get_dn(clean_data->replica); - } else { -- rc = -1; - goto bail; - } - -@@ -2424,72 +2414,81 @@ delete_cleaned_rid_config(cleanruv_data *clean_data) - slapi_search_internal_pb(pb); - slapi_pblock_get(pb, SLAPI_PLUGIN_INTOP_RESULT, &ret); - if (ret != LDAP_SUCCESS){ -- /* -- * Search failed, manually build the attr value -- */ -- val.bv_len = PR_snprintf(data, sizeof(data), "%d:%s:%s", -- (int)clean_data->rid, csnstr, clean_data->force); -- slapi_pblock_destroy(pb); -+ cleanruv_log(clean_data->task, CLEANALLRUV_ID,"delete_cleaned_rid_config: internal search failed(%d).",ret); -+ goto bail; - } else { - slapi_pblock_get(pb, SLAPI_PLUGIN_INTOP_SEARCH_ENTRIES, &entries); - if (entries == NULL || entries[0] == NULL){ - /* -- * Entry not found, manually build the attr value -+ * No matching entries! - */ -- val.bv_len = PR_snprintf(data, sizeof(data), "%d:%s:%s", -- (int)clean_data->rid, csnstr, clean_data->force); -+ cleanruv_log(clean_data->task, CLEANALLRUV_ID,"delete_cleaned_rid_config: failed to find any " -+ "entries with nsds5ReplicaCleanRUV under (%s)", dn); -+ goto bail; - } else { -- char **attr_val = slapi_entry_attr_get_charray(entries[0], "nsds5ReplicaCleanRUV"); -- -- for (i = 0; attr_val && attr_val[i] && !found; i++){ -- /* make a copy to retain the full value after toking */ -- char *aval = slapi_ch_strdup(attr_val[i]); -- -- rid = atoi(ldap_utf8strtok_r(attr_val[i], ":", &iter)); -- if(rid == clean_data->rid){ -- /* found it */ -- found = 1; -- val.bv_len = PR_snprintf(data, sizeof(data), "%s", aval); -+ /* -+ * Clean all the matching entries -+ */ -+ for(i = 0; entries[i] != NULL;i++){ -+ char **attr_val = slapi_entry_attr_get_charray(entries[i], type_replicaCleanRUV); -+ char *edn = slapi_entry_get_dn(entries[i]); -+ int count = 0; -+ -+ for (ii = 0; attr_val && attr_val[ii] && i < 5; ii++){ -+ /* make a copy to retain the full value after toking */ -+ char *aval = slapi_ch_strdup(attr_val[ii]); -+ -+ rid = atoi(ldap_utf8strtok_r(attr_val[ii], ":", &iter)); -+ if(rid == clean_data->rid){ -+ val[count].bv_len = strlen(aval); -+ val[count].bv_val = aval; -+ vals[count] = &val[count]; -+ count++; -+ } else { -+ slapi_ch_free_string(&aval); -+ } - } -- slapi_ch_free_string(&aval); -- } -- if(!found){ -+ slapi_ch_array_free(attr_val); -+ - /* -- * No match, manually build the attr value -+ * Now delete the attribute - */ -- val.bv_len = PR_snprintf(data, sizeof(data), "%d:%s:%s", -- (int)clean_data->rid, csnstr, clean_data->force); -+ vals[5] = NULL; -+ mod.mod_op = LDAP_MOD_DELETE|LDAP_MOD_BVALUES; -+ mod.mod_type = (char *)type_replicaCleanRUV; -+ mod.mod_bvalues = vals; -+ mods[0] = &mod; -+ mods[1] = NULL; -+ -+ modpb = slapi_pblock_new(); -+ slapi_modify_internal_set_pb(modpb, edn, mods, NULL, NULL, -+ repl_get_plugin_identity (PLUGIN_MULTIMASTER_REPLICATION), 0); -+ slapi_modify_internal_pb (modpb); -+ slapi_pblock_get(modpb, SLAPI_PLUGIN_INTOP_RESULT, &rc); -+ slapi_pblock_destroy(modpb); -+ -+ /* free the attr vals */ -+ for (ii = 0; ii < count; ii++){ -+ slapi_ch_free_string(&val[ii].bv_val); -+ } -+ -+ if (rc != LDAP_SUCCESS && rc != LDAP_NO_SUCH_OBJECT){ -+ cleanruv_log(clean_data->task, CLEANALLRUV_ID, "delete_cleaned_rid_config: failed to remove task data " -+ "from (%s) error (%d), rid (%d)", edn, rc, clean_data->rid); -+ goto bail; -+ } - } -- slapi_ch_array_free(attr_val); - } -- slapi_free_search_results_internal(pb); -- slapi_pblock_destroy(pb); - } - -- /* -- * Now delete the attribute -- */ -- mod.mod_op = LDAP_MOD_DELETE|LDAP_MOD_BVALUES; -- mod.mod_type = (char *)type_replicaCleanRUV; -- mod.mod_bvalues = vals; -- vals [0] = &val; -- vals [1] = NULL; -- val.bv_val = data; -- mods[0] = &mod; -- mods[1] = NULL; -- pb = slapi_pblock_new(); -- slapi_modify_internal_set_pb(pb, dn, mods, NULL, NULL, repl_get_plugin_identity (PLUGIN_MULTIMASTER_REPLICATION), 0); -- slapi_modify_internal_pb (pb); -- slapi_pblock_get(pb, SLAPI_PLUGIN_INTOP_RESULT, &rc); -- - bail: - if (rc != LDAP_SUCCESS && rc != LDAP_NO_SUCH_OBJECT){ -- slapi_log_error(SLAPI_LOG_FATAL, repl_plugin_name, "CleanAllRUV Task: failed to remove replica config " -- "(%d), rid (%d)\n", rc, clean_data->rid); -+ cleanruv_log(clean_data->task, CLEANALLRUV_ID, "delete_cleaned_rid_config: failed to remove replica config " -+ "(%d), rid (%d)", rc, clean_data->rid); - } -+ slapi_free_search_results_internal(pb); - slapi_pblock_destroy(pb); - slapi_ch_free_string(&dn); -- slapi_ch_free_string(&csnstr); - } - - /* -@@ -2694,6 +2693,7 @@ replica_abort_task_thread(void *arg) - int agmt_not_notified = 1; - int interval = 10; - int release_it = 0; -+ int count = 0, rc = 0; - - cleanruv_log(data->task, ABORT_CLEANALLRUV_ID, "Aborting task for rid(%d)...",data->rid); - -@@ -2772,6 +2772,20 @@ done: - cleanruv_log(data->task, ABORT_CLEANALLRUV_ID,"Abort task failed, will resume the task at the next server startup."); - } else { - /* -+ * Wait for this server to stop its cleanallruv task(which removes the rid from the cleaned list) -+ */ -+ cleanruv_log(data->task, ABORT_CLEANALLRUV_ID, "Waiting for CleanAllRUV task to abort..."); -+ while(is_cleaned_rid(data->rid)){ -+ DS_Sleep(PR_SecondsToInterval(1)); -+ count++; -+ if(count == 60){ /* it should not take this long */ -+ cleanruv_log(data->task, ABORT_CLEANALLRUV_ID, "CleanAllRUV task failed to abort. You might need to " -+ "rerun the task."); -+ rc = -1; -+ break; -+ } -+ } -+ /* - * Clean up the config - */ - delete_aborted_rid(data->replica, data->rid, data->repl_root, 1); /* delete just the config, leave rid in memory */ -@@ -2779,8 +2793,13 @@ done: - check_replicas_are_done_aborting(data); - } - delete_aborted_rid(data->replica, data->rid, data->repl_root, 0); /* remove the in-memory aborted rid */ -- cleanruv_log(data->task, ABORT_CLEANALLRUV_ID, "Successfully aborted task for rid(%d)", data->rid); -+ if(rc == 0){ -+ cleanruv_log(data->task, ABORT_CLEANALLRUV_ID, "Successfully aborted task for rid(%d)", data->rid); -+ } else { -+ cleanruv_log(data->task, ABORT_CLEANALLRUV_ID, "Failed to abort task for rid(%d)",data->rid); -+ } - } -+ - if(data->task){ - slapi_task_finish(data->task, agmt_not_notified); - } -@@ -2858,6 +2877,7 @@ replica_cleanallruv_send_extop(Repl_Agmt *ra, cleanruv_data *clean_data, int che - * add the CLEANRUV task to the replica. - */ - replica_send_cleanruv_task(ra, clean_data); -+ rc = 0; - } - if (NULL != retsdata) - ber_bvfree(retsdata); -@@ -2881,72 +2901,49 @@ replica_cleanallruv_find_maxcsn(Replica *replica, ReplicaId rid, char *basedn) - { - Object *agmt_obj; - Repl_Agmt *agmt; -- char *rid_text; - CSN *maxcsn = NULL, *topcsn = NULL; -- int done = 1, found = 0; -- int interval = 10; -+ char *rid_text = slapi_ch_smprintf("%d", rid); -+ char *csnstr = NULL; - -- rid_text = slapi_ch_smprintf("%d", rid); -+ /* start with the local maxcsn */ -+ csnstr = replica_cleanallruv_get_local_maxcsn(rid, basedn); -+ if(csnstr){ -+ topcsn = csn_new(); -+ csn_init_by_string(topcsn, csnstr); -+ slapi_ch_free_string(&csnstr); -+ } - -- while(done && !is_task_aborted(rid) && !slapi_is_shutting_down()){ -- agmt_obj = agmtlist_get_first_agreement_for_replica (replica); -- if(agmt_obj == NULL){ -- break; -+ agmt_obj = agmtlist_get_first_agreement_for_replica (replica); -+ if(agmt_obj == NULL){ /* no agreements */ -+ goto done; -+ } -+ while (agmt_obj && !slapi_is_shutting_down()){ -+ agmt = (Repl_Agmt*)object_get_data (agmt_obj); -+ if(!agmt_is_enabled(agmt) || get_agmt_agreement_type(agmt) == REPLICA_TYPE_WINDOWS){ -+ agmt_obj = agmtlist_get_next_agreement_for_replica (replica, agmt_obj); -+ continue; - } -- while (agmt_obj && !slapi_is_shutting_down()){ -- agmt = (Repl_Agmt*)object_get_data (agmt_obj); -- if(!agmt_is_enabled(agmt) || get_agmt_agreement_type(agmt) == REPLICA_TYPE_WINDOWS){ -+ if(replica_cleanallruv_get_replica_maxcsn(agmt, rid_text, basedn, &maxcsn) == 0){ -+ if(maxcsn == NULL){ - agmt_obj = agmtlist_get_next_agreement_for_replica (replica, agmt_obj); -- done = 0; - continue; - } -- if(replica_cleanallruv_get_replica_maxcsn(agmt, rid_text, basedn, &maxcsn) == 0){ -- if(maxcsn == NULL){ -- agmt_obj = agmtlist_get_next_agreement_for_replica (replica, agmt_obj); -- continue; -- } -- found = 1; -- if(topcsn == NULL){ -+ if(topcsn == NULL){ -+ topcsn = maxcsn; -+ } else { -+ if(csn_compare(topcsn, maxcsn) < 0){ -+ csn_free(&topcsn); - topcsn = maxcsn; - } else { -- if(csn_compare(topcsn, maxcsn) < 0){ -- csn_free(&topcsn); -- topcsn = maxcsn; -- } else { -- csn_free(&maxcsn); -- } -+ csn_free(&maxcsn); - } -- done = 0; -- } else { -- done = 1; -- break; - } -- agmt_obj = agmtlist_get_next_agreement_for_replica (replica, agmt_obj); -- } /* agmt while */ -- if(done == 0 || is_task_aborted(rid) ){ -- break; -- } -- if(!found){ -- /* we could not find any maxcsn's - already cleaned? */ -- return NULL; -- } -- slapi_log_error(SLAPI_LOG_FATAL, repl_plugin_name, "CleanAllRUV Task: replica_cleanallruv_find_maxcsn: " -- "Not all replicas online, retrying in %d seconds\n", interval); -- PR_Lock( notify_lock ); -- PR_WaitCondVar( notify_cvar, PR_SecondsToInterval(interval) ); -- PR_Unlock( notify_lock ); -- -- if(interval < 14400){ /* 4 hour max */ -- interval = interval * 2; -- } else { -- interval = 14400; - } -+ agmt_obj = agmtlist_get_next_agreement_for_replica (replica, agmt_obj); - } -- slapi_ch_free_string(&rid_text); - -- if(is_task_aborted(rid)){ -- return NULL; -- } -+done: -+ slapi_ch_free_string(&rid_text); - - return topcsn; - } -@@ -3229,3 +3226,64 @@ cleanruv_log(Slapi_Task *task, char *task_type, char *fmt, ...) - va_end(ap4); - } - -+char * -+replica_cleanallruv_get_local_maxcsn(ReplicaId rid, char *base_dn) -+{ -+ Slapi_PBlock *search_pb = NULL; -+ Slapi_Entry **entries = NULL; -+ char **ruv_elements = NULL; -+ char *maxcsn = NULL; -+ char *filter = NULL; -+ char *ridstr = NULL; -+ char *iter = NULL; -+ char *attrs[2]; -+ char *ruv_part = NULL; -+ int part_count = 0; -+ int res, i; -+ -+ /* -+ * Get the maxruv from the database tombstone entry -+ */ -+ filter = "(&(nsuniqueid=ffffffff-ffffffff-ffffffff-ffffffff)(objectclass=nstombstone))"; -+ attrs[0] = "nsds50ruv"; -+ attrs[1] = NULL; -+ ridstr = slapi_ch_smprintf("{replica %d ldap", rid); -+ -+ search_pb = slapi_pblock_new(); -+ slapi_search_internal_set_pb(search_pb, base_dn, LDAP_SCOPE_SUBTREE, filter, attrs, 0, NULL, NULL, repl_get_plugin_identity(PLUGIN_MULTIMASTER_REPLICATION), 0); -+ slapi_search_internal_pb (search_pb); -+ slapi_pblock_get(search_pb, SLAPI_PLUGIN_INTOP_RESULT, &res); -+ -+ if ( LDAP_SUCCESS == res ) { -+ slapi_pblock_get(search_pb, SLAPI_PLUGIN_INTOP_SEARCH_ENTRIES, &entries); -+ if (NULL == entries || entries[0] == NULL) { -+ /* Hmmm, no tombstone! Error out */ -+ } else { -+ /* find the right ruv element, and find the maxcsn */ -+ ruv_elements = slapi_entry_attr_get_charray(entries[0],attrs[0]); -+ for(i = 0; ruv_elements && ruv_elements[i] ; i++){ -+ if(strstr(ruv_elements[i], ridstr)){ -+ /* get the max csn */ -+ ruv_part = ldap_utf8strtok_r(ruv_elements[i], " ", &iter); -+ for(part_count = 1; ruv_part && part_count < 5; part_count++){ -+ ruv_part = ldap_utf8strtok_r(iter, " ", &iter); -+ } -+ if(part_count == 5 && ruv_part){/* we have the maxcsn */ -+ maxcsn = slapi_ch_strdup(ruv_part); -+ break; -+ } -+ } -+ } -+ slapi_ch_array_free(ruv_elements); -+ } -+ } else { -+ /* internal search failed */ -+ cleanruv_log(NULL, CLEANALLRUV_ID, "replica_cleanallruv_get_local_maxcsn: internal search failed (%d)\n", res); -+ } -+ -+ slapi_free_search_results_internal(search_pb); -+ slapi_pblock_destroy(search_pb); -+ slapi_ch_free_string(&ridstr); -+ -+ return maxcsn; -+} -diff --git a/ldap/servers/plugins/replication/repl_extop.c b/ldap/servers/plugins/replication/repl_extop.c -index f41cc7d..57249a6 100644 ---- a/ldap/servers/plugins/replication/repl_extop.c -+++ b/ldap/servers/plugins/replication/repl_extop.c -@@ -1784,26 +1784,16 @@ free_and_return: - int - multimaster_extop_cleanruv_get_maxcsn(Slapi_PBlock *pb) - { -- Slapi_PBlock *search_pb = NULL; -- Slapi_Entry **entries = NULL; - struct berval *resp_bval = NULL; - struct berval *extop_payload; - BerElement *resp_bere = NULL; -- char **ruv_elements = NULL; - char *extop_oid = NULL; -- char *ruv_part = NULL; - char *base_dn = NULL; - char *payload = NULL; - char *maxcsn = NULL; -- char *filter = NULL; -- char *ridstr = NULL; - char *iter = NULL; -- char *attrs[2]; -- int part_count = 0; - int rid = 0; -- int res = 0; - int rc = LDAP_OPERATIONS_ERROR; -- int i = 0; - - slapi_pblock_get(pb, SLAPI_EXT_OP_REQ_OID, &extop_oid); - slapi_pblock_get(pb, SLAPI_EXT_OP_REQ_VALUE, &extop_payload); -@@ -1822,45 +1812,7 @@ multimaster_extop_cleanruv_get_maxcsn(Slapi_PBlock *pb) - } - rid = atoi(ldap_utf8strtok_r(payload, ":", &iter)); - base_dn = ldap_utf8strtok_r(iter, ":", &iter); -- /* -- * Get the maxruv from the database tombstone entry -- */ -- filter = "(&(nsuniqueid=ffffffff-ffffffff-ffffffff-ffffffff)(objectclass=nstombstone))"; -- attrs[0] = "nsds50ruv"; -- attrs[1] = NULL; -- ridstr = slapi_ch_smprintf("{replica %d ldap", rid); -- -- search_pb = slapi_pblock_new(); -- slapi_search_internal_set_pb(search_pb, base_dn, LDAP_SCOPE_SUBTREE, filter, attrs, 0, NULL, NULL, repl_get_plugin_identity(PLUGIN_MULTIMASTER_REPLICATION), 0); -- slapi_search_internal_pb (search_pb); -- slapi_pblock_get(search_pb, SLAPI_PLUGIN_INTOP_RESULT, &res); -- -- if ( LDAP_SUCCESS == res ) { -- slapi_pblock_get(search_pb, SLAPI_PLUGIN_INTOP_SEARCH_ENTRIES, &entries); -- if (NULL == entries || entries[0] == NULL) { -- /* Hmmm, no tombstpne! Error out */ -- } else { -- /* find the right ruv element, and find the maxcsn */ -- ruv_elements = slapi_entry_attr_get_charray(entries[0],attrs[0]); -- for(i = 0; ruv_elements && ruv_elements[i] ; i++){ -- if(strstr(ruv_elements[i], ridstr)){ -- /* get the max csn */ -- ruv_part = ldap_utf8strtok_r(ruv_elements[i], " ", &iter); -- for(part_count = 1; ruv_part && part_count < 5; part_count++){ -- ruv_part = ldap_utf8strtok_r(iter, " ", &iter); -- } -- if(part_count == 5 && ruv_part){/* we have the maxcsn */ -- maxcsn = slapi_ch_strdup(ruv_part); -- break; -- } -- } -- } -- slapi_ch_array_free(ruv_elements); -- } -- } else { -- /* internal search failed */ -- slapi_log_error(SLAPI_LOG_FATAL, repl_plugin_name, "CleanAllRUV Get MaxCSN Task: internal search failed (%d)\n", res); -- } -+ maxcsn = replica_cleanallruv_get_local_maxcsn(rid, base_dn); - if(maxcsn == NULL){ - maxcsn = slapi_ch_strdup(CLEANRUV_NO_MAXCSN); - } -@@ -1889,11 +1841,8 @@ multimaster_extop_cleanruv_get_maxcsn(Slapi_PBlock *pb) - } - - free_and_return: -- slapi_free_search_results_internal(search_pb); -- slapi_pblock_destroy(search_pb); - slapi_ch_free_string(&payload); - slapi_ch_free_string(&maxcsn); -- slapi_ch_free_string(&ridstr); - - return rc; - } --- -1.7.1 - diff --git a/SOURCES/0014-Ticket-47880-CI-test-added-test-cases-for-ticket-478.patch b/SOURCES/0014-Ticket-47880-CI-test-added-test-cases-for-ticket-478.patch new file mode 100644 index 0000000..fbdd6b2 --- /dev/null +++ b/SOURCES/0014-Ticket-47880-CI-test-added-test-cases-for-ticket-478.patch @@ -0,0 +1,166 @@ +From 85e5ebbddf2a9b39376b7bc3b1529d6f170b907e Mon Sep 17 00:00:00 2001 +From: Noriko Hosoi +Date: Thu, 25 Sep 2014 14:43:16 -0700 +Subject: [PATCH 14/14] Ticket 47880 - CI test: added test cases for ticket + 47880 + +Description: Ticket #47880 - provide enabled ciphers as search result + +https://fedorahosted.org/389/ticket/47880 +(cherry picked from commit ce7378990855abe1a5b52cd4fbe78ffc33365dcb) +(cherry picked from commit b922e5d8387535a8bd71bbcea821ba08608d27c2) +--- + dirsrvtests/tickets/ticket47838_test.py | 46 ++++++++++++++++++++++++++++++++- + 1 file changed, 45 insertions(+), 1 deletion(-) + +diff --git a/dirsrvtests/tickets/ticket47838_test.py b/dirsrvtests/tickets/ticket47838_test.py +index 1575376..c98c36e 100644 +--- a/dirsrvtests/tickets/ticket47838_test.py ++++ b/dirsrvtests/tickets/ticket47838_test.py +@@ -216,6 +216,24 @@ def test_ticket47838_init(topology): + 'nsSSLToken': 'internal (software)', + 'nsSSLActivation': 'on'}))) + ++def comp_nsSSLEnableCipherCount(topology, ecount): ++ """ ++ Check nsSSLEnabledCipher count with ecount ++ """ ++ log.info("Checking nsSSLEnabledCiphers...") ++ msgid = topology.standalone.search_ext(ENCRYPTION_DN, ldap.SCOPE_BASE, 'cn=*', ['nsSSLEnabledCiphers']) ++ enabledciphercnt = 0 ++ rtype, rdata, rmsgid = topology.standalone.result2(msgid) ++ topology.standalone.log.info("%d results" % len(rdata)) ++ ++ topology.standalone.log.info("Results:") ++ for dn, attrs in rdata: ++ topology.standalone.log.info("dn: %s" % dn) ++ if attrs.has_key('nsSSLEnabledCiphers'): ++ enabledciphercnt = len(attrs['nsSSLEnabledCiphers']) ++ topology.standalone.log.info("enabledCipherCount: %d" % enabledciphercnt) ++ assert ecount == enabledciphercnt ++ + def test_ticket47838_run_0(topology): + """ + Check nsSSL3Ciphers: +all +@@ -248,6 +266,8 @@ def test_ticket47838_run_0(topology): + log.info("Weak ciphers: %d" % wcount) + assert wcount <= 29 + ++ comp_nsSSLEnableCipherCount(topology, ecount) ++ + def test_ticket47838_run_1(topology): + """ + Check nsSSL3Ciphers: +all +@@ -287,6 +307,8 @@ def test_ticket47838_run_1(topology): + log.info("Weak ciphers: %d" % wcount) + assert wcount <= 29 + ++ comp_nsSSLEnableCipherCount(topology, ecount) ++ + def test_ticket47838_run_2(topology): + """ + Check nsSSL3Ciphers: +rsa_aes_128_sha,+rsa_aes_256_sha +@@ -316,6 +338,8 @@ def test_ticket47838_run_2(topology): + assert ecount == 2 + assert dcount == (plus_all_ecount + plus_all_dcount - ecount) + ++ comp_nsSSLEnableCipherCount(topology, ecount) ++ + def test_ticket47838_run_3(topology): + """ + Check nsSSL3Ciphers: -all +@@ -344,6 +368,8 @@ def test_ticket47838_run_3(topology): + log.info("Disabling SSL message?: %s" % disabledmsg.readline()) + assert disabledmsg != '' + ++ comp_nsSSLEnableCipherCount(topology, ecount) ++ + def test_ticket47838_run_4(topology): + """ + Check no nsSSL3Ciphers +@@ -377,6 +403,8 @@ def test_ticket47838_run_4(topology): + log.info("Weak ciphers in the default setting: %d" % wcount) + assert wcount == 0 + ++ comp_nsSSLEnableCipherCount(topology, ecount) ++ + def test_ticket47838_run_5(topology): + """ + Check nsSSL3Ciphers: default +@@ -410,6 +438,8 @@ def test_ticket47838_run_5(topology): + log.info("Weak ciphers in the default setting: %d" % wcount) + assert wcount == 0 + ++ comp_nsSSLEnableCipherCount(topology, ecount) ++ + def test_ticket47838_run_6(topology): + """ + Check nssSSL3Chiphers: +all,-rsa_rc4_128_md5 +@@ -441,6 +471,8 @@ def test_ticket47838_run_6(topology): + assert ecount == (plus_all_ecount_noweak - 1) + assert dcount == (plus_all_dcount_noweak + 1) + ++ comp_nsSSLEnableCipherCount(topology, ecount) ++ + def test_ticket47838_run_7(topology): + """ + Check nssSSL3Chiphers: -all,+rsa_rc4_128_md5 +@@ -470,6 +502,8 @@ def test_ticket47838_run_7(topology): + assert ecount == 1 + assert dcount == (plus_all_ecount + plus_all_dcount - ecount) + ++ comp_nsSSLEnableCipherCount(topology, ecount) ++ + def test_ticket47838_run_8(topology): + """ + Check nsSSL3Ciphers: default + allowWeakCipher: off +@@ -503,6 +537,8 @@ def test_ticket47838_run_8(topology): + log.info("Weak ciphers in the default setting: %d" % wcount) + assert wcount == 0 + ++ comp_nsSSLEnableCipherCount(topology, ecount) ++ + def test_ticket47838_run_9(topology): + """ + Check no nsSSL3Ciphers +@@ -537,6 +573,8 @@ def test_ticket47838_run_9(topology): + log.info("Weak ciphers in the default setting: %d" % wcount) + assert wcount == 11 + ++ comp_nsSSLEnableCipherCount(topology, ecount) ++ + def test_ticket47838_run_10(topology): + """ + Check nssSSL3Chiphers: -TLS_RSA_WITH_NULL_MD5,+TLS_RSA_WITH_RC4_128_MD5, +@@ -579,6 +617,8 @@ def test_ticket47838_run_10(topology): + + topology.standalone.log.info("ticket47838 was successfully verified."); + ++ comp_nsSSLEnableCipherCount(topology, ecount) ++ + def test_ticket47838_run_11(topology): + """ + Check nssSSL3Chiphers: +fortezza +@@ -603,6 +643,8 @@ def test_ticket47838_run_11(topology): + log.info("Expected error message was not found") + assert False + ++ comp_nsSSLEnableCipherCount(topology, 0) ++ + def test_ticket47838_run_last(topology): + """ + Check nssSSL3Chiphers: all <== invalid value +@@ -627,7 +669,9 @@ def test_ticket47838_run_last(topology): + log.info("Expected error message was not found") + assert False + +- topology.standalone.log.info("ticket47838 was successfully verified."); ++ comp_nsSSLEnableCipherCount(topology, 0) ++ ++ topology.standalone.log.info("ticket47838, 47880, 47908 were successfully verified."); + + def test_ticket47838_final(topology): + topology.standalone.simple_bind_s(DN_DM, PASSWORD) +-- +1.9.3 + diff --git a/SOURCES/0015-Ticket-47509-Cleanallruv-jenkins-error.patch b/SOURCES/0015-Ticket-47509-Cleanallruv-jenkins-error.patch deleted file mode 100644 index fb289fb..0000000 --- a/SOURCES/0015-Ticket-47509-Cleanallruv-jenkins-error.patch +++ /dev/null @@ -1,30 +0,0 @@ -From 6d7e8a82b045ff2184605c61117130c2202c0aa0 Mon Sep 17 00:00:00 2001 -From: Mark Reynolds -Date: Mon, 23 Sep 2013 12:21:15 -0400 -Subject: [PATCH 15/28] Ticket 47509 - Cleanallruv jenkins error - -Fixed invalid array element that was out of bounds. - -https://fedorahosted.org/389/ticket/47509 -(cherry picked from commit 24bec17a925c99fe5a655f983e53fc72a34c69ac) -(cherry picked from commit 023e1889758cdd2b3a215414180e7f1fdfd8aa5f) ---- - .../plugins/replication/repl5_replica_config.c | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) - -diff --git a/ldap/servers/plugins/replication/repl5_replica_config.c b/ldap/servers/plugins/replication/repl5_replica_config.c -index fb0b746..94c23c0 100644 ---- a/ldap/servers/plugins/replication/repl5_replica_config.c -+++ b/ldap/servers/plugins/replication/repl5_replica_config.c -@@ -2453,7 +2453,7 @@ delete_cleaned_rid_config(cleanruv_data *clean_data) - /* - * Now delete the attribute - */ -- vals[5] = NULL; -+ vals[4] = NULL; - mod.mod_op = LDAP_MOD_DELETE|LDAP_MOD_BVALUES; - mod.mod_type = (char *)type_replicaCleanRUV; - mod.mod_bvalues = vals; --- -1.7.1 - diff --git a/SOURCES/0015-Ticket-47892-coverity-defects-found-in-1.3.3.x.patch b/SOURCES/0015-Ticket-47892-coverity-defects-found-in-1.3.3.x.patch new file mode 100644 index 0000000..0542296 --- /dev/null +++ b/SOURCES/0015-Ticket-47892-coverity-defects-found-in-1.3.3.x.patch @@ -0,0 +1,64 @@ +From dd3b06c0c6581bf0c2c3c3f347ab7a84c860a15b Mon Sep 17 00:00:00 2001 +From: Noriko Hosoi +Date: Wed, 1 Oct 2014 14:06:06 -0700 +Subject: [PATCH] Ticket #47892 - coverity defects found in 1.3.3.x + +Description: fixing compiler warnings reported by covscan on 1.3.3.4. +https://fedorahosted.org/389/ticket/47892#comment:8 + +Reviewed by mreynolds@redhat.com (Thank you, Mark!!) + +(cherry picked from commit afc8b06f9e9cc045906d6d6fb64fe5d5f9d7c3d5) +(cherry picked from commit 5353f9fd97518074b77698bf13d95325aeb667d9) +--- + ldap/servers/plugins/acl/acl.c | 10 +++++----- + ldap/servers/plugins/acl/aclparse.c | 2 +- + 2 files changed, 6 insertions(+), 6 deletions(-) + +diff --git a/ldap/servers/plugins/acl/acl.c b/ldap/servers/plugins/acl/acl.c +index f8b854c..fe863c8 100644 +--- a/ldap/servers/plugins/acl/acl.c ++++ b/ldap/servers/plugins/acl/acl.c +@@ -2475,13 +2475,13 @@ acl__resource_match_aci( Acl_PBlock *aclpb, aci_t *aci, int skip_attrEval, int * + int done; + + +- if (aclpb->aclpb_access & SLAPI_ACL_ADD && +- aci->aci_type & ACI_TARGET_ATTR_ADD_FILTERS) { ++ if ((aclpb->aclpb_access & SLAPI_ACL_ADD) && ++ (aci->aci_type & ACI_TARGET_ATTR_ADD_FILTERS)) { + + attrFilterArray = aci->targetAttrAddFilters; + +- } else if (aclpb->aclpb_access & SLAPI_ACL_DELETE && +- aci->aci_type & ACI_TARGET_ATTR_DEL_FILTERS) { ++ } else if ((aclpb->aclpb_access & SLAPI_ACL_DELETE) && ++ (aci->aci_type & ACI_TARGET_ATTR_DEL_FILTERS)) { + + attrFilterArray = aci->targetAttrDelFilters; + +@@ -2490,7 +2490,7 @@ acl__resource_match_aci( Acl_PBlock *aclpb, aci_t *aci, int skip_attrEval, int * + attr_matched = ACL_TRUE; + num_attrs = 0; + +- while (attrFilterArray[num_attrs] && attr_matched) { ++ while (attrFilterArray && attrFilterArray[num_attrs] && attr_matched) { + attrFilter = attrFilterArray[num_attrs]; + + /* +diff --git a/ldap/servers/plugins/acl/aclparse.c b/ldap/servers/plugins/acl/aclparse.c +index ae4f2d5..ea64fa7 100644 +--- a/ldap/servers/plugins/acl/aclparse.c ++++ b/ldap/servers/plugins/acl/aclparse.c +@@ -256,7 +256,7 @@ __aclp__parse_aci(char *str, aci_t *aci_item, char **errbuf) + int targetattrfilterslen = strlen(aci_targetattrfilters); + int target_to_len = strlen(aci_target_to); + int target_from_len = strlen(aci_target_from); +- PRBool is_target_to; ++ PRBool is_target_to = PR_FALSE; + + __acl_strip_leading_space( &str ); + +-- +1.9.3 + diff --git a/SOURCES/0016-Ticket-47492-PassSync-removes-User-must-change-passw.patch b/SOURCES/0016-Ticket-47492-PassSync-removes-User-must-change-passw.patch deleted file mode 100644 index 70c2829..0000000 --- a/SOURCES/0016-Ticket-47492-PassSync-removes-User-must-change-passw.patch +++ /dev/null @@ -1,317 +0,0 @@ -From f1a7002926a9d955a3e19c4fd8ab7438d45e4fdb Mon Sep 17 00:00:00 2001 -From: Noriko Hosoi -Date: Mon, 23 Sep 2013 11:53:38 -0700 -Subject: [PATCH 16/28] Ticket #47492 - PassSync removes User must change password flag on the Windows side - -Bug description: Windows Sync sends password modify even if it is -from PassSync originated on AD. The modify updates the pwdLastSet -attribute value to non-zero value. The value 0 indicates the pass- -word must change at next logon on AD. - -Fix description: Before sending the password modify, check whether -the current pwdLastSet value is 0 or not. If it is 0 (means the -password must change), reset pwdLastSet value to 0 along with the -password modify. This operation replaces the password on AD, but -the password still must change at next logon. - -Note: If "password must change at next logon" on the both DS and AD, -the password needs to be changed by the user on the both servers to -enable it on each. - -https://fedorahosted.org/389/ticket/47492 - -Reviewed by Rich (Thank you!!) -(cherry picked from commit f9d1d9e08225e5885b76cede4da677708892ee7a) -(cherry picked from commit 8d34f77f6d8d3c83dce1f29e6df709df1adef09d) ---- - .../plugins/replication/windows_protocol_util.c | 139 ++++++++++++++------ - 1 files changed, 100 insertions(+), 39 deletions(-) - -diff --git a/ldap/servers/plugins/replication/windows_protocol_util.c b/ldap/servers/plugins/replication/windows_protocol_util.c -index 730d9a6..69db5a0 100644 ---- a/ldap/servers/plugins/replication/windows_protocol_util.c -+++ b/ldap/servers/plugins/replication/windows_protocol_util.c -@@ -70,7 +70,7 @@ static int windows_get_local_entry(const Slapi_DN* local_dn,Slapi_Entry **local_ - static int windows_get_local_entry_by_uniqueid(Private_Repl_Protocol *prp,const char* uniqueid,Slapi_Entry **local_entry, int is_global); - static int windows_get_local_tombstone_by_uniqueid(Private_Repl_Protocol *prp,const char* uniqueid,Slapi_Entry **local_entry); - static int windows_search_local_entry_by_uniqueid(Private_Repl_Protocol *prp, const char *uniqueid, char ** attrs, Slapi_Entry **ret_entry, int tombstone, void * component_identity, int is_global); --static int map_entry_dn_outbound(Slapi_Entry *e, Slapi_DN **dn, Private_Repl_Protocol *prp, int *missing_entry, int want_guid); -+static int map_entry_dn_outbound(Slapi_Entry *e, Slapi_DN **dn, Private_Repl_Protocol *prp, int *missing_entry, int want_guid, Slapi_Entry **remote_entry); - static char* extract_ntuserdomainid_from_entry(Slapi_Entry *e); - static char* extract_container(const Slapi_DN *entry_dn, const Slapi_DN *suffix_dn); - static int windows_get_remote_entry (Private_Repl_Protocol *prp, const Slapi_DN* remote_dn,Slapi_Entry **remote_entry); -@@ -448,7 +448,7 @@ map_dn_values(Private_Repl_Protocol *prp,Slapi_ValueSet *original_values, Slapi_ - is_ours = is_subject_of_agreement_local(local_entry,prp->agmt); - if (is_ours) - { -- map_entry_dn_outbound(local_entry,&remote_dn,prp,&missing_entry, 0 /* don't want GUID form here */); -+ map_entry_dn_outbound(local_entry,&remote_dn,prp,&missing_entry, 0 /* don't want GUID form here */, NULL); - if (remote_dn) - { - if (!missing_entry) -@@ -768,7 +768,10 @@ to_little_endian_double_bytes(UChar *unicode_password, int32_t unicode_password_ - /* this entry had a password, handle it seperately */ - /* http://support.microsoft.com/?kbid=269190 */ - static int --send_password_modify(Slapi_DN *sdn, char *password, Private_Repl_Protocol *prp) -+send_password_modify(Slapi_DN *sdn, -+ char *password, -+ Private_Repl_Protocol *prp, -+ Slapi_Entry *remote_entry) - { - ConnResult pw_return = 0; - -@@ -791,6 +794,35 @@ send_password_modify(Slapi_DN *sdn, char *password, Private_Repl_Protocol *prp) - - } else - { -+ Slapi_Attr *attr = NULL; -+ int force_reset_pw = 0; -+ /* -+ * If AD entry has password must change flag is set, -+ * we keep the flag (pwdLastSet == 0). -+ * msdn.microsoft.com: Windows Dev Centor - Desktop -+ * To force a user to change their password at next logon, -+ * set the pwdLastSet attribute to zero (0). -+ */ -+ if (remote_entry && -+ (0 == slapi_entry_attr_find(remote_entry, "pwdLastSet", &attr)) && -+ attr) { -+ Slapi_Value *v = NULL; -+ int i = 0; -+ for (i = slapi_attr_first_value(attr, &v); -+ v && (i != -1); -+ i = slapi_attr_next_value(attr, i, &v)) { -+ const char *s = slapi_value_get_string(v); -+ if (NULL == s) { -+ continue; -+ } -+ if (0 == strcmp(s, "0")) { -+ slapi_log_error(SLAPI_LOG_REPL, windows_repl_plugin_name, -+ "%s: AD entry %s set \"user must change password at next logon\". ", -+ agmt_get_long_name(prp->agmt), slapi_entry_get_dn(remote_entry)); -+ force_reset_pw = 1; -+ } -+ } -+ } - /* We will attempt to bind to AD with the new password first. We do - * this to avoid playing a password change that originated from AD - * back to AD. If we just played the password change back, then -@@ -803,38 +835,53 @@ send_password_modify(Slapi_DN *sdn, char *password, Private_Repl_Protocol *prp) - quoted_password = PR_smprintf("\"%s\"",password); - if (quoted_password) - { -- LDAPMod *pw_mods[2]; -- LDAPMod pw_mod; -- struct berval bv = {0}; - UChar *unicode_password = NULL; - int32_t unicode_password_length = 0; /* Length in _characters_ */ - int32_t buffer_size = 0; /* Size in _characters_ */ - UErrorCode error = U_ZERO_ERROR; -- struct berval *bvals[2]; - /* Need to UNICODE encode the password here */ - /* It's one of those 'ask me first and I will tell you the buffer size' functions */ - u_strFromUTF8(NULL, 0, &unicode_password_length, quoted_password, strlen(quoted_password), &error); - buffer_size = unicode_password_length; - unicode_password = (UChar *)slapi_ch_malloc(unicode_password_length * sizeof(UChar)); - if (unicode_password) { -+ LDAPMod *pw_mods[3]; -+ LDAPMod pw_mod; -+ LDAPMod reset_pw_mod; -+ struct berval bv = {0}; -+ struct berval *bvals[2]; -+ struct berval reset_bv = {0}; -+ struct berval *reset_bvals[2]; - error = U_ZERO_ERROR; - u_strFromUTF8(unicode_password, buffer_size, &unicode_password_length, quoted_password, strlen(quoted_password), &error); -- -+ - /* As an extra special twist, we need to send the unicode in little-endian order for AD to be happy */ - to_little_endian_double_bytes(unicode_password, unicode_password_length); -- -+ - bv.bv_len = unicode_password_length * sizeof(UChar); - bv.bv_val = (char*)unicode_password; -- -+ - bvals[0] = &bv; - bvals[1] = NULL; - - pw_mod.mod_type = "UnicodePwd"; - pw_mod.mod_op = LDAP_MOD_REPLACE | LDAP_MOD_BVALUES; - pw_mod.mod_bvalues = bvals; -- -+ - pw_mods[0] = &pw_mod; -- pw_mods[1] = NULL; -+ if (force_reset_pw) { -+ reset_bv.bv_len = 1; -+ reset_bv.bv_val = "0"; -+ reset_bvals[0] = &reset_bv; -+ reset_bvals[1] = NULL; -+ reset_pw_mod.mod_type = "pwdLastSet"; -+ reset_pw_mod.mod_op = LDAP_MOD_REPLACE | LDAP_MOD_BVALUES; -+ reset_pw_mod.mod_bvalues = reset_bvals; -+ pw_mods[1] = &reset_pw_mod; -+ pw_mods[2] = NULL; -+ } else { -+ pw_mods[1] = NULL; -+ } - - pw_return = windows_conn_send_modify(prp->conn, slapi_sdn_get_dn(sdn), pw_mods, NULL, NULL ); - -@@ -1414,6 +1461,7 @@ windows_replay_update(Private_Repl_Protocol *prp, slapi_operation_parameters *op - Slapi_DN *remote_dn = NULL; - Slapi_DN *local_dn = NULL; - Slapi_Entry *local_entry = NULL; -+ Slapi_Entry *remote_entry = NULL; - - LDAPDebug( LDAP_DEBUG_TRACE, "=> windows_replay_update\n", 0, 0, 0 ); - -@@ -1488,7 +1536,7 @@ windows_replay_update(Private_Repl_Protocol *prp, slapi_operation_parameters *op - if (is_ours && (is_user || is_group) ) { - int missing_entry = 0; - /* Make the entry's DN */ -- rc = map_entry_dn_outbound(local_entry,&remote_dn,prp,&missing_entry, 1); -+ rc = map_entry_dn_outbound(local_entry,&remote_dn,prp,&missing_entry, 1, &remote_entry); - if (rc || NULL == remote_dn) - { - slapi_log_error(SLAPI_LOG_FATAL, repl_plugin_name, -@@ -1676,13 +1724,17 @@ windows_replay_update(Private_Repl_Protocol *prp, slapi_operation_parameters *op - * seem to work over plain LDAP. */ - if (is_guid_dn(remote_dn)) { - Slapi_DN *remote_dn_norm = NULL; -- int norm_missing = 0; - -- map_entry_dn_outbound(local_entry,&remote_dn_norm,prp,&norm_missing, 0); -- return_value = send_password_modify(remote_dn_norm, password, prp); -+ if (remote_entry) { -+ remote_dn_norm = slapi_sdn_dup(slapi_entry_get_sdn_const(remote_entry)); -+ } else { -+ int norm_missing = 0; -+ map_entry_dn_outbound(local_entry,&remote_dn_norm,prp,&norm_missing, 0, &remote_entry); -+ } -+ return_value = send_password_modify(remote_dn_norm, password, prp, remote_entry); - slapi_sdn_free(&remote_dn_norm); - } else { -- return_value = send_password_modify(remote_dn, password, prp); -+ return_value = send_password_modify(remote_dn, password, prp, remote_entry); - } - - if (return_value) -@@ -1710,18 +1762,10 @@ windows_replay_update(Private_Repl_Protocol *prp, slapi_operation_parameters *op - /* We ignore operations that target entries outside of our sync'ed subtree, or which are not Windows users or groups */ - } - error: -- if (local_entry) -- { -- slapi_entry_free(local_entry); -- } -- if (local_dn) -- { -- slapi_sdn_free (&local_dn); -- } -- if (remote_dn) -- { -- slapi_sdn_free(&remote_dn); -- } -+ slapi_entry_free(remote_entry); -+ slapi_entry_free(local_entry); -+ slapi_sdn_free (&local_dn); -+ slapi_sdn_free(&remote_dn); - slapi_ch_free_string(&password); - return return_value; - } -@@ -3447,13 +3491,27 @@ extract_container(const Slapi_DN *entry_dn, const Slapi_DN *suffix_dn) - - /* Given a non-tombstone entry, return the DN of its peer in AD (whether present or not) */ - static int --map_entry_dn_outbound(Slapi_Entry *e, Slapi_DN **dn, Private_Repl_Protocol *prp, int *missing_entry, int guid_form) -+map_entry_dn_outbound(Slapi_Entry *e, -+ Slapi_DN **dn, -+ Private_Repl_Protocol *prp, -+ int *missing_entry, -+ int guid_form, -+ Slapi_Entry **remote_entry_to_return) - { - int retval = 0; - char *guid = NULL; - Slapi_DN *new_dn = NULL; - int is_nt4 = windows_private_get_isnt4(prp->agmt); -- const char *suffix = slapi_sdn_get_dn(windows_private_get_windows_subtree(prp->agmt)); -+ const char *suffix = NULL; -+ Slapi_Entry *remote_entry = NULL; -+ -+ if (NULL == e) { -+ slapi_log_error(SLAPI_LOG_REPL, windows_repl_plugin_name, -+ "%s: map_entry_dn_outbound: NULL entry.\n", -+ agmt_get_long_name(prp->agmt)); -+ return -1; -+ } -+ - /* To find the DN of the peer entry we first look for an ntUniqueId attribute - * on the local entry. If that's present, we generate a GUID-form DN. - * If there's no GUID, then we look for an ntUserDomainId attribute -@@ -3476,7 +3534,6 @@ map_entry_dn_outbound(Slapi_Entry *e, Slapi_DN **dn, Private_Repl_Protocol *prp, - if (guid && guid_form) - { - int rc = 0; -- Slapi_Entry *remote_entry = NULL; - new_dn = make_dn_from_guid(guid, is_nt4, suffix); - if (!new_dn) { - slapi_log_error(SLAPI_LOG_REPL, repl_plugin_name, -@@ -3504,7 +3561,6 @@ map_entry_dn_outbound(Slapi_Entry *e, Slapi_DN **dn, Private_Repl_Protocol *prp, - slapi_sdn_free(&new_dn); - retval = -1; - } -- slapi_entry_free(remote_entry); - } else { - slapi_log_error(SLAPI_LOG_REPL, repl_plugin_name, - "%s: map_entry_dn_outbound: entry not found - rc %d\n", -@@ -3545,7 +3601,6 @@ map_entry_dn_outbound(Slapi_Entry *e, Slapi_DN **dn, Private_Repl_Protocol *prp, - } else - { - /* No GUID found, try ntUserDomainId */ -- Slapi_Entry *remote_entry = NULL; - char *username = slapi_entry_attr_get_charptr(e,"ntUserDomainId"); - slapi_log_error(SLAPI_LOG_REPL, repl_plugin_name, - "%s: map_entry_dn_outbound: looking for AD entry for DS " -@@ -3621,16 +3676,22 @@ map_entry_dn_outbound(Slapi_Entry *e, Slapi_DN **dn, Private_Repl_Protocol *prp, - } - slapi_ch_free_string(&username); - } -- if (remote_entry) -- { -- slapi_entry_free(remote_entry); -- } - } - done: - if (new_dn) - { - *dn = new_dn; - } -+ if (remote_entry_to_return) { -+ if (retval) { /* failed */ -+ slapi_entry_free(remote_entry); -+ *remote_entry_to_return = NULL; -+ } else { -+ *remote_entry_to_return = remote_entry; -+ } -+ } else { -+ slapi_entry_free(remote_entry); -+ } - slapi_ch_free_string(&guid); - return retval; - } -@@ -4963,7 +5024,7 @@ int windows_process_total_entry(Private_Repl_Protocol *prp,Slapi_Entry *e) - agmt_get_long_name(prp->agmt), slapi_sdn_get_dn(slapi_entry_get_sdn_const(e)), is_ours ? "ours" : "not ours"); - if (is_ours) - { -- retval = map_entry_dn_outbound(e,&remote_dn,prp,&missing_entry,0 /* we don't want the GUID */); -+ retval = map_entry_dn_outbound(e,&remote_dn,prp,&missing_entry,0 /* we don't want the GUID */, NULL); - if (retval || NULL == remote_dn) - { - slapi_log_error(SLAPI_LOG_FATAL, repl_plugin_name, --- -1.7.1 - diff --git a/SOURCES/0016-Ticket-47918-result-of-dna_dn_is_shared_config-is-in.patch b/SOURCES/0016-Ticket-47918-result-of-dna_dn_is_shared_config-is-in.patch new file mode 100644 index 0000000..9e59d63 --- /dev/null +++ b/SOURCES/0016-Ticket-47918-result-of-dna_dn_is_shared_config-is-in.patch @@ -0,0 +1,36 @@ +From 832fb9a26af053e989e59e5bae0aabbc7d2943a7 Mon Sep 17 00:00:00 2001 +From: Ludwig Krispenz +Date: Mon, 6 Oct 2014 17:12:42 +0200 +Subject: [PATCH 16/21] Ticket 47918 - result of dna_dn_is_shared_config is + incorrectly used + +Bug Description: dna_load_shared_servers() is called for all entries, + except the config entries + +Fix Description: revert the logic of the result of dna_dn_is_shared_config() + +https://fedorahosted.org/389/ticket/47918 + +Reviewed by: Mark, Thanks + +(cherry picked from commit 8d9679194c945a6e0b06f6527fba6b4548d4844d) +--- + ldap/servers/plugins/dna/dna.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/ldap/servers/plugins/dna/dna.c b/ldap/servers/plugins/dna/dna.c +index b42150a..bc280a4 100644 +--- a/ldap/servers/plugins/dna/dna.c ++++ b/ldap/servers/plugins/dna/dna.c +@@ -4163,7 +4163,7 @@ static int dna_config_check_post_op(Slapi_PBlock * pb) + if (dna_dn_is_config(dn)) { + dna_load_plugin_config(pb, 0); + } +- if(dna_dn_is_shared_config(pb, dn) == 0){ ++ if(dna_dn_is_shared_config(pb, dn)){ + dna_load_shared_servers(); + } + } +-- +1.9.3 + diff --git a/SOURCES/0017-Ticket-47513-tmpfiles.d-references-var-lock-when-the.patch b/SOURCES/0017-Ticket-47513-tmpfiles.d-references-var-lock-when-the.patch deleted file mode 100644 index 7ef281e..0000000 --- a/SOURCES/0017-Ticket-47513-tmpfiles.d-references-var-lock-when-the.patch +++ /dev/null @@ -1,9989 +0,0 @@ -From 0299965b5c98c27d9e322bae7fd2fddd1576ca18 Mon Sep 17 00:00:00 2001 -From: Mark Reynolds -Date: Mon, 23 Sep 2013 17:22:11 -0400 -Subject: [PATCH 17/28] Ticket 47513 - tmpfiles.d references /var/lock when they should reference /run/lock - -Bug Description: Due to a possible race condition, the server should be using /run for - /var/lock and /var/run - -Fix Description: To be backwards compatible, we first check if /run exists(as it does not exist in rhel 6.x), then set - the lock directory to be /run/lock & /var/run to /run, and only write this to our tmpfiles.d configuration. - -https://fedorahosted.org/389/ticket/47513 - -Reviewed by: richm(Thanks!) -(cherry picked from commit c244a9b556e61236c2f7d0c527558057fb5beea2) ---- - Makefile.am | 2 + - Makefile.in | 4893 +++++++++++++++++---------------- - aclocal.m4 | 334 ++- - compile | 9 +- - config.guess | 182 +- - config.sub | 88 +- - configure | 65 +- - configure.ac | 3 + - depcomp | 454 ++-- - ldap/admin/src/scripts/DSCreate.pm.in | 20 +- - missing | 405 +-- - 11 files changed, 3369 insertions(+), 3086 deletions(-) - -diff --git a/Makefile.am b/Makefile.am -index 6bff8e4..77a565f 100644 ---- a/Makefile.am -+++ b/Makefile.am -@@ -1502,6 +1502,7 @@ fixupcmd = sed \ - -e 's,@configdir\@,$(configdir),g' \ - -e 's,@sysconfdir\@,$(sysconfdir),g' \ - -e 's,@localstatedir\@,$(localstatedir),g' \ -+ -e 's,@localrundir\@,$(localrundir),g' \ - -e 's,@infdir\@,$(infdir),g' \ - -e 's,@mibdir\@,$(mibdir),g' \ - -e 's,@templatedir\@,$(sampledatadir),g' \ -@@ -1568,6 +1569,7 @@ fixupcmd = sed \ - -e 's,@configdir\@,$(configdir),g' \ - -e 's,@sysconfdir\@,$(sysconfdir),g' \ - -e 's,@localstatedir\@,$(localstatedir),g' \ -+ -e 's,@localrundir\@,$(localrundir),g' \ - -e 's,@infdir\@,$(infdir),g' \ - -e 's,@mibdir\@,$(mibdir),g' \ - -e 's,@templatedir\@,$(sampledatadir),g' \ -diff --git a/Makefile.in b/Makefile.in -index 999782d..7dc1791 100644 ---- a/Makefile.in -+++ b/Makefile.in -@@ -1,7 +1,7 @@ --# Makefile.in generated by automake 1.12.2 from Makefile.am. -+# Makefile.in generated by automake 1.13.4 from Makefile.am. - # @configure_input@ - --# Copyright (C) 1994-2012 Free Software Foundation, Inc. -+# Copyright (C) 1994-2013 Free Software Foundation, Inc. - - # This Makefile.in is free software; the Free Software Foundation - # gives unlimited permission to copy and/or distribute it, -@@ -20,23 +20,51 @@ - - - VPATH = @srcdir@ --am__make_dryrun = \ -- { \ -- am__dry=no; \ -+am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' -+am__make_running_with_option = \ -+ case $${target_option-} in \ -+ ?) ;; \ -+ *) echo "am__make_running_with_option: internal error: invalid" \ -+ "target option '$${target_option-}' specified" >&2; \ -+ exit 1;; \ -+ esac; \ -+ has_opt=no; \ -+ sane_makeflags=$$MAKEFLAGS; \ -+ if $(am__is_gnu_make); then \ -+ sane_makeflags=$$MFLAGS; \ -+ else \ - case $$MAKEFLAGS in \ - *\\[\ \ ]*) \ -- echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ -- | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ -- *) \ -- for am__flg in $$MAKEFLAGS; do \ -- case $$am__flg in \ -- *=*|--*) ;; \ -- *n*) am__dry=yes; break;; \ -- esac; \ -- done;; \ -+ bs=\\; \ -+ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ -+ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ - esac; \ -- test $$am__dry = yes; \ -- } -+ fi; \ -+ skip_next=no; \ -+ strip_trailopt () \ -+ { \ -+ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ -+ }; \ -+ for flg in $$sane_makeflags; do \ -+ test $$skip_next = yes && { skip_next=no; continue; }; \ -+ case $$flg in \ -+ *=*|--*) continue;; \ -+ -*I) strip_trailopt 'I'; skip_next=yes;; \ -+ -*I?*) strip_trailopt 'I';; \ -+ -*O) strip_trailopt 'O'; skip_next=yes;; \ -+ -*O?*) strip_trailopt 'O';; \ -+ -*l) strip_trailopt 'l'; skip_next=yes;; \ -+ -*l?*) strip_trailopt 'l';; \ -+ -[dEDm]) skip_next=yes;; \ -+ -[JT]) skip_next=yes;; \ -+ esac; \ -+ case $$flg in \ -+ *$$target_option*) has_opt=yes; break;; \ -+ esac; \ -+ done; \ -+ test $$has_opt = yes -+am__make_dryrun = (target_option=n; $(am__make_running_with_option)) -+am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) - pkgdatadir = $(datadir)/@PACKAGE@ - pkgincludedir = $(includedir)/@PACKAGE@ - pkglibdir = $(libdir)/@PACKAGE@ -@@ -65,11 +93,11 @@ noinst_PROGRAMS = makstrdb$(EXEEXT) - @SOLARIS_TRUE@am__append_2 = -lrt - @SOLARIS_TRUE@am__append_3 = ldap/servers/slapd/tools/ldclt/opCheck.c - subdir = . --DIST_COMMON = README $(am__configure_deps) $(dist_man_MANS) \ -- $(serverinc_HEADERS) $(srcdir)/Makefile.am \ -- $(srcdir)/Makefile.in $(srcdir)/config.h.in \ -- $(top_srcdir)/configure compile config.guess config.sub \ -- depcomp install-sh ltmain.sh missing -+DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ -+ $(top_srcdir)/configure $(am__configure_deps) \ -+ $(srcdir)/config.h.in depcomp $(dist_man_MANS) \ -+ $(serverinc_HEADERS) README compile config.guess config.sub \ -+ install-sh missing ltmain.sh - ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 - am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \ - $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ -@@ -91,6 +119,10 @@ CONFIG_CLEAN_FILES = - CONFIG_CLEAN_VPATH_FILES = - LIBRARIES = $(noinst_LIBRARIES) - ARFLAGS = cru -+AM_V_AR = $(am__v_AR_@AM_V@) -+am__v_AR_ = $(am__v_AR_@AM_DEFAULT_V@) -+am__v_AR_0 = @echo " AR " $@; -+am__v_AR_1 = - libavl_a_AR = $(AR) $(ARFLAGS) - libavl_a_LIBADD = - am__dirstamp = $(am__leading_dot)dirstamp -@@ -157,9 +189,14 @@ am_libacctpolicy_plugin_la_OBJECTS = ldap/servers/plugins/acctpolicy/libacctpoli - ldap/servers/plugins/acctpolicy/libacctpolicy_plugin_la-acct_util.lo - libacctpolicy_plugin_la_OBJECTS = \ - $(am_libacctpolicy_plugin_la_OBJECTS) --libacctpolicy_plugin_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ -- $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ -- $(libacctpolicy_plugin_la_LDFLAGS) $(LDFLAGS) -o $@ -+AM_V_lt = $(am__v_lt_@AM_V@) -+am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) -+am__v_lt_0 = --silent -+am__v_lt_1 = -+libacctpolicy_plugin_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ -+ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ -+ $(AM_CFLAGS) $(CFLAGS) $(libacctpolicy_plugin_la_LDFLAGS) \ -+ $(LDFLAGS) -o $@ - @enable_acctpolicy_TRUE@am_libacctpolicy_plugin_la_rpath = -rpath \ - @enable_acctpolicy_TRUE@ $(serverplugindir) - libacctusability_plugin_la_DEPENDENCIES = libslapd.la \ -@@ -167,7 +204,7 @@ libacctusability_plugin_la_DEPENDENCIES = libslapd.la \ - am_libacctusability_plugin_la_OBJECTS = ldap/servers/plugins/acct_usability/libacctusability_plugin_la-acct_usability.lo - libacctusability_plugin_la_OBJECTS = \ - $(am_libacctusability_plugin_la_OBJECTS) --libacctusability_plugin_la_LINK = $(LIBTOOL) --tag=CC \ -+libacctusability_plugin_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ - $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ - $(AM_CFLAGS) $(CFLAGS) $(libacctusability_plugin_la_LDFLAGS) \ - $(LDFLAGS) -o $@ -@@ -195,17 +232,19 @@ am_libattr_unique_plugin_la_OBJECTS = \ - ldap/servers/plugins/uiduniq/libattr_unique_plugin_la-utils.lo - libattr_unique_plugin_la_OBJECTS = \ - $(am_libattr_unique_plugin_la_OBJECTS) --libattr_unique_plugin_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ -- $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ -- $(libattr_unique_plugin_la_LDFLAGS) $(LDFLAGS) -o $@ -+libattr_unique_plugin_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ -+ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ -+ $(AM_CFLAGS) $(CFLAGS) $(libattr_unique_plugin_la_LDFLAGS) \ -+ $(LDFLAGS) -o $@ - libautomember_plugin_la_DEPENDENCIES = libslapd.la \ - $(am__DEPENDENCIES_1) - am_libautomember_plugin_la_OBJECTS = ldap/servers/plugins/automember/libautomember_plugin_la-automember.lo - libautomember_plugin_la_OBJECTS = \ - $(am_libautomember_plugin_la_OBJECTS) --libautomember_plugin_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ -- $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ -- $(libautomember_plugin_la_LDFLAGS) $(LDFLAGS) -o $@ -+libautomember_plugin_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ -+ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ -+ $(AM_CFLAGS) $(CFLAGS) $(libautomember_plugin_la_LDFLAGS) \ -+ $(LDFLAGS) -o $@ - libback_ldbm_la_DEPENDENCIES = libslapd.la $(am__DEPENDENCIES_1) \ - $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) - am_libback_ldbm_la_OBJECTS = \ -@@ -270,16 +309,18 @@ am_libback_ldbm_la_OBJECTS = \ - ldap/servers/slapd/back-ldbm/libback_ldbm_la-vlv_key.lo \ - ldap/servers/slapd/back-ldbm/libback_ldbm_la-vlv_srch.lo - libback_ldbm_la_OBJECTS = $(am_libback_ldbm_la_OBJECTS) --libback_ldbm_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ -- $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ -- $(libback_ldbm_la_LDFLAGS) $(LDFLAGS) -o $@ -+libback_ldbm_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ -+ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ -+ $(AM_CFLAGS) $(CFLAGS) $(libback_ldbm_la_LDFLAGS) $(LDFLAGS) \ -+ -o $@ - libbitwise_plugin_la_DEPENDENCIES = libslapd.la - am_libbitwise_plugin_la_OBJECTS = \ - ldap/servers/plugins/bitwise/libbitwise_plugin_la-bitwise.lo - libbitwise_plugin_la_OBJECTS = $(am_libbitwise_plugin_la_OBJECTS) --libbitwise_plugin_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ -- $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ -- $(libbitwise_plugin_la_LDFLAGS) $(LDFLAGS) -o $@ -+libbitwise_plugin_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ -+ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ -+ $(AM_CFLAGS) $(CFLAGS) $(libbitwise_plugin_la_LDFLAGS) \ -+ $(LDFLAGS) -o $@ - @enable_bitwise_TRUE@am_libbitwise_plugin_la_rpath = -rpath \ - @enable_bitwise_TRUE@ $(serverplugindir) - libchainingdb_plugin_la_DEPENDENCIES = libslapd.la \ -@@ -311,9 +352,10 @@ am_libchainingdb_plugin_la_OBJECTS = ldap/servers/plugins/chainingdb/libchaining - ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_utils.lo - libchainingdb_plugin_la_OBJECTS = \ - $(am_libchainingdb_plugin_la_OBJECTS) --libchainingdb_plugin_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ -- $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ -- $(libchainingdb_plugin_la_LDFLAGS) $(LDFLAGS) -o $@ -+libchainingdb_plugin_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ -+ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ -+ $(AM_CFLAGS) $(CFLAGS) $(libchainingdb_plugin_la_LDFLAGS) \ -+ $(LDFLAGS) -o $@ - libcollation_plugin_la_DEPENDENCIES = libslapd.la \ - $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ - $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ -@@ -328,40 +370,45 @@ am_libcos_plugin_la_OBJECTS = \ - ldap/servers/plugins/cos/libcos_plugin_la-cos.lo \ - ldap/servers/plugins/cos/libcos_plugin_la-cos_cache.lo - libcos_plugin_la_OBJECTS = $(am_libcos_plugin_la_OBJECTS) --libcos_plugin_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ -- $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ -- $(libcos_plugin_la_LDFLAGS) $(LDFLAGS) -o $@ -+libcos_plugin_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ -+ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ -+ $(AM_CFLAGS) $(CFLAGS) $(libcos_plugin_la_LDFLAGS) $(LDFLAGS) \ -+ -o $@ - libderef_plugin_la_DEPENDENCIES = libslapd.la $(am__DEPENDENCIES_1) \ - $(am__DEPENDENCIES_1) - am_libderef_plugin_la_OBJECTS = \ - ldap/servers/plugins/deref/libderef_plugin_la-deref.lo - libderef_plugin_la_OBJECTS = $(am_libderef_plugin_la_OBJECTS) --libderef_plugin_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ -- $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ -- $(libderef_plugin_la_LDFLAGS) $(LDFLAGS) -o $@ -+libderef_plugin_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ -+ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ -+ $(AM_CFLAGS) $(CFLAGS) $(libderef_plugin_la_LDFLAGS) \ -+ $(LDFLAGS) -o $@ - libdes_plugin_la_DEPENDENCIES = libslapd.la $(am__DEPENDENCIES_1) - am_libdes_plugin_la_OBJECTS = \ - ldap/servers/plugins/rever/libdes_plugin_la-des.lo \ - ldap/servers/plugins/rever/libdes_plugin_la-rever.lo - libdes_plugin_la_OBJECTS = $(am_libdes_plugin_la_OBJECTS) --libdes_plugin_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ -- $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ -- $(libdes_plugin_la_LDFLAGS) $(LDFLAGS) -o $@ -+libdes_plugin_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ -+ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ -+ $(AM_CFLAGS) $(CFLAGS) $(libdes_plugin_la_LDFLAGS) $(LDFLAGS) \ -+ -o $@ - libdistrib_plugin_la_DEPENDENCIES = libslapd.la - am_libdistrib_plugin_la_OBJECTS = \ - ldap/servers/plugins/distrib/libdistrib_plugin_la-distrib.lo - libdistrib_plugin_la_OBJECTS = $(am_libdistrib_plugin_la_OBJECTS) --libdistrib_plugin_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ -- $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ -- $(libdistrib_plugin_la_LDFLAGS) $(LDFLAGS) -o $@ -+libdistrib_plugin_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ -+ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ -+ $(AM_CFLAGS) $(CFLAGS) $(libdistrib_plugin_la_LDFLAGS) \ -+ $(LDFLAGS) -o $@ - libdna_plugin_la_DEPENDENCIES = libslapd.la $(am__DEPENDENCIES_1) \ - $(am__DEPENDENCIES_1) - am_libdna_plugin_la_OBJECTS = \ - ldap/servers/plugins/dna/libdna_plugin_la-dna.lo - libdna_plugin_la_OBJECTS = $(am_libdna_plugin_la_OBJECTS) --libdna_plugin_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ -- $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ -- $(libdna_plugin_la_LDFLAGS) $(LDFLAGS) -o $@ -+libdna_plugin_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ -+ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ -+ $(AM_CFLAGS) $(CFLAGS) $(libdna_plugin_la_LDFLAGS) $(LDFLAGS) \ -+ -o $@ - @enable_dna_TRUE@am_libdna_plugin_la_rpath = -rpath $(serverplugindir) - libhttp_client_plugin_la_DEPENDENCIES = libslapd.la \ - $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) -@@ -369,25 +416,27 @@ am_libhttp_client_plugin_la_OBJECTS = ldap/servers/plugins/http/libhttp_client_p - ldap/servers/plugins/http/libhttp_client_plugin_la-http_impl.lo - libhttp_client_plugin_la_OBJECTS = \ - $(am_libhttp_client_plugin_la_OBJECTS) --libhttp_client_plugin_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ -- $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ -- $(libhttp_client_plugin_la_LDFLAGS) $(LDFLAGS) -o $@ -+libhttp_client_plugin_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ -+ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ -+ $(AM_CFLAGS) $(CFLAGS) $(libhttp_client_plugin_la_LDFLAGS) \ -+ $(LDFLAGS) -o $@ - liblinkedattrs_plugin_la_DEPENDENCIES = libslapd.la \ - $(am__DEPENDENCIES_1) - am_liblinkedattrs_plugin_la_OBJECTS = ldap/servers/plugins/linkedattrs/liblinkedattrs_plugin_la-fixup_task.lo \ - ldap/servers/plugins/linkedattrs/liblinkedattrs_plugin_la-linked_attrs.lo - liblinkedattrs_plugin_la_OBJECTS = \ - $(am_liblinkedattrs_plugin_la_OBJECTS) --liblinkedattrs_plugin_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ -- $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ -- $(liblinkedattrs_plugin_la_LDFLAGS) $(LDFLAGS) -o $@ -+liblinkedattrs_plugin_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ -+ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ -+ $(AM_CFLAGS) $(CFLAGS) $(liblinkedattrs_plugin_la_LDFLAGS) \ -+ $(LDFLAGS) -o $@ - libmanagedentries_plugin_la_DEPENDENCIES = libslapd.la \ - $(am__DEPENDENCIES_1) - am_libmanagedentries_plugin_la_OBJECTS = \ - ldap/servers/plugins/mep/libmanagedentries_plugin_la-mep.lo - libmanagedentries_plugin_la_OBJECTS = \ - $(am_libmanagedentries_plugin_la_OBJECTS) --libmanagedentries_plugin_la_LINK = $(LIBTOOL) --tag=CC \ -+libmanagedentries_plugin_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ - $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ - $(AM_CFLAGS) $(CFLAGS) $(libmanagedentries_plugin_la_LDFLAGS) \ - $(LDFLAGS) -o $@ -@@ -396,9 +445,10 @@ libmemberof_plugin_la_DEPENDENCIES = libslapd.la $(am__DEPENDENCIES_1) \ - am_libmemberof_plugin_la_OBJECTS = ldap/servers/plugins/memberof/libmemberof_plugin_la-memberof.lo \ - ldap/servers/plugins/memberof/libmemberof_plugin_la-memberof_config.lo - libmemberof_plugin_la_OBJECTS = $(am_libmemberof_plugin_la_OBJECTS) --libmemberof_plugin_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ -- $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ -- $(libmemberof_plugin_la_LDFLAGS) $(LDFLAGS) -o $@ -+libmemberof_plugin_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ -+ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ -+ $(AM_CFLAGS) $(CFLAGS) $(libmemberof_plugin_la_LDFLAGS) \ -+ $(LDFLAGS) -o $@ - libns_dshttpd_la_DEPENDENCIES = libslapd.la $(am__DEPENDENCIES_1) \ - $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ - $(am__DEPENDENCIES_1) -@@ -465,7 +515,7 @@ am_libpam_passthru_plugin_la_OBJECTS = ldap/servers/plugins/pam_passthru/libpam_ - ldap/servers/plugins/pam_passthru/libpam_passthru_plugin_la-pam_ptpreop.lo - libpam_passthru_plugin_la_OBJECTS = \ - $(am_libpam_passthru_plugin_la_OBJECTS) --libpam_passthru_plugin_la_LINK = $(LIBTOOL) --tag=CC \ -+libpam_passthru_plugin_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ - $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ - $(AM_CFLAGS) $(CFLAGS) $(libpam_passthru_plugin_la_LDFLAGS) \ - $(LDFLAGS) -o $@ -@@ -481,9 +531,10 @@ am_libpassthru_plugin_la_OBJECTS = \ - ldap/servers/plugins/passthru/libpassthru_plugin_la-ptpreop.lo \ - ldap/servers/plugins/passthru/libpassthru_plugin_la-ptutil.lo - libpassthru_plugin_la_OBJECTS = $(am_libpassthru_plugin_la_OBJECTS) --libpassthru_plugin_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ -- $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ -- $(libpassthru_plugin_la_LDFLAGS) $(LDFLAGS) -o $@ -+libpassthru_plugin_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ -+ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ -+ $(AM_CFLAGS) $(CFLAGS) $(libpassthru_plugin_la_LDFLAGS) \ -+ $(LDFLAGS) -o $@ - libposix_winsync_plugin_la_DEPENDENCIES = libslapd.la \ - $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) - am_libposix_winsync_plugin_la_OBJECTS = ldap/servers/plugins/posix-winsync/libposix_winsync_plugin_la-posix-winsync.lo \ -@@ -492,7 +543,7 @@ am_libposix_winsync_plugin_la_OBJECTS = ldap/servers/plugins/posix-winsync/libpo - ldap/servers/plugins/posix-winsync/libposix_winsync_plugin_la-posix-winsync-config.lo - libposix_winsync_plugin_la_OBJECTS = \ - $(am_libposix_winsync_plugin_la_OBJECTS) --libposix_winsync_plugin_la_LINK = $(LIBTOOL) --tag=CC \ -+libposix_winsync_plugin_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ - $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ - $(AM_CFLAGS) $(CFLAGS) $(libposix_winsync_plugin_la_LDFLAGS) \ - $(LDFLAGS) -o $@ -@@ -501,9 +552,10 @@ libposix_winsync_plugin_la_LINK = $(LIBTOOL) --tag=CC \ - libpresence_plugin_la_DEPENDENCIES = libslapd.la - am_libpresence_plugin_la_OBJECTS = ldap/servers/plugins/presence/libpresence_plugin_la-presence.lo - libpresence_plugin_la_OBJECTS = $(am_libpresence_plugin_la_OBJECTS) --libpresence_plugin_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ -- $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ -- $(libpresence_plugin_la_LDFLAGS) $(LDFLAGS) -o $@ -+libpresence_plugin_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ -+ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ -+ $(AM_CFLAGS) $(CFLAGS) $(libpresence_plugin_la_LDFLAGS) \ -+ $(LDFLAGS) -o $@ - @enable_presence_TRUE@am_libpresence_plugin_la_rpath = -rpath \ - @enable_presence_TRUE@ $(serverplugindir) - libpwdstorage_plugin_la_DEPENDENCIES = libslapd.la \ -@@ -521,16 +573,18 @@ am_libpwdstorage_plugin_la_OBJECTS = ldap/servers/plugins/pwdstorage/libpwdstora - ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-ssha_pwd.lo - libpwdstorage_plugin_la_OBJECTS = \ - $(am_libpwdstorage_plugin_la_OBJECTS) --libpwdstorage_plugin_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ -- $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ -- $(libpwdstorage_plugin_la_LDFLAGS) $(LDFLAGS) -o $@ -+libpwdstorage_plugin_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ -+ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ -+ $(AM_CFLAGS) $(CFLAGS) $(libpwdstorage_plugin_la_LDFLAGS) \ -+ $(LDFLAGS) -o $@ - libreferint_plugin_la_DEPENDENCIES = libslapd.la $(am__DEPENDENCIES_1) \ - $(am__DEPENDENCIES_1) - am_libreferint_plugin_la_OBJECTS = ldap/servers/plugins/referint/libreferint_plugin_la-referint.lo - libreferint_plugin_la_OBJECTS = $(am_libreferint_plugin_la_OBJECTS) --libreferint_plugin_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ -- $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ -- $(libreferint_plugin_la_LDFLAGS) $(LDFLAGS) -o $@ -+libreferint_plugin_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ -+ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ -+ $(AM_CFLAGS) $(CFLAGS) $(libreferint_plugin_la_LDFLAGS) \ -+ $(LDFLAGS) -o $@ - libreplication_plugin_la_DEPENDENCIES = libslapd.la \ - $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ - $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ -@@ -593,9 +647,10 @@ am_libreplication_plugin_la_OBJECTS = ldap/servers/plugins/replication/libreplic - ldap/servers/plugins/replication/libreplication_plugin_la-windows_tot_protocol.lo - libreplication_plugin_la_OBJECTS = \ - $(am_libreplication_plugin_la_OBJECTS) --libreplication_plugin_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ -- $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ -- $(libreplication_plugin_la_LDFLAGS) $(LDFLAGS) -o $@ -+libreplication_plugin_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ -+ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ -+ $(AM_CFLAGS) $(CFLAGS) $(libreplication_plugin_la_LDFLAGS) \ -+ $(LDFLAGS) -o $@ - libretrocl_plugin_la_DEPENDENCIES = libslapd.la $(am__DEPENDENCIES_1) \ - $(am__DEPENDENCIES_1) - am_libretrocl_plugin_la_OBJECTS = \ -@@ -606,23 +661,25 @@ am_libretrocl_plugin_la_OBJECTS = \ - ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_rootdse.lo \ - ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_trim.lo - libretrocl_plugin_la_OBJECTS = $(am_libretrocl_plugin_la_OBJECTS) --libretrocl_plugin_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ -- $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ -- $(libretrocl_plugin_la_LDFLAGS) $(LDFLAGS) -o $@ -+libretrocl_plugin_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ -+ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ -+ $(AM_CFLAGS) $(CFLAGS) $(libretrocl_plugin_la_LDFLAGS) \ -+ $(LDFLAGS) -o $@ - libroles_plugin_la_DEPENDENCIES = libslapd.la $(am__DEPENDENCIES_1) - am_libroles_plugin_la_OBJECTS = \ - ldap/servers/plugins/roles/libroles_plugin_la-roles_cache.lo \ - ldap/servers/plugins/roles/libroles_plugin_la-roles_plugin.lo - libroles_plugin_la_OBJECTS = $(am_libroles_plugin_la_OBJECTS) --libroles_plugin_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ -- $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ -- $(libroles_plugin_la_LDFLAGS) $(LDFLAGS) -o $@ -+libroles_plugin_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ -+ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ -+ $(AM_CFLAGS) $(CFLAGS) $(libroles_plugin_la_LDFLAGS) \ -+ $(LDFLAGS) -o $@ - librootdn_access_plugin_la_DEPENDENCIES = libslapd.la \ - $(am__DEPENDENCIES_1) - am_librootdn_access_plugin_la_OBJECTS = ldap/servers/plugins/rootdn_access/librootdn_access_plugin_la-rootdn_access.lo - librootdn_access_plugin_la_OBJECTS = \ - $(am_librootdn_access_plugin_la_OBJECTS) --librootdn_access_plugin_la_LINK = $(LIBTOOL) --tag=CC \ -+librootdn_access_plugin_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ - $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ - $(AM_CFLAGS) $(CFLAGS) $(librootdn_access_plugin_la_LDFLAGS) \ - $(LDFLAGS) -o $@ -@@ -631,7 +688,7 @@ libschemareload_plugin_la_DEPENDENCIES = libslapd.la \ - am_libschemareload_plugin_la_OBJECTS = ldap/servers/plugins/schema_reload/libschemareload_plugin_la-schema_reload.lo - libschemareload_plugin_la_OBJECTS = \ - $(am_libschemareload_plugin_la_OBJECTS) --libschemareload_plugin_la_LINK = $(LIBTOOL) --tag=CC \ -+libschemareload_plugin_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ - $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ - $(AM_CFLAGS) $(CFLAGS) $(libschemareload_plugin_la_LDFLAGS) \ - $(LDFLAGS) -o $@ -@@ -798,9 +855,10 @@ libstatechange_plugin_la_DEPENDENCIES = libslapd.la - am_libstatechange_plugin_la_OBJECTS = ldap/servers/plugins/statechange/libstatechange_plugin_la-statechange.lo - libstatechange_plugin_la_OBJECTS = \ - $(am_libstatechange_plugin_la_OBJECTS) --libstatechange_plugin_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ -- $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ -- $(libstatechange_plugin_la_LDFLAGS) $(LDFLAGS) -o $@ -+libstatechange_plugin_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ -+ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ -+ $(AM_CFLAGS) $(CFLAGS) $(libstatechange_plugin_la_LDFLAGS) \ -+ $(LDFLAGS) -o $@ - libsyntax_plugin_la_DEPENDENCIES = libslapd.la $(am__DEPENDENCIES_1) \ - $(am__DEPENDENCIES_1) - am_libsyntax_plugin_la_OBJECTS = \ -@@ -827,26 +885,29 @@ am_libsyntax_plugin_la_OBJECTS = \ - ldap/servers/plugins/syntaxes/libsyntax_plugin_la-validate_task.lo \ - ldap/servers/plugins/syntaxes/libsyntax_plugin_la-value.lo - libsyntax_plugin_la_OBJECTS = $(am_libsyntax_plugin_la_OBJECTS) --libsyntax_plugin_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ -- $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ -- $(libsyntax_plugin_la_LDFLAGS) $(LDFLAGS) -o $@ -+libsyntax_plugin_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ -+ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ -+ $(AM_CFLAGS) $(CFLAGS) $(libsyntax_plugin_la_LDFLAGS) \ -+ $(LDFLAGS) -o $@ - libusn_plugin_la_DEPENDENCIES = libslapd.la $(am__DEPENDENCIES_1) \ - $(am__DEPENDENCIES_1) - am_libusn_plugin_la_OBJECTS = \ - ldap/servers/plugins/usn/libusn_plugin_la-usn.lo \ - ldap/servers/plugins/usn/libusn_plugin_la-usn_cleanup.lo - libusn_plugin_la_OBJECTS = $(am_libusn_plugin_la_OBJECTS) --libusn_plugin_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ -- $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ -- $(libusn_plugin_la_LDFLAGS) $(LDFLAGS) -o $@ -+libusn_plugin_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ -+ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ -+ $(AM_CFLAGS) $(CFLAGS) $(libusn_plugin_la_LDFLAGS) $(LDFLAGS) \ -+ -o $@ - libviews_plugin_la_DEPENDENCIES = libslapd.la $(am__DEPENDENCIES_1) \ - $(am__DEPENDENCIES_1) - am_libviews_plugin_la_OBJECTS = \ - ldap/servers/plugins/views/libviews_plugin_la-views.lo - libviews_plugin_la_OBJECTS = $(am_libviews_plugin_la_OBJECTS) --libviews_plugin_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ -- $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ -- $(libviews_plugin_la_LDFLAGS) $(LDFLAGS) -o $@ -+libviews_plugin_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ -+ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ -+ $(AM_CFLAGS) $(CFLAGS) $(libviews_plugin_la_LDFLAGS) \ -+ $(LDFLAGS) -o $@ - PROGRAMS = $(bin_PROGRAMS) $(noinst_PROGRAMS) $(sbin_PROGRAMS) - am_dbscan_bin_OBJECTS = \ - ldap/servers/slapd/tools/dbscan_bin-dbscan.$(OBJEXT) -@@ -997,33 +1058,68 @@ rsearch_bin_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ - $(am__DEPENDENCIES_1) - SCRIPTS = $(bin_SCRIPTS) $(init_SCRIPTS) $(sbin_SCRIPTS) \ - $(task_SCRIPTS) $(update_SCRIPTS) -+AM_V_P = $(am__v_P_@AM_V@) -+am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) -+am__v_P_0 = false -+am__v_P_1 = : -+AM_V_GEN = $(am__v_GEN_@AM_V@) -+am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) -+am__v_GEN_0 = @echo " GEN " $@; -+am__v_GEN_1 = -+AM_V_at = $(am__v_at_@AM_V@) -+am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) -+am__v_at_0 = @ -+am__v_at_1 = - DEFAULT_INCLUDES = -I.@am__isrc@ - depcomp = $(SHELL) $(top_srcdir)/depcomp - am__depfiles_maybe = depfiles - am__mv = mv -f - CPPASCOMPILE = $(CCAS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CCASFLAGS) $(CCASFLAGS) --LTCPPASCOMPILE = $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ -- --mode=compile $(CCAS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ -- $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CCASFLAGS) $(CCASFLAGS) -+LTCPPASCOMPILE = $(LIBTOOL) $(AM_V_lt) $(AM_LIBTOOLFLAGS) \ -+ $(LIBTOOLFLAGS) --mode=compile $(CCAS) $(DEFS) \ -+ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ -+ $(AM_CCASFLAGS) $(CCASFLAGS) -+AM_V_CPPAS = $(am__v_CPPAS_@AM_V@) -+am__v_CPPAS_ = $(am__v_CPPAS_@AM_DEFAULT_V@) -+am__v_CPPAS_0 = @echo " CPPAS " $@; -+am__v_CPPAS_1 = - COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) --LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ -- --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ -- $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -+LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ -+ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ -+ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ -+ $(AM_CFLAGS) $(CFLAGS) -+AM_V_CC = $(am__v_CC_@AM_V@) -+am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) -+am__v_CC_0 = @echo " CC " $@; -+am__v_CC_1 = - CCLD = $(CC) --LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ -- --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ -- $(LDFLAGS) -o $@ -+LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ -+ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ -+ $(AM_LDFLAGS) $(LDFLAGS) -o $@ -+AM_V_CCLD = $(am__v_CCLD_@AM_V@) -+am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) -+am__v_CCLD_0 = @echo " CCLD " $@; -+am__v_CCLD_1 = - CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) --LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ -- --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ -- $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -+LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ -+ $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ -+ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ -+ $(AM_CXXFLAGS) $(CXXFLAGS) -+AM_V_CXX = $(am__v_CXX_@AM_V@) -+am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) -+am__v_CXX_0 = @echo " CXX " $@; -+am__v_CXX_1 = - CXXLD = $(CXX) --CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ -- --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ -- $(LDFLAGS) -o $@ -+CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ -+ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ -+ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ -+AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) -+am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) -+am__v_CXXLD_0 = @echo " CXXLD " $@; -+am__v_CXXLD_1 = - SOURCES = $(libavl_a_SOURCES) $(libldaputil_a_SOURCES) \ - $(libacctpolicy_plugin_la_SOURCES) \ - $(libacctusability_plugin_la_SOURCES) \ -@@ -1107,6 +1203,24 @@ DATA = $(config_DATA) $(inf_DATA) $(initconfig_DATA) $(mib_DATA) \ - $(property_DATA) $(sampledata_DATA) $(schema_DATA) \ - $(systemdsystemunit_DATA) $(update_DATA) - HEADERS = $(serverinc_HEADERS) -+am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \ -+ $(LISP)config.h.in -+# Read a list of newline-separated strings from the standard input, -+# and print each of them once, without duplicates. Input order is -+# *not* preserved. -+am__uniquify_input = $(AWK) '\ -+ BEGIN { nonempty = 0; } \ -+ { items[$$0] = 1; nonempty = 1; } \ -+ END { if (nonempty) { for (i in items) print i; }; } \ -+' -+# Make sure the list of sources is unique. This is necessary because, -+# e.g., the same source file might be shared among _SOURCES variables -+# for different programs/libraries. -+am__define_uniq_tagged_files = \ -+ list='$(am__tagged_files)'; \ -+ unique=`for i in $$list; do \ -+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ -+ done | $(am__uniquify_input)` - ETAGS = etags - CTAGS = ctags - CSCOPE = cscope -@@ -1130,6 +1244,7 @@ am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ - distcleancheck_listfiles = find . -type f -print - ACLOCAL = @ACLOCAL@ - AMTAR = @AMTAR@ -+AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ - AR = @AR@ - AUTOCONF = @AUTOCONF@ - AUTOHEADER = @AUTOHEADER@ -@@ -1282,6 +1397,7 @@ ldaptool_opts = @ldaptool_opts@ - libdir = @libdir@ - libexecdir = @libexecdir@ - localedir = @localedir@ -+localrundir = @localrundir@ - localstatedir = @localstatedir@ - mandir = @mandir@ - mibdir = $(datadir)@mibdir@ -@@ -2668,6 +2784,7 @@ rsearch_bin_LDADD = $(NSPR_LINK) $(NSS_LINK) $(LDAPSDK_LINK) $(SASL_LINK) $(LIBS - @BUNDLE_FALSE@ -e 's,@configdir\@,$(configdir),g' \ - @BUNDLE_FALSE@ -e 's,@sysconfdir\@,$(sysconfdir),g' \ - @BUNDLE_FALSE@ -e 's,@localstatedir\@,$(localstatedir),g' \ -+@BUNDLE_FALSE@ -e 's,@localrundir\@,$(localrundir),g' \ - @BUNDLE_FALSE@ -e 's,@infdir\@,$(infdir),g' \ - @BUNDLE_FALSE@ -e 's,@mibdir\@,$(mibdir),g' \ - @BUNDLE_FALSE@ -e 's,@templatedir\@,$(sampledatadir),g' \ -@@ -2744,6 +2861,7 @@ rsearch_bin_LDADD = $(NSPR_LINK) $(NSS_LINK) $(LDAPSDK_LINK) $(SASL_LINK) $(LIBS - @BUNDLE_TRUE@ -e 's,@configdir\@,$(configdir),g' \ - @BUNDLE_TRUE@ -e 's,@sysconfdir\@,$(sysconfdir),g' \ - @BUNDLE_TRUE@ -e 's,@localstatedir\@,$(localstatedir),g' \ -+@BUNDLE_TRUE@ -e 's,@localrundir\@,$(localrundir),g' \ - @BUNDLE_TRUE@ -e 's,@infdir\@,$(infdir),g' \ - @BUNDLE_TRUE@ -e 's,@mibdir\@,$(mibdir),g' \ - @BUNDLE_TRUE@ -e 's,@templatedir\@,$(sampledatadir),g' \ -@@ -2849,10 +2967,11 @@ ldap/libraries/libavl/$(DEPDIR)/$(am__dirstamp): - ldap/libraries/libavl/avl.$(OBJEXT): \ - ldap/libraries/libavl/$(am__dirstamp) \ - ldap/libraries/libavl/$(DEPDIR)/$(am__dirstamp) -+ - libavl.a: $(libavl_a_OBJECTS) $(libavl_a_DEPENDENCIES) $(EXTRA_libavl_a_DEPENDENCIES) -- -rm -f libavl.a -- $(libavl_a_AR) libavl.a $(libavl_a_OBJECTS) $(libavl_a_LIBADD) -- $(RANLIB) libavl.a -+ $(AM_V_at)-rm -f libavl.a -+ $(AM_V_AR)$(libavl_a_AR) libavl.a $(libavl_a_OBJECTS) $(libavl_a_LIBADD) -+ $(AM_V_at)$(RANLIB) libavl.a - lib/ldaputil/$(am__dirstamp): - @$(MKDIR_P) lib/ldaputil - @: > lib/ldaputil/$(am__dirstamp) -@@ -2883,10 +3002,12 @@ lib/ldaputil/libldaputil_a-ldapauth.$(OBJEXT): \ - lib/ldaputil/libldaputil_a-vtable.$(OBJEXT): \ - lib/ldaputil/$(am__dirstamp) \ - lib/ldaputil/$(DEPDIR)/$(am__dirstamp) -+ - libldaputil.a: $(libldaputil_a_OBJECTS) $(libldaputil_a_DEPENDENCIES) $(EXTRA_libldaputil_a_DEPENDENCIES) -- -rm -f libldaputil.a -- $(libldaputil_a_AR) libldaputil.a $(libldaputil_a_OBJECTS) $(libldaputil_a_LIBADD) -- $(RANLIB) libldaputil.a -+ $(AM_V_at)-rm -f libldaputil.a -+ $(AM_V_AR)$(libldaputil_a_AR) libldaputil.a $(libldaputil_a_OBJECTS) $(libldaputil_a_LIBADD) -+ $(AM_V_at)$(RANLIB) libldaputil.a -+ - install-serverLTLIBRARIES: $(server_LTLIBRARIES) - @$(NORMAL_INSTALL) - @list='$(server_LTLIBRARIES)'; test -n "$(serverdir)" || list=; \ -@@ -2921,6 +3042,7 @@ clean-serverLTLIBRARIES: - echo rm -f $${locs}; \ - rm -f $${locs}; \ - } -+ - install-serverpluginLTLIBRARIES: $(serverplugin_LTLIBRARIES) - @$(NORMAL_INSTALL) - @list='$(serverplugin_LTLIBRARIES)'; test -n "$(serverplugindir)" || list=; \ -@@ -2973,8 +3095,9 @@ ldap/servers/plugins/acctpolicy/libacctpolicy_plugin_la-acct_plugin.lo: \ - ldap/servers/plugins/acctpolicy/libacctpolicy_plugin_la-acct_util.lo: \ - ldap/servers/plugins/acctpolicy/$(am__dirstamp) \ - ldap/servers/plugins/acctpolicy/$(DEPDIR)/$(am__dirstamp) -+ - libacctpolicy-plugin.la: $(libacctpolicy_plugin_la_OBJECTS) $(libacctpolicy_plugin_la_DEPENDENCIES) $(EXTRA_libacctpolicy_plugin_la_DEPENDENCIES) -- $(libacctpolicy_plugin_la_LINK) $(am_libacctpolicy_plugin_la_rpath) $(libacctpolicy_plugin_la_OBJECTS) $(libacctpolicy_plugin_la_LIBADD) $(LIBS) -+ $(AM_V_CCLD)$(libacctpolicy_plugin_la_LINK) $(am_libacctpolicy_plugin_la_rpath) $(libacctpolicy_plugin_la_OBJECTS) $(libacctpolicy_plugin_la_LIBADD) $(LIBS) - ldap/servers/plugins/acct_usability/$(am__dirstamp): - @$(MKDIR_P) ldap/servers/plugins/acct_usability - @: > ldap/servers/plugins/acct_usability/$(am__dirstamp) -@@ -2984,8 +3107,9 @@ ldap/servers/plugins/acct_usability/$(DEPDIR)/$(am__dirstamp): - ldap/servers/plugins/acct_usability/libacctusability_plugin_la-acct_usability.lo: \ - ldap/servers/plugins/acct_usability/$(am__dirstamp) \ - ldap/servers/plugins/acct_usability/$(DEPDIR)/$(am__dirstamp) -+ - libacctusability-plugin.la: $(libacctusability_plugin_la_OBJECTS) $(libacctusability_plugin_la_DEPENDENCIES) $(EXTRA_libacctusability_plugin_la_DEPENDENCIES) -- $(libacctusability_plugin_la_LINK) -rpath $(serverplugindir) $(libacctusability_plugin_la_OBJECTS) $(libacctusability_plugin_la_LIBADD) $(LIBS) -+ $(AM_V_CCLD)$(libacctusability_plugin_la_LINK) -rpath $(serverplugindir) $(libacctusability_plugin_la_OBJECTS) $(libacctusability_plugin_la_LIBADD) $(LIBS) - ldap/servers/plugins/acl/$(am__dirstamp): - @$(MKDIR_P) ldap/servers/plugins/acl - @: > ldap/servers/plugins/acl/$(am__dirstamp) -@@ -3025,8 +3149,9 @@ ldap/servers/plugins/acl/libacl_plugin_la-aclplugin.lo: \ - ldap/servers/plugins/acl/libacl_plugin_la-aclutil.lo: \ - ldap/servers/plugins/acl/$(am__dirstamp) \ - ldap/servers/plugins/acl/$(DEPDIR)/$(am__dirstamp) -+ - libacl-plugin.la: $(libacl_plugin_la_OBJECTS) $(libacl_plugin_la_DEPENDENCIES) $(EXTRA_libacl_plugin_la_DEPENDENCIES) -- $(libacl_plugin_la_LINK) -rpath $(serverplugindir) $(libacl_plugin_la_OBJECTS) $(libacl_plugin_la_LIBADD) $(LIBS) -+ $(AM_V_GEN)$(libacl_plugin_la_LINK) -rpath $(serverplugindir) $(libacl_plugin_la_OBJECTS) $(libacl_plugin_la_LIBADD) $(LIBS) - ldap/servers/plugins/uiduniq/$(am__dirstamp): - @$(MKDIR_P) ldap/servers/plugins/uiduniq - @: > ldap/servers/plugins/uiduniq/$(am__dirstamp) -@@ -3042,8 +3167,9 @@ ldap/servers/plugins/uiduniq/libattr_unique_plugin_la-uid.lo: \ - ldap/servers/plugins/uiduniq/libattr_unique_plugin_la-utils.lo: \ - ldap/servers/plugins/uiduniq/$(am__dirstamp) \ - ldap/servers/plugins/uiduniq/$(DEPDIR)/$(am__dirstamp) -+ - libattr-unique-plugin.la: $(libattr_unique_plugin_la_OBJECTS) $(libattr_unique_plugin_la_DEPENDENCIES) $(EXTRA_libattr_unique_plugin_la_DEPENDENCIES) -- $(libattr_unique_plugin_la_LINK) -rpath $(serverplugindir) $(libattr_unique_plugin_la_OBJECTS) $(libattr_unique_plugin_la_LIBADD) $(LIBS) -+ $(AM_V_CCLD)$(libattr_unique_plugin_la_LINK) -rpath $(serverplugindir) $(libattr_unique_plugin_la_OBJECTS) $(libattr_unique_plugin_la_LIBADD) $(LIBS) - ldap/servers/plugins/automember/$(am__dirstamp): - @$(MKDIR_P) ldap/servers/plugins/automember - @: > ldap/servers/plugins/automember/$(am__dirstamp) -@@ -3053,8 +3179,9 @@ ldap/servers/plugins/automember/$(DEPDIR)/$(am__dirstamp): - ldap/servers/plugins/automember/libautomember_plugin_la-automember.lo: \ - ldap/servers/plugins/automember/$(am__dirstamp) \ - ldap/servers/plugins/automember/$(DEPDIR)/$(am__dirstamp) -+ - libautomember-plugin.la: $(libautomember_plugin_la_OBJECTS) $(libautomember_plugin_la_DEPENDENCIES) $(EXTRA_libautomember_plugin_la_DEPENDENCIES) -- $(libautomember_plugin_la_LINK) -rpath $(serverplugindir) $(libautomember_plugin_la_OBJECTS) $(libautomember_plugin_la_LIBADD) $(LIBS) -+ $(AM_V_CCLD)$(libautomember_plugin_la_LINK) -rpath $(serverplugindir) $(libautomember_plugin_la_OBJECTS) $(libautomember_plugin_la_LIBADD) $(LIBS) - ldap/servers/slapd/back-ldbm/$(am__dirstamp): - @$(MKDIR_P) ldap/servers/slapd/back-ldbm - @: > ldap/servers/slapd/back-ldbm/$(am__dirstamp) -@@ -3241,8 +3368,9 @@ ldap/servers/slapd/back-ldbm/libback_ldbm_la-vlv_key.lo: \ - ldap/servers/slapd/back-ldbm/libback_ldbm_la-vlv_srch.lo: \ - ldap/servers/slapd/back-ldbm/$(am__dirstamp) \ - ldap/servers/slapd/back-ldbm/$(DEPDIR)/$(am__dirstamp) -+ - libback-ldbm.la: $(libback_ldbm_la_OBJECTS) $(libback_ldbm_la_DEPENDENCIES) $(EXTRA_libback_ldbm_la_DEPENDENCIES) -- $(libback_ldbm_la_LINK) -rpath $(serverplugindir) $(libback_ldbm_la_OBJECTS) $(libback_ldbm_la_LIBADD) $(LIBS) -+ $(AM_V_CCLD)$(libback_ldbm_la_LINK) -rpath $(serverplugindir) $(libback_ldbm_la_OBJECTS) $(libback_ldbm_la_LIBADD) $(LIBS) - ldap/servers/plugins/bitwise/$(am__dirstamp): - @$(MKDIR_P) ldap/servers/plugins/bitwise - @: > ldap/servers/plugins/bitwise/$(am__dirstamp) -@@ -3252,8 +3380,9 @@ ldap/servers/plugins/bitwise/$(DEPDIR)/$(am__dirstamp): - ldap/servers/plugins/bitwise/libbitwise_plugin_la-bitwise.lo: \ - ldap/servers/plugins/bitwise/$(am__dirstamp) \ - ldap/servers/plugins/bitwise/$(DEPDIR)/$(am__dirstamp) -+ - libbitwise-plugin.la: $(libbitwise_plugin_la_OBJECTS) $(libbitwise_plugin_la_DEPENDENCIES) $(EXTRA_libbitwise_plugin_la_DEPENDENCIES) -- $(libbitwise_plugin_la_LINK) $(am_libbitwise_plugin_la_rpath) $(libbitwise_plugin_la_OBJECTS) $(libbitwise_plugin_la_LIBADD) $(LIBS) -+ $(AM_V_CCLD)$(libbitwise_plugin_la_LINK) $(am_libbitwise_plugin_la_rpath) $(libbitwise_plugin_la_OBJECTS) $(libbitwise_plugin_la_LIBADD) $(LIBS) - ldap/servers/plugins/chainingdb/$(am__dirstamp): - @$(MKDIR_P) ldap/servers/plugins/chainingdb - @: > ldap/servers/plugins/chainingdb/$(am__dirstamp) -@@ -3335,8 +3464,9 @@ ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_unbind.lo: \ - ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_utils.lo: \ - ldap/servers/plugins/chainingdb/$(am__dirstamp) \ - ldap/servers/plugins/chainingdb/$(DEPDIR)/$(am__dirstamp) -+ - libchainingdb-plugin.la: $(libchainingdb_plugin_la_OBJECTS) $(libchainingdb_plugin_la_DEPENDENCIES) $(EXTRA_libchainingdb_plugin_la_DEPENDENCIES) -- $(libchainingdb_plugin_la_LINK) -rpath $(serverplugindir) $(libchainingdb_plugin_la_OBJECTS) $(libchainingdb_plugin_la_LIBADD) $(LIBS) -+ $(AM_V_CCLD)$(libchainingdb_plugin_la_LINK) -rpath $(serverplugindir) $(libchainingdb_plugin_la_OBJECTS) $(libchainingdb_plugin_la_LIBADD) $(LIBS) - ldap/servers/plugins/collation/$(am__dirstamp): - @$(MKDIR_P) ldap/servers/plugins/collation - @: > ldap/servers/plugins/collation/$(am__dirstamp) -@@ -3352,8 +3482,9 @@ ldap/servers/plugins/collation/libcollation_plugin_la-config.lo: \ - ldap/servers/plugins/collation/libcollation_plugin_la-orfilter.lo: \ - ldap/servers/plugins/collation/$(am__dirstamp) \ - ldap/servers/plugins/collation/$(DEPDIR)/$(am__dirstamp) -+ - libcollation-plugin.la: $(libcollation_plugin_la_OBJECTS) $(libcollation_plugin_la_DEPENDENCIES) $(EXTRA_libcollation_plugin_la_DEPENDENCIES) -- $(libcollation_plugin_la_LINK) -rpath $(serverplugindir) $(libcollation_plugin_la_OBJECTS) $(libcollation_plugin_la_LIBADD) $(LIBS) -+ $(AM_V_GEN)$(libcollation_plugin_la_LINK) -rpath $(serverplugindir) $(libcollation_plugin_la_OBJECTS) $(libcollation_plugin_la_LIBADD) $(LIBS) - ldap/servers/plugins/cos/$(am__dirstamp): - @$(MKDIR_P) ldap/servers/plugins/cos - @: > ldap/servers/plugins/cos/$(am__dirstamp) -@@ -3366,8 +3497,9 @@ ldap/servers/plugins/cos/libcos_plugin_la-cos.lo: \ - ldap/servers/plugins/cos/libcos_plugin_la-cos_cache.lo: \ - ldap/servers/plugins/cos/$(am__dirstamp) \ - ldap/servers/plugins/cos/$(DEPDIR)/$(am__dirstamp) -+ - libcos-plugin.la: $(libcos_plugin_la_OBJECTS) $(libcos_plugin_la_DEPENDENCIES) $(EXTRA_libcos_plugin_la_DEPENDENCIES) -- $(libcos_plugin_la_LINK) -rpath $(serverplugindir) $(libcos_plugin_la_OBJECTS) $(libcos_plugin_la_LIBADD) $(LIBS) -+ $(AM_V_CCLD)$(libcos_plugin_la_LINK) -rpath $(serverplugindir) $(libcos_plugin_la_OBJECTS) $(libcos_plugin_la_LIBADD) $(LIBS) - ldap/servers/plugins/deref/$(am__dirstamp): - @$(MKDIR_P) ldap/servers/plugins/deref - @: > ldap/servers/plugins/deref/$(am__dirstamp) -@@ -3377,8 +3509,9 @@ ldap/servers/plugins/deref/$(DEPDIR)/$(am__dirstamp): - ldap/servers/plugins/deref/libderef_plugin_la-deref.lo: \ - ldap/servers/plugins/deref/$(am__dirstamp) \ - ldap/servers/plugins/deref/$(DEPDIR)/$(am__dirstamp) -+ - libderef-plugin.la: $(libderef_plugin_la_OBJECTS) $(libderef_plugin_la_DEPENDENCIES) $(EXTRA_libderef_plugin_la_DEPENDENCIES) -- $(libderef_plugin_la_LINK) -rpath $(serverplugindir) $(libderef_plugin_la_OBJECTS) $(libderef_plugin_la_LIBADD) $(LIBS) -+ $(AM_V_CCLD)$(libderef_plugin_la_LINK) -rpath $(serverplugindir) $(libderef_plugin_la_OBJECTS) $(libderef_plugin_la_LIBADD) $(LIBS) - ldap/servers/plugins/rever/$(am__dirstamp): - @$(MKDIR_P) ldap/servers/plugins/rever - @: > ldap/servers/plugins/rever/$(am__dirstamp) -@@ -3391,8 +3524,9 @@ ldap/servers/plugins/rever/libdes_plugin_la-des.lo: \ - ldap/servers/plugins/rever/libdes_plugin_la-rever.lo: \ - ldap/servers/plugins/rever/$(am__dirstamp) \ - ldap/servers/plugins/rever/$(DEPDIR)/$(am__dirstamp) -+ - libdes-plugin.la: $(libdes_plugin_la_OBJECTS) $(libdes_plugin_la_DEPENDENCIES) $(EXTRA_libdes_plugin_la_DEPENDENCIES) -- $(libdes_plugin_la_LINK) -rpath $(serverplugindir) $(libdes_plugin_la_OBJECTS) $(libdes_plugin_la_LIBADD) $(LIBS) -+ $(AM_V_CCLD)$(libdes_plugin_la_LINK) -rpath $(serverplugindir) $(libdes_plugin_la_OBJECTS) $(libdes_plugin_la_LIBADD) $(LIBS) - ldap/servers/plugins/distrib/$(am__dirstamp): - @$(MKDIR_P) ldap/servers/plugins/distrib - @: > ldap/servers/plugins/distrib/$(am__dirstamp) -@@ -3402,8 +3536,9 @@ ldap/servers/plugins/distrib/$(DEPDIR)/$(am__dirstamp): - ldap/servers/plugins/distrib/libdistrib_plugin_la-distrib.lo: \ - ldap/servers/plugins/distrib/$(am__dirstamp) \ - ldap/servers/plugins/distrib/$(DEPDIR)/$(am__dirstamp) -+ - libdistrib-plugin.la: $(libdistrib_plugin_la_OBJECTS) $(libdistrib_plugin_la_DEPENDENCIES) $(EXTRA_libdistrib_plugin_la_DEPENDENCIES) -- $(libdistrib_plugin_la_LINK) -rpath $(serverplugindir) $(libdistrib_plugin_la_OBJECTS) $(libdistrib_plugin_la_LIBADD) $(LIBS) -+ $(AM_V_CCLD)$(libdistrib_plugin_la_LINK) -rpath $(serverplugindir) $(libdistrib_plugin_la_OBJECTS) $(libdistrib_plugin_la_LIBADD) $(LIBS) - ldap/servers/plugins/dna/$(am__dirstamp): - @$(MKDIR_P) ldap/servers/plugins/dna - @: > ldap/servers/plugins/dna/$(am__dirstamp) -@@ -3413,8 +3548,9 @@ ldap/servers/plugins/dna/$(DEPDIR)/$(am__dirstamp): - ldap/servers/plugins/dna/libdna_plugin_la-dna.lo: \ - ldap/servers/plugins/dna/$(am__dirstamp) \ - ldap/servers/plugins/dna/$(DEPDIR)/$(am__dirstamp) -+ - libdna-plugin.la: $(libdna_plugin_la_OBJECTS) $(libdna_plugin_la_DEPENDENCIES) $(EXTRA_libdna_plugin_la_DEPENDENCIES) -- $(libdna_plugin_la_LINK) $(am_libdna_plugin_la_rpath) $(libdna_plugin_la_OBJECTS) $(libdna_plugin_la_LIBADD) $(LIBS) -+ $(AM_V_CCLD)$(libdna_plugin_la_LINK) $(am_libdna_plugin_la_rpath) $(libdna_plugin_la_OBJECTS) $(libdna_plugin_la_LIBADD) $(LIBS) - ldap/servers/plugins/http/$(am__dirstamp): - @$(MKDIR_P) ldap/servers/plugins/http - @: > ldap/servers/plugins/http/$(am__dirstamp) -@@ -3427,8 +3563,9 @@ ldap/servers/plugins/http/libhttp_client_plugin_la-http_client.lo: \ - ldap/servers/plugins/http/libhttp_client_plugin_la-http_impl.lo: \ - ldap/servers/plugins/http/$(am__dirstamp) \ - ldap/servers/plugins/http/$(DEPDIR)/$(am__dirstamp) -+ - libhttp-client-plugin.la: $(libhttp_client_plugin_la_OBJECTS) $(libhttp_client_plugin_la_DEPENDENCIES) $(EXTRA_libhttp_client_plugin_la_DEPENDENCIES) -- $(libhttp_client_plugin_la_LINK) -rpath $(serverplugindir) $(libhttp_client_plugin_la_OBJECTS) $(libhttp_client_plugin_la_LIBADD) $(LIBS) -+ $(AM_V_CCLD)$(libhttp_client_plugin_la_LINK) -rpath $(serverplugindir) $(libhttp_client_plugin_la_OBJECTS) $(libhttp_client_plugin_la_LIBADD) $(LIBS) - ldap/servers/plugins/linkedattrs/$(am__dirstamp): - @$(MKDIR_P) ldap/servers/plugins/linkedattrs - @: > ldap/servers/plugins/linkedattrs/$(am__dirstamp) -@@ -3441,8 +3578,9 @@ ldap/servers/plugins/linkedattrs/liblinkedattrs_plugin_la-fixup_task.lo: \ - ldap/servers/plugins/linkedattrs/liblinkedattrs_plugin_la-linked_attrs.lo: \ - ldap/servers/plugins/linkedattrs/$(am__dirstamp) \ - ldap/servers/plugins/linkedattrs/$(DEPDIR)/$(am__dirstamp) -+ - liblinkedattrs-plugin.la: $(liblinkedattrs_plugin_la_OBJECTS) $(liblinkedattrs_plugin_la_DEPENDENCIES) $(EXTRA_liblinkedattrs_plugin_la_DEPENDENCIES) -- $(liblinkedattrs_plugin_la_LINK) -rpath $(serverplugindir) $(liblinkedattrs_plugin_la_OBJECTS) $(liblinkedattrs_plugin_la_LIBADD) $(LIBS) -+ $(AM_V_CCLD)$(liblinkedattrs_plugin_la_LINK) -rpath $(serverplugindir) $(liblinkedattrs_plugin_la_OBJECTS) $(liblinkedattrs_plugin_la_LIBADD) $(LIBS) - ldap/servers/plugins/mep/$(am__dirstamp): - @$(MKDIR_P) ldap/servers/plugins/mep - @: > ldap/servers/plugins/mep/$(am__dirstamp) -@@ -3452,8 +3590,9 @@ ldap/servers/plugins/mep/$(DEPDIR)/$(am__dirstamp): - ldap/servers/plugins/mep/libmanagedentries_plugin_la-mep.lo: \ - ldap/servers/plugins/mep/$(am__dirstamp) \ - ldap/servers/plugins/mep/$(DEPDIR)/$(am__dirstamp) -+ - libmanagedentries-plugin.la: $(libmanagedentries_plugin_la_OBJECTS) $(libmanagedentries_plugin_la_DEPENDENCIES) $(EXTRA_libmanagedentries_plugin_la_DEPENDENCIES) -- $(libmanagedentries_plugin_la_LINK) -rpath $(serverplugindir) $(libmanagedentries_plugin_la_OBJECTS) $(libmanagedentries_plugin_la_LIBADD) $(LIBS) -+ $(AM_V_CCLD)$(libmanagedentries_plugin_la_LINK) -rpath $(serverplugindir) $(libmanagedentries_plugin_la_OBJECTS) $(libmanagedentries_plugin_la_LIBADD) $(LIBS) - ldap/servers/plugins/memberof/$(am__dirstamp): - @$(MKDIR_P) ldap/servers/plugins/memberof - @: > ldap/servers/plugins/memberof/$(am__dirstamp) -@@ -3466,8 +3605,9 @@ ldap/servers/plugins/memberof/libmemberof_plugin_la-memberof.lo: \ - ldap/servers/plugins/memberof/libmemberof_plugin_la-memberof_config.lo: \ - ldap/servers/plugins/memberof/$(am__dirstamp) \ - ldap/servers/plugins/memberof/$(DEPDIR)/$(am__dirstamp) -+ - libmemberof-plugin.la: $(libmemberof_plugin_la_OBJECTS) $(libmemberof_plugin_la_DEPENDENCIES) $(EXTRA_libmemberof_plugin_la_DEPENDENCIES) -- $(libmemberof_plugin_la_LINK) -rpath $(serverplugindir) $(libmemberof_plugin_la_OBJECTS) $(libmemberof_plugin_la_LIBADD) $(LIBS) -+ $(AM_V_CCLD)$(libmemberof_plugin_la_LINK) -rpath $(serverplugindir) $(libmemberof_plugin_la_OBJECTS) $(libmemberof_plugin_la_LIBADD) $(LIBS) - lib/libaccess/$(am__dirstamp): - @$(MKDIR_P) lib/libaccess - @: > lib/libaccess/$(am__dirstamp) -@@ -3625,8 +3765,9 @@ lib/ldaputil/libns_dshttpd_la-ldapauth.lo: \ - lib/ldaputil/$(DEPDIR)/$(am__dirstamp) - lib/ldaputil/libns_dshttpd_la-vtable.lo: lib/ldaputil/$(am__dirstamp) \ - lib/ldaputil/$(DEPDIR)/$(am__dirstamp) -+ - libns-dshttpd.la: $(libns_dshttpd_la_OBJECTS) $(libns_dshttpd_la_DEPENDENCIES) $(EXTRA_libns_dshttpd_la_DEPENDENCIES) -- $(CXXLINK) -rpath $(serverdir) $(libns_dshttpd_la_OBJECTS) $(libns_dshttpd_la_LIBADD) $(LIBS) -+ $(AM_V_CXXLD)$(CXXLINK) -rpath $(serverdir) $(libns_dshttpd_la_OBJECTS) $(libns_dshttpd_la_LIBADD) $(LIBS) - ldap/servers/plugins/pam_passthru/$(am__dirstamp): - @$(MKDIR_P) ldap/servers/plugins/pam_passthru - @: > ldap/servers/plugins/pam_passthru/$(am__dirstamp) -@@ -3645,8 +3786,9 @@ ldap/servers/plugins/pam_passthru/libpam_passthru_plugin_la-pam_ptimpl.lo: \ - ldap/servers/plugins/pam_passthru/libpam_passthru_plugin_la-pam_ptpreop.lo: \ - ldap/servers/plugins/pam_passthru/$(am__dirstamp) \ - ldap/servers/plugins/pam_passthru/$(DEPDIR)/$(am__dirstamp) -+ - libpam-passthru-plugin.la: $(libpam_passthru_plugin_la_OBJECTS) $(libpam_passthru_plugin_la_DEPENDENCIES) $(EXTRA_libpam_passthru_plugin_la_DEPENDENCIES) -- $(libpam_passthru_plugin_la_LINK) $(am_libpam_passthru_plugin_la_rpath) $(libpam_passthru_plugin_la_OBJECTS) $(libpam_passthru_plugin_la_LIBADD) $(LIBS) -+ $(AM_V_CCLD)$(libpam_passthru_plugin_la_LINK) $(am_libpam_passthru_plugin_la_rpath) $(libpam_passthru_plugin_la_OBJECTS) $(libpam_passthru_plugin_la_LIBADD) $(LIBS) - ldap/servers/plugins/passthru/$(am__dirstamp): - @$(MKDIR_P) ldap/servers/plugins/passthru - @: > ldap/servers/plugins/passthru/$(am__dirstamp) -@@ -3671,8 +3813,9 @@ ldap/servers/plugins/passthru/libpassthru_plugin_la-ptpreop.lo: \ - ldap/servers/plugins/passthru/libpassthru_plugin_la-ptutil.lo: \ - ldap/servers/plugins/passthru/$(am__dirstamp) \ - ldap/servers/plugins/passthru/$(DEPDIR)/$(am__dirstamp) -+ - libpassthru-plugin.la: $(libpassthru_plugin_la_OBJECTS) $(libpassthru_plugin_la_DEPENDENCIES) $(EXTRA_libpassthru_plugin_la_DEPENDENCIES) -- $(libpassthru_plugin_la_LINK) -rpath $(serverplugindir) $(libpassthru_plugin_la_OBJECTS) $(libpassthru_plugin_la_LIBADD) $(LIBS) -+ $(AM_V_CCLD)$(libpassthru_plugin_la_LINK) -rpath $(serverplugindir) $(libpassthru_plugin_la_OBJECTS) $(libpassthru_plugin_la_LIBADD) $(LIBS) - ldap/servers/plugins/posix-winsync/$(am__dirstamp): - @$(MKDIR_P) ldap/servers/plugins/posix-winsync - @: > ldap/servers/plugins/posix-winsync/$(am__dirstamp) -@@ -3691,8 +3834,9 @@ ldap/servers/plugins/posix-winsync/libposix_winsync_plugin_la-posix-group-task.l - ldap/servers/plugins/posix-winsync/libposix_winsync_plugin_la-posix-winsync-config.lo: \ - ldap/servers/plugins/posix-winsync/$(am__dirstamp) \ - ldap/servers/plugins/posix-winsync/$(DEPDIR)/$(am__dirstamp) -+ - libposix-winsync-plugin.la: $(libposix_winsync_plugin_la_OBJECTS) $(libposix_winsync_plugin_la_DEPENDENCIES) $(EXTRA_libposix_winsync_plugin_la_DEPENDENCIES) -- $(libposix_winsync_plugin_la_LINK) $(am_libposix_winsync_plugin_la_rpath) $(libposix_winsync_plugin_la_OBJECTS) $(libposix_winsync_plugin_la_LIBADD) $(LIBS) -+ $(AM_V_CCLD)$(libposix_winsync_plugin_la_LINK) $(am_libposix_winsync_plugin_la_rpath) $(libposix_winsync_plugin_la_OBJECTS) $(libposix_winsync_plugin_la_LIBADD) $(LIBS) - ldap/servers/plugins/presence/$(am__dirstamp): - @$(MKDIR_P) ldap/servers/plugins/presence - @: > ldap/servers/plugins/presence/$(am__dirstamp) -@@ -3702,8 +3846,9 @@ ldap/servers/plugins/presence/$(DEPDIR)/$(am__dirstamp): - ldap/servers/plugins/presence/libpresence_plugin_la-presence.lo: \ - ldap/servers/plugins/presence/$(am__dirstamp) \ - ldap/servers/plugins/presence/$(DEPDIR)/$(am__dirstamp) -+ - libpresence-plugin.la: $(libpresence_plugin_la_OBJECTS) $(libpresence_plugin_la_DEPENDENCIES) $(EXTRA_libpresence_plugin_la_DEPENDENCIES) -- $(libpresence_plugin_la_LINK) $(am_libpresence_plugin_la_rpath) $(libpresence_plugin_la_OBJECTS) $(libpresence_plugin_la_LIBADD) $(LIBS) -+ $(AM_V_CCLD)$(libpresence_plugin_la_LINK) $(am_libpresence_plugin_la_rpath) $(libpresence_plugin_la_OBJECTS) $(libpresence_plugin_la_LIBADD) $(LIBS) - ldap/servers/plugins/pwdstorage/$(am__dirstamp): - @$(MKDIR_P) ldap/servers/plugins/pwdstorage - @: > ldap/servers/plugins/pwdstorage/$(am__dirstamp) -@@ -3740,8 +3885,9 @@ ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-smd5_pwd.lo: \ - ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-ssha_pwd.lo: \ - ldap/servers/plugins/pwdstorage/$(am__dirstamp) \ - ldap/servers/plugins/pwdstorage/$(DEPDIR)/$(am__dirstamp) -+ - libpwdstorage-plugin.la: $(libpwdstorage_plugin_la_OBJECTS) $(libpwdstorage_plugin_la_DEPENDENCIES) $(EXTRA_libpwdstorage_plugin_la_DEPENDENCIES) -- $(libpwdstorage_plugin_la_LINK) -rpath $(serverplugindir) $(libpwdstorage_plugin_la_OBJECTS) $(libpwdstorage_plugin_la_LIBADD) $(LIBS) -+ $(AM_V_CCLD)$(libpwdstorage_plugin_la_LINK) -rpath $(serverplugindir) $(libpwdstorage_plugin_la_OBJECTS) $(libpwdstorage_plugin_la_LIBADD) $(LIBS) - ldap/servers/plugins/referint/$(am__dirstamp): - @$(MKDIR_P) ldap/servers/plugins/referint - @: > ldap/servers/plugins/referint/$(am__dirstamp) -@@ -3751,8 +3897,9 @@ ldap/servers/plugins/referint/$(DEPDIR)/$(am__dirstamp): - ldap/servers/plugins/referint/libreferint_plugin_la-referint.lo: \ - ldap/servers/plugins/referint/$(am__dirstamp) \ - ldap/servers/plugins/referint/$(DEPDIR)/$(am__dirstamp) -+ - libreferint-plugin.la: $(libreferint_plugin_la_OBJECTS) $(libreferint_plugin_la_DEPENDENCIES) $(EXTRA_libreferint_plugin_la_DEPENDENCIES) -- $(libreferint_plugin_la_LINK) -rpath $(serverplugindir) $(libreferint_plugin_la_OBJECTS) $(libreferint_plugin_la_LIBADD) $(LIBS) -+ $(AM_V_CCLD)$(libreferint_plugin_la_LINK) -rpath $(serverplugindir) $(libreferint_plugin_la_OBJECTS) $(libreferint_plugin_la_LIBADD) $(LIBS) - ldap/servers/plugins/replication/$(am__dirstamp): - @$(MKDIR_P) ldap/servers/plugins/replication - @: > ldap/servers/plugins/replication/$(am__dirstamp) -@@ -3927,8 +4074,9 @@ ldap/servers/plugins/replication/libreplication_plugin_la-windows_protocol_util. - ldap/servers/plugins/replication/libreplication_plugin_la-windows_tot_protocol.lo: \ - ldap/servers/plugins/replication/$(am__dirstamp) \ - ldap/servers/plugins/replication/$(DEPDIR)/$(am__dirstamp) -+ - libreplication-plugin.la: $(libreplication_plugin_la_OBJECTS) $(libreplication_plugin_la_DEPENDENCIES) $(EXTRA_libreplication_plugin_la_DEPENDENCIES) -- $(libreplication_plugin_la_LINK) -rpath $(serverplugindir) $(libreplication_plugin_la_OBJECTS) $(libreplication_plugin_la_LIBADD) $(LIBS) -+ $(AM_V_CCLD)$(libreplication_plugin_la_LINK) -rpath $(serverplugindir) $(libreplication_plugin_la_OBJECTS) $(libreplication_plugin_la_LIBADD) $(LIBS) - ldap/servers/plugins/retrocl/$(am__dirstamp): - @$(MKDIR_P) ldap/servers/plugins/retrocl - @: > ldap/servers/plugins/retrocl/$(am__dirstamp) -@@ -3953,8 +4101,9 @@ ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_rootdse.lo: \ - ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_trim.lo: \ - ldap/servers/plugins/retrocl/$(am__dirstamp) \ - ldap/servers/plugins/retrocl/$(DEPDIR)/$(am__dirstamp) -+ - libretrocl-plugin.la: $(libretrocl_plugin_la_OBJECTS) $(libretrocl_plugin_la_DEPENDENCIES) $(EXTRA_libretrocl_plugin_la_DEPENDENCIES) -- $(libretrocl_plugin_la_LINK) -rpath $(serverplugindir) $(libretrocl_plugin_la_OBJECTS) $(libretrocl_plugin_la_LIBADD) $(LIBS) -+ $(AM_V_CCLD)$(libretrocl_plugin_la_LINK) -rpath $(serverplugindir) $(libretrocl_plugin_la_OBJECTS) $(libretrocl_plugin_la_LIBADD) $(LIBS) - ldap/servers/plugins/roles/$(am__dirstamp): - @$(MKDIR_P) ldap/servers/plugins/roles - @: > ldap/servers/plugins/roles/$(am__dirstamp) -@@ -3967,8 +4116,9 @@ ldap/servers/plugins/roles/libroles_plugin_la-roles_cache.lo: \ - ldap/servers/plugins/roles/libroles_plugin_la-roles_plugin.lo: \ - ldap/servers/plugins/roles/$(am__dirstamp) \ - ldap/servers/plugins/roles/$(DEPDIR)/$(am__dirstamp) -+ - libroles-plugin.la: $(libroles_plugin_la_OBJECTS) $(libroles_plugin_la_DEPENDENCIES) $(EXTRA_libroles_plugin_la_DEPENDENCIES) -- $(libroles_plugin_la_LINK) -rpath $(serverplugindir) $(libroles_plugin_la_OBJECTS) $(libroles_plugin_la_LIBADD) $(LIBS) -+ $(AM_V_CCLD)$(libroles_plugin_la_LINK) -rpath $(serverplugindir) $(libroles_plugin_la_OBJECTS) $(libroles_plugin_la_LIBADD) $(LIBS) - ldap/servers/plugins/rootdn_access/$(am__dirstamp): - @$(MKDIR_P) ldap/servers/plugins/rootdn_access - @: > ldap/servers/plugins/rootdn_access/$(am__dirstamp) -@@ -3978,8 +4128,9 @@ ldap/servers/plugins/rootdn_access/$(DEPDIR)/$(am__dirstamp): - ldap/servers/plugins/rootdn_access/librootdn_access_plugin_la-rootdn_access.lo: \ - ldap/servers/plugins/rootdn_access/$(am__dirstamp) \ - ldap/servers/plugins/rootdn_access/$(DEPDIR)/$(am__dirstamp) -+ - librootdn-access-plugin.la: $(librootdn_access_plugin_la_OBJECTS) $(librootdn_access_plugin_la_DEPENDENCIES) $(EXTRA_librootdn_access_plugin_la_DEPENDENCIES) -- $(librootdn_access_plugin_la_LINK) -rpath $(serverplugindir) $(librootdn_access_plugin_la_OBJECTS) $(librootdn_access_plugin_la_LIBADD) $(LIBS) -+ $(AM_V_CCLD)$(librootdn_access_plugin_la_LINK) -rpath $(serverplugindir) $(librootdn_access_plugin_la_OBJECTS) $(librootdn_access_plugin_la_LIBADD) $(LIBS) - ldap/servers/plugins/schema_reload/$(am__dirstamp): - @$(MKDIR_P) ldap/servers/plugins/schema_reload - @: > ldap/servers/plugins/schema_reload/$(am__dirstamp) -@@ -3989,8 +4140,9 @@ ldap/servers/plugins/schema_reload/$(DEPDIR)/$(am__dirstamp): - ldap/servers/plugins/schema_reload/libschemareload_plugin_la-schema_reload.lo: \ - ldap/servers/plugins/schema_reload/$(am__dirstamp) \ - ldap/servers/plugins/schema_reload/$(DEPDIR)/$(am__dirstamp) -+ - libschemareload-plugin.la: $(libschemareload_plugin_la_OBJECTS) $(libschemareload_plugin_la_DEPENDENCIES) $(EXTRA_libschemareload_plugin_la_DEPENDENCIES) -- $(libschemareload_plugin_la_LINK) -rpath $(serverplugindir) $(libschemareload_plugin_la_OBJECTS) $(libschemareload_plugin_la_LIBADD) $(LIBS) -+ $(AM_V_CCLD)$(libschemareload_plugin_la_LINK) -rpath $(serverplugindir) $(libschemareload_plugin_la_OBJECTS) $(libschemareload_plugin_la_LIBADD) $(LIBS) - ldap/servers/slapd/$(am__dirstamp): - @$(MKDIR_P) ldap/servers/slapd - @: > ldap/servers/slapd/$(am__dirstamp) -@@ -4285,8 +4437,9 @@ ldap/libraries/libavl/libslapd_la-avl.lo: \ - ldap/servers/slapd/libslapd_la-slapi_counter_sunos_sparcv9.lo: \ - ldap/servers/slapd/$(am__dirstamp) \ - ldap/servers/slapd/$(DEPDIR)/$(am__dirstamp) -+ - libslapd.la: $(libslapd_la_OBJECTS) $(libslapd_la_DEPENDENCIES) $(EXTRA_libslapd_la_DEPENDENCIES) -- $(LINK) -rpath $(serverdir) $(libslapd_la_OBJECTS) $(libslapd_la_LIBADD) $(LIBS) -+ $(AM_V_CCLD)$(LINK) -rpath $(serverdir) $(libslapd_la_OBJECTS) $(libslapd_la_LIBADD) $(LIBS) - ldap/servers/plugins/statechange/$(am__dirstamp): - @$(MKDIR_P) ldap/servers/plugins/statechange - @: > ldap/servers/plugins/statechange/$(am__dirstamp) -@@ -4296,8 +4449,9 @@ ldap/servers/plugins/statechange/$(DEPDIR)/$(am__dirstamp): - ldap/servers/plugins/statechange/libstatechange_plugin_la-statechange.lo: \ - ldap/servers/plugins/statechange/$(am__dirstamp) \ - ldap/servers/plugins/statechange/$(DEPDIR)/$(am__dirstamp) -+ - libstatechange-plugin.la: $(libstatechange_plugin_la_OBJECTS) $(libstatechange_plugin_la_DEPENDENCIES) $(EXTRA_libstatechange_plugin_la_DEPENDENCIES) -- $(libstatechange_plugin_la_LINK) -rpath $(serverplugindir) $(libstatechange_plugin_la_OBJECTS) $(libstatechange_plugin_la_LIBADD) $(LIBS) -+ $(AM_V_CCLD)$(libstatechange_plugin_la_LINK) -rpath $(serverplugindir) $(libstatechange_plugin_la_OBJECTS) $(libstatechange_plugin_la_LIBADD) $(LIBS) - ldap/servers/plugins/syntaxes/$(am__dirstamp): - @$(MKDIR_P) ldap/servers/plugins/syntaxes - @: > ldap/servers/plugins/syntaxes/$(am__dirstamp) -@@ -4370,8 +4524,9 @@ ldap/servers/plugins/syntaxes/libsyntax_plugin_la-validate_task.lo: \ - ldap/servers/plugins/syntaxes/libsyntax_plugin_la-value.lo: \ - ldap/servers/plugins/syntaxes/$(am__dirstamp) \ - ldap/servers/plugins/syntaxes/$(DEPDIR)/$(am__dirstamp) -+ - libsyntax-plugin.la: $(libsyntax_plugin_la_OBJECTS) $(libsyntax_plugin_la_DEPENDENCIES) $(EXTRA_libsyntax_plugin_la_DEPENDENCIES) -- $(libsyntax_plugin_la_LINK) -rpath $(serverplugindir) $(libsyntax_plugin_la_OBJECTS) $(libsyntax_plugin_la_LIBADD) $(LIBS) -+ $(AM_V_CCLD)$(libsyntax_plugin_la_LINK) -rpath $(serverplugindir) $(libsyntax_plugin_la_OBJECTS) $(libsyntax_plugin_la_LIBADD) $(LIBS) - ldap/servers/plugins/usn/$(am__dirstamp): - @$(MKDIR_P) ldap/servers/plugins/usn - @: > ldap/servers/plugins/usn/$(am__dirstamp) -@@ -4384,8 +4539,9 @@ ldap/servers/plugins/usn/libusn_plugin_la-usn.lo: \ - ldap/servers/plugins/usn/libusn_plugin_la-usn_cleanup.lo: \ - ldap/servers/plugins/usn/$(am__dirstamp) \ - ldap/servers/plugins/usn/$(DEPDIR)/$(am__dirstamp) -+ - libusn-plugin.la: $(libusn_plugin_la_OBJECTS) $(libusn_plugin_la_DEPENDENCIES) $(EXTRA_libusn_plugin_la_DEPENDENCIES) -- $(libusn_plugin_la_LINK) -rpath $(serverplugindir) $(libusn_plugin_la_OBJECTS) $(libusn_plugin_la_LIBADD) $(LIBS) -+ $(AM_V_CCLD)$(libusn_plugin_la_LINK) -rpath $(serverplugindir) $(libusn_plugin_la_OBJECTS) $(libusn_plugin_la_LIBADD) $(LIBS) - ldap/servers/plugins/views/$(am__dirstamp): - @$(MKDIR_P) ldap/servers/plugins/views - @: > ldap/servers/plugins/views/$(am__dirstamp) -@@ -4395,8 +4551,9 @@ ldap/servers/plugins/views/$(DEPDIR)/$(am__dirstamp): - ldap/servers/plugins/views/libviews_plugin_la-views.lo: \ - ldap/servers/plugins/views/$(am__dirstamp) \ - ldap/servers/plugins/views/$(DEPDIR)/$(am__dirstamp) -+ - libviews-plugin.la: $(libviews_plugin_la_OBJECTS) $(libviews_plugin_la_DEPENDENCIES) $(EXTRA_libviews_plugin_la_DEPENDENCIES) -- $(libviews_plugin_la_LINK) -rpath $(serverplugindir) $(libviews_plugin_la_OBJECTS) $(libviews_plugin_la_LIBADD) $(LIBS) -+ $(AM_V_CCLD)$(libviews_plugin_la_LINK) -rpath $(serverplugindir) $(libviews_plugin_la_OBJECTS) $(libviews_plugin_la_LIBADD) $(LIBS) - install-binPROGRAMS: $(bin_PROGRAMS) - @$(NORMAL_INSTALL) - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ -@@ -4406,10 +4563,12 @@ install-binPROGRAMS: $(bin_PROGRAMS) - fi; \ - for p in $$list; do echo "$$p $$p"; done | \ - sed 's/$(EXEEXT)$$//' | \ -- while read p p1; do if test -f $$p || test -f $$p1; \ -- then echo "$$p"; echo "$$p"; else :; fi; \ -+ while read p p1; do if test -f $$p \ -+ || test -f $$p1 \ -+ ; then echo "$$p"; echo "$$p"; else :; fi; \ - done | \ -- sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ -+ sed -e 'p;s,.*/,,;n;h' \ -+ -e 's|.*|.|' \ - -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ - sed 'N;N;N;s,\n, ,g' | \ - $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ -@@ -4430,7 +4589,8 @@ uninstall-binPROGRAMS: - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - files=`for p in $$list; do echo "$$p"; done | \ - sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ -- -e 's/$$/$(EXEEXT)/' `; \ -+ -e 's/$$/$(EXEEXT)/' \ -+ `; \ - test -n "$$list" || exit 0; \ - echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(bindir)" && rm -f $$files -@@ -4461,10 +4621,12 @@ install-sbinPROGRAMS: $(sbin_PROGRAMS) - fi; \ - for p in $$list; do echo "$$p $$p"; done | \ - sed 's/$(EXEEXT)$$//' | \ -- while read p p1; do if test -f $$p || test -f $$p1; \ -- then echo "$$p"; echo "$$p"; else :; fi; \ -+ while read p p1; do if test -f $$p \ -+ || test -f $$p1 \ -+ ; then echo "$$p"; echo "$$p"; else :; fi; \ - done | \ -- sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ -+ sed -e 'p;s,.*/,,;n;h' \ -+ -e 's|.*|.|' \ - -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ - sed 'N;N;N;s,\n, ,g' | \ - $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ -@@ -4485,7 +4647,8 @@ uninstall-sbinPROGRAMS: - @list='$(sbin_PROGRAMS)'; test -n "$(sbindir)" || list=; \ - files=`for p in $$list; do echo "$$p"; done | \ - sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ -- -e 's/$$/$(EXEEXT)/' `; \ -+ -e 's/$$/$(EXEEXT)/' \ -+ `; \ - test -n "$$list" || exit 0; \ - echo " ( cd '$(DESTDIR)$(sbindir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(sbindir)" && rm -f $$files -@@ -4507,9 +4670,10 @@ ldap/servers/slapd/tools/$(DEPDIR)/$(am__dirstamp): - ldap/servers/slapd/tools/dbscan_bin-dbscan.$(OBJEXT): \ - ldap/servers/slapd/tools/$(am__dirstamp) \ - ldap/servers/slapd/tools/$(DEPDIR)/$(am__dirstamp) -+ - dbscan-bin$(EXEEXT): $(dbscan_bin_OBJECTS) $(dbscan_bin_DEPENDENCIES) $(EXTRA_dbscan_bin_DEPENDENCIES) - @rm -f dbscan-bin$(EXEEXT) -- $(LINK) $(dbscan_bin_OBJECTS) $(dbscan_bin_LDADD) $(LIBS) -+ $(AM_V_CCLD)$(LINK) $(dbscan_bin_OBJECTS) $(dbscan_bin_LDADD) $(LIBS) - ldap/systools/$(am__dirstamp): - @$(MKDIR_P) ldap/systools - @: > ldap/systools/$(am__dirstamp) -@@ -4520,9 +4684,10 @@ ldap/systools/idsktune.$(OBJEXT): ldap/systools/$(am__dirstamp) \ - ldap/systools/$(DEPDIR)/$(am__dirstamp) - ldap/systools/pio.$(OBJEXT): ldap/systools/$(am__dirstamp) \ - ldap/systools/$(DEPDIR)/$(am__dirstamp) -+ - dsktune-bin$(EXEEXT): $(dsktune_bin_OBJECTS) $(dsktune_bin_DEPENDENCIES) $(EXTRA_dsktune_bin_DEPENDENCIES) - @rm -f dsktune-bin$(EXEEXT) -- $(LINK) $(dsktune_bin_OBJECTS) $(dsktune_bin_LDADD) $(LIBS) -+ $(AM_V_CCLD)$(LINK) $(dsktune_bin_OBJECTS) $(dsktune_bin_LDADD) $(LIBS) - ldap/servers/slapd/tools/rsearch/$(am__dirstamp): - @$(MKDIR_P) ldap/servers/slapd/tools/rsearch - @: > ldap/servers/slapd/tools/rsearch/$(am__dirstamp) -@@ -4538,9 +4703,10 @@ ldap/servers/slapd/tools/rsearch/infadd_bin-infadd.$(OBJEXT): \ - ldap/servers/slapd/tools/rsearch/infadd_bin-nametable.$(OBJEXT): \ - ldap/servers/slapd/tools/rsearch/$(am__dirstamp) \ - ldap/servers/slapd/tools/rsearch/$(DEPDIR)/$(am__dirstamp) -+ - infadd-bin$(EXEEXT): $(infadd_bin_OBJECTS) $(infadd_bin_DEPENDENCIES) $(EXTRA_infadd_bin_DEPENDENCIES) - @rm -f infadd-bin$(EXEEXT) -- $(LINK) $(infadd_bin_OBJECTS) $(infadd_bin_LDADD) $(LIBS) -+ $(AM_V_CCLD)$(LINK) $(infadd_bin_OBJECTS) $(infadd_bin_LDADD) $(LIBS) - ldap/servers/snmp/$(am__dirstamp): - @$(MKDIR_P) ldap/servers/snmp - @: > ldap/servers/snmp/$(am__dirstamp) -@@ -4556,9 +4722,10 @@ ldap/servers/snmp/ldap_agent_bin-ldap-agent.$(OBJEXT): \ - ldap/servers/slapd/ldap_agent_bin-agtmmap.$(OBJEXT): \ - ldap/servers/slapd/$(am__dirstamp) \ - ldap/servers/slapd/$(DEPDIR)/$(am__dirstamp) -+ - ldap-agent-bin$(EXEEXT): $(ldap_agent_bin_OBJECTS) $(ldap_agent_bin_DEPENDENCIES) $(EXTRA_ldap_agent_bin_DEPENDENCIES) - @rm -f ldap-agent-bin$(EXEEXT) -- $(LINK) $(ldap_agent_bin_OBJECTS) $(ldap_agent_bin_LDADD) $(LIBS) -+ $(AM_V_CCLD)$(LINK) $(ldap_agent_bin_OBJECTS) $(ldap_agent_bin_LDADD) $(LIBS) - ldap/servers/slapd/tools/ldclt_bin-ldaptool-sasl.$(OBJEXT): \ - ldap/servers/slapd/tools/$(am__dirstamp) \ - ldap/servers/slapd/tools/$(DEPDIR)/$(am__dirstamp) -@@ -4604,33 +4771,38 @@ ldap/servers/slapd/tools/ldclt/ldclt_bin-workarounds.$(OBJEXT): \ - ldap/servers/slapd/tools/ldclt/ldclt_bin-opCheck.$(OBJEXT): \ - ldap/servers/slapd/tools/ldclt/$(am__dirstamp) \ - ldap/servers/slapd/tools/ldclt/$(DEPDIR)/$(am__dirstamp) -+ - ldclt-bin$(EXEEXT): $(ldclt_bin_OBJECTS) $(ldclt_bin_DEPENDENCIES) $(EXTRA_ldclt_bin_DEPENDENCIES) - @rm -f ldclt-bin$(EXEEXT) -- $(LINK) $(ldclt_bin_OBJECTS) $(ldclt_bin_LDADD) $(LIBS) -+ $(AM_V_CCLD)$(LINK) $(ldclt_bin_OBJECTS) $(ldclt_bin_LDADD) $(LIBS) - ldap/servers/slapd/tools/ldif_bin-ldif.$(OBJEXT): \ - ldap/servers/slapd/tools/$(am__dirstamp) \ - ldap/servers/slapd/tools/$(DEPDIR)/$(am__dirstamp) -+ - ldif-bin$(EXEEXT): $(ldif_bin_OBJECTS) $(ldif_bin_DEPENDENCIES) $(EXTRA_ldif_bin_DEPENDENCIES) - @rm -f ldif-bin$(EXEEXT) -- $(LINK) $(ldif_bin_OBJECTS) $(ldif_bin_LDADD) $(LIBS) -+ $(AM_V_CCLD)$(LINK) $(ldif_bin_OBJECTS) $(ldif_bin_LDADD) $(LIBS) - lib/libsi18n/makstrdb-makstrdb.$(OBJEXT): \ - lib/libsi18n/$(am__dirstamp) \ - lib/libsi18n/$(DEPDIR)/$(am__dirstamp) -+ - makstrdb$(EXEEXT): $(makstrdb_OBJECTS) $(makstrdb_DEPENDENCIES) $(EXTRA_makstrdb_DEPENDENCIES) - @rm -f makstrdb$(EXEEXT) -- $(LINK) $(makstrdb_OBJECTS) $(makstrdb_LDADD) $(LIBS) -+ $(AM_V_CCLD)$(LINK) $(makstrdb_OBJECTS) $(makstrdb_LDADD) $(LIBS) - ldap/servers/slapd/tools/migratecred_bin-migratecred.$(OBJEXT): \ - ldap/servers/slapd/tools/$(am__dirstamp) \ - ldap/servers/slapd/tools/$(DEPDIR)/$(am__dirstamp) -+ - migratecred-bin$(EXEEXT): $(migratecred_bin_OBJECTS) $(migratecred_bin_DEPENDENCIES) $(EXTRA_migratecred_bin_DEPENDENCIES) - @rm -f migratecred-bin$(EXEEXT) -- $(LINK) $(migratecred_bin_OBJECTS) $(migratecred_bin_LDADD) $(LIBS) -+ $(AM_V_CCLD)$(LINK) $(migratecred_bin_OBJECTS) $(migratecred_bin_LDADD) $(LIBS) - ldap/servers/slapd/tools/mmldif_bin-mmldif.$(OBJEXT): \ - ldap/servers/slapd/tools/$(am__dirstamp) \ - ldap/servers/slapd/tools/$(DEPDIR)/$(am__dirstamp) -+ - mmldif-bin$(EXEEXT): $(mmldif_bin_OBJECTS) $(mmldif_bin_DEPENDENCIES) $(EXTRA_mmldif_bin_DEPENDENCIES) - @rm -f mmldif-bin$(EXEEXT) -- $(LINK) $(mmldif_bin_OBJECTS) $(mmldif_bin_LDADD) $(LIBS) -+ $(AM_V_CCLD)$(LINK) $(mmldif_bin_OBJECTS) $(mmldif_bin_LDADD) $(LIBS) - ldap/servers/slapd/ns_slapd-abandon.$(OBJEXT): \ - ldap/servers/slapd/$(am__dirstamp) \ - ldap/servers/slapd/$(DEPDIR)/$(am__dirstamp) -@@ -4727,15 +4899,17 @@ ldap/servers/slapd/ns_slapd-unbind.$(OBJEXT): \ - ldap/servers/slapd/ns_slapd-getsocketpeer.$(OBJEXT): \ - ldap/servers/slapd/$(am__dirstamp) \ - ldap/servers/slapd/$(DEPDIR)/$(am__dirstamp) -+ - ns-slapd$(EXEEXT): $(ns_slapd_OBJECTS) $(ns_slapd_DEPENDENCIES) $(EXTRA_ns_slapd_DEPENDENCIES) - @rm -f ns-slapd$(EXEEXT) -- $(ns_slapd_LINK) $(ns_slapd_OBJECTS) $(ns_slapd_LDADD) $(LIBS) -+ $(AM_V_GEN)$(ns_slapd_LINK) $(ns_slapd_OBJECTS) $(ns_slapd_LDADD) $(LIBS) - ldap/servers/slapd/tools/pwdhash_bin-pwenc.$(OBJEXT): \ - ldap/servers/slapd/tools/$(am__dirstamp) \ - ldap/servers/slapd/tools/$(DEPDIR)/$(am__dirstamp) -+ - pwdhash-bin$(EXEEXT): $(pwdhash_bin_OBJECTS) $(pwdhash_bin_DEPENDENCIES) $(EXTRA_pwdhash_bin_DEPENDENCIES) - @rm -f pwdhash-bin$(EXEEXT) -- $(LINK) $(pwdhash_bin_OBJECTS) $(pwdhash_bin_LDADD) $(LIBS) -+ $(AM_V_CCLD)$(LINK) $(pwdhash_bin_OBJECTS) $(pwdhash_bin_LDADD) $(LIBS) - ldap/servers/slapd/tools/rsearch/rsearch_bin-nametable.$(OBJEXT): \ - ldap/servers/slapd/tools/rsearch/$(am__dirstamp) \ - ldap/servers/slapd/tools/rsearch/$(DEPDIR)/$(am__dirstamp) -@@ -4748,9 +4922,10 @@ ldap/servers/slapd/tools/rsearch/rsearch_bin-sdattable.$(OBJEXT): \ - ldap/servers/slapd/tools/rsearch/rsearch_bin-searchthread.$(OBJEXT): \ - ldap/servers/slapd/tools/rsearch/$(am__dirstamp) \ - ldap/servers/slapd/tools/rsearch/$(DEPDIR)/$(am__dirstamp) -+ - rsearch-bin$(EXEEXT): $(rsearch_bin_OBJECTS) $(rsearch_bin_DEPENDENCIES) $(EXTRA_rsearch_bin_DEPENDENCIES) - @rm -f rsearch-bin$(EXEEXT) -- $(LINK) $(rsearch_bin_OBJECTS) $(rsearch_bin_LDADD) $(LIBS) -+ $(AM_V_CCLD)$(LINK) $(rsearch_bin_OBJECTS) $(rsearch_bin_LDADD) $(LIBS) - install-binSCRIPTS: $(bin_SCRIPTS) - @$(NORMAL_INSTALL) - @list='$(bin_SCRIPTS)'; test -n "$(bindir)" || list=; \ -@@ -5481,3765 +5656,3765 @@ distclean-compile: - @AMDEP_TRUE@@am__include@ @am__quote@lib/libsi18n/$(DEPDIR)/makstrdb-makstrdb.Po@am__quote@ - - .S.o: --@am__fastdepCCAS_TRUE@ depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ -+@am__fastdepCCAS_TRUE@ $(AM_V_CPPAS)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ - @am__fastdepCCAS_TRUE@ $(CPPASCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ - @am__fastdepCCAS_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po --@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -+@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCCAS_FALSE@ DEPDIR=$(DEPDIR) $(CCASDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCCAS_FALSE@ $(CPPASCOMPILE) -c -o $@ $< -+@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS@am__nodep@)$(CPPASCOMPILE) -c -o $@ $< - - .S.obj: --@am__fastdepCCAS_TRUE@ depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ -+@am__fastdepCCAS_TRUE@ $(AM_V_CPPAS)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ - @am__fastdepCCAS_TRUE@ $(CPPASCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ - @am__fastdepCCAS_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po --@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -+@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCCAS_FALSE@ DEPDIR=$(DEPDIR) $(CCASDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCCAS_FALSE@ $(CPPASCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` -+@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS@am__nodep@)$(CPPASCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - - .S.lo: --@am__fastdepCCAS_TRUE@ depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ -+@am__fastdepCCAS_TRUE@ $(AM_V_CPPAS)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ - @am__fastdepCCAS_TRUE@ $(LTCPPASCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ - @am__fastdepCCAS_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo --@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -+@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCCAS_FALSE@ DEPDIR=$(DEPDIR) $(CCASDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCCAS_FALSE@ $(LTCPPASCOMPILE) -c -o $@ $< -+@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS@am__nodep@)$(LTCPPASCOMPILE) -c -o $@ $< - - ldap/servers/slapd/libslapd_la-slapi_counter_sunos_sparcv9.lo: ldap/servers/slapd/slapi_counter_sunos_sparcv9.S --@am__fastdepCCAS_TRUE@ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CCAS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CCASFLAGS) $(CCASFLAGS) -MT ldap/servers/slapd/libslapd_la-slapi_counter_sunos_sparcv9.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-slapi_counter_sunos_sparcv9.Tpo -c -o ldap/servers/slapd/libslapd_la-slapi_counter_sunos_sparcv9.lo `test -f 'ldap/servers/slapd/slapi_counter_sunos_sparcv9.S' || echo '$(srcdir)/'`ldap/servers/slapd/slapi_counter_sunos_sparcv9.S --@am__fastdepCCAS_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-slapi_counter_sunos_sparcv9.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-slapi_counter_sunos_sparcv9.Plo --@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ source='ldap/servers/slapd/slapi_counter_sunos_sparcv9.S' object='ldap/servers/slapd/libslapd_la-slapi_counter_sunos_sparcv9.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCCAS_TRUE@ $(AM_V_CPPAS)$(LIBTOOL) $(AM_V_lt) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CCAS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CCASFLAGS) $(CCASFLAGS) -MT ldap/servers/slapd/libslapd_la-slapi_counter_sunos_sparcv9.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-slapi_counter_sunos_sparcv9.Tpo -c -o ldap/servers/slapd/libslapd_la-slapi_counter_sunos_sparcv9.lo `test -f 'ldap/servers/slapd/slapi_counter_sunos_sparcv9.S' || echo '$(srcdir)/'`ldap/servers/slapd/slapi_counter_sunos_sparcv9.S -+@am__fastdepCCAS_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-slapi_counter_sunos_sparcv9.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-slapi_counter_sunos_sparcv9.Plo -+@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS)source='ldap/servers/slapd/slapi_counter_sunos_sparcv9.S' object='ldap/servers/slapd/libslapd_la-slapi_counter_sunos_sparcv9.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCCAS_FALSE@ DEPDIR=$(DEPDIR) $(CCASDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCCAS_FALSE@ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CCAS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CCASFLAGS) $(CCASFLAGS) -c -o ldap/servers/slapd/libslapd_la-slapi_counter_sunos_sparcv9.lo `test -f 'ldap/servers/slapd/slapi_counter_sunos_sparcv9.S' || echo '$(srcdir)/'`ldap/servers/slapd/slapi_counter_sunos_sparcv9.S -+@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS@am__nodep@)$(LIBTOOL) $(AM_V_lt) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CCAS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CCASFLAGS) $(CCASFLAGS) -c -o ldap/servers/slapd/libslapd_la-slapi_counter_sunos_sparcv9.lo `test -f 'ldap/servers/slapd/slapi_counter_sunos_sparcv9.S' || echo '$(srcdir)/'`ldap/servers/slapd/slapi_counter_sunos_sparcv9.S - - .c.o: --@am__fastdepCC_TRUE@ depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ -+@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ - @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ - @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(COMPILE) -c -o $@ $< -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< - - .c.obj: --@am__fastdepCC_TRUE@ depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ -+@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ - @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ - @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - - .c.lo: --@am__fastdepCC_TRUE@ depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ -+@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ - @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ - @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< - - lib/ldaputil/libldaputil_a-cert.o: lib/ldaputil/cert.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/ldaputil/libldaputil_a-cert.o -MD -MP -MF lib/ldaputil/$(DEPDIR)/libldaputil_a-cert.Tpo -c -o lib/ldaputil/libldaputil_a-cert.o `test -f 'lib/ldaputil/cert.c' || echo '$(srcdir)/'`lib/ldaputil/cert.c --@am__fastdepCC_TRUE@ $(am__mv) lib/ldaputil/$(DEPDIR)/libldaputil_a-cert.Tpo lib/ldaputil/$(DEPDIR)/libldaputil_a-cert.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lib/ldaputil/cert.c' object='lib/ldaputil/libldaputil_a-cert.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/ldaputil/libldaputil_a-cert.o -MD -MP -MF lib/ldaputil/$(DEPDIR)/libldaputil_a-cert.Tpo -c -o lib/ldaputil/libldaputil_a-cert.o `test -f 'lib/ldaputil/cert.c' || echo '$(srcdir)/'`lib/ldaputil/cert.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lib/ldaputil/$(DEPDIR)/libldaputil_a-cert.Tpo lib/ldaputil/$(DEPDIR)/libldaputil_a-cert.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lib/ldaputil/cert.c' object='lib/ldaputil/libldaputil_a-cert.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/ldaputil/libldaputil_a-cert.o `test -f 'lib/ldaputil/cert.c' || echo '$(srcdir)/'`lib/ldaputil/cert.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/ldaputil/libldaputil_a-cert.o `test -f 'lib/ldaputil/cert.c' || echo '$(srcdir)/'`lib/ldaputil/cert.c - - lib/ldaputil/libldaputil_a-cert.obj: lib/ldaputil/cert.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/ldaputil/libldaputil_a-cert.obj -MD -MP -MF lib/ldaputil/$(DEPDIR)/libldaputil_a-cert.Tpo -c -o lib/ldaputil/libldaputil_a-cert.obj `if test -f 'lib/ldaputil/cert.c'; then $(CYGPATH_W) 'lib/ldaputil/cert.c'; else $(CYGPATH_W) '$(srcdir)/lib/ldaputil/cert.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) lib/ldaputil/$(DEPDIR)/libldaputil_a-cert.Tpo lib/ldaputil/$(DEPDIR)/libldaputil_a-cert.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lib/ldaputil/cert.c' object='lib/ldaputil/libldaputil_a-cert.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/ldaputil/libldaputil_a-cert.obj -MD -MP -MF lib/ldaputil/$(DEPDIR)/libldaputil_a-cert.Tpo -c -o lib/ldaputil/libldaputil_a-cert.obj `if test -f 'lib/ldaputil/cert.c'; then $(CYGPATH_W) 'lib/ldaputil/cert.c'; else $(CYGPATH_W) '$(srcdir)/lib/ldaputil/cert.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lib/ldaputil/$(DEPDIR)/libldaputil_a-cert.Tpo lib/ldaputil/$(DEPDIR)/libldaputil_a-cert.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lib/ldaputil/cert.c' object='lib/ldaputil/libldaputil_a-cert.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/ldaputil/libldaputil_a-cert.obj `if test -f 'lib/ldaputil/cert.c'; then $(CYGPATH_W) 'lib/ldaputil/cert.c'; else $(CYGPATH_W) '$(srcdir)/lib/ldaputil/cert.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/ldaputil/libldaputil_a-cert.obj `if test -f 'lib/ldaputil/cert.c'; then $(CYGPATH_W) 'lib/ldaputil/cert.c'; else $(CYGPATH_W) '$(srcdir)/lib/ldaputil/cert.c'; fi` - - lib/ldaputil/libldaputil_a-certmap.o: lib/ldaputil/certmap.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/ldaputil/libldaputil_a-certmap.o -MD -MP -MF lib/ldaputil/$(DEPDIR)/libldaputil_a-certmap.Tpo -c -o lib/ldaputil/libldaputil_a-certmap.o `test -f 'lib/ldaputil/certmap.c' || echo '$(srcdir)/'`lib/ldaputil/certmap.c --@am__fastdepCC_TRUE@ $(am__mv) lib/ldaputil/$(DEPDIR)/libldaputil_a-certmap.Tpo lib/ldaputil/$(DEPDIR)/libldaputil_a-certmap.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lib/ldaputil/certmap.c' object='lib/ldaputil/libldaputil_a-certmap.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/ldaputil/libldaputil_a-certmap.o -MD -MP -MF lib/ldaputil/$(DEPDIR)/libldaputil_a-certmap.Tpo -c -o lib/ldaputil/libldaputil_a-certmap.o `test -f 'lib/ldaputil/certmap.c' || echo '$(srcdir)/'`lib/ldaputil/certmap.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lib/ldaputil/$(DEPDIR)/libldaputil_a-certmap.Tpo lib/ldaputil/$(DEPDIR)/libldaputil_a-certmap.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lib/ldaputil/certmap.c' object='lib/ldaputil/libldaputil_a-certmap.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/ldaputil/libldaputil_a-certmap.o `test -f 'lib/ldaputil/certmap.c' || echo '$(srcdir)/'`lib/ldaputil/certmap.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/ldaputil/libldaputil_a-certmap.o `test -f 'lib/ldaputil/certmap.c' || echo '$(srcdir)/'`lib/ldaputil/certmap.c - - lib/ldaputil/libldaputil_a-certmap.obj: lib/ldaputil/certmap.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/ldaputil/libldaputil_a-certmap.obj -MD -MP -MF lib/ldaputil/$(DEPDIR)/libldaputil_a-certmap.Tpo -c -o lib/ldaputil/libldaputil_a-certmap.obj `if test -f 'lib/ldaputil/certmap.c'; then $(CYGPATH_W) 'lib/ldaputil/certmap.c'; else $(CYGPATH_W) '$(srcdir)/lib/ldaputil/certmap.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) lib/ldaputil/$(DEPDIR)/libldaputil_a-certmap.Tpo lib/ldaputil/$(DEPDIR)/libldaputil_a-certmap.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lib/ldaputil/certmap.c' object='lib/ldaputil/libldaputil_a-certmap.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/ldaputil/libldaputil_a-certmap.obj -MD -MP -MF lib/ldaputil/$(DEPDIR)/libldaputil_a-certmap.Tpo -c -o lib/ldaputil/libldaputil_a-certmap.obj `if test -f 'lib/ldaputil/certmap.c'; then $(CYGPATH_W) 'lib/ldaputil/certmap.c'; else $(CYGPATH_W) '$(srcdir)/lib/ldaputil/certmap.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lib/ldaputil/$(DEPDIR)/libldaputil_a-certmap.Tpo lib/ldaputil/$(DEPDIR)/libldaputil_a-certmap.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lib/ldaputil/certmap.c' object='lib/ldaputil/libldaputil_a-certmap.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/ldaputil/libldaputil_a-certmap.obj `if test -f 'lib/ldaputil/certmap.c'; then $(CYGPATH_W) 'lib/ldaputil/certmap.c'; else $(CYGPATH_W) '$(srcdir)/lib/ldaputil/certmap.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/ldaputil/libldaputil_a-certmap.obj `if test -f 'lib/ldaputil/certmap.c'; then $(CYGPATH_W) 'lib/ldaputil/certmap.c'; else $(CYGPATH_W) '$(srcdir)/lib/ldaputil/certmap.c'; fi` - - lib/ldaputil/libldaputil_a-dbconf.o: lib/ldaputil/dbconf.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/ldaputil/libldaputil_a-dbconf.o -MD -MP -MF lib/ldaputil/$(DEPDIR)/libldaputil_a-dbconf.Tpo -c -o lib/ldaputil/libldaputil_a-dbconf.o `test -f 'lib/ldaputil/dbconf.c' || echo '$(srcdir)/'`lib/ldaputil/dbconf.c --@am__fastdepCC_TRUE@ $(am__mv) lib/ldaputil/$(DEPDIR)/libldaputil_a-dbconf.Tpo lib/ldaputil/$(DEPDIR)/libldaputil_a-dbconf.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lib/ldaputil/dbconf.c' object='lib/ldaputil/libldaputil_a-dbconf.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/ldaputil/libldaputil_a-dbconf.o -MD -MP -MF lib/ldaputil/$(DEPDIR)/libldaputil_a-dbconf.Tpo -c -o lib/ldaputil/libldaputil_a-dbconf.o `test -f 'lib/ldaputil/dbconf.c' || echo '$(srcdir)/'`lib/ldaputil/dbconf.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lib/ldaputil/$(DEPDIR)/libldaputil_a-dbconf.Tpo lib/ldaputil/$(DEPDIR)/libldaputil_a-dbconf.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lib/ldaputil/dbconf.c' object='lib/ldaputil/libldaputil_a-dbconf.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/ldaputil/libldaputil_a-dbconf.o `test -f 'lib/ldaputil/dbconf.c' || echo '$(srcdir)/'`lib/ldaputil/dbconf.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/ldaputil/libldaputil_a-dbconf.o `test -f 'lib/ldaputil/dbconf.c' || echo '$(srcdir)/'`lib/ldaputil/dbconf.c - - lib/ldaputil/libldaputil_a-dbconf.obj: lib/ldaputil/dbconf.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/ldaputil/libldaputil_a-dbconf.obj -MD -MP -MF lib/ldaputil/$(DEPDIR)/libldaputil_a-dbconf.Tpo -c -o lib/ldaputil/libldaputil_a-dbconf.obj `if test -f 'lib/ldaputil/dbconf.c'; then $(CYGPATH_W) 'lib/ldaputil/dbconf.c'; else $(CYGPATH_W) '$(srcdir)/lib/ldaputil/dbconf.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) lib/ldaputil/$(DEPDIR)/libldaputil_a-dbconf.Tpo lib/ldaputil/$(DEPDIR)/libldaputil_a-dbconf.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lib/ldaputil/dbconf.c' object='lib/ldaputil/libldaputil_a-dbconf.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/ldaputil/libldaputil_a-dbconf.obj -MD -MP -MF lib/ldaputil/$(DEPDIR)/libldaputil_a-dbconf.Tpo -c -o lib/ldaputil/libldaputil_a-dbconf.obj `if test -f 'lib/ldaputil/dbconf.c'; then $(CYGPATH_W) 'lib/ldaputil/dbconf.c'; else $(CYGPATH_W) '$(srcdir)/lib/ldaputil/dbconf.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lib/ldaputil/$(DEPDIR)/libldaputil_a-dbconf.Tpo lib/ldaputil/$(DEPDIR)/libldaputil_a-dbconf.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lib/ldaputil/dbconf.c' object='lib/ldaputil/libldaputil_a-dbconf.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/ldaputil/libldaputil_a-dbconf.obj `if test -f 'lib/ldaputil/dbconf.c'; then $(CYGPATH_W) 'lib/ldaputil/dbconf.c'; else $(CYGPATH_W) '$(srcdir)/lib/ldaputil/dbconf.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/ldaputil/libldaputil_a-dbconf.obj `if test -f 'lib/ldaputil/dbconf.c'; then $(CYGPATH_W) 'lib/ldaputil/dbconf.c'; else $(CYGPATH_W) '$(srcdir)/lib/ldaputil/dbconf.c'; fi` - - lib/ldaputil/libldaputil_a-encode.o: lib/ldaputil/encode.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/ldaputil/libldaputil_a-encode.o -MD -MP -MF lib/ldaputil/$(DEPDIR)/libldaputil_a-encode.Tpo -c -o lib/ldaputil/libldaputil_a-encode.o `test -f 'lib/ldaputil/encode.c' || echo '$(srcdir)/'`lib/ldaputil/encode.c --@am__fastdepCC_TRUE@ $(am__mv) lib/ldaputil/$(DEPDIR)/libldaputil_a-encode.Tpo lib/ldaputil/$(DEPDIR)/libldaputil_a-encode.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lib/ldaputil/encode.c' object='lib/ldaputil/libldaputil_a-encode.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/ldaputil/libldaputil_a-encode.o -MD -MP -MF lib/ldaputil/$(DEPDIR)/libldaputil_a-encode.Tpo -c -o lib/ldaputil/libldaputil_a-encode.o `test -f 'lib/ldaputil/encode.c' || echo '$(srcdir)/'`lib/ldaputil/encode.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lib/ldaputil/$(DEPDIR)/libldaputil_a-encode.Tpo lib/ldaputil/$(DEPDIR)/libldaputil_a-encode.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lib/ldaputil/encode.c' object='lib/ldaputil/libldaputil_a-encode.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/ldaputil/libldaputil_a-encode.o `test -f 'lib/ldaputil/encode.c' || echo '$(srcdir)/'`lib/ldaputil/encode.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/ldaputil/libldaputil_a-encode.o `test -f 'lib/ldaputil/encode.c' || echo '$(srcdir)/'`lib/ldaputil/encode.c - - lib/ldaputil/libldaputil_a-encode.obj: lib/ldaputil/encode.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/ldaputil/libldaputil_a-encode.obj -MD -MP -MF lib/ldaputil/$(DEPDIR)/libldaputil_a-encode.Tpo -c -o lib/ldaputil/libldaputil_a-encode.obj `if test -f 'lib/ldaputil/encode.c'; then $(CYGPATH_W) 'lib/ldaputil/encode.c'; else $(CYGPATH_W) '$(srcdir)/lib/ldaputil/encode.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) lib/ldaputil/$(DEPDIR)/libldaputil_a-encode.Tpo lib/ldaputil/$(DEPDIR)/libldaputil_a-encode.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lib/ldaputil/encode.c' object='lib/ldaputil/libldaputil_a-encode.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/ldaputil/libldaputil_a-encode.obj -MD -MP -MF lib/ldaputil/$(DEPDIR)/libldaputil_a-encode.Tpo -c -o lib/ldaputil/libldaputil_a-encode.obj `if test -f 'lib/ldaputil/encode.c'; then $(CYGPATH_W) 'lib/ldaputil/encode.c'; else $(CYGPATH_W) '$(srcdir)/lib/ldaputil/encode.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lib/ldaputil/$(DEPDIR)/libldaputil_a-encode.Tpo lib/ldaputil/$(DEPDIR)/libldaputil_a-encode.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lib/ldaputil/encode.c' object='lib/ldaputil/libldaputil_a-encode.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/ldaputil/libldaputil_a-encode.obj `if test -f 'lib/ldaputil/encode.c'; then $(CYGPATH_W) 'lib/ldaputil/encode.c'; else $(CYGPATH_W) '$(srcdir)/lib/ldaputil/encode.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/ldaputil/libldaputil_a-encode.obj `if test -f 'lib/ldaputil/encode.c'; then $(CYGPATH_W) 'lib/ldaputil/encode.c'; else $(CYGPATH_W) '$(srcdir)/lib/ldaputil/encode.c'; fi` - - lib/ldaputil/libldaputil_a-errors.o: lib/ldaputil/errors.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/ldaputil/libldaputil_a-errors.o -MD -MP -MF lib/ldaputil/$(DEPDIR)/libldaputil_a-errors.Tpo -c -o lib/ldaputil/libldaputil_a-errors.o `test -f 'lib/ldaputil/errors.c' || echo '$(srcdir)/'`lib/ldaputil/errors.c --@am__fastdepCC_TRUE@ $(am__mv) lib/ldaputil/$(DEPDIR)/libldaputil_a-errors.Tpo lib/ldaputil/$(DEPDIR)/libldaputil_a-errors.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lib/ldaputil/errors.c' object='lib/ldaputil/libldaputil_a-errors.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/ldaputil/libldaputil_a-errors.o -MD -MP -MF lib/ldaputil/$(DEPDIR)/libldaputil_a-errors.Tpo -c -o lib/ldaputil/libldaputil_a-errors.o `test -f 'lib/ldaputil/errors.c' || echo '$(srcdir)/'`lib/ldaputil/errors.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lib/ldaputil/$(DEPDIR)/libldaputil_a-errors.Tpo lib/ldaputil/$(DEPDIR)/libldaputil_a-errors.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lib/ldaputil/errors.c' object='lib/ldaputil/libldaputil_a-errors.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/ldaputil/libldaputil_a-errors.o `test -f 'lib/ldaputil/errors.c' || echo '$(srcdir)/'`lib/ldaputil/errors.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/ldaputil/libldaputil_a-errors.o `test -f 'lib/ldaputil/errors.c' || echo '$(srcdir)/'`lib/ldaputil/errors.c - - lib/ldaputil/libldaputil_a-errors.obj: lib/ldaputil/errors.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/ldaputil/libldaputil_a-errors.obj -MD -MP -MF lib/ldaputil/$(DEPDIR)/libldaputil_a-errors.Tpo -c -o lib/ldaputil/libldaputil_a-errors.obj `if test -f 'lib/ldaputil/errors.c'; then $(CYGPATH_W) 'lib/ldaputil/errors.c'; else $(CYGPATH_W) '$(srcdir)/lib/ldaputil/errors.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) lib/ldaputil/$(DEPDIR)/libldaputil_a-errors.Tpo lib/ldaputil/$(DEPDIR)/libldaputil_a-errors.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lib/ldaputil/errors.c' object='lib/ldaputil/libldaputil_a-errors.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/ldaputil/libldaputil_a-errors.obj -MD -MP -MF lib/ldaputil/$(DEPDIR)/libldaputil_a-errors.Tpo -c -o lib/ldaputil/libldaputil_a-errors.obj `if test -f 'lib/ldaputil/errors.c'; then $(CYGPATH_W) 'lib/ldaputil/errors.c'; else $(CYGPATH_W) '$(srcdir)/lib/ldaputil/errors.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lib/ldaputil/$(DEPDIR)/libldaputil_a-errors.Tpo lib/ldaputil/$(DEPDIR)/libldaputil_a-errors.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lib/ldaputil/errors.c' object='lib/ldaputil/libldaputil_a-errors.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/ldaputil/libldaputil_a-errors.obj `if test -f 'lib/ldaputil/errors.c'; then $(CYGPATH_W) 'lib/ldaputil/errors.c'; else $(CYGPATH_W) '$(srcdir)/lib/ldaputil/errors.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/ldaputil/libldaputil_a-errors.obj `if test -f 'lib/ldaputil/errors.c'; then $(CYGPATH_W) 'lib/ldaputil/errors.c'; else $(CYGPATH_W) '$(srcdir)/lib/ldaputil/errors.c'; fi` - - lib/ldaputil/libldaputil_a-init.o: lib/ldaputil/init.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/ldaputil/libldaputil_a-init.o -MD -MP -MF lib/ldaputil/$(DEPDIR)/libldaputil_a-init.Tpo -c -o lib/ldaputil/libldaputil_a-init.o `test -f 'lib/ldaputil/init.c' || echo '$(srcdir)/'`lib/ldaputil/init.c --@am__fastdepCC_TRUE@ $(am__mv) lib/ldaputil/$(DEPDIR)/libldaputil_a-init.Tpo lib/ldaputil/$(DEPDIR)/libldaputil_a-init.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lib/ldaputil/init.c' object='lib/ldaputil/libldaputil_a-init.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/ldaputil/libldaputil_a-init.o -MD -MP -MF lib/ldaputil/$(DEPDIR)/libldaputil_a-init.Tpo -c -o lib/ldaputil/libldaputil_a-init.o `test -f 'lib/ldaputil/init.c' || echo '$(srcdir)/'`lib/ldaputil/init.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lib/ldaputil/$(DEPDIR)/libldaputil_a-init.Tpo lib/ldaputil/$(DEPDIR)/libldaputil_a-init.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lib/ldaputil/init.c' object='lib/ldaputil/libldaputil_a-init.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/ldaputil/libldaputil_a-init.o `test -f 'lib/ldaputil/init.c' || echo '$(srcdir)/'`lib/ldaputil/init.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/ldaputil/libldaputil_a-init.o `test -f 'lib/ldaputil/init.c' || echo '$(srcdir)/'`lib/ldaputil/init.c - - lib/ldaputil/libldaputil_a-init.obj: lib/ldaputil/init.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/ldaputil/libldaputil_a-init.obj -MD -MP -MF lib/ldaputil/$(DEPDIR)/libldaputil_a-init.Tpo -c -o lib/ldaputil/libldaputil_a-init.obj `if test -f 'lib/ldaputil/init.c'; then $(CYGPATH_W) 'lib/ldaputil/init.c'; else $(CYGPATH_W) '$(srcdir)/lib/ldaputil/init.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) lib/ldaputil/$(DEPDIR)/libldaputil_a-init.Tpo lib/ldaputil/$(DEPDIR)/libldaputil_a-init.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lib/ldaputil/init.c' object='lib/ldaputil/libldaputil_a-init.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/ldaputil/libldaputil_a-init.obj -MD -MP -MF lib/ldaputil/$(DEPDIR)/libldaputil_a-init.Tpo -c -o lib/ldaputil/libldaputil_a-init.obj `if test -f 'lib/ldaputil/init.c'; then $(CYGPATH_W) 'lib/ldaputil/init.c'; else $(CYGPATH_W) '$(srcdir)/lib/ldaputil/init.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lib/ldaputil/$(DEPDIR)/libldaputil_a-init.Tpo lib/ldaputil/$(DEPDIR)/libldaputil_a-init.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lib/ldaputil/init.c' object='lib/ldaputil/libldaputil_a-init.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/ldaputil/libldaputil_a-init.obj `if test -f 'lib/ldaputil/init.c'; then $(CYGPATH_W) 'lib/ldaputil/init.c'; else $(CYGPATH_W) '$(srcdir)/lib/ldaputil/init.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/ldaputil/libldaputil_a-init.obj `if test -f 'lib/ldaputil/init.c'; then $(CYGPATH_W) 'lib/ldaputil/init.c'; else $(CYGPATH_W) '$(srcdir)/lib/ldaputil/init.c'; fi` - - lib/ldaputil/libldaputil_a-ldapauth.o: lib/ldaputil/ldapauth.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/ldaputil/libldaputil_a-ldapauth.o -MD -MP -MF lib/ldaputil/$(DEPDIR)/libldaputil_a-ldapauth.Tpo -c -o lib/ldaputil/libldaputil_a-ldapauth.o `test -f 'lib/ldaputil/ldapauth.c' || echo '$(srcdir)/'`lib/ldaputil/ldapauth.c --@am__fastdepCC_TRUE@ $(am__mv) lib/ldaputil/$(DEPDIR)/libldaputil_a-ldapauth.Tpo lib/ldaputil/$(DEPDIR)/libldaputil_a-ldapauth.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lib/ldaputil/ldapauth.c' object='lib/ldaputil/libldaputil_a-ldapauth.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/ldaputil/libldaputil_a-ldapauth.o -MD -MP -MF lib/ldaputil/$(DEPDIR)/libldaputil_a-ldapauth.Tpo -c -o lib/ldaputil/libldaputil_a-ldapauth.o `test -f 'lib/ldaputil/ldapauth.c' || echo '$(srcdir)/'`lib/ldaputil/ldapauth.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lib/ldaputil/$(DEPDIR)/libldaputil_a-ldapauth.Tpo lib/ldaputil/$(DEPDIR)/libldaputil_a-ldapauth.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lib/ldaputil/ldapauth.c' object='lib/ldaputil/libldaputil_a-ldapauth.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/ldaputil/libldaputil_a-ldapauth.o `test -f 'lib/ldaputil/ldapauth.c' || echo '$(srcdir)/'`lib/ldaputil/ldapauth.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/ldaputil/libldaputil_a-ldapauth.o `test -f 'lib/ldaputil/ldapauth.c' || echo '$(srcdir)/'`lib/ldaputil/ldapauth.c - - lib/ldaputil/libldaputil_a-ldapauth.obj: lib/ldaputil/ldapauth.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/ldaputil/libldaputil_a-ldapauth.obj -MD -MP -MF lib/ldaputil/$(DEPDIR)/libldaputil_a-ldapauth.Tpo -c -o lib/ldaputil/libldaputil_a-ldapauth.obj `if test -f 'lib/ldaputil/ldapauth.c'; then $(CYGPATH_W) 'lib/ldaputil/ldapauth.c'; else $(CYGPATH_W) '$(srcdir)/lib/ldaputil/ldapauth.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) lib/ldaputil/$(DEPDIR)/libldaputil_a-ldapauth.Tpo lib/ldaputil/$(DEPDIR)/libldaputil_a-ldapauth.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lib/ldaputil/ldapauth.c' object='lib/ldaputil/libldaputil_a-ldapauth.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/ldaputil/libldaputil_a-ldapauth.obj -MD -MP -MF lib/ldaputil/$(DEPDIR)/libldaputil_a-ldapauth.Tpo -c -o lib/ldaputil/libldaputil_a-ldapauth.obj `if test -f 'lib/ldaputil/ldapauth.c'; then $(CYGPATH_W) 'lib/ldaputil/ldapauth.c'; else $(CYGPATH_W) '$(srcdir)/lib/ldaputil/ldapauth.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lib/ldaputil/$(DEPDIR)/libldaputil_a-ldapauth.Tpo lib/ldaputil/$(DEPDIR)/libldaputil_a-ldapauth.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lib/ldaputil/ldapauth.c' object='lib/ldaputil/libldaputil_a-ldapauth.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/ldaputil/libldaputil_a-ldapauth.obj `if test -f 'lib/ldaputil/ldapauth.c'; then $(CYGPATH_W) 'lib/ldaputil/ldapauth.c'; else $(CYGPATH_W) '$(srcdir)/lib/ldaputil/ldapauth.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/ldaputil/libldaputil_a-ldapauth.obj `if test -f 'lib/ldaputil/ldapauth.c'; then $(CYGPATH_W) 'lib/ldaputil/ldapauth.c'; else $(CYGPATH_W) '$(srcdir)/lib/ldaputil/ldapauth.c'; fi` - - lib/ldaputil/libldaputil_a-vtable.o: lib/ldaputil/vtable.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/ldaputil/libldaputil_a-vtable.o -MD -MP -MF lib/ldaputil/$(DEPDIR)/libldaputil_a-vtable.Tpo -c -o lib/ldaputil/libldaputil_a-vtable.o `test -f 'lib/ldaputil/vtable.c' || echo '$(srcdir)/'`lib/ldaputil/vtable.c --@am__fastdepCC_TRUE@ $(am__mv) lib/ldaputil/$(DEPDIR)/libldaputil_a-vtable.Tpo lib/ldaputil/$(DEPDIR)/libldaputil_a-vtable.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lib/ldaputil/vtable.c' object='lib/ldaputil/libldaputil_a-vtable.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/ldaputil/libldaputil_a-vtable.o -MD -MP -MF lib/ldaputil/$(DEPDIR)/libldaputil_a-vtable.Tpo -c -o lib/ldaputil/libldaputil_a-vtable.o `test -f 'lib/ldaputil/vtable.c' || echo '$(srcdir)/'`lib/ldaputil/vtable.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lib/ldaputil/$(DEPDIR)/libldaputil_a-vtable.Tpo lib/ldaputil/$(DEPDIR)/libldaputil_a-vtable.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lib/ldaputil/vtable.c' object='lib/ldaputil/libldaputil_a-vtable.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/ldaputil/libldaputil_a-vtable.o `test -f 'lib/ldaputil/vtable.c' || echo '$(srcdir)/'`lib/ldaputil/vtable.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/ldaputil/libldaputil_a-vtable.o `test -f 'lib/ldaputil/vtable.c' || echo '$(srcdir)/'`lib/ldaputil/vtable.c - - lib/ldaputil/libldaputil_a-vtable.obj: lib/ldaputil/vtable.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/ldaputil/libldaputil_a-vtable.obj -MD -MP -MF lib/ldaputil/$(DEPDIR)/libldaputil_a-vtable.Tpo -c -o lib/ldaputil/libldaputil_a-vtable.obj `if test -f 'lib/ldaputil/vtable.c'; then $(CYGPATH_W) 'lib/ldaputil/vtable.c'; else $(CYGPATH_W) '$(srcdir)/lib/ldaputil/vtable.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) lib/ldaputil/$(DEPDIR)/libldaputil_a-vtable.Tpo lib/ldaputil/$(DEPDIR)/libldaputil_a-vtable.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lib/ldaputil/vtable.c' object='lib/ldaputil/libldaputil_a-vtable.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/ldaputil/libldaputil_a-vtable.obj -MD -MP -MF lib/ldaputil/$(DEPDIR)/libldaputil_a-vtable.Tpo -c -o lib/ldaputil/libldaputil_a-vtable.obj `if test -f 'lib/ldaputil/vtable.c'; then $(CYGPATH_W) 'lib/ldaputil/vtable.c'; else $(CYGPATH_W) '$(srcdir)/lib/ldaputil/vtable.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lib/ldaputil/$(DEPDIR)/libldaputil_a-vtable.Tpo lib/ldaputil/$(DEPDIR)/libldaputil_a-vtable.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lib/ldaputil/vtable.c' object='lib/ldaputil/libldaputil_a-vtable.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/ldaputil/libldaputil_a-vtable.obj `if test -f 'lib/ldaputil/vtable.c'; then $(CYGPATH_W) 'lib/ldaputil/vtable.c'; else $(CYGPATH_W) '$(srcdir)/lib/ldaputil/vtable.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libldaputil_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/ldaputil/libldaputil_a-vtable.obj `if test -f 'lib/ldaputil/vtable.c'; then $(CYGPATH_W) 'lib/ldaputil/vtable.c'; else $(CYGPATH_W) '$(srcdir)/lib/ldaputil/vtable.c'; fi` - - ldap/servers/plugins/acctpolicy/libacctpolicy_plugin_la-acct_config.lo: ldap/servers/plugins/acctpolicy/acct_config.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacctpolicy_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/acctpolicy/libacctpolicy_plugin_la-acct_config.lo -MD -MP -MF ldap/servers/plugins/acctpolicy/$(DEPDIR)/libacctpolicy_plugin_la-acct_config.Tpo -c -o ldap/servers/plugins/acctpolicy/libacctpolicy_plugin_la-acct_config.lo `test -f 'ldap/servers/plugins/acctpolicy/acct_config.c' || echo '$(srcdir)/'`ldap/servers/plugins/acctpolicy/acct_config.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/acctpolicy/$(DEPDIR)/libacctpolicy_plugin_la-acct_config.Tpo ldap/servers/plugins/acctpolicy/$(DEPDIR)/libacctpolicy_plugin_la-acct_config.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/acctpolicy/acct_config.c' object='ldap/servers/plugins/acctpolicy/libacctpolicy_plugin_la-acct_config.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacctpolicy_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/acctpolicy/libacctpolicy_plugin_la-acct_config.lo -MD -MP -MF ldap/servers/plugins/acctpolicy/$(DEPDIR)/libacctpolicy_plugin_la-acct_config.Tpo -c -o ldap/servers/plugins/acctpolicy/libacctpolicy_plugin_la-acct_config.lo `test -f 'ldap/servers/plugins/acctpolicy/acct_config.c' || echo '$(srcdir)/'`ldap/servers/plugins/acctpolicy/acct_config.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/acctpolicy/$(DEPDIR)/libacctpolicy_plugin_la-acct_config.Tpo ldap/servers/plugins/acctpolicy/$(DEPDIR)/libacctpolicy_plugin_la-acct_config.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/acctpolicy/acct_config.c' object='ldap/servers/plugins/acctpolicy/libacctpolicy_plugin_la-acct_config.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacctpolicy_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/acctpolicy/libacctpolicy_plugin_la-acct_config.lo `test -f 'ldap/servers/plugins/acctpolicy/acct_config.c' || echo '$(srcdir)/'`ldap/servers/plugins/acctpolicy/acct_config.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacctpolicy_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/acctpolicy/libacctpolicy_plugin_la-acct_config.lo `test -f 'ldap/servers/plugins/acctpolicy/acct_config.c' || echo '$(srcdir)/'`ldap/servers/plugins/acctpolicy/acct_config.c - - ldap/servers/plugins/acctpolicy/libacctpolicy_plugin_la-acct_init.lo: ldap/servers/plugins/acctpolicy/acct_init.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacctpolicy_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/acctpolicy/libacctpolicy_plugin_la-acct_init.lo -MD -MP -MF ldap/servers/plugins/acctpolicy/$(DEPDIR)/libacctpolicy_plugin_la-acct_init.Tpo -c -o ldap/servers/plugins/acctpolicy/libacctpolicy_plugin_la-acct_init.lo `test -f 'ldap/servers/plugins/acctpolicy/acct_init.c' || echo '$(srcdir)/'`ldap/servers/plugins/acctpolicy/acct_init.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/acctpolicy/$(DEPDIR)/libacctpolicy_plugin_la-acct_init.Tpo ldap/servers/plugins/acctpolicy/$(DEPDIR)/libacctpolicy_plugin_la-acct_init.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/acctpolicy/acct_init.c' object='ldap/servers/plugins/acctpolicy/libacctpolicy_plugin_la-acct_init.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacctpolicy_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/acctpolicy/libacctpolicy_plugin_la-acct_init.lo -MD -MP -MF ldap/servers/plugins/acctpolicy/$(DEPDIR)/libacctpolicy_plugin_la-acct_init.Tpo -c -o ldap/servers/plugins/acctpolicy/libacctpolicy_plugin_la-acct_init.lo `test -f 'ldap/servers/plugins/acctpolicy/acct_init.c' || echo '$(srcdir)/'`ldap/servers/plugins/acctpolicy/acct_init.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/acctpolicy/$(DEPDIR)/libacctpolicy_plugin_la-acct_init.Tpo ldap/servers/plugins/acctpolicy/$(DEPDIR)/libacctpolicy_plugin_la-acct_init.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/acctpolicy/acct_init.c' object='ldap/servers/plugins/acctpolicy/libacctpolicy_plugin_la-acct_init.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacctpolicy_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/acctpolicy/libacctpolicy_plugin_la-acct_init.lo `test -f 'ldap/servers/plugins/acctpolicy/acct_init.c' || echo '$(srcdir)/'`ldap/servers/plugins/acctpolicy/acct_init.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacctpolicy_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/acctpolicy/libacctpolicy_plugin_la-acct_init.lo `test -f 'ldap/servers/plugins/acctpolicy/acct_init.c' || echo '$(srcdir)/'`ldap/servers/plugins/acctpolicy/acct_init.c - - ldap/servers/plugins/acctpolicy/libacctpolicy_plugin_la-acct_plugin.lo: ldap/servers/plugins/acctpolicy/acct_plugin.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacctpolicy_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/acctpolicy/libacctpolicy_plugin_la-acct_plugin.lo -MD -MP -MF ldap/servers/plugins/acctpolicy/$(DEPDIR)/libacctpolicy_plugin_la-acct_plugin.Tpo -c -o ldap/servers/plugins/acctpolicy/libacctpolicy_plugin_la-acct_plugin.lo `test -f 'ldap/servers/plugins/acctpolicy/acct_plugin.c' || echo '$(srcdir)/'`ldap/servers/plugins/acctpolicy/acct_plugin.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/acctpolicy/$(DEPDIR)/libacctpolicy_plugin_la-acct_plugin.Tpo ldap/servers/plugins/acctpolicy/$(DEPDIR)/libacctpolicy_plugin_la-acct_plugin.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/acctpolicy/acct_plugin.c' object='ldap/servers/plugins/acctpolicy/libacctpolicy_plugin_la-acct_plugin.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacctpolicy_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/acctpolicy/libacctpolicy_plugin_la-acct_plugin.lo -MD -MP -MF ldap/servers/plugins/acctpolicy/$(DEPDIR)/libacctpolicy_plugin_la-acct_plugin.Tpo -c -o ldap/servers/plugins/acctpolicy/libacctpolicy_plugin_la-acct_plugin.lo `test -f 'ldap/servers/plugins/acctpolicy/acct_plugin.c' || echo '$(srcdir)/'`ldap/servers/plugins/acctpolicy/acct_plugin.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/acctpolicy/$(DEPDIR)/libacctpolicy_plugin_la-acct_plugin.Tpo ldap/servers/plugins/acctpolicy/$(DEPDIR)/libacctpolicy_plugin_la-acct_plugin.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/acctpolicy/acct_plugin.c' object='ldap/servers/plugins/acctpolicy/libacctpolicy_plugin_la-acct_plugin.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacctpolicy_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/acctpolicy/libacctpolicy_plugin_la-acct_plugin.lo `test -f 'ldap/servers/plugins/acctpolicy/acct_plugin.c' || echo '$(srcdir)/'`ldap/servers/plugins/acctpolicy/acct_plugin.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacctpolicy_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/acctpolicy/libacctpolicy_plugin_la-acct_plugin.lo `test -f 'ldap/servers/plugins/acctpolicy/acct_plugin.c' || echo '$(srcdir)/'`ldap/servers/plugins/acctpolicy/acct_plugin.c - - ldap/servers/plugins/acctpolicy/libacctpolicy_plugin_la-acct_util.lo: ldap/servers/plugins/acctpolicy/acct_util.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacctpolicy_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/acctpolicy/libacctpolicy_plugin_la-acct_util.lo -MD -MP -MF ldap/servers/plugins/acctpolicy/$(DEPDIR)/libacctpolicy_plugin_la-acct_util.Tpo -c -o ldap/servers/plugins/acctpolicy/libacctpolicy_plugin_la-acct_util.lo `test -f 'ldap/servers/plugins/acctpolicy/acct_util.c' || echo '$(srcdir)/'`ldap/servers/plugins/acctpolicy/acct_util.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/acctpolicy/$(DEPDIR)/libacctpolicy_plugin_la-acct_util.Tpo ldap/servers/plugins/acctpolicy/$(DEPDIR)/libacctpolicy_plugin_la-acct_util.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/acctpolicy/acct_util.c' object='ldap/servers/plugins/acctpolicy/libacctpolicy_plugin_la-acct_util.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacctpolicy_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/acctpolicy/libacctpolicy_plugin_la-acct_util.lo -MD -MP -MF ldap/servers/plugins/acctpolicy/$(DEPDIR)/libacctpolicy_plugin_la-acct_util.Tpo -c -o ldap/servers/plugins/acctpolicy/libacctpolicy_plugin_la-acct_util.lo `test -f 'ldap/servers/plugins/acctpolicy/acct_util.c' || echo '$(srcdir)/'`ldap/servers/plugins/acctpolicy/acct_util.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/acctpolicy/$(DEPDIR)/libacctpolicy_plugin_la-acct_util.Tpo ldap/servers/plugins/acctpolicy/$(DEPDIR)/libacctpolicy_plugin_la-acct_util.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/acctpolicy/acct_util.c' object='ldap/servers/plugins/acctpolicy/libacctpolicy_plugin_la-acct_util.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacctpolicy_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/acctpolicy/libacctpolicy_plugin_la-acct_util.lo `test -f 'ldap/servers/plugins/acctpolicy/acct_util.c' || echo '$(srcdir)/'`ldap/servers/plugins/acctpolicy/acct_util.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacctpolicy_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/acctpolicy/libacctpolicy_plugin_la-acct_util.lo `test -f 'ldap/servers/plugins/acctpolicy/acct_util.c' || echo '$(srcdir)/'`ldap/servers/plugins/acctpolicy/acct_util.c - - ldap/servers/plugins/acct_usability/libacctusability_plugin_la-acct_usability.lo: ldap/servers/plugins/acct_usability/acct_usability.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacctusability_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/acct_usability/libacctusability_plugin_la-acct_usability.lo -MD -MP -MF ldap/servers/plugins/acct_usability/$(DEPDIR)/libacctusability_plugin_la-acct_usability.Tpo -c -o ldap/servers/plugins/acct_usability/libacctusability_plugin_la-acct_usability.lo `test -f 'ldap/servers/plugins/acct_usability/acct_usability.c' || echo '$(srcdir)/'`ldap/servers/plugins/acct_usability/acct_usability.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/acct_usability/$(DEPDIR)/libacctusability_plugin_la-acct_usability.Tpo ldap/servers/plugins/acct_usability/$(DEPDIR)/libacctusability_plugin_la-acct_usability.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/acct_usability/acct_usability.c' object='ldap/servers/plugins/acct_usability/libacctusability_plugin_la-acct_usability.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacctusability_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/acct_usability/libacctusability_plugin_la-acct_usability.lo -MD -MP -MF ldap/servers/plugins/acct_usability/$(DEPDIR)/libacctusability_plugin_la-acct_usability.Tpo -c -o ldap/servers/plugins/acct_usability/libacctusability_plugin_la-acct_usability.lo `test -f 'ldap/servers/plugins/acct_usability/acct_usability.c' || echo '$(srcdir)/'`ldap/servers/plugins/acct_usability/acct_usability.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/acct_usability/$(DEPDIR)/libacctusability_plugin_la-acct_usability.Tpo ldap/servers/plugins/acct_usability/$(DEPDIR)/libacctusability_plugin_la-acct_usability.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/acct_usability/acct_usability.c' object='ldap/servers/plugins/acct_usability/libacctusability_plugin_la-acct_usability.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacctusability_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/acct_usability/libacctusability_plugin_la-acct_usability.lo `test -f 'ldap/servers/plugins/acct_usability/acct_usability.c' || echo '$(srcdir)/'`ldap/servers/plugins/acct_usability/acct_usability.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacctusability_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/acct_usability/libacctusability_plugin_la-acct_usability.lo `test -f 'ldap/servers/plugins/acct_usability/acct_usability.c' || echo '$(srcdir)/'`ldap/servers/plugins/acct_usability/acct_usability.c - - ldap/servers/plugins/acl/libacl_plugin_la-acl.lo: ldap/servers/plugins/acl/acl.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/acl/libacl_plugin_la-acl.lo -MD -MP -MF ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-acl.Tpo -c -o ldap/servers/plugins/acl/libacl_plugin_la-acl.lo `test -f 'ldap/servers/plugins/acl/acl.c' || echo '$(srcdir)/'`ldap/servers/plugins/acl/acl.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-acl.Tpo ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-acl.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/acl/acl.c' object='ldap/servers/plugins/acl/libacl_plugin_la-acl.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/acl/libacl_plugin_la-acl.lo -MD -MP -MF ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-acl.Tpo -c -o ldap/servers/plugins/acl/libacl_plugin_la-acl.lo `test -f 'ldap/servers/plugins/acl/acl.c' || echo '$(srcdir)/'`ldap/servers/plugins/acl/acl.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-acl.Tpo ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-acl.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/acl/acl.c' object='ldap/servers/plugins/acl/libacl_plugin_la-acl.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/acl/libacl_plugin_la-acl.lo `test -f 'ldap/servers/plugins/acl/acl.c' || echo '$(srcdir)/'`ldap/servers/plugins/acl/acl.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/acl/libacl_plugin_la-acl.lo `test -f 'ldap/servers/plugins/acl/acl.c' || echo '$(srcdir)/'`ldap/servers/plugins/acl/acl.c - - ldap/servers/plugins/acl/libacl_plugin_la-acl_ext.lo: ldap/servers/plugins/acl/acl_ext.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/acl/libacl_plugin_la-acl_ext.lo -MD -MP -MF ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-acl_ext.Tpo -c -o ldap/servers/plugins/acl/libacl_plugin_la-acl_ext.lo `test -f 'ldap/servers/plugins/acl/acl_ext.c' || echo '$(srcdir)/'`ldap/servers/plugins/acl/acl_ext.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-acl_ext.Tpo ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-acl_ext.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/acl/acl_ext.c' object='ldap/servers/plugins/acl/libacl_plugin_la-acl_ext.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/acl/libacl_plugin_la-acl_ext.lo -MD -MP -MF ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-acl_ext.Tpo -c -o ldap/servers/plugins/acl/libacl_plugin_la-acl_ext.lo `test -f 'ldap/servers/plugins/acl/acl_ext.c' || echo '$(srcdir)/'`ldap/servers/plugins/acl/acl_ext.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-acl_ext.Tpo ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-acl_ext.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/acl/acl_ext.c' object='ldap/servers/plugins/acl/libacl_plugin_la-acl_ext.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/acl/libacl_plugin_la-acl_ext.lo `test -f 'ldap/servers/plugins/acl/acl_ext.c' || echo '$(srcdir)/'`ldap/servers/plugins/acl/acl_ext.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/acl/libacl_plugin_la-acl_ext.lo `test -f 'ldap/servers/plugins/acl/acl_ext.c' || echo '$(srcdir)/'`ldap/servers/plugins/acl/acl_ext.c - - ldap/servers/plugins/acl/libacl_plugin_la-aclanom.lo: ldap/servers/plugins/acl/aclanom.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/acl/libacl_plugin_la-aclanom.lo -MD -MP -MF ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-aclanom.Tpo -c -o ldap/servers/plugins/acl/libacl_plugin_la-aclanom.lo `test -f 'ldap/servers/plugins/acl/aclanom.c' || echo '$(srcdir)/'`ldap/servers/plugins/acl/aclanom.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-aclanom.Tpo ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-aclanom.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/acl/aclanom.c' object='ldap/servers/plugins/acl/libacl_plugin_la-aclanom.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/acl/libacl_plugin_la-aclanom.lo -MD -MP -MF ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-aclanom.Tpo -c -o ldap/servers/plugins/acl/libacl_plugin_la-aclanom.lo `test -f 'ldap/servers/plugins/acl/aclanom.c' || echo '$(srcdir)/'`ldap/servers/plugins/acl/aclanom.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-aclanom.Tpo ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-aclanom.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/acl/aclanom.c' object='ldap/servers/plugins/acl/libacl_plugin_la-aclanom.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/acl/libacl_plugin_la-aclanom.lo `test -f 'ldap/servers/plugins/acl/aclanom.c' || echo '$(srcdir)/'`ldap/servers/plugins/acl/aclanom.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/acl/libacl_plugin_la-aclanom.lo `test -f 'ldap/servers/plugins/acl/aclanom.c' || echo '$(srcdir)/'`ldap/servers/plugins/acl/aclanom.c - - ldap/servers/plugins/acl/libacl_plugin_la-acleffectiverights.lo: ldap/servers/plugins/acl/acleffectiverights.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/acl/libacl_plugin_la-acleffectiverights.lo -MD -MP -MF ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-acleffectiverights.Tpo -c -o ldap/servers/plugins/acl/libacl_plugin_la-acleffectiverights.lo `test -f 'ldap/servers/plugins/acl/acleffectiverights.c' || echo '$(srcdir)/'`ldap/servers/plugins/acl/acleffectiverights.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-acleffectiverights.Tpo ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-acleffectiverights.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/acl/acleffectiverights.c' object='ldap/servers/plugins/acl/libacl_plugin_la-acleffectiverights.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/acl/libacl_plugin_la-acleffectiverights.lo -MD -MP -MF ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-acleffectiverights.Tpo -c -o ldap/servers/plugins/acl/libacl_plugin_la-acleffectiverights.lo `test -f 'ldap/servers/plugins/acl/acleffectiverights.c' || echo '$(srcdir)/'`ldap/servers/plugins/acl/acleffectiverights.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-acleffectiverights.Tpo ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-acleffectiverights.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/acl/acleffectiverights.c' object='ldap/servers/plugins/acl/libacl_plugin_la-acleffectiverights.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/acl/libacl_plugin_la-acleffectiverights.lo `test -f 'ldap/servers/plugins/acl/acleffectiverights.c' || echo '$(srcdir)/'`ldap/servers/plugins/acl/acleffectiverights.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/acl/libacl_plugin_la-acleffectiverights.lo `test -f 'ldap/servers/plugins/acl/acleffectiverights.c' || echo '$(srcdir)/'`ldap/servers/plugins/acl/acleffectiverights.c - - ldap/servers/plugins/acl/libacl_plugin_la-aclgroup.lo: ldap/servers/plugins/acl/aclgroup.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/acl/libacl_plugin_la-aclgroup.lo -MD -MP -MF ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-aclgroup.Tpo -c -o ldap/servers/plugins/acl/libacl_plugin_la-aclgroup.lo `test -f 'ldap/servers/plugins/acl/aclgroup.c' || echo '$(srcdir)/'`ldap/servers/plugins/acl/aclgroup.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-aclgroup.Tpo ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-aclgroup.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/acl/aclgroup.c' object='ldap/servers/plugins/acl/libacl_plugin_la-aclgroup.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/acl/libacl_plugin_la-aclgroup.lo -MD -MP -MF ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-aclgroup.Tpo -c -o ldap/servers/plugins/acl/libacl_plugin_la-aclgroup.lo `test -f 'ldap/servers/plugins/acl/aclgroup.c' || echo '$(srcdir)/'`ldap/servers/plugins/acl/aclgroup.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-aclgroup.Tpo ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-aclgroup.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/acl/aclgroup.c' object='ldap/servers/plugins/acl/libacl_plugin_la-aclgroup.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/acl/libacl_plugin_la-aclgroup.lo `test -f 'ldap/servers/plugins/acl/aclgroup.c' || echo '$(srcdir)/'`ldap/servers/plugins/acl/aclgroup.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/acl/libacl_plugin_la-aclgroup.lo `test -f 'ldap/servers/plugins/acl/aclgroup.c' || echo '$(srcdir)/'`ldap/servers/plugins/acl/aclgroup.c - - ldap/servers/plugins/acl/libacl_plugin_la-aclinit.lo: ldap/servers/plugins/acl/aclinit.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/acl/libacl_plugin_la-aclinit.lo -MD -MP -MF ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-aclinit.Tpo -c -o ldap/servers/plugins/acl/libacl_plugin_la-aclinit.lo `test -f 'ldap/servers/plugins/acl/aclinit.c' || echo '$(srcdir)/'`ldap/servers/plugins/acl/aclinit.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-aclinit.Tpo ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-aclinit.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/acl/aclinit.c' object='ldap/servers/plugins/acl/libacl_plugin_la-aclinit.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/acl/libacl_plugin_la-aclinit.lo -MD -MP -MF ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-aclinit.Tpo -c -o ldap/servers/plugins/acl/libacl_plugin_la-aclinit.lo `test -f 'ldap/servers/plugins/acl/aclinit.c' || echo '$(srcdir)/'`ldap/servers/plugins/acl/aclinit.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-aclinit.Tpo ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-aclinit.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/acl/aclinit.c' object='ldap/servers/plugins/acl/libacl_plugin_la-aclinit.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/acl/libacl_plugin_la-aclinit.lo `test -f 'ldap/servers/plugins/acl/aclinit.c' || echo '$(srcdir)/'`ldap/servers/plugins/acl/aclinit.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/acl/libacl_plugin_la-aclinit.lo `test -f 'ldap/servers/plugins/acl/aclinit.c' || echo '$(srcdir)/'`ldap/servers/plugins/acl/aclinit.c - - ldap/servers/plugins/acl/libacl_plugin_la-acllas.lo: ldap/servers/plugins/acl/acllas.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/acl/libacl_plugin_la-acllas.lo -MD -MP -MF ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-acllas.Tpo -c -o ldap/servers/plugins/acl/libacl_plugin_la-acllas.lo `test -f 'ldap/servers/plugins/acl/acllas.c' || echo '$(srcdir)/'`ldap/servers/plugins/acl/acllas.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-acllas.Tpo ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-acllas.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/acl/acllas.c' object='ldap/servers/plugins/acl/libacl_plugin_la-acllas.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/acl/libacl_plugin_la-acllas.lo -MD -MP -MF ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-acllas.Tpo -c -o ldap/servers/plugins/acl/libacl_plugin_la-acllas.lo `test -f 'ldap/servers/plugins/acl/acllas.c' || echo '$(srcdir)/'`ldap/servers/plugins/acl/acllas.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-acllas.Tpo ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-acllas.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/acl/acllas.c' object='ldap/servers/plugins/acl/libacl_plugin_la-acllas.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/acl/libacl_plugin_la-acllas.lo `test -f 'ldap/servers/plugins/acl/acllas.c' || echo '$(srcdir)/'`ldap/servers/plugins/acl/acllas.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/acl/libacl_plugin_la-acllas.lo `test -f 'ldap/servers/plugins/acl/acllas.c' || echo '$(srcdir)/'`ldap/servers/plugins/acl/acllas.c - - ldap/servers/plugins/acl/libacl_plugin_la-acllist.lo: ldap/servers/plugins/acl/acllist.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/acl/libacl_plugin_la-acllist.lo -MD -MP -MF ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-acllist.Tpo -c -o ldap/servers/plugins/acl/libacl_plugin_la-acllist.lo `test -f 'ldap/servers/plugins/acl/acllist.c' || echo '$(srcdir)/'`ldap/servers/plugins/acl/acllist.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-acllist.Tpo ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-acllist.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/acl/acllist.c' object='ldap/servers/plugins/acl/libacl_plugin_la-acllist.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/acl/libacl_plugin_la-acllist.lo -MD -MP -MF ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-acllist.Tpo -c -o ldap/servers/plugins/acl/libacl_plugin_la-acllist.lo `test -f 'ldap/servers/plugins/acl/acllist.c' || echo '$(srcdir)/'`ldap/servers/plugins/acl/acllist.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-acllist.Tpo ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-acllist.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/acl/acllist.c' object='ldap/servers/plugins/acl/libacl_plugin_la-acllist.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/acl/libacl_plugin_la-acllist.lo `test -f 'ldap/servers/plugins/acl/acllist.c' || echo '$(srcdir)/'`ldap/servers/plugins/acl/acllist.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/acl/libacl_plugin_la-acllist.lo `test -f 'ldap/servers/plugins/acl/acllist.c' || echo '$(srcdir)/'`ldap/servers/plugins/acl/acllist.c - - ldap/servers/plugins/acl/libacl_plugin_la-aclparse.lo: ldap/servers/plugins/acl/aclparse.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/acl/libacl_plugin_la-aclparse.lo -MD -MP -MF ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-aclparse.Tpo -c -o ldap/servers/plugins/acl/libacl_plugin_la-aclparse.lo `test -f 'ldap/servers/plugins/acl/aclparse.c' || echo '$(srcdir)/'`ldap/servers/plugins/acl/aclparse.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-aclparse.Tpo ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-aclparse.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/acl/aclparse.c' object='ldap/servers/plugins/acl/libacl_plugin_la-aclparse.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/acl/libacl_plugin_la-aclparse.lo -MD -MP -MF ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-aclparse.Tpo -c -o ldap/servers/plugins/acl/libacl_plugin_la-aclparse.lo `test -f 'ldap/servers/plugins/acl/aclparse.c' || echo '$(srcdir)/'`ldap/servers/plugins/acl/aclparse.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-aclparse.Tpo ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-aclparse.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/acl/aclparse.c' object='ldap/servers/plugins/acl/libacl_plugin_la-aclparse.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/acl/libacl_plugin_la-aclparse.lo `test -f 'ldap/servers/plugins/acl/aclparse.c' || echo '$(srcdir)/'`ldap/servers/plugins/acl/aclparse.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/acl/libacl_plugin_la-aclparse.lo `test -f 'ldap/servers/plugins/acl/aclparse.c' || echo '$(srcdir)/'`ldap/servers/plugins/acl/aclparse.c - - ldap/servers/plugins/acl/libacl_plugin_la-aclplugin.lo: ldap/servers/plugins/acl/aclplugin.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/acl/libacl_plugin_la-aclplugin.lo -MD -MP -MF ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-aclplugin.Tpo -c -o ldap/servers/plugins/acl/libacl_plugin_la-aclplugin.lo `test -f 'ldap/servers/plugins/acl/aclplugin.c' || echo '$(srcdir)/'`ldap/servers/plugins/acl/aclplugin.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-aclplugin.Tpo ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-aclplugin.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/acl/aclplugin.c' object='ldap/servers/plugins/acl/libacl_plugin_la-aclplugin.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/acl/libacl_plugin_la-aclplugin.lo -MD -MP -MF ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-aclplugin.Tpo -c -o ldap/servers/plugins/acl/libacl_plugin_la-aclplugin.lo `test -f 'ldap/servers/plugins/acl/aclplugin.c' || echo '$(srcdir)/'`ldap/servers/plugins/acl/aclplugin.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-aclplugin.Tpo ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-aclplugin.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/acl/aclplugin.c' object='ldap/servers/plugins/acl/libacl_plugin_la-aclplugin.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/acl/libacl_plugin_la-aclplugin.lo `test -f 'ldap/servers/plugins/acl/aclplugin.c' || echo '$(srcdir)/'`ldap/servers/plugins/acl/aclplugin.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/acl/libacl_plugin_la-aclplugin.lo `test -f 'ldap/servers/plugins/acl/aclplugin.c' || echo '$(srcdir)/'`ldap/servers/plugins/acl/aclplugin.c - - ldap/servers/plugins/acl/libacl_plugin_la-aclutil.lo: ldap/servers/plugins/acl/aclutil.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/acl/libacl_plugin_la-aclutil.lo -MD -MP -MF ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-aclutil.Tpo -c -o ldap/servers/plugins/acl/libacl_plugin_la-aclutil.lo `test -f 'ldap/servers/plugins/acl/aclutil.c' || echo '$(srcdir)/'`ldap/servers/plugins/acl/aclutil.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-aclutil.Tpo ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-aclutil.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/acl/aclutil.c' object='ldap/servers/plugins/acl/libacl_plugin_la-aclutil.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/acl/libacl_plugin_la-aclutil.lo -MD -MP -MF ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-aclutil.Tpo -c -o ldap/servers/plugins/acl/libacl_plugin_la-aclutil.lo `test -f 'ldap/servers/plugins/acl/aclutil.c' || echo '$(srcdir)/'`ldap/servers/plugins/acl/aclutil.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-aclutil.Tpo ldap/servers/plugins/acl/$(DEPDIR)/libacl_plugin_la-aclutil.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/acl/aclutil.c' object='ldap/servers/plugins/acl/libacl_plugin_la-aclutil.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/acl/libacl_plugin_la-aclutil.lo `test -f 'ldap/servers/plugins/acl/aclutil.c' || echo '$(srcdir)/'`ldap/servers/plugins/acl/aclutil.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libacl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/acl/libacl_plugin_la-aclutil.lo `test -f 'ldap/servers/plugins/acl/aclutil.c' || echo '$(srcdir)/'`ldap/servers/plugins/acl/aclutil.c - - ldap/servers/plugins/uiduniq/libattr_unique_plugin_la-7bit.lo: ldap/servers/plugins/uiduniq/7bit.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libattr_unique_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/uiduniq/libattr_unique_plugin_la-7bit.lo -MD -MP -MF ldap/servers/plugins/uiduniq/$(DEPDIR)/libattr_unique_plugin_la-7bit.Tpo -c -o ldap/servers/plugins/uiduniq/libattr_unique_plugin_la-7bit.lo `test -f 'ldap/servers/plugins/uiduniq/7bit.c' || echo '$(srcdir)/'`ldap/servers/plugins/uiduniq/7bit.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/uiduniq/$(DEPDIR)/libattr_unique_plugin_la-7bit.Tpo ldap/servers/plugins/uiduniq/$(DEPDIR)/libattr_unique_plugin_la-7bit.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/uiduniq/7bit.c' object='ldap/servers/plugins/uiduniq/libattr_unique_plugin_la-7bit.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libattr_unique_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/uiduniq/libattr_unique_plugin_la-7bit.lo -MD -MP -MF ldap/servers/plugins/uiduniq/$(DEPDIR)/libattr_unique_plugin_la-7bit.Tpo -c -o ldap/servers/plugins/uiduniq/libattr_unique_plugin_la-7bit.lo `test -f 'ldap/servers/plugins/uiduniq/7bit.c' || echo '$(srcdir)/'`ldap/servers/plugins/uiduniq/7bit.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/uiduniq/$(DEPDIR)/libattr_unique_plugin_la-7bit.Tpo ldap/servers/plugins/uiduniq/$(DEPDIR)/libattr_unique_plugin_la-7bit.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/uiduniq/7bit.c' object='ldap/servers/plugins/uiduniq/libattr_unique_plugin_la-7bit.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libattr_unique_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/uiduniq/libattr_unique_plugin_la-7bit.lo `test -f 'ldap/servers/plugins/uiduniq/7bit.c' || echo '$(srcdir)/'`ldap/servers/plugins/uiduniq/7bit.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libattr_unique_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/uiduniq/libattr_unique_plugin_la-7bit.lo `test -f 'ldap/servers/plugins/uiduniq/7bit.c' || echo '$(srcdir)/'`ldap/servers/plugins/uiduniq/7bit.c - - ldap/servers/plugins/uiduniq/libattr_unique_plugin_la-uid.lo: ldap/servers/plugins/uiduniq/uid.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libattr_unique_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/uiduniq/libattr_unique_plugin_la-uid.lo -MD -MP -MF ldap/servers/plugins/uiduniq/$(DEPDIR)/libattr_unique_plugin_la-uid.Tpo -c -o ldap/servers/plugins/uiduniq/libattr_unique_plugin_la-uid.lo `test -f 'ldap/servers/plugins/uiduniq/uid.c' || echo '$(srcdir)/'`ldap/servers/plugins/uiduniq/uid.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/uiduniq/$(DEPDIR)/libattr_unique_plugin_la-uid.Tpo ldap/servers/plugins/uiduniq/$(DEPDIR)/libattr_unique_plugin_la-uid.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/uiduniq/uid.c' object='ldap/servers/plugins/uiduniq/libattr_unique_plugin_la-uid.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libattr_unique_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/uiduniq/libattr_unique_plugin_la-uid.lo -MD -MP -MF ldap/servers/plugins/uiduniq/$(DEPDIR)/libattr_unique_plugin_la-uid.Tpo -c -o ldap/servers/plugins/uiduniq/libattr_unique_plugin_la-uid.lo `test -f 'ldap/servers/plugins/uiduniq/uid.c' || echo '$(srcdir)/'`ldap/servers/plugins/uiduniq/uid.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/uiduniq/$(DEPDIR)/libattr_unique_plugin_la-uid.Tpo ldap/servers/plugins/uiduniq/$(DEPDIR)/libattr_unique_plugin_la-uid.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/uiduniq/uid.c' object='ldap/servers/plugins/uiduniq/libattr_unique_plugin_la-uid.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libattr_unique_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/uiduniq/libattr_unique_plugin_la-uid.lo `test -f 'ldap/servers/plugins/uiduniq/uid.c' || echo '$(srcdir)/'`ldap/servers/plugins/uiduniq/uid.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libattr_unique_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/uiduniq/libattr_unique_plugin_la-uid.lo `test -f 'ldap/servers/plugins/uiduniq/uid.c' || echo '$(srcdir)/'`ldap/servers/plugins/uiduniq/uid.c - - ldap/servers/plugins/uiduniq/libattr_unique_plugin_la-utils.lo: ldap/servers/plugins/uiduniq/utils.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libattr_unique_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/uiduniq/libattr_unique_plugin_la-utils.lo -MD -MP -MF ldap/servers/plugins/uiduniq/$(DEPDIR)/libattr_unique_plugin_la-utils.Tpo -c -o ldap/servers/plugins/uiduniq/libattr_unique_plugin_la-utils.lo `test -f 'ldap/servers/plugins/uiduniq/utils.c' || echo '$(srcdir)/'`ldap/servers/plugins/uiduniq/utils.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/uiduniq/$(DEPDIR)/libattr_unique_plugin_la-utils.Tpo ldap/servers/plugins/uiduniq/$(DEPDIR)/libattr_unique_plugin_la-utils.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/uiduniq/utils.c' object='ldap/servers/plugins/uiduniq/libattr_unique_plugin_la-utils.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libattr_unique_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/uiduniq/libattr_unique_plugin_la-utils.lo -MD -MP -MF ldap/servers/plugins/uiduniq/$(DEPDIR)/libattr_unique_plugin_la-utils.Tpo -c -o ldap/servers/plugins/uiduniq/libattr_unique_plugin_la-utils.lo `test -f 'ldap/servers/plugins/uiduniq/utils.c' || echo '$(srcdir)/'`ldap/servers/plugins/uiduniq/utils.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/uiduniq/$(DEPDIR)/libattr_unique_plugin_la-utils.Tpo ldap/servers/plugins/uiduniq/$(DEPDIR)/libattr_unique_plugin_la-utils.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/uiduniq/utils.c' object='ldap/servers/plugins/uiduniq/libattr_unique_plugin_la-utils.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libattr_unique_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/uiduniq/libattr_unique_plugin_la-utils.lo `test -f 'ldap/servers/plugins/uiduniq/utils.c' || echo '$(srcdir)/'`ldap/servers/plugins/uiduniq/utils.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libattr_unique_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/uiduniq/libattr_unique_plugin_la-utils.lo `test -f 'ldap/servers/plugins/uiduniq/utils.c' || echo '$(srcdir)/'`ldap/servers/plugins/uiduniq/utils.c - - ldap/servers/plugins/automember/libautomember_plugin_la-automember.lo: ldap/servers/plugins/automember/automember.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libautomember_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/automember/libautomember_plugin_la-automember.lo -MD -MP -MF ldap/servers/plugins/automember/$(DEPDIR)/libautomember_plugin_la-automember.Tpo -c -o ldap/servers/plugins/automember/libautomember_plugin_la-automember.lo `test -f 'ldap/servers/plugins/automember/automember.c' || echo '$(srcdir)/'`ldap/servers/plugins/automember/automember.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/automember/$(DEPDIR)/libautomember_plugin_la-automember.Tpo ldap/servers/plugins/automember/$(DEPDIR)/libautomember_plugin_la-automember.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/automember/automember.c' object='ldap/servers/plugins/automember/libautomember_plugin_la-automember.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libautomember_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/automember/libautomember_plugin_la-automember.lo -MD -MP -MF ldap/servers/plugins/automember/$(DEPDIR)/libautomember_plugin_la-automember.Tpo -c -o ldap/servers/plugins/automember/libautomember_plugin_la-automember.lo `test -f 'ldap/servers/plugins/automember/automember.c' || echo '$(srcdir)/'`ldap/servers/plugins/automember/automember.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/automember/$(DEPDIR)/libautomember_plugin_la-automember.Tpo ldap/servers/plugins/automember/$(DEPDIR)/libautomember_plugin_la-automember.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/automember/automember.c' object='ldap/servers/plugins/automember/libautomember_plugin_la-automember.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libautomember_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/automember/libautomember_plugin_la-automember.lo `test -f 'ldap/servers/plugins/automember/automember.c' || echo '$(srcdir)/'`ldap/servers/plugins/automember/automember.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libautomember_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/automember/libautomember_plugin_la-automember.lo `test -f 'ldap/servers/plugins/automember/automember.c' || echo '$(srcdir)/'`ldap/servers/plugins/automember/automember.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-ancestorid.lo: ldap/servers/slapd/back-ldbm/ancestorid.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-ancestorid.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ancestorid.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ancestorid.lo `test -f 'ldap/servers/slapd/back-ldbm/ancestorid.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ancestorid.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ancestorid.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ancestorid.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/ancestorid.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-ancestorid.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-ancestorid.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ancestorid.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ancestorid.lo `test -f 'ldap/servers/slapd/back-ldbm/ancestorid.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ancestorid.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ancestorid.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ancestorid.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/ancestorid.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-ancestorid.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ancestorid.lo `test -f 'ldap/servers/slapd/back-ldbm/ancestorid.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ancestorid.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ancestorid.lo `test -f 'ldap/servers/slapd/back-ldbm/ancestorid.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ancestorid.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-archive.lo: ldap/servers/slapd/back-ldbm/archive.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-archive.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-archive.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-archive.lo `test -f 'ldap/servers/slapd/back-ldbm/archive.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/archive.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-archive.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-archive.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/archive.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-archive.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-archive.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-archive.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-archive.lo `test -f 'ldap/servers/slapd/back-ldbm/archive.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/archive.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-archive.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-archive.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/archive.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-archive.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-archive.lo `test -f 'ldap/servers/slapd/back-ldbm/archive.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/archive.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-archive.lo `test -f 'ldap/servers/slapd/back-ldbm/archive.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/archive.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-backentry.lo: ldap/servers/slapd/back-ldbm/backentry.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-backentry.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-backentry.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-backentry.lo `test -f 'ldap/servers/slapd/back-ldbm/backentry.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/backentry.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-backentry.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-backentry.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/backentry.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-backentry.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-backentry.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-backentry.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-backentry.lo `test -f 'ldap/servers/slapd/back-ldbm/backentry.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/backentry.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-backentry.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-backentry.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/backentry.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-backentry.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-backentry.lo `test -f 'ldap/servers/slapd/back-ldbm/backentry.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/backentry.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-backentry.lo `test -f 'ldap/servers/slapd/back-ldbm/backentry.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/backentry.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-cache.lo: ldap/servers/slapd/back-ldbm/cache.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-cache.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-cache.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-cache.lo `test -f 'ldap/servers/slapd/back-ldbm/cache.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/cache.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-cache.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-cache.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/cache.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-cache.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-cache.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-cache.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-cache.lo `test -f 'ldap/servers/slapd/back-ldbm/cache.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/cache.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-cache.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-cache.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/cache.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-cache.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-cache.lo `test -f 'ldap/servers/slapd/back-ldbm/cache.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/cache.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-cache.lo `test -f 'ldap/servers/slapd/back-ldbm/cache.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/cache.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-cleanup.lo: ldap/servers/slapd/back-ldbm/cleanup.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-cleanup.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-cleanup.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-cleanup.lo `test -f 'ldap/servers/slapd/back-ldbm/cleanup.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/cleanup.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-cleanup.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-cleanup.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/cleanup.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-cleanup.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-cleanup.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-cleanup.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-cleanup.lo `test -f 'ldap/servers/slapd/back-ldbm/cleanup.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/cleanup.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-cleanup.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-cleanup.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/cleanup.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-cleanup.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-cleanup.lo `test -f 'ldap/servers/slapd/back-ldbm/cleanup.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/cleanup.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-cleanup.lo `test -f 'ldap/servers/slapd/back-ldbm/cleanup.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/cleanup.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-close.lo: ldap/servers/slapd/back-ldbm/close.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-close.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-close.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-close.lo `test -f 'ldap/servers/slapd/back-ldbm/close.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/close.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-close.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-close.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/close.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-close.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-close.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-close.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-close.lo `test -f 'ldap/servers/slapd/back-ldbm/close.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/close.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-close.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-close.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/close.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-close.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-close.lo `test -f 'ldap/servers/slapd/back-ldbm/close.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/close.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-close.lo `test -f 'ldap/servers/slapd/back-ldbm/close.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/close.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-dbhelp.lo: ldap/servers/slapd/back-ldbm/dbhelp.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-dbhelp.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-dbhelp.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-dbhelp.lo `test -f 'ldap/servers/slapd/back-ldbm/dbhelp.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/dbhelp.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-dbhelp.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-dbhelp.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/dbhelp.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-dbhelp.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-dbhelp.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-dbhelp.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-dbhelp.lo `test -f 'ldap/servers/slapd/back-ldbm/dbhelp.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/dbhelp.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-dbhelp.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-dbhelp.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/dbhelp.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-dbhelp.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-dbhelp.lo `test -f 'ldap/servers/slapd/back-ldbm/dbhelp.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/dbhelp.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-dbhelp.lo `test -f 'ldap/servers/slapd/back-ldbm/dbhelp.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/dbhelp.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-dblayer.lo: ldap/servers/slapd/back-ldbm/dblayer.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-dblayer.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-dblayer.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-dblayer.lo `test -f 'ldap/servers/slapd/back-ldbm/dblayer.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/dblayer.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-dblayer.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-dblayer.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/dblayer.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-dblayer.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-dblayer.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-dblayer.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-dblayer.lo `test -f 'ldap/servers/slapd/back-ldbm/dblayer.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/dblayer.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-dblayer.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-dblayer.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/dblayer.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-dblayer.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-dblayer.lo `test -f 'ldap/servers/slapd/back-ldbm/dblayer.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/dblayer.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-dblayer.lo `test -f 'ldap/servers/slapd/back-ldbm/dblayer.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/dblayer.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-dbsize.lo: ldap/servers/slapd/back-ldbm/dbsize.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-dbsize.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-dbsize.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-dbsize.lo `test -f 'ldap/servers/slapd/back-ldbm/dbsize.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/dbsize.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-dbsize.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-dbsize.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/dbsize.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-dbsize.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-dbsize.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-dbsize.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-dbsize.lo `test -f 'ldap/servers/slapd/back-ldbm/dbsize.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/dbsize.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-dbsize.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-dbsize.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/dbsize.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-dbsize.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-dbsize.lo `test -f 'ldap/servers/slapd/back-ldbm/dbsize.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/dbsize.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-dbsize.lo `test -f 'ldap/servers/slapd/back-ldbm/dbsize.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/dbsize.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-dbversion.lo: ldap/servers/slapd/back-ldbm/dbversion.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-dbversion.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-dbversion.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-dbversion.lo `test -f 'ldap/servers/slapd/back-ldbm/dbversion.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/dbversion.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-dbversion.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-dbversion.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/dbversion.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-dbversion.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-dbversion.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-dbversion.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-dbversion.lo `test -f 'ldap/servers/slapd/back-ldbm/dbversion.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/dbversion.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-dbversion.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-dbversion.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/dbversion.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-dbversion.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-dbversion.lo `test -f 'ldap/servers/slapd/back-ldbm/dbversion.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/dbversion.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-dbversion.lo `test -f 'ldap/servers/slapd/back-ldbm/dbversion.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/dbversion.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-dn2entry.lo: ldap/servers/slapd/back-ldbm/dn2entry.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-dn2entry.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-dn2entry.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-dn2entry.lo `test -f 'ldap/servers/slapd/back-ldbm/dn2entry.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/dn2entry.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-dn2entry.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-dn2entry.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/dn2entry.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-dn2entry.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-dn2entry.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-dn2entry.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-dn2entry.lo `test -f 'ldap/servers/slapd/back-ldbm/dn2entry.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/dn2entry.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-dn2entry.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-dn2entry.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/dn2entry.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-dn2entry.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-dn2entry.lo `test -f 'ldap/servers/slapd/back-ldbm/dn2entry.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/dn2entry.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-dn2entry.lo `test -f 'ldap/servers/slapd/back-ldbm/dn2entry.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/dn2entry.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-entrystore.lo: ldap/servers/slapd/back-ldbm/entrystore.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-entrystore.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-entrystore.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-entrystore.lo `test -f 'ldap/servers/slapd/back-ldbm/entrystore.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/entrystore.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-entrystore.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-entrystore.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/entrystore.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-entrystore.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-entrystore.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-entrystore.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-entrystore.lo `test -f 'ldap/servers/slapd/back-ldbm/entrystore.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/entrystore.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-entrystore.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-entrystore.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/entrystore.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-entrystore.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-entrystore.lo `test -f 'ldap/servers/slapd/back-ldbm/entrystore.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/entrystore.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-entrystore.lo `test -f 'ldap/servers/slapd/back-ldbm/entrystore.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/entrystore.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-filterindex.lo: ldap/servers/slapd/back-ldbm/filterindex.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-filterindex.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-filterindex.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-filterindex.lo `test -f 'ldap/servers/slapd/back-ldbm/filterindex.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/filterindex.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-filterindex.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-filterindex.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/filterindex.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-filterindex.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-filterindex.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-filterindex.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-filterindex.lo `test -f 'ldap/servers/slapd/back-ldbm/filterindex.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/filterindex.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-filterindex.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-filterindex.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/filterindex.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-filterindex.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-filterindex.lo `test -f 'ldap/servers/slapd/back-ldbm/filterindex.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/filterindex.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-filterindex.lo `test -f 'ldap/servers/slapd/back-ldbm/filterindex.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/filterindex.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-findentry.lo: ldap/servers/slapd/back-ldbm/findentry.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-findentry.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-findentry.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-findentry.lo `test -f 'ldap/servers/slapd/back-ldbm/findentry.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/findentry.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-findentry.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-findentry.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/findentry.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-findentry.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-findentry.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-findentry.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-findentry.lo `test -f 'ldap/servers/slapd/back-ldbm/findentry.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/findentry.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-findentry.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-findentry.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/findentry.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-findentry.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-findentry.lo `test -f 'ldap/servers/slapd/back-ldbm/findentry.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/findentry.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-findentry.lo `test -f 'ldap/servers/slapd/back-ldbm/findentry.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/findentry.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-haschildren.lo: ldap/servers/slapd/back-ldbm/haschildren.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-haschildren.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-haschildren.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-haschildren.lo `test -f 'ldap/servers/slapd/back-ldbm/haschildren.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/haschildren.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-haschildren.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-haschildren.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/haschildren.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-haschildren.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-haschildren.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-haschildren.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-haschildren.lo `test -f 'ldap/servers/slapd/back-ldbm/haschildren.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/haschildren.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-haschildren.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-haschildren.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/haschildren.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-haschildren.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-haschildren.lo `test -f 'ldap/servers/slapd/back-ldbm/haschildren.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/haschildren.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-haschildren.lo `test -f 'ldap/servers/slapd/back-ldbm/haschildren.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/haschildren.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-id2entry.lo: ldap/servers/slapd/back-ldbm/id2entry.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-id2entry.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-id2entry.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-id2entry.lo `test -f 'ldap/servers/slapd/back-ldbm/id2entry.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/id2entry.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-id2entry.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-id2entry.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/id2entry.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-id2entry.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-id2entry.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-id2entry.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-id2entry.lo `test -f 'ldap/servers/slapd/back-ldbm/id2entry.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/id2entry.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-id2entry.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-id2entry.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/id2entry.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-id2entry.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-id2entry.lo `test -f 'ldap/servers/slapd/back-ldbm/id2entry.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/id2entry.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-id2entry.lo `test -f 'ldap/servers/slapd/back-ldbm/id2entry.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/id2entry.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-idl.lo: ldap/servers/slapd/back-ldbm/idl.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-idl.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-idl.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-idl.lo `test -f 'ldap/servers/slapd/back-ldbm/idl.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/idl.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-idl.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-idl.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/idl.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-idl.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-idl.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-idl.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-idl.lo `test -f 'ldap/servers/slapd/back-ldbm/idl.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/idl.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-idl.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-idl.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/idl.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-idl.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-idl.lo `test -f 'ldap/servers/slapd/back-ldbm/idl.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/idl.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-idl.lo `test -f 'ldap/servers/slapd/back-ldbm/idl.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/idl.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-idl_shim.lo: ldap/servers/slapd/back-ldbm/idl_shim.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-idl_shim.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-idl_shim.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-idl_shim.lo `test -f 'ldap/servers/slapd/back-ldbm/idl_shim.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/idl_shim.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-idl_shim.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-idl_shim.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/idl_shim.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-idl_shim.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-idl_shim.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-idl_shim.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-idl_shim.lo `test -f 'ldap/servers/slapd/back-ldbm/idl_shim.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/idl_shim.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-idl_shim.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-idl_shim.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/idl_shim.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-idl_shim.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-idl_shim.lo `test -f 'ldap/servers/slapd/back-ldbm/idl_shim.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/idl_shim.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-idl_shim.lo `test -f 'ldap/servers/slapd/back-ldbm/idl_shim.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/idl_shim.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-idl_new.lo: ldap/servers/slapd/back-ldbm/idl_new.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-idl_new.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-idl_new.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-idl_new.lo `test -f 'ldap/servers/slapd/back-ldbm/idl_new.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/idl_new.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-idl_new.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-idl_new.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/idl_new.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-idl_new.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-idl_new.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-idl_new.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-idl_new.lo `test -f 'ldap/servers/slapd/back-ldbm/idl_new.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/idl_new.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-idl_new.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-idl_new.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/idl_new.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-idl_new.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-idl_new.lo `test -f 'ldap/servers/slapd/back-ldbm/idl_new.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/idl_new.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-idl_new.lo `test -f 'ldap/servers/slapd/back-ldbm/idl_new.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/idl_new.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-idl_common.lo: ldap/servers/slapd/back-ldbm/idl_common.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-idl_common.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-idl_common.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-idl_common.lo `test -f 'ldap/servers/slapd/back-ldbm/idl_common.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/idl_common.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-idl_common.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-idl_common.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/idl_common.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-idl_common.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-idl_common.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-idl_common.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-idl_common.lo `test -f 'ldap/servers/slapd/back-ldbm/idl_common.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/idl_common.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-idl_common.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-idl_common.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/idl_common.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-idl_common.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-idl_common.lo `test -f 'ldap/servers/slapd/back-ldbm/idl_common.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/idl_common.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-idl_common.lo `test -f 'ldap/servers/slapd/back-ldbm/idl_common.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/idl_common.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-import.lo: ldap/servers/slapd/back-ldbm/import.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-import.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-import.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-import.lo `test -f 'ldap/servers/slapd/back-ldbm/import.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/import.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-import.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-import.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/import.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-import.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-import.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-import.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-import.lo `test -f 'ldap/servers/slapd/back-ldbm/import.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/import.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-import.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-import.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/import.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-import.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-import.lo `test -f 'ldap/servers/slapd/back-ldbm/import.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/import.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-import.lo `test -f 'ldap/servers/slapd/back-ldbm/import.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/import.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-import-merge.lo: ldap/servers/slapd/back-ldbm/import-merge.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-import-merge.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-import-merge.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-import-merge.lo `test -f 'ldap/servers/slapd/back-ldbm/import-merge.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/import-merge.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-import-merge.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-import-merge.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/import-merge.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-import-merge.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-import-merge.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-import-merge.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-import-merge.lo `test -f 'ldap/servers/slapd/back-ldbm/import-merge.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/import-merge.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-import-merge.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-import-merge.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/import-merge.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-import-merge.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-import-merge.lo `test -f 'ldap/servers/slapd/back-ldbm/import-merge.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/import-merge.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-import-merge.lo `test -f 'ldap/servers/slapd/back-ldbm/import-merge.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/import-merge.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-import-threads.lo: ldap/servers/slapd/back-ldbm/import-threads.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-import-threads.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-import-threads.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-import-threads.lo `test -f 'ldap/servers/slapd/back-ldbm/import-threads.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/import-threads.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-import-threads.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-import-threads.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/import-threads.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-import-threads.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-import-threads.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-import-threads.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-import-threads.lo `test -f 'ldap/servers/slapd/back-ldbm/import-threads.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/import-threads.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-import-threads.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-import-threads.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/import-threads.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-import-threads.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-import-threads.lo `test -f 'ldap/servers/slapd/back-ldbm/import-threads.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/import-threads.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-import-threads.lo `test -f 'ldap/servers/slapd/back-ldbm/import-threads.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/import-threads.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-index.lo: ldap/servers/slapd/back-ldbm/index.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-index.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-index.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-index.lo `test -f 'ldap/servers/slapd/back-ldbm/index.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/index.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-index.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-index.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/index.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-index.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-index.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-index.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-index.lo `test -f 'ldap/servers/slapd/back-ldbm/index.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/index.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-index.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-index.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/index.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-index.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-index.lo `test -f 'ldap/servers/slapd/back-ldbm/index.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/index.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-index.lo `test -f 'ldap/servers/slapd/back-ldbm/index.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/index.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-init.lo: ldap/servers/slapd/back-ldbm/init.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-init.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-init.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-init.lo `test -f 'ldap/servers/slapd/back-ldbm/init.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/init.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-init.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-init.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/init.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-init.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-init.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-init.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-init.lo `test -f 'ldap/servers/slapd/back-ldbm/init.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/init.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-init.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-init.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/init.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-init.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-init.lo `test -f 'ldap/servers/slapd/back-ldbm/init.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/init.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-init.lo `test -f 'ldap/servers/slapd/back-ldbm/init.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/init.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-instance.lo: ldap/servers/slapd/back-ldbm/instance.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-instance.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-instance.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-instance.lo `test -f 'ldap/servers/slapd/back-ldbm/instance.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/instance.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-instance.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-instance.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/instance.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-instance.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-instance.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-instance.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-instance.lo `test -f 'ldap/servers/slapd/back-ldbm/instance.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/instance.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-instance.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-instance.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/instance.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-instance.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-instance.lo `test -f 'ldap/servers/slapd/back-ldbm/instance.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/instance.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-instance.lo `test -f 'ldap/servers/slapd/back-ldbm/instance.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/instance.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_abandon.lo: ldap/servers/slapd/back-ldbm/ldbm_abandon.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_abandon.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_abandon.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_abandon.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_abandon.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_abandon.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_abandon.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_abandon.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/ldbm_abandon.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_abandon.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_abandon.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_abandon.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_abandon.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_abandon.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_abandon.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_abandon.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_abandon.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/ldbm_abandon.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_abandon.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_abandon.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_abandon.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_abandon.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_abandon.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_abandon.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_abandon.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_add.lo: ldap/servers/slapd/back-ldbm/ldbm_add.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_add.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_add.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_add.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_add.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_add.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_add.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_add.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/ldbm_add.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_add.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_add.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_add.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_add.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_add.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_add.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_add.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_add.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/ldbm_add.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_add.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_add.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_add.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_add.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_add.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_add.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_add.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_attr.lo: ldap/servers/slapd/back-ldbm/ldbm_attr.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_attr.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_attr.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_attr.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_attr.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_attr.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_attr.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_attr.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/ldbm_attr.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_attr.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_attr.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_attr.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_attr.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_attr.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_attr.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_attr.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_attr.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/ldbm_attr.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_attr.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_attr.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_attr.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_attr.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_attr.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_attr.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_attr.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_attrcrypt.lo: ldap/servers/slapd/back-ldbm/ldbm_attrcrypt.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_attrcrypt.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_attrcrypt.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_attrcrypt.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_attrcrypt.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_attrcrypt.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_attrcrypt.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_attrcrypt.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/ldbm_attrcrypt.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_attrcrypt.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_attrcrypt.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_attrcrypt.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_attrcrypt.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_attrcrypt.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_attrcrypt.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_attrcrypt.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_attrcrypt.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/ldbm_attrcrypt.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_attrcrypt.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_attrcrypt.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_attrcrypt.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_attrcrypt.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_attrcrypt.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_attrcrypt.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_attrcrypt.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_attrcrypt_config.lo: ldap/servers/slapd/back-ldbm/ldbm_attrcrypt_config.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_attrcrypt_config.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_attrcrypt_config.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_attrcrypt_config.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_attrcrypt_config.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_attrcrypt_config.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_attrcrypt_config.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_attrcrypt_config.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/ldbm_attrcrypt_config.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_attrcrypt_config.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_attrcrypt_config.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_attrcrypt_config.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_attrcrypt_config.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_attrcrypt_config.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_attrcrypt_config.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_attrcrypt_config.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_attrcrypt_config.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/ldbm_attrcrypt_config.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_attrcrypt_config.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_attrcrypt_config.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_attrcrypt_config.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_attrcrypt_config.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_attrcrypt_config.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_attrcrypt_config.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_attrcrypt_config.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_bind.lo: ldap/servers/slapd/back-ldbm/ldbm_bind.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_bind.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_bind.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_bind.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_bind.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_bind.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_bind.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_bind.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/ldbm_bind.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_bind.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_bind.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_bind.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_bind.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_bind.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_bind.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_bind.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_bind.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/ldbm_bind.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_bind.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_bind.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_bind.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_bind.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_bind.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_bind.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_bind.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_compare.lo: ldap/servers/slapd/back-ldbm/ldbm_compare.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_compare.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_compare.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_compare.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_compare.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_compare.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_compare.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_compare.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/ldbm_compare.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_compare.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_compare.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_compare.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_compare.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_compare.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_compare.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_compare.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_compare.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/ldbm_compare.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_compare.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_compare.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_compare.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_compare.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_compare.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_compare.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_compare.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_config.lo: ldap/servers/slapd/back-ldbm/ldbm_config.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_config.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_config.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_config.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_config.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_config.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_config.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_config.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/ldbm_config.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_config.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_config.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_config.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_config.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_config.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_config.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_config.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_config.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/ldbm_config.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_config.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_config.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_config.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_config.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_config.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_config.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_config.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_delete.lo: ldap/servers/slapd/back-ldbm/ldbm_delete.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_delete.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_delete.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_delete.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_delete.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_delete.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_delete.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_delete.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/ldbm_delete.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_delete.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_delete.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_delete.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_delete.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_delete.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_delete.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_delete.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_delete.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/ldbm_delete.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_delete.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_delete.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_delete.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_delete.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_delete.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_delete.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_delete.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_entryrdn.lo: ldap/servers/slapd/back-ldbm/ldbm_entryrdn.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_entryrdn.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_entryrdn.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_entryrdn.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_entryrdn.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_entryrdn.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_entryrdn.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_entryrdn.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/ldbm_entryrdn.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_entryrdn.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_entryrdn.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_entryrdn.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_entryrdn.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_entryrdn.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_entryrdn.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_entryrdn.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_entryrdn.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/ldbm_entryrdn.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_entryrdn.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_entryrdn.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_entryrdn.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_entryrdn.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_entryrdn.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_entryrdn.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_entryrdn.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_index_config.lo: ldap/servers/slapd/back-ldbm/ldbm_index_config.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_index_config.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_index_config.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_index_config.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_index_config.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_index_config.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_index_config.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_index_config.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/ldbm_index_config.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_index_config.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_index_config.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_index_config.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_index_config.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_index_config.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_index_config.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_index_config.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_index_config.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/ldbm_index_config.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_index_config.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_index_config.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_index_config.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_index_config.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_index_config.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_index_config.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_index_config.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_instance_config.lo: ldap/servers/slapd/back-ldbm/ldbm_instance_config.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_instance_config.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_instance_config.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_instance_config.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_instance_config.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_instance_config.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_instance_config.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_instance_config.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/ldbm_instance_config.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_instance_config.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_instance_config.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_instance_config.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_instance_config.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_instance_config.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_instance_config.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_instance_config.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_instance_config.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/ldbm_instance_config.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_instance_config.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_instance_config.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_instance_config.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_instance_config.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_instance_config.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_instance_config.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_instance_config.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_modify.lo: ldap/servers/slapd/back-ldbm/ldbm_modify.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_modify.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_modify.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_modify.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_modify.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_modify.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_modify.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_modify.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/ldbm_modify.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_modify.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_modify.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_modify.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_modify.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_modify.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_modify.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_modify.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_modify.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/ldbm_modify.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_modify.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_modify.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_modify.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_modify.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_modify.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_modify.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_modify.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_modrdn.lo: ldap/servers/slapd/back-ldbm/ldbm_modrdn.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_modrdn.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_modrdn.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_modrdn.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_modrdn.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_modrdn.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_modrdn.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_modrdn.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/ldbm_modrdn.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_modrdn.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_modrdn.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_modrdn.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_modrdn.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_modrdn.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_modrdn.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_modrdn.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_modrdn.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/ldbm_modrdn.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_modrdn.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_modrdn.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_modrdn.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_modrdn.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_modrdn.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_modrdn.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_modrdn.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_search.lo: ldap/servers/slapd/back-ldbm/ldbm_search.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_search.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_search.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_search.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_search.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_search.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_search.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_search.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/ldbm_search.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_search.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_search.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_search.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_search.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_search.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_search.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_search.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_search.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/ldbm_search.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_search.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_search.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_search.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_search.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_search.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_search.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_search.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_unbind.lo: ldap/servers/slapd/back-ldbm/ldbm_unbind.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_unbind.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_unbind.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_unbind.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_unbind.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_unbind.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_unbind.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_unbind.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/ldbm_unbind.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_unbind.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_unbind.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_unbind.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_unbind.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_unbind.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_unbind.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_unbind.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_unbind.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/ldbm_unbind.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_unbind.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_unbind.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_unbind.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_unbind.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_unbind.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_unbind.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_unbind.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_usn.lo: ldap/servers/slapd/back-ldbm/ldbm_usn.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_usn.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_usn.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_usn.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_usn.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_usn.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_usn.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_usn.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/ldbm_usn.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_usn.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_usn.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_usn.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_usn.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_usn.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_usn.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_usn.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldbm_usn.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/ldbm_usn.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_usn.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_usn.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_usn.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_usn.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_usn.lo `test -f 'ldap/servers/slapd/back-ldbm/ldbm_usn.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldbm_usn.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldif2ldbm.lo: ldap/servers/slapd/back-ldbm/ldif2ldbm.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldif2ldbm.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldif2ldbm.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldif2ldbm.lo `test -f 'ldap/servers/slapd/back-ldbm/ldif2ldbm.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldif2ldbm.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldif2ldbm.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldif2ldbm.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/ldif2ldbm.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldif2ldbm.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldif2ldbm.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldif2ldbm.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldif2ldbm.lo `test -f 'ldap/servers/slapd/back-ldbm/ldif2ldbm.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldif2ldbm.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldif2ldbm.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-ldif2ldbm.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/ldif2ldbm.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldif2ldbm.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldif2ldbm.lo `test -f 'ldap/servers/slapd/back-ldbm/ldif2ldbm.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldif2ldbm.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldif2ldbm.lo `test -f 'ldap/servers/slapd/back-ldbm/ldif2ldbm.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/ldif2ldbm.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-dbverify.lo: ldap/servers/slapd/back-ldbm/dbverify.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-dbverify.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-dbverify.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-dbverify.lo `test -f 'ldap/servers/slapd/back-ldbm/dbverify.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/dbverify.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-dbverify.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-dbverify.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/dbverify.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-dbverify.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-dbverify.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-dbverify.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-dbverify.lo `test -f 'ldap/servers/slapd/back-ldbm/dbverify.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/dbverify.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-dbverify.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-dbverify.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/dbverify.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-dbverify.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-dbverify.lo `test -f 'ldap/servers/slapd/back-ldbm/dbverify.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/dbverify.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-dbverify.lo `test -f 'ldap/servers/slapd/back-ldbm/dbverify.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/dbverify.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-matchrule.lo: ldap/servers/slapd/back-ldbm/matchrule.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-matchrule.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-matchrule.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-matchrule.lo `test -f 'ldap/servers/slapd/back-ldbm/matchrule.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/matchrule.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-matchrule.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-matchrule.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/matchrule.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-matchrule.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-matchrule.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-matchrule.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-matchrule.lo `test -f 'ldap/servers/slapd/back-ldbm/matchrule.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/matchrule.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-matchrule.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-matchrule.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/matchrule.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-matchrule.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-matchrule.lo `test -f 'ldap/servers/slapd/back-ldbm/matchrule.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/matchrule.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-matchrule.lo `test -f 'ldap/servers/slapd/back-ldbm/matchrule.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/matchrule.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-misc.lo: ldap/servers/slapd/back-ldbm/misc.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-misc.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-misc.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-misc.lo `test -f 'ldap/servers/slapd/back-ldbm/misc.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/misc.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-misc.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-misc.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/misc.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-misc.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-misc.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-misc.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-misc.lo `test -f 'ldap/servers/slapd/back-ldbm/misc.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/misc.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-misc.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-misc.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/misc.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-misc.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-misc.lo `test -f 'ldap/servers/slapd/back-ldbm/misc.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/misc.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-misc.lo `test -f 'ldap/servers/slapd/back-ldbm/misc.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/misc.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-monitor.lo: ldap/servers/slapd/back-ldbm/monitor.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-monitor.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-monitor.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-monitor.lo `test -f 'ldap/servers/slapd/back-ldbm/monitor.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/monitor.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-monitor.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-monitor.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/monitor.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-monitor.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-monitor.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-monitor.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-monitor.lo `test -f 'ldap/servers/slapd/back-ldbm/monitor.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/monitor.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-monitor.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-monitor.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/monitor.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-monitor.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-monitor.lo `test -f 'ldap/servers/slapd/back-ldbm/monitor.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/monitor.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-monitor.lo `test -f 'ldap/servers/slapd/back-ldbm/monitor.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/monitor.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-nextid.lo: ldap/servers/slapd/back-ldbm/nextid.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-nextid.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-nextid.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-nextid.lo `test -f 'ldap/servers/slapd/back-ldbm/nextid.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/nextid.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-nextid.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-nextid.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/nextid.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-nextid.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-nextid.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-nextid.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-nextid.lo `test -f 'ldap/servers/slapd/back-ldbm/nextid.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/nextid.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-nextid.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-nextid.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/nextid.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-nextid.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-nextid.lo `test -f 'ldap/servers/slapd/back-ldbm/nextid.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/nextid.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-nextid.lo `test -f 'ldap/servers/slapd/back-ldbm/nextid.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/nextid.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-parents.lo: ldap/servers/slapd/back-ldbm/parents.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-parents.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-parents.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-parents.lo `test -f 'ldap/servers/slapd/back-ldbm/parents.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/parents.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-parents.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-parents.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/parents.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-parents.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-parents.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-parents.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-parents.lo `test -f 'ldap/servers/slapd/back-ldbm/parents.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/parents.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-parents.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-parents.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/parents.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-parents.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-parents.lo `test -f 'ldap/servers/slapd/back-ldbm/parents.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/parents.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-parents.lo `test -f 'ldap/servers/slapd/back-ldbm/parents.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/parents.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-perfctrs.lo: ldap/servers/slapd/back-ldbm/perfctrs.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-perfctrs.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-perfctrs.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-perfctrs.lo `test -f 'ldap/servers/slapd/back-ldbm/perfctrs.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/perfctrs.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-perfctrs.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-perfctrs.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/perfctrs.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-perfctrs.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-perfctrs.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-perfctrs.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-perfctrs.lo `test -f 'ldap/servers/slapd/back-ldbm/perfctrs.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/perfctrs.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-perfctrs.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-perfctrs.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/perfctrs.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-perfctrs.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-perfctrs.lo `test -f 'ldap/servers/slapd/back-ldbm/perfctrs.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/perfctrs.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-perfctrs.lo `test -f 'ldap/servers/slapd/back-ldbm/perfctrs.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/perfctrs.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-rmdb.lo: ldap/servers/slapd/back-ldbm/rmdb.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-rmdb.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-rmdb.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-rmdb.lo `test -f 'ldap/servers/slapd/back-ldbm/rmdb.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/rmdb.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-rmdb.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-rmdb.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/rmdb.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-rmdb.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-rmdb.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-rmdb.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-rmdb.lo `test -f 'ldap/servers/slapd/back-ldbm/rmdb.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/rmdb.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-rmdb.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-rmdb.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/rmdb.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-rmdb.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-rmdb.lo `test -f 'ldap/servers/slapd/back-ldbm/rmdb.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/rmdb.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-rmdb.lo `test -f 'ldap/servers/slapd/back-ldbm/rmdb.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/rmdb.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-seq.lo: ldap/servers/slapd/back-ldbm/seq.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-seq.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-seq.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-seq.lo `test -f 'ldap/servers/slapd/back-ldbm/seq.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/seq.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-seq.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-seq.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/seq.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-seq.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-seq.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-seq.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-seq.lo `test -f 'ldap/servers/slapd/back-ldbm/seq.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/seq.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-seq.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-seq.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/seq.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-seq.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-seq.lo `test -f 'ldap/servers/slapd/back-ldbm/seq.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/seq.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-seq.lo `test -f 'ldap/servers/slapd/back-ldbm/seq.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/seq.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-sort.lo: ldap/servers/slapd/back-ldbm/sort.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-sort.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-sort.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-sort.lo `test -f 'ldap/servers/slapd/back-ldbm/sort.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/sort.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-sort.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-sort.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/sort.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-sort.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-sort.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-sort.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-sort.lo `test -f 'ldap/servers/slapd/back-ldbm/sort.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/sort.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-sort.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-sort.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/sort.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-sort.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-sort.lo `test -f 'ldap/servers/slapd/back-ldbm/sort.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/sort.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-sort.lo `test -f 'ldap/servers/slapd/back-ldbm/sort.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/sort.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-start.lo: ldap/servers/slapd/back-ldbm/start.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-start.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-start.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-start.lo `test -f 'ldap/servers/slapd/back-ldbm/start.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/start.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-start.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-start.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/start.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-start.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-start.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-start.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-start.lo `test -f 'ldap/servers/slapd/back-ldbm/start.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/start.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-start.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-start.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/start.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-start.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-start.lo `test -f 'ldap/servers/slapd/back-ldbm/start.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/start.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-start.lo `test -f 'ldap/servers/slapd/back-ldbm/start.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/start.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-uniqueid2entry.lo: ldap/servers/slapd/back-ldbm/uniqueid2entry.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-uniqueid2entry.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-uniqueid2entry.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-uniqueid2entry.lo `test -f 'ldap/servers/slapd/back-ldbm/uniqueid2entry.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/uniqueid2entry.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-uniqueid2entry.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-uniqueid2entry.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/uniqueid2entry.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-uniqueid2entry.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-uniqueid2entry.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-uniqueid2entry.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-uniqueid2entry.lo `test -f 'ldap/servers/slapd/back-ldbm/uniqueid2entry.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/uniqueid2entry.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-uniqueid2entry.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-uniqueid2entry.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/uniqueid2entry.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-uniqueid2entry.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-uniqueid2entry.lo `test -f 'ldap/servers/slapd/back-ldbm/uniqueid2entry.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/uniqueid2entry.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-uniqueid2entry.lo `test -f 'ldap/servers/slapd/back-ldbm/uniqueid2entry.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/uniqueid2entry.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-upgrade.lo: ldap/servers/slapd/back-ldbm/upgrade.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-upgrade.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-upgrade.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-upgrade.lo `test -f 'ldap/servers/slapd/back-ldbm/upgrade.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/upgrade.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-upgrade.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-upgrade.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/upgrade.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-upgrade.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-upgrade.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-upgrade.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-upgrade.lo `test -f 'ldap/servers/slapd/back-ldbm/upgrade.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/upgrade.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-upgrade.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-upgrade.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/upgrade.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-upgrade.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-upgrade.lo `test -f 'ldap/servers/slapd/back-ldbm/upgrade.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/upgrade.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-upgrade.lo `test -f 'ldap/servers/slapd/back-ldbm/upgrade.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/upgrade.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-vlv.lo: ldap/servers/slapd/back-ldbm/vlv.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-vlv.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-vlv.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-vlv.lo `test -f 'ldap/servers/slapd/back-ldbm/vlv.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/vlv.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-vlv.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-vlv.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/vlv.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-vlv.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-vlv.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-vlv.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-vlv.lo `test -f 'ldap/servers/slapd/back-ldbm/vlv.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/vlv.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-vlv.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-vlv.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/vlv.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-vlv.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-vlv.lo `test -f 'ldap/servers/slapd/back-ldbm/vlv.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/vlv.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-vlv.lo `test -f 'ldap/servers/slapd/back-ldbm/vlv.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/vlv.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-vlv_key.lo: ldap/servers/slapd/back-ldbm/vlv_key.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-vlv_key.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-vlv_key.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-vlv_key.lo `test -f 'ldap/servers/slapd/back-ldbm/vlv_key.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/vlv_key.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-vlv_key.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-vlv_key.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/vlv_key.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-vlv_key.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-vlv_key.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-vlv_key.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-vlv_key.lo `test -f 'ldap/servers/slapd/back-ldbm/vlv_key.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/vlv_key.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-vlv_key.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-vlv_key.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/vlv_key.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-vlv_key.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-vlv_key.lo `test -f 'ldap/servers/slapd/back-ldbm/vlv_key.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/vlv_key.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-vlv_key.lo `test -f 'ldap/servers/slapd/back-ldbm/vlv_key.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/vlv_key.c - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-vlv_srch.lo: ldap/servers/slapd/back-ldbm/vlv_srch.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-vlv_srch.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-vlv_srch.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-vlv_srch.lo `test -f 'ldap/servers/slapd/back-ldbm/vlv_srch.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/vlv_srch.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-vlv_srch.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-vlv_srch.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/back-ldbm/vlv_srch.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-vlv_srch.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/back-ldbm/libback_ldbm_la-vlv_srch.lo -MD -MP -MF ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-vlv_srch.Tpo -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-vlv_srch.lo `test -f 'ldap/servers/slapd/back-ldbm/vlv_srch.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/vlv_srch.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-vlv_srch.Tpo ldap/servers/slapd/back-ldbm/$(DEPDIR)/libback_ldbm_la-vlv_srch.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/back-ldbm/vlv_srch.c' object='ldap/servers/slapd/back-ldbm/libback_ldbm_la-vlv_srch.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-vlv_srch.lo `test -f 'ldap/servers/slapd/back-ldbm/vlv_srch.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/vlv_srch.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libback_ldbm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/back-ldbm/libback_ldbm_la-vlv_srch.lo `test -f 'ldap/servers/slapd/back-ldbm/vlv_srch.c' || echo '$(srcdir)/'`ldap/servers/slapd/back-ldbm/vlv_srch.c - - ldap/servers/plugins/bitwise/libbitwise_plugin_la-bitwise.lo: ldap/servers/plugins/bitwise/bitwise.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbitwise_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/bitwise/libbitwise_plugin_la-bitwise.lo -MD -MP -MF ldap/servers/plugins/bitwise/$(DEPDIR)/libbitwise_plugin_la-bitwise.Tpo -c -o ldap/servers/plugins/bitwise/libbitwise_plugin_la-bitwise.lo `test -f 'ldap/servers/plugins/bitwise/bitwise.c' || echo '$(srcdir)/'`ldap/servers/plugins/bitwise/bitwise.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/bitwise/$(DEPDIR)/libbitwise_plugin_la-bitwise.Tpo ldap/servers/plugins/bitwise/$(DEPDIR)/libbitwise_plugin_la-bitwise.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/bitwise/bitwise.c' object='ldap/servers/plugins/bitwise/libbitwise_plugin_la-bitwise.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbitwise_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/bitwise/libbitwise_plugin_la-bitwise.lo -MD -MP -MF ldap/servers/plugins/bitwise/$(DEPDIR)/libbitwise_plugin_la-bitwise.Tpo -c -o ldap/servers/plugins/bitwise/libbitwise_plugin_la-bitwise.lo `test -f 'ldap/servers/plugins/bitwise/bitwise.c' || echo '$(srcdir)/'`ldap/servers/plugins/bitwise/bitwise.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/bitwise/$(DEPDIR)/libbitwise_plugin_la-bitwise.Tpo ldap/servers/plugins/bitwise/$(DEPDIR)/libbitwise_plugin_la-bitwise.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/bitwise/bitwise.c' object='ldap/servers/plugins/bitwise/libbitwise_plugin_la-bitwise.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbitwise_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/bitwise/libbitwise_plugin_la-bitwise.lo `test -f 'ldap/servers/plugins/bitwise/bitwise.c' || echo '$(srcdir)/'`ldap/servers/plugins/bitwise/bitwise.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbitwise_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/bitwise/libbitwise_plugin_la-bitwise.lo `test -f 'ldap/servers/plugins/bitwise/bitwise.c' || echo '$(srcdir)/'`ldap/servers/plugins/bitwise/bitwise.c - - ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_abandon.lo: ldap/servers/plugins/chainingdb/cb_abandon.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_abandon.lo -MD -MP -MF ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_abandon.Tpo -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_abandon.lo `test -f 'ldap/servers/plugins/chainingdb/cb_abandon.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_abandon.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_abandon.Tpo ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_abandon.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/chainingdb/cb_abandon.c' object='ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_abandon.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_abandon.lo -MD -MP -MF ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_abandon.Tpo -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_abandon.lo `test -f 'ldap/servers/plugins/chainingdb/cb_abandon.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_abandon.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_abandon.Tpo ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_abandon.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/chainingdb/cb_abandon.c' object='ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_abandon.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_abandon.lo `test -f 'ldap/servers/plugins/chainingdb/cb_abandon.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_abandon.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_abandon.lo `test -f 'ldap/servers/plugins/chainingdb/cb_abandon.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_abandon.c - - ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_acl.lo: ldap/servers/plugins/chainingdb/cb_acl.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_acl.lo -MD -MP -MF ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_acl.Tpo -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_acl.lo `test -f 'ldap/servers/plugins/chainingdb/cb_acl.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_acl.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_acl.Tpo ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_acl.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/chainingdb/cb_acl.c' object='ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_acl.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_acl.lo -MD -MP -MF ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_acl.Tpo -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_acl.lo `test -f 'ldap/servers/plugins/chainingdb/cb_acl.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_acl.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_acl.Tpo ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_acl.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/chainingdb/cb_acl.c' object='ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_acl.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_acl.lo `test -f 'ldap/servers/plugins/chainingdb/cb_acl.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_acl.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_acl.lo `test -f 'ldap/servers/plugins/chainingdb/cb_acl.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_acl.c - - ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_add.lo: ldap/servers/plugins/chainingdb/cb_add.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_add.lo -MD -MP -MF ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_add.Tpo -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_add.lo `test -f 'ldap/servers/plugins/chainingdb/cb_add.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_add.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_add.Tpo ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_add.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/chainingdb/cb_add.c' object='ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_add.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_add.lo -MD -MP -MF ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_add.Tpo -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_add.lo `test -f 'ldap/servers/plugins/chainingdb/cb_add.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_add.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_add.Tpo ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_add.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/chainingdb/cb_add.c' object='ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_add.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_add.lo `test -f 'ldap/servers/plugins/chainingdb/cb_add.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_add.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_add.lo `test -f 'ldap/servers/plugins/chainingdb/cb_add.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_add.c - - ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_bind.lo: ldap/servers/plugins/chainingdb/cb_bind.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_bind.lo -MD -MP -MF ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_bind.Tpo -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_bind.lo `test -f 'ldap/servers/plugins/chainingdb/cb_bind.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_bind.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_bind.Tpo ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_bind.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/chainingdb/cb_bind.c' object='ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_bind.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_bind.lo -MD -MP -MF ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_bind.Tpo -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_bind.lo `test -f 'ldap/servers/plugins/chainingdb/cb_bind.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_bind.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_bind.Tpo ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_bind.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/chainingdb/cb_bind.c' object='ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_bind.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_bind.lo `test -f 'ldap/servers/plugins/chainingdb/cb_bind.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_bind.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_bind.lo `test -f 'ldap/servers/plugins/chainingdb/cb_bind.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_bind.c - - ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_cleanup.lo: ldap/servers/plugins/chainingdb/cb_cleanup.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_cleanup.lo -MD -MP -MF ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_cleanup.Tpo -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_cleanup.lo `test -f 'ldap/servers/plugins/chainingdb/cb_cleanup.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_cleanup.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_cleanup.Tpo ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_cleanup.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/chainingdb/cb_cleanup.c' object='ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_cleanup.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_cleanup.lo -MD -MP -MF ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_cleanup.Tpo -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_cleanup.lo `test -f 'ldap/servers/plugins/chainingdb/cb_cleanup.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_cleanup.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_cleanup.Tpo ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_cleanup.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/chainingdb/cb_cleanup.c' object='ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_cleanup.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_cleanup.lo `test -f 'ldap/servers/plugins/chainingdb/cb_cleanup.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_cleanup.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_cleanup.lo `test -f 'ldap/servers/plugins/chainingdb/cb_cleanup.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_cleanup.c - - ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_close.lo: ldap/servers/plugins/chainingdb/cb_close.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_close.lo -MD -MP -MF ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_close.Tpo -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_close.lo `test -f 'ldap/servers/plugins/chainingdb/cb_close.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_close.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_close.Tpo ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_close.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/chainingdb/cb_close.c' object='ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_close.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_close.lo -MD -MP -MF ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_close.Tpo -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_close.lo `test -f 'ldap/servers/plugins/chainingdb/cb_close.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_close.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_close.Tpo ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_close.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/chainingdb/cb_close.c' object='ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_close.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_close.lo `test -f 'ldap/servers/plugins/chainingdb/cb_close.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_close.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_close.lo `test -f 'ldap/servers/plugins/chainingdb/cb_close.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_close.c - - ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_compare.lo: ldap/servers/plugins/chainingdb/cb_compare.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_compare.lo -MD -MP -MF ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_compare.Tpo -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_compare.lo `test -f 'ldap/servers/plugins/chainingdb/cb_compare.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_compare.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_compare.Tpo ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_compare.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/chainingdb/cb_compare.c' object='ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_compare.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_compare.lo -MD -MP -MF ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_compare.Tpo -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_compare.lo `test -f 'ldap/servers/plugins/chainingdb/cb_compare.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_compare.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_compare.Tpo ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_compare.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/chainingdb/cb_compare.c' object='ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_compare.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_compare.lo `test -f 'ldap/servers/plugins/chainingdb/cb_compare.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_compare.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_compare.lo `test -f 'ldap/servers/plugins/chainingdb/cb_compare.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_compare.c - - ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_config.lo: ldap/servers/plugins/chainingdb/cb_config.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_config.lo -MD -MP -MF ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_config.Tpo -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_config.lo `test -f 'ldap/servers/plugins/chainingdb/cb_config.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_config.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_config.Tpo ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_config.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/chainingdb/cb_config.c' object='ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_config.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_config.lo -MD -MP -MF ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_config.Tpo -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_config.lo `test -f 'ldap/servers/plugins/chainingdb/cb_config.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_config.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_config.Tpo ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_config.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/chainingdb/cb_config.c' object='ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_config.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_config.lo `test -f 'ldap/servers/plugins/chainingdb/cb_config.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_config.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_config.lo `test -f 'ldap/servers/plugins/chainingdb/cb_config.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_config.c - - ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_conn_stateless.lo: ldap/servers/plugins/chainingdb/cb_conn_stateless.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_conn_stateless.lo -MD -MP -MF ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_conn_stateless.Tpo -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_conn_stateless.lo `test -f 'ldap/servers/plugins/chainingdb/cb_conn_stateless.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_conn_stateless.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_conn_stateless.Tpo ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_conn_stateless.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/chainingdb/cb_conn_stateless.c' object='ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_conn_stateless.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_conn_stateless.lo -MD -MP -MF ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_conn_stateless.Tpo -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_conn_stateless.lo `test -f 'ldap/servers/plugins/chainingdb/cb_conn_stateless.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_conn_stateless.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_conn_stateless.Tpo ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_conn_stateless.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/chainingdb/cb_conn_stateless.c' object='ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_conn_stateless.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_conn_stateless.lo `test -f 'ldap/servers/plugins/chainingdb/cb_conn_stateless.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_conn_stateless.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_conn_stateless.lo `test -f 'ldap/servers/plugins/chainingdb/cb_conn_stateless.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_conn_stateless.c - - ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_controls.lo: ldap/servers/plugins/chainingdb/cb_controls.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_controls.lo -MD -MP -MF ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_controls.Tpo -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_controls.lo `test -f 'ldap/servers/plugins/chainingdb/cb_controls.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_controls.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_controls.Tpo ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_controls.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/chainingdb/cb_controls.c' object='ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_controls.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_controls.lo -MD -MP -MF ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_controls.Tpo -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_controls.lo `test -f 'ldap/servers/plugins/chainingdb/cb_controls.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_controls.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_controls.Tpo ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_controls.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/chainingdb/cb_controls.c' object='ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_controls.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_controls.lo `test -f 'ldap/servers/plugins/chainingdb/cb_controls.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_controls.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_controls.lo `test -f 'ldap/servers/plugins/chainingdb/cb_controls.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_controls.c - - ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_debug.lo: ldap/servers/plugins/chainingdb/cb_debug.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_debug.lo -MD -MP -MF ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_debug.Tpo -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_debug.lo `test -f 'ldap/servers/plugins/chainingdb/cb_debug.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_debug.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_debug.Tpo ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_debug.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/chainingdb/cb_debug.c' object='ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_debug.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_debug.lo -MD -MP -MF ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_debug.Tpo -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_debug.lo `test -f 'ldap/servers/plugins/chainingdb/cb_debug.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_debug.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_debug.Tpo ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_debug.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/chainingdb/cb_debug.c' object='ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_debug.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_debug.lo `test -f 'ldap/servers/plugins/chainingdb/cb_debug.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_debug.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_debug.lo `test -f 'ldap/servers/plugins/chainingdb/cb_debug.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_debug.c - - ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_delete.lo: ldap/servers/plugins/chainingdb/cb_delete.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_delete.lo -MD -MP -MF ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_delete.Tpo -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_delete.lo `test -f 'ldap/servers/plugins/chainingdb/cb_delete.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_delete.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_delete.Tpo ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_delete.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/chainingdb/cb_delete.c' object='ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_delete.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_delete.lo -MD -MP -MF ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_delete.Tpo -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_delete.lo `test -f 'ldap/servers/plugins/chainingdb/cb_delete.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_delete.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_delete.Tpo ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_delete.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/chainingdb/cb_delete.c' object='ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_delete.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_delete.lo `test -f 'ldap/servers/plugins/chainingdb/cb_delete.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_delete.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_delete.lo `test -f 'ldap/servers/plugins/chainingdb/cb_delete.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_delete.c - - ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_init.lo: ldap/servers/plugins/chainingdb/cb_init.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_init.lo -MD -MP -MF ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_init.Tpo -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_init.lo `test -f 'ldap/servers/plugins/chainingdb/cb_init.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_init.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_init.Tpo ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_init.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/chainingdb/cb_init.c' object='ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_init.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_init.lo -MD -MP -MF ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_init.Tpo -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_init.lo `test -f 'ldap/servers/plugins/chainingdb/cb_init.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_init.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_init.Tpo ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_init.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/chainingdb/cb_init.c' object='ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_init.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_init.lo `test -f 'ldap/servers/plugins/chainingdb/cb_init.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_init.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_init.lo `test -f 'ldap/servers/plugins/chainingdb/cb_init.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_init.c - - ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_instance.lo: ldap/servers/plugins/chainingdb/cb_instance.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_instance.lo -MD -MP -MF ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_instance.Tpo -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_instance.lo `test -f 'ldap/servers/plugins/chainingdb/cb_instance.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_instance.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_instance.Tpo ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_instance.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/chainingdb/cb_instance.c' object='ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_instance.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_instance.lo -MD -MP -MF ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_instance.Tpo -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_instance.lo `test -f 'ldap/servers/plugins/chainingdb/cb_instance.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_instance.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_instance.Tpo ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_instance.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/chainingdb/cb_instance.c' object='ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_instance.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_instance.lo `test -f 'ldap/servers/plugins/chainingdb/cb_instance.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_instance.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_instance.lo `test -f 'ldap/servers/plugins/chainingdb/cb_instance.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_instance.c - - ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_modify.lo: ldap/servers/plugins/chainingdb/cb_modify.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_modify.lo -MD -MP -MF ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_modify.Tpo -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_modify.lo `test -f 'ldap/servers/plugins/chainingdb/cb_modify.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_modify.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_modify.Tpo ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_modify.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/chainingdb/cb_modify.c' object='ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_modify.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_modify.lo -MD -MP -MF ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_modify.Tpo -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_modify.lo `test -f 'ldap/servers/plugins/chainingdb/cb_modify.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_modify.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_modify.Tpo ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_modify.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/chainingdb/cb_modify.c' object='ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_modify.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_modify.lo `test -f 'ldap/servers/plugins/chainingdb/cb_modify.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_modify.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_modify.lo `test -f 'ldap/servers/plugins/chainingdb/cb_modify.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_modify.c - - ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_modrdn.lo: ldap/servers/plugins/chainingdb/cb_modrdn.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_modrdn.lo -MD -MP -MF ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_modrdn.Tpo -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_modrdn.lo `test -f 'ldap/servers/plugins/chainingdb/cb_modrdn.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_modrdn.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_modrdn.Tpo ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_modrdn.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/chainingdb/cb_modrdn.c' object='ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_modrdn.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_modrdn.lo -MD -MP -MF ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_modrdn.Tpo -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_modrdn.lo `test -f 'ldap/servers/plugins/chainingdb/cb_modrdn.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_modrdn.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_modrdn.Tpo ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_modrdn.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/chainingdb/cb_modrdn.c' object='ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_modrdn.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_modrdn.lo `test -f 'ldap/servers/plugins/chainingdb/cb_modrdn.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_modrdn.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_modrdn.lo `test -f 'ldap/servers/plugins/chainingdb/cb_modrdn.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_modrdn.c - - ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_monitor.lo: ldap/servers/plugins/chainingdb/cb_monitor.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_monitor.lo -MD -MP -MF ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_monitor.Tpo -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_monitor.lo `test -f 'ldap/servers/plugins/chainingdb/cb_monitor.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_monitor.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_monitor.Tpo ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_monitor.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/chainingdb/cb_monitor.c' object='ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_monitor.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_monitor.lo -MD -MP -MF ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_monitor.Tpo -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_monitor.lo `test -f 'ldap/servers/plugins/chainingdb/cb_monitor.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_monitor.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_monitor.Tpo ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_monitor.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/chainingdb/cb_monitor.c' object='ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_monitor.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_monitor.lo `test -f 'ldap/servers/plugins/chainingdb/cb_monitor.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_monitor.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_monitor.lo `test -f 'ldap/servers/plugins/chainingdb/cb_monitor.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_monitor.c - - ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_schema.lo: ldap/servers/plugins/chainingdb/cb_schema.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_schema.lo -MD -MP -MF ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_schema.Tpo -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_schema.lo `test -f 'ldap/servers/plugins/chainingdb/cb_schema.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_schema.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_schema.Tpo ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_schema.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/chainingdb/cb_schema.c' object='ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_schema.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_schema.lo -MD -MP -MF ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_schema.Tpo -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_schema.lo `test -f 'ldap/servers/plugins/chainingdb/cb_schema.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_schema.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_schema.Tpo ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_schema.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/chainingdb/cb_schema.c' object='ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_schema.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_schema.lo `test -f 'ldap/servers/plugins/chainingdb/cb_schema.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_schema.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_schema.lo `test -f 'ldap/servers/plugins/chainingdb/cb_schema.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_schema.c - - ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_search.lo: ldap/servers/plugins/chainingdb/cb_search.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_search.lo -MD -MP -MF ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_search.Tpo -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_search.lo `test -f 'ldap/servers/plugins/chainingdb/cb_search.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_search.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_search.Tpo ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_search.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/chainingdb/cb_search.c' object='ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_search.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_search.lo -MD -MP -MF ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_search.Tpo -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_search.lo `test -f 'ldap/servers/plugins/chainingdb/cb_search.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_search.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_search.Tpo ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_search.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/chainingdb/cb_search.c' object='ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_search.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_search.lo `test -f 'ldap/servers/plugins/chainingdb/cb_search.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_search.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_search.lo `test -f 'ldap/servers/plugins/chainingdb/cb_search.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_search.c - - ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_size.lo: ldap/servers/plugins/chainingdb/cb_size.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_size.lo -MD -MP -MF ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_size.Tpo -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_size.lo `test -f 'ldap/servers/plugins/chainingdb/cb_size.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_size.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_size.Tpo ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_size.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/chainingdb/cb_size.c' object='ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_size.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_size.lo -MD -MP -MF ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_size.Tpo -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_size.lo `test -f 'ldap/servers/plugins/chainingdb/cb_size.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_size.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_size.Tpo ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_size.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/chainingdb/cb_size.c' object='ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_size.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_size.lo `test -f 'ldap/servers/plugins/chainingdb/cb_size.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_size.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_size.lo `test -f 'ldap/servers/plugins/chainingdb/cb_size.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_size.c - - ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_start.lo: ldap/servers/plugins/chainingdb/cb_start.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_start.lo -MD -MP -MF ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_start.Tpo -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_start.lo `test -f 'ldap/servers/plugins/chainingdb/cb_start.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_start.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_start.Tpo ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_start.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/chainingdb/cb_start.c' object='ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_start.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_start.lo -MD -MP -MF ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_start.Tpo -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_start.lo `test -f 'ldap/servers/plugins/chainingdb/cb_start.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_start.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_start.Tpo ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_start.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/chainingdb/cb_start.c' object='ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_start.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_start.lo `test -f 'ldap/servers/plugins/chainingdb/cb_start.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_start.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_start.lo `test -f 'ldap/servers/plugins/chainingdb/cb_start.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_start.c - - ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_temp.lo: ldap/servers/plugins/chainingdb/cb_temp.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_temp.lo -MD -MP -MF ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_temp.Tpo -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_temp.lo `test -f 'ldap/servers/plugins/chainingdb/cb_temp.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_temp.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_temp.Tpo ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_temp.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/chainingdb/cb_temp.c' object='ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_temp.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_temp.lo -MD -MP -MF ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_temp.Tpo -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_temp.lo `test -f 'ldap/servers/plugins/chainingdb/cb_temp.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_temp.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_temp.Tpo ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_temp.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/chainingdb/cb_temp.c' object='ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_temp.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_temp.lo `test -f 'ldap/servers/plugins/chainingdb/cb_temp.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_temp.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_temp.lo `test -f 'ldap/servers/plugins/chainingdb/cb_temp.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_temp.c - - ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_test.lo: ldap/servers/plugins/chainingdb/cb_test.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_test.lo -MD -MP -MF ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_test.Tpo -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_test.lo `test -f 'ldap/servers/plugins/chainingdb/cb_test.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_test.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_test.Tpo ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_test.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/chainingdb/cb_test.c' object='ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_test.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_test.lo -MD -MP -MF ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_test.Tpo -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_test.lo `test -f 'ldap/servers/plugins/chainingdb/cb_test.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_test.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_test.Tpo ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_test.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/chainingdb/cb_test.c' object='ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_test.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_test.lo `test -f 'ldap/servers/plugins/chainingdb/cb_test.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_test.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_test.lo `test -f 'ldap/servers/plugins/chainingdb/cb_test.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_test.c - - ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_unbind.lo: ldap/servers/plugins/chainingdb/cb_unbind.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_unbind.lo -MD -MP -MF ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_unbind.Tpo -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_unbind.lo `test -f 'ldap/servers/plugins/chainingdb/cb_unbind.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_unbind.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_unbind.Tpo ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_unbind.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/chainingdb/cb_unbind.c' object='ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_unbind.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_unbind.lo -MD -MP -MF ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_unbind.Tpo -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_unbind.lo `test -f 'ldap/servers/plugins/chainingdb/cb_unbind.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_unbind.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_unbind.Tpo ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_unbind.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/chainingdb/cb_unbind.c' object='ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_unbind.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_unbind.lo `test -f 'ldap/servers/plugins/chainingdb/cb_unbind.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_unbind.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_unbind.lo `test -f 'ldap/servers/plugins/chainingdb/cb_unbind.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_unbind.c - - ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_utils.lo: ldap/servers/plugins/chainingdb/cb_utils.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_utils.lo -MD -MP -MF ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_utils.Tpo -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_utils.lo `test -f 'ldap/servers/plugins/chainingdb/cb_utils.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_utils.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_utils.Tpo ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_utils.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/chainingdb/cb_utils.c' object='ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_utils.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_utils.lo -MD -MP -MF ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_utils.Tpo -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_utils.lo `test -f 'ldap/servers/plugins/chainingdb/cb_utils.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_utils.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_utils.Tpo ldap/servers/plugins/chainingdb/$(DEPDIR)/libchainingdb_plugin_la-cb_utils.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/chainingdb/cb_utils.c' object='ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_utils.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_utils.lo `test -f 'ldap/servers/plugins/chainingdb/cb_utils.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_utils.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libchainingdb_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_utils.lo `test -f 'ldap/servers/plugins/chainingdb/cb_utils.c' || echo '$(srcdir)/'`ldap/servers/plugins/chainingdb/cb_utils.c - - ldap/servers/plugins/collation/libcollation_plugin_la-collate.lo: ldap/servers/plugins/collation/collate.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcollation_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/collation/libcollation_plugin_la-collate.lo -MD -MP -MF ldap/servers/plugins/collation/$(DEPDIR)/libcollation_plugin_la-collate.Tpo -c -o ldap/servers/plugins/collation/libcollation_plugin_la-collate.lo `test -f 'ldap/servers/plugins/collation/collate.c' || echo '$(srcdir)/'`ldap/servers/plugins/collation/collate.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/collation/$(DEPDIR)/libcollation_plugin_la-collate.Tpo ldap/servers/plugins/collation/$(DEPDIR)/libcollation_plugin_la-collate.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/collation/collate.c' object='ldap/servers/plugins/collation/libcollation_plugin_la-collate.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcollation_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/collation/libcollation_plugin_la-collate.lo -MD -MP -MF ldap/servers/plugins/collation/$(DEPDIR)/libcollation_plugin_la-collate.Tpo -c -o ldap/servers/plugins/collation/libcollation_plugin_la-collate.lo `test -f 'ldap/servers/plugins/collation/collate.c' || echo '$(srcdir)/'`ldap/servers/plugins/collation/collate.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/collation/$(DEPDIR)/libcollation_plugin_la-collate.Tpo ldap/servers/plugins/collation/$(DEPDIR)/libcollation_plugin_la-collate.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/collation/collate.c' object='ldap/servers/plugins/collation/libcollation_plugin_la-collate.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcollation_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/collation/libcollation_plugin_la-collate.lo `test -f 'ldap/servers/plugins/collation/collate.c' || echo '$(srcdir)/'`ldap/servers/plugins/collation/collate.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcollation_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/collation/libcollation_plugin_la-collate.lo `test -f 'ldap/servers/plugins/collation/collate.c' || echo '$(srcdir)/'`ldap/servers/plugins/collation/collate.c - - ldap/servers/plugins/collation/libcollation_plugin_la-config.lo: ldap/servers/plugins/collation/config.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcollation_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/collation/libcollation_plugin_la-config.lo -MD -MP -MF ldap/servers/plugins/collation/$(DEPDIR)/libcollation_plugin_la-config.Tpo -c -o ldap/servers/plugins/collation/libcollation_plugin_la-config.lo `test -f 'ldap/servers/plugins/collation/config.c' || echo '$(srcdir)/'`ldap/servers/plugins/collation/config.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/collation/$(DEPDIR)/libcollation_plugin_la-config.Tpo ldap/servers/plugins/collation/$(DEPDIR)/libcollation_plugin_la-config.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/collation/config.c' object='ldap/servers/plugins/collation/libcollation_plugin_la-config.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcollation_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/collation/libcollation_plugin_la-config.lo -MD -MP -MF ldap/servers/plugins/collation/$(DEPDIR)/libcollation_plugin_la-config.Tpo -c -o ldap/servers/plugins/collation/libcollation_plugin_la-config.lo `test -f 'ldap/servers/plugins/collation/config.c' || echo '$(srcdir)/'`ldap/servers/plugins/collation/config.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/collation/$(DEPDIR)/libcollation_plugin_la-config.Tpo ldap/servers/plugins/collation/$(DEPDIR)/libcollation_plugin_la-config.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/collation/config.c' object='ldap/servers/plugins/collation/libcollation_plugin_la-config.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcollation_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/collation/libcollation_plugin_la-config.lo `test -f 'ldap/servers/plugins/collation/config.c' || echo '$(srcdir)/'`ldap/servers/plugins/collation/config.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcollation_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/collation/libcollation_plugin_la-config.lo `test -f 'ldap/servers/plugins/collation/config.c' || echo '$(srcdir)/'`ldap/servers/plugins/collation/config.c - - ldap/servers/plugins/collation/libcollation_plugin_la-orfilter.lo: ldap/servers/plugins/collation/orfilter.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcollation_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/collation/libcollation_plugin_la-orfilter.lo -MD -MP -MF ldap/servers/plugins/collation/$(DEPDIR)/libcollation_plugin_la-orfilter.Tpo -c -o ldap/servers/plugins/collation/libcollation_plugin_la-orfilter.lo `test -f 'ldap/servers/plugins/collation/orfilter.c' || echo '$(srcdir)/'`ldap/servers/plugins/collation/orfilter.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/collation/$(DEPDIR)/libcollation_plugin_la-orfilter.Tpo ldap/servers/plugins/collation/$(DEPDIR)/libcollation_plugin_la-orfilter.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/collation/orfilter.c' object='ldap/servers/plugins/collation/libcollation_plugin_la-orfilter.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcollation_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/collation/libcollation_plugin_la-orfilter.lo -MD -MP -MF ldap/servers/plugins/collation/$(DEPDIR)/libcollation_plugin_la-orfilter.Tpo -c -o ldap/servers/plugins/collation/libcollation_plugin_la-orfilter.lo `test -f 'ldap/servers/plugins/collation/orfilter.c' || echo '$(srcdir)/'`ldap/servers/plugins/collation/orfilter.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/collation/$(DEPDIR)/libcollation_plugin_la-orfilter.Tpo ldap/servers/plugins/collation/$(DEPDIR)/libcollation_plugin_la-orfilter.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/collation/orfilter.c' object='ldap/servers/plugins/collation/libcollation_plugin_la-orfilter.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcollation_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/collation/libcollation_plugin_la-orfilter.lo `test -f 'ldap/servers/plugins/collation/orfilter.c' || echo '$(srcdir)/'`ldap/servers/plugins/collation/orfilter.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcollation_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/collation/libcollation_plugin_la-orfilter.lo `test -f 'ldap/servers/plugins/collation/orfilter.c' || echo '$(srcdir)/'`ldap/servers/plugins/collation/orfilter.c - - ldap/servers/plugins/cos/libcos_plugin_la-cos.lo: ldap/servers/plugins/cos/cos.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcos_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/cos/libcos_plugin_la-cos.lo -MD -MP -MF ldap/servers/plugins/cos/$(DEPDIR)/libcos_plugin_la-cos.Tpo -c -o ldap/servers/plugins/cos/libcos_plugin_la-cos.lo `test -f 'ldap/servers/plugins/cos/cos.c' || echo '$(srcdir)/'`ldap/servers/plugins/cos/cos.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/cos/$(DEPDIR)/libcos_plugin_la-cos.Tpo ldap/servers/plugins/cos/$(DEPDIR)/libcos_plugin_la-cos.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/cos/cos.c' object='ldap/servers/plugins/cos/libcos_plugin_la-cos.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcos_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/cos/libcos_plugin_la-cos.lo -MD -MP -MF ldap/servers/plugins/cos/$(DEPDIR)/libcos_plugin_la-cos.Tpo -c -o ldap/servers/plugins/cos/libcos_plugin_la-cos.lo `test -f 'ldap/servers/plugins/cos/cos.c' || echo '$(srcdir)/'`ldap/servers/plugins/cos/cos.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/cos/$(DEPDIR)/libcos_plugin_la-cos.Tpo ldap/servers/plugins/cos/$(DEPDIR)/libcos_plugin_la-cos.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/cos/cos.c' object='ldap/servers/plugins/cos/libcos_plugin_la-cos.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcos_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/cos/libcos_plugin_la-cos.lo `test -f 'ldap/servers/plugins/cos/cos.c' || echo '$(srcdir)/'`ldap/servers/plugins/cos/cos.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcos_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/cos/libcos_plugin_la-cos.lo `test -f 'ldap/servers/plugins/cos/cos.c' || echo '$(srcdir)/'`ldap/servers/plugins/cos/cos.c - - ldap/servers/plugins/cos/libcos_plugin_la-cos_cache.lo: ldap/servers/plugins/cos/cos_cache.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcos_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/cos/libcos_plugin_la-cos_cache.lo -MD -MP -MF ldap/servers/plugins/cos/$(DEPDIR)/libcos_plugin_la-cos_cache.Tpo -c -o ldap/servers/plugins/cos/libcos_plugin_la-cos_cache.lo `test -f 'ldap/servers/plugins/cos/cos_cache.c' || echo '$(srcdir)/'`ldap/servers/plugins/cos/cos_cache.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/cos/$(DEPDIR)/libcos_plugin_la-cos_cache.Tpo ldap/servers/plugins/cos/$(DEPDIR)/libcos_plugin_la-cos_cache.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/cos/cos_cache.c' object='ldap/servers/plugins/cos/libcos_plugin_la-cos_cache.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcos_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/cos/libcos_plugin_la-cos_cache.lo -MD -MP -MF ldap/servers/plugins/cos/$(DEPDIR)/libcos_plugin_la-cos_cache.Tpo -c -o ldap/servers/plugins/cos/libcos_plugin_la-cos_cache.lo `test -f 'ldap/servers/plugins/cos/cos_cache.c' || echo '$(srcdir)/'`ldap/servers/plugins/cos/cos_cache.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/cos/$(DEPDIR)/libcos_plugin_la-cos_cache.Tpo ldap/servers/plugins/cos/$(DEPDIR)/libcos_plugin_la-cos_cache.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/cos/cos_cache.c' object='ldap/servers/plugins/cos/libcos_plugin_la-cos_cache.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcos_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/cos/libcos_plugin_la-cos_cache.lo `test -f 'ldap/servers/plugins/cos/cos_cache.c' || echo '$(srcdir)/'`ldap/servers/plugins/cos/cos_cache.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcos_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/cos/libcos_plugin_la-cos_cache.lo `test -f 'ldap/servers/plugins/cos/cos_cache.c' || echo '$(srcdir)/'`ldap/servers/plugins/cos/cos_cache.c - - ldap/servers/plugins/deref/libderef_plugin_la-deref.lo: ldap/servers/plugins/deref/deref.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libderef_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/deref/libderef_plugin_la-deref.lo -MD -MP -MF ldap/servers/plugins/deref/$(DEPDIR)/libderef_plugin_la-deref.Tpo -c -o ldap/servers/plugins/deref/libderef_plugin_la-deref.lo `test -f 'ldap/servers/plugins/deref/deref.c' || echo '$(srcdir)/'`ldap/servers/plugins/deref/deref.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/deref/$(DEPDIR)/libderef_plugin_la-deref.Tpo ldap/servers/plugins/deref/$(DEPDIR)/libderef_plugin_la-deref.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/deref/deref.c' object='ldap/servers/plugins/deref/libderef_plugin_la-deref.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libderef_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/deref/libderef_plugin_la-deref.lo -MD -MP -MF ldap/servers/plugins/deref/$(DEPDIR)/libderef_plugin_la-deref.Tpo -c -o ldap/servers/plugins/deref/libderef_plugin_la-deref.lo `test -f 'ldap/servers/plugins/deref/deref.c' || echo '$(srcdir)/'`ldap/servers/plugins/deref/deref.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/deref/$(DEPDIR)/libderef_plugin_la-deref.Tpo ldap/servers/plugins/deref/$(DEPDIR)/libderef_plugin_la-deref.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/deref/deref.c' object='ldap/servers/plugins/deref/libderef_plugin_la-deref.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libderef_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/deref/libderef_plugin_la-deref.lo `test -f 'ldap/servers/plugins/deref/deref.c' || echo '$(srcdir)/'`ldap/servers/plugins/deref/deref.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libderef_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/deref/libderef_plugin_la-deref.lo `test -f 'ldap/servers/plugins/deref/deref.c' || echo '$(srcdir)/'`ldap/servers/plugins/deref/deref.c - - ldap/servers/plugins/rever/libdes_plugin_la-des.lo: ldap/servers/plugins/rever/des.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdes_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/rever/libdes_plugin_la-des.lo -MD -MP -MF ldap/servers/plugins/rever/$(DEPDIR)/libdes_plugin_la-des.Tpo -c -o ldap/servers/plugins/rever/libdes_plugin_la-des.lo `test -f 'ldap/servers/plugins/rever/des.c' || echo '$(srcdir)/'`ldap/servers/plugins/rever/des.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/rever/$(DEPDIR)/libdes_plugin_la-des.Tpo ldap/servers/plugins/rever/$(DEPDIR)/libdes_plugin_la-des.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/rever/des.c' object='ldap/servers/plugins/rever/libdes_plugin_la-des.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdes_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/rever/libdes_plugin_la-des.lo -MD -MP -MF ldap/servers/plugins/rever/$(DEPDIR)/libdes_plugin_la-des.Tpo -c -o ldap/servers/plugins/rever/libdes_plugin_la-des.lo `test -f 'ldap/servers/plugins/rever/des.c' || echo '$(srcdir)/'`ldap/servers/plugins/rever/des.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/rever/$(DEPDIR)/libdes_plugin_la-des.Tpo ldap/servers/plugins/rever/$(DEPDIR)/libdes_plugin_la-des.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/rever/des.c' object='ldap/servers/plugins/rever/libdes_plugin_la-des.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdes_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/rever/libdes_plugin_la-des.lo `test -f 'ldap/servers/plugins/rever/des.c' || echo '$(srcdir)/'`ldap/servers/plugins/rever/des.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdes_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/rever/libdes_plugin_la-des.lo `test -f 'ldap/servers/plugins/rever/des.c' || echo '$(srcdir)/'`ldap/servers/plugins/rever/des.c - - ldap/servers/plugins/rever/libdes_plugin_la-rever.lo: ldap/servers/plugins/rever/rever.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdes_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/rever/libdes_plugin_la-rever.lo -MD -MP -MF ldap/servers/plugins/rever/$(DEPDIR)/libdes_plugin_la-rever.Tpo -c -o ldap/servers/plugins/rever/libdes_plugin_la-rever.lo `test -f 'ldap/servers/plugins/rever/rever.c' || echo '$(srcdir)/'`ldap/servers/plugins/rever/rever.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/rever/$(DEPDIR)/libdes_plugin_la-rever.Tpo ldap/servers/plugins/rever/$(DEPDIR)/libdes_plugin_la-rever.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/rever/rever.c' object='ldap/servers/plugins/rever/libdes_plugin_la-rever.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdes_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/rever/libdes_plugin_la-rever.lo -MD -MP -MF ldap/servers/plugins/rever/$(DEPDIR)/libdes_plugin_la-rever.Tpo -c -o ldap/servers/plugins/rever/libdes_plugin_la-rever.lo `test -f 'ldap/servers/plugins/rever/rever.c' || echo '$(srcdir)/'`ldap/servers/plugins/rever/rever.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/rever/$(DEPDIR)/libdes_plugin_la-rever.Tpo ldap/servers/plugins/rever/$(DEPDIR)/libdes_plugin_la-rever.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/rever/rever.c' object='ldap/servers/plugins/rever/libdes_plugin_la-rever.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdes_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/rever/libdes_plugin_la-rever.lo `test -f 'ldap/servers/plugins/rever/rever.c' || echo '$(srcdir)/'`ldap/servers/plugins/rever/rever.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdes_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/rever/libdes_plugin_la-rever.lo `test -f 'ldap/servers/plugins/rever/rever.c' || echo '$(srcdir)/'`ldap/servers/plugins/rever/rever.c - - ldap/servers/plugins/distrib/libdistrib_plugin_la-distrib.lo: ldap/servers/plugins/distrib/distrib.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdistrib_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/distrib/libdistrib_plugin_la-distrib.lo -MD -MP -MF ldap/servers/plugins/distrib/$(DEPDIR)/libdistrib_plugin_la-distrib.Tpo -c -o ldap/servers/plugins/distrib/libdistrib_plugin_la-distrib.lo `test -f 'ldap/servers/plugins/distrib/distrib.c' || echo '$(srcdir)/'`ldap/servers/plugins/distrib/distrib.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/distrib/$(DEPDIR)/libdistrib_plugin_la-distrib.Tpo ldap/servers/plugins/distrib/$(DEPDIR)/libdistrib_plugin_la-distrib.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/distrib/distrib.c' object='ldap/servers/plugins/distrib/libdistrib_plugin_la-distrib.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdistrib_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/distrib/libdistrib_plugin_la-distrib.lo -MD -MP -MF ldap/servers/plugins/distrib/$(DEPDIR)/libdistrib_plugin_la-distrib.Tpo -c -o ldap/servers/plugins/distrib/libdistrib_plugin_la-distrib.lo `test -f 'ldap/servers/plugins/distrib/distrib.c' || echo '$(srcdir)/'`ldap/servers/plugins/distrib/distrib.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/distrib/$(DEPDIR)/libdistrib_plugin_la-distrib.Tpo ldap/servers/plugins/distrib/$(DEPDIR)/libdistrib_plugin_la-distrib.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/distrib/distrib.c' object='ldap/servers/plugins/distrib/libdistrib_plugin_la-distrib.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdistrib_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/distrib/libdistrib_plugin_la-distrib.lo `test -f 'ldap/servers/plugins/distrib/distrib.c' || echo '$(srcdir)/'`ldap/servers/plugins/distrib/distrib.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdistrib_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/distrib/libdistrib_plugin_la-distrib.lo `test -f 'ldap/servers/plugins/distrib/distrib.c' || echo '$(srcdir)/'`ldap/servers/plugins/distrib/distrib.c - - ldap/servers/plugins/dna/libdna_plugin_la-dna.lo: ldap/servers/plugins/dna/dna.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdna_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/dna/libdna_plugin_la-dna.lo -MD -MP -MF ldap/servers/plugins/dna/$(DEPDIR)/libdna_plugin_la-dna.Tpo -c -o ldap/servers/plugins/dna/libdna_plugin_la-dna.lo `test -f 'ldap/servers/plugins/dna/dna.c' || echo '$(srcdir)/'`ldap/servers/plugins/dna/dna.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/dna/$(DEPDIR)/libdna_plugin_la-dna.Tpo ldap/servers/plugins/dna/$(DEPDIR)/libdna_plugin_la-dna.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/dna/dna.c' object='ldap/servers/plugins/dna/libdna_plugin_la-dna.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdna_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/dna/libdna_plugin_la-dna.lo -MD -MP -MF ldap/servers/plugins/dna/$(DEPDIR)/libdna_plugin_la-dna.Tpo -c -o ldap/servers/plugins/dna/libdna_plugin_la-dna.lo `test -f 'ldap/servers/plugins/dna/dna.c' || echo '$(srcdir)/'`ldap/servers/plugins/dna/dna.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/dna/$(DEPDIR)/libdna_plugin_la-dna.Tpo ldap/servers/plugins/dna/$(DEPDIR)/libdna_plugin_la-dna.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/dna/dna.c' object='ldap/servers/plugins/dna/libdna_plugin_la-dna.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdna_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/dna/libdna_plugin_la-dna.lo `test -f 'ldap/servers/plugins/dna/dna.c' || echo '$(srcdir)/'`ldap/servers/plugins/dna/dna.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdna_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/dna/libdna_plugin_la-dna.lo `test -f 'ldap/servers/plugins/dna/dna.c' || echo '$(srcdir)/'`ldap/servers/plugins/dna/dna.c - - ldap/servers/plugins/http/libhttp_client_plugin_la-http_client.lo: ldap/servers/plugins/http/http_client.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhttp_client_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/http/libhttp_client_plugin_la-http_client.lo -MD -MP -MF ldap/servers/plugins/http/$(DEPDIR)/libhttp_client_plugin_la-http_client.Tpo -c -o ldap/servers/plugins/http/libhttp_client_plugin_la-http_client.lo `test -f 'ldap/servers/plugins/http/http_client.c' || echo '$(srcdir)/'`ldap/servers/plugins/http/http_client.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/http/$(DEPDIR)/libhttp_client_plugin_la-http_client.Tpo ldap/servers/plugins/http/$(DEPDIR)/libhttp_client_plugin_la-http_client.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/http/http_client.c' object='ldap/servers/plugins/http/libhttp_client_plugin_la-http_client.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhttp_client_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/http/libhttp_client_plugin_la-http_client.lo -MD -MP -MF ldap/servers/plugins/http/$(DEPDIR)/libhttp_client_plugin_la-http_client.Tpo -c -o ldap/servers/plugins/http/libhttp_client_plugin_la-http_client.lo `test -f 'ldap/servers/plugins/http/http_client.c' || echo '$(srcdir)/'`ldap/servers/plugins/http/http_client.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/http/$(DEPDIR)/libhttp_client_plugin_la-http_client.Tpo ldap/servers/plugins/http/$(DEPDIR)/libhttp_client_plugin_la-http_client.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/http/http_client.c' object='ldap/servers/plugins/http/libhttp_client_plugin_la-http_client.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhttp_client_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/http/libhttp_client_plugin_la-http_client.lo `test -f 'ldap/servers/plugins/http/http_client.c' || echo '$(srcdir)/'`ldap/servers/plugins/http/http_client.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhttp_client_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/http/libhttp_client_plugin_la-http_client.lo `test -f 'ldap/servers/plugins/http/http_client.c' || echo '$(srcdir)/'`ldap/servers/plugins/http/http_client.c - - ldap/servers/plugins/http/libhttp_client_plugin_la-http_impl.lo: ldap/servers/plugins/http/http_impl.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhttp_client_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/http/libhttp_client_plugin_la-http_impl.lo -MD -MP -MF ldap/servers/plugins/http/$(DEPDIR)/libhttp_client_plugin_la-http_impl.Tpo -c -o ldap/servers/plugins/http/libhttp_client_plugin_la-http_impl.lo `test -f 'ldap/servers/plugins/http/http_impl.c' || echo '$(srcdir)/'`ldap/servers/plugins/http/http_impl.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/http/$(DEPDIR)/libhttp_client_plugin_la-http_impl.Tpo ldap/servers/plugins/http/$(DEPDIR)/libhttp_client_plugin_la-http_impl.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/http/http_impl.c' object='ldap/servers/plugins/http/libhttp_client_plugin_la-http_impl.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhttp_client_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/http/libhttp_client_plugin_la-http_impl.lo -MD -MP -MF ldap/servers/plugins/http/$(DEPDIR)/libhttp_client_plugin_la-http_impl.Tpo -c -o ldap/servers/plugins/http/libhttp_client_plugin_la-http_impl.lo `test -f 'ldap/servers/plugins/http/http_impl.c' || echo '$(srcdir)/'`ldap/servers/plugins/http/http_impl.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/http/$(DEPDIR)/libhttp_client_plugin_la-http_impl.Tpo ldap/servers/plugins/http/$(DEPDIR)/libhttp_client_plugin_la-http_impl.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/http/http_impl.c' object='ldap/servers/plugins/http/libhttp_client_plugin_la-http_impl.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhttp_client_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/http/libhttp_client_plugin_la-http_impl.lo `test -f 'ldap/servers/plugins/http/http_impl.c' || echo '$(srcdir)/'`ldap/servers/plugins/http/http_impl.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhttp_client_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/http/libhttp_client_plugin_la-http_impl.lo `test -f 'ldap/servers/plugins/http/http_impl.c' || echo '$(srcdir)/'`ldap/servers/plugins/http/http_impl.c - - ldap/servers/plugins/linkedattrs/liblinkedattrs_plugin_la-fixup_task.lo: ldap/servers/plugins/linkedattrs/fixup_task.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblinkedattrs_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/linkedattrs/liblinkedattrs_plugin_la-fixup_task.lo -MD -MP -MF ldap/servers/plugins/linkedattrs/$(DEPDIR)/liblinkedattrs_plugin_la-fixup_task.Tpo -c -o ldap/servers/plugins/linkedattrs/liblinkedattrs_plugin_la-fixup_task.lo `test -f 'ldap/servers/plugins/linkedattrs/fixup_task.c' || echo '$(srcdir)/'`ldap/servers/plugins/linkedattrs/fixup_task.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/linkedattrs/$(DEPDIR)/liblinkedattrs_plugin_la-fixup_task.Tpo ldap/servers/plugins/linkedattrs/$(DEPDIR)/liblinkedattrs_plugin_la-fixup_task.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/linkedattrs/fixup_task.c' object='ldap/servers/plugins/linkedattrs/liblinkedattrs_plugin_la-fixup_task.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblinkedattrs_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/linkedattrs/liblinkedattrs_plugin_la-fixup_task.lo -MD -MP -MF ldap/servers/plugins/linkedattrs/$(DEPDIR)/liblinkedattrs_plugin_la-fixup_task.Tpo -c -o ldap/servers/plugins/linkedattrs/liblinkedattrs_plugin_la-fixup_task.lo `test -f 'ldap/servers/plugins/linkedattrs/fixup_task.c' || echo '$(srcdir)/'`ldap/servers/plugins/linkedattrs/fixup_task.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/linkedattrs/$(DEPDIR)/liblinkedattrs_plugin_la-fixup_task.Tpo ldap/servers/plugins/linkedattrs/$(DEPDIR)/liblinkedattrs_plugin_la-fixup_task.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/linkedattrs/fixup_task.c' object='ldap/servers/plugins/linkedattrs/liblinkedattrs_plugin_la-fixup_task.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblinkedattrs_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/linkedattrs/liblinkedattrs_plugin_la-fixup_task.lo `test -f 'ldap/servers/plugins/linkedattrs/fixup_task.c' || echo '$(srcdir)/'`ldap/servers/plugins/linkedattrs/fixup_task.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblinkedattrs_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/linkedattrs/liblinkedattrs_plugin_la-fixup_task.lo `test -f 'ldap/servers/plugins/linkedattrs/fixup_task.c' || echo '$(srcdir)/'`ldap/servers/plugins/linkedattrs/fixup_task.c - - ldap/servers/plugins/linkedattrs/liblinkedattrs_plugin_la-linked_attrs.lo: ldap/servers/plugins/linkedattrs/linked_attrs.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblinkedattrs_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/linkedattrs/liblinkedattrs_plugin_la-linked_attrs.lo -MD -MP -MF ldap/servers/plugins/linkedattrs/$(DEPDIR)/liblinkedattrs_plugin_la-linked_attrs.Tpo -c -o ldap/servers/plugins/linkedattrs/liblinkedattrs_plugin_la-linked_attrs.lo `test -f 'ldap/servers/plugins/linkedattrs/linked_attrs.c' || echo '$(srcdir)/'`ldap/servers/plugins/linkedattrs/linked_attrs.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/linkedattrs/$(DEPDIR)/liblinkedattrs_plugin_la-linked_attrs.Tpo ldap/servers/plugins/linkedattrs/$(DEPDIR)/liblinkedattrs_plugin_la-linked_attrs.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/linkedattrs/linked_attrs.c' object='ldap/servers/plugins/linkedattrs/liblinkedattrs_plugin_la-linked_attrs.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblinkedattrs_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/linkedattrs/liblinkedattrs_plugin_la-linked_attrs.lo -MD -MP -MF ldap/servers/plugins/linkedattrs/$(DEPDIR)/liblinkedattrs_plugin_la-linked_attrs.Tpo -c -o ldap/servers/plugins/linkedattrs/liblinkedattrs_plugin_la-linked_attrs.lo `test -f 'ldap/servers/plugins/linkedattrs/linked_attrs.c' || echo '$(srcdir)/'`ldap/servers/plugins/linkedattrs/linked_attrs.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/linkedattrs/$(DEPDIR)/liblinkedattrs_plugin_la-linked_attrs.Tpo ldap/servers/plugins/linkedattrs/$(DEPDIR)/liblinkedattrs_plugin_la-linked_attrs.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/linkedattrs/linked_attrs.c' object='ldap/servers/plugins/linkedattrs/liblinkedattrs_plugin_la-linked_attrs.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblinkedattrs_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/linkedattrs/liblinkedattrs_plugin_la-linked_attrs.lo `test -f 'ldap/servers/plugins/linkedattrs/linked_attrs.c' || echo '$(srcdir)/'`ldap/servers/plugins/linkedattrs/linked_attrs.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblinkedattrs_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/linkedattrs/liblinkedattrs_plugin_la-linked_attrs.lo `test -f 'ldap/servers/plugins/linkedattrs/linked_attrs.c' || echo '$(srcdir)/'`ldap/servers/plugins/linkedattrs/linked_attrs.c - - ldap/servers/plugins/mep/libmanagedentries_plugin_la-mep.lo: ldap/servers/plugins/mep/mep.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmanagedentries_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/mep/libmanagedentries_plugin_la-mep.lo -MD -MP -MF ldap/servers/plugins/mep/$(DEPDIR)/libmanagedentries_plugin_la-mep.Tpo -c -o ldap/servers/plugins/mep/libmanagedentries_plugin_la-mep.lo `test -f 'ldap/servers/plugins/mep/mep.c' || echo '$(srcdir)/'`ldap/servers/plugins/mep/mep.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/mep/$(DEPDIR)/libmanagedentries_plugin_la-mep.Tpo ldap/servers/plugins/mep/$(DEPDIR)/libmanagedentries_plugin_la-mep.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/mep/mep.c' object='ldap/servers/plugins/mep/libmanagedentries_plugin_la-mep.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmanagedentries_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/mep/libmanagedentries_plugin_la-mep.lo -MD -MP -MF ldap/servers/plugins/mep/$(DEPDIR)/libmanagedentries_plugin_la-mep.Tpo -c -o ldap/servers/plugins/mep/libmanagedentries_plugin_la-mep.lo `test -f 'ldap/servers/plugins/mep/mep.c' || echo '$(srcdir)/'`ldap/servers/plugins/mep/mep.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/mep/$(DEPDIR)/libmanagedentries_plugin_la-mep.Tpo ldap/servers/plugins/mep/$(DEPDIR)/libmanagedentries_plugin_la-mep.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/mep/mep.c' object='ldap/servers/plugins/mep/libmanagedentries_plugin_la-mep.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmanagedentries_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/mep/libmanagedentries_plugin_la-mep.lo `test -f 'ldap/servers/plugins/mep/mep.c' || echo '$(srcdir)/'`ldap/servers/plugins/mep/mep.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmanagedentries_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/mep/libmanagedentries_plugin_la-mep.lo `test -f 'ldap/servers/plugins/mep/mep.c' || echo '$(srcdir)/'`ldap/servers/plugins/mep/mep.c - - ldap/servers/plugins/memberof/libmemberof_plugin_la-memberof.lo: ldap/servers/plugins/memberof/memberof.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmemberof_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/memberof/libmemberof_plugin_la-memberof.lo -MD -MP -MF ldap/servers/plugins/memberof/$(DEPDIR)/libmemberof_plugin_la-memberof.Tpo -c -o ldap/servers/plugins/memberof/libmemberof_plugin_la-memberof.lo `test -f 'ldap/servers/plugins/memberof/memberof.c' || echo '$(srcdir)/'`ldap/servers/plugins/memberof/memberof.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/memberof/$(DEPDIR)/libmemberof_plugin_la-memberof.Tpo ldap/servers/plugins/memberof/$(DEPDIR)/libmemberof_plugin_la-memberof.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/memberof/memberof.c' object='ldap/servers/plugins/memberof/libmemberof_plugin_la-memberof.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmemberof_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/memberof/libmemberof_plugin_la-memberof.lo -MD -MP -MF ldap/servers/plugins/memberof/$(DEPDIR)/libmemberof_plugin_la-memberof.Tpo -c -o ldap/servers/plugins/memberof/libmemberof_plugin_la-memberof.lo `test -f 'ldap/servers/plugins/memberof/memberof.c' || echo '$(srcdir)/'`ldap/servers/plugins/memberof/memberof.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/memberof/$(DEPDIR)/libmemberof_plugin_la-memberof.Tpo ldap/servers/plugins/memberof/$(DEPDIR)/libmemberof_plugin_la-memberof.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/memberof/memberof.c' object='ldap/servers/plugins/memberof/libmemberof_plugin_la-memberof.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmemberof_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/memberof/libmemberof_plugin_la-memberof.lo `test -f 'ldap/servers/plugins/memberof/memberof.c' || echo '$(srcdir)/'`ldap/servers/plugins/memberof/memberof.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmemberof_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/memberof/libmemberof_plugin_la-memberof.lo `test -f 'ldap/servers/plugins/memberof/memberof.c' || echo '$(srcdir)/'`ldap/servers/plugins/memberof/memberof.c - - ldap/servers/plugins/memberof/libmemberof_plugin_la-memberof_config.lo: ldap/servers/plugins/memberof/memberof_config.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmemberof_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/memberof/libmemberof_plugin_la-memberof_config.lo -MD -MP -MF ldap/servers/plugins/memberof/$(DEPDIR)/libmemberof_plugin_la-memberof_config.Tpo -c -o ldap/servers/plugins/memberof/libmemberof_plugin_la-memberof_config.lo `test -f 'ldap/servers/plugins/memberof/memberof_config.c' || echo '$(srcdir)/'`ldap/servers/plugins/memberof/memberof_config.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/memberof/$(DEPDIR)/libmemberof_plugin_la-memberof_config.Tpo ldap/servers/plugins/memberof/$(DEPDIR)/libmemberof_plugin_la-memberof_config.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/memberof/memberof_config.c' object='ldap/servers/plugins/memberof/libmemberof_plugin_la-memberof_config.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmemberof_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/memberof/libmemberof_plugin_la-memberof_config.lo -MD -MP -MF ldap/servers/plugins/memberof/$(DEPDIR)/libmemberof_plugin_la-memberof_config.Tpo -c -o ldap/servers/plugins/memberof/libmemberof_plugin_la-memberof_config.lo `test -f 'ldap/servers/plugins/memberof/memberof_config.c' || echo '$(srcdir)/'`ldap/servers/plugins/memberof/memberof_config.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/memberof/$(DEPDIR)/libmemberof_plugin_la-memberof_config.Tpo ldap/servers/plugins/memberof/$(DEPDIR)/libmemberof_plugin_la-memberof_config.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/memberof/memberof_config.c' object='ldap/servers/plugins/memberof/libmemberof_plugin_la-memberof_config.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmemberof_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/memberof/libmemberof_plugin_la-memberof_config.lo `test -f 'ldap/servers/plugins/memberof/memberof_config.c' || echo '$(srcdir)/'`ldap/servers/plugins/memberof/memberof_config.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmemberof_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/memberof/libmemberof_plugin_la-memberof_config.lo `test -f 'ldap/servers/plugins/memberof/memberof_config.c' || echo '$(srcdir)/'`ldap/servers/plugins/memberof/memberof_config.c - - lib/libadmin/libns_dshttpd_la-error.lo: lib/libadmin/error.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/libadmin/libns_dshttpd_la-error.lo -MD -MP -MF lib/libadmin/$(DEPDIR)/libns_dshttpd_la-error.Tpo -c -o lib/libadmin/libns_dshttpd_la-error.lo `test -f 'lib/libadmin/error.c' || echo '$(srcdir)/'`lib/libadmin/error.c --@am__fastdepCC_TRUE@ $(am__mv) lib/libadmin/$(DEPDIR)/libns_dshttpd_la-error.Tpo lib/libadmin/$(DEPDIR)/libns_dshttpd_la-error.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lib/libadmin/error.c' object='lib/libadmin/libns_dshttpd_la-error.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/libadmin/libns_dshttpd_la-error.lo -MD -MP -MF lib/libadmin/$(DEPDIR)/libns_dshttpd_la-error.Tpo -c -o lib/libadmin/libns_dshttpd_la-error.lo `test -f 'lib/libadmin/error.c' || echo '$(srcdir)/'`lib/libadmin/error.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lib/libadmin/$(DEPDIR)/libns_dshttpd_la-error.Tpo lib/libadmin/$(DEPDIR)/libns_dshttpd_la-error.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lib/libadmin/error.c' object='lib/libadmin/libns_dshttpd_la-error.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/libadmin/libns_dshttpd_la-error.lo `test -f 'lib/libadmin/error.c' || echo '$(srcdir)/'`lib/libadmin/error.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/libadmin/libns_dshttpd_la-error.lo `test -f 'lib/libadmin/error.c' || echo '$(srcdir)/'`lib/libadmin/error.c - - lib/libadmin/libns_dshttpd_la-template.lo: lib/libadmin/template.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/libadmin/libns_dshttpd_la-template.lo -MD -MP -MF lib/libadmin/$(DEPDIR)/libns_dshttpd_la-template.Tpo -c -o lib/libadmin/libns_dshttpd_la-template.lo `test -f 'lib/libadmin/template.c' || echo '$(srcdir)/'`lib/libadmin/template.c --@am__fastdepCC_TRUE@ $(am__mv) lib/libadmin/$(DEPDIR)/libns_dshttpd_la-template.Tpo lib/libadmin/$(DEPDIR)/libns_dshttpd_la-template.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lib/libadmin/template.c' object='lib/libadmin/libns_dshttpd_la-template.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/libadmin/libns_dshttpd_la-template.lo -MD -MP -MF lib/libadmin/$(DEPDIR)/libns_dshttpd_la-template.Tpo -c -o lib/libadmin/libns_dshttpd_la-template.lo `test -f 'lib/libadmin/template.c' || echo '$(srcdir)/'`lib/libadmin/template.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lib/libadmin/$(DEPDIR)/libns_dshttpd_la-template.Tpo lib/libadmin/$(DEPDIR)/libns_dshttpd_la-template.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lib/libadmin/template.c' object='lib/libadmin/libns_dshttpd_la-template.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/libadmin/libns_dshttpd_la-template.lo `test -f 'lib/libadmin/template.c' || echo '$(srcdir)/'`lib/libadmin/template.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/libadmin/libns_dshttpd_la-template.lo `test -f 'lib/libadmin/template.c' || echo '$(srcdir)/'`lib/libadmin/template.c - - lib/libadmin/libns_dshttpd_la-util.lo: lib/libadmin/util.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/libadmin/libns_dshttpd_la-util.lo -MD -MP -MF lib/libadmin/$(DEPDIR)/libns_dshttpd_la-util.Tpo -c -o lib/libadmin/libns_dshttpd_la-util.lo `test -f 'lib/libadmin/util.c' || echo '$(srcdir)/'`lib/libadmin/util.c --@am__fastdepCC_TRUE@ $(am__mv) lib/libadmin/$(DEPDIR)/libns_dshttpd_la-util.Tpo lib/libadmin/$(DEPDIR)/libns_dshttpd_la-util.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lib/libadmin/util.c' object='lib/libadmin/libns_dshttpd_la-util.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/libadmin/libns_dshttpd_la-util.lo -MD -MP -MF lib/libadmin/$(DEPDIR)/libns_dshttpd_la-util.Tpo -c -o lib/libadmin/libns_dshttpd_la-util.lo `test -f 'lib/libadmin/util.c' || echo '$(srcdir)/'`lib/libadmin/util.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lib/libadmin/$(DEPDIR)/libns_dshttpd_la-util.Tpo lib/libadmin/$(DEPDIR)/libns_dshttpd_la-util.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lib/libadmin/util.c' object='lib/libadmin/libns_dshttpd_la-util.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/libadmin/libns_dshttpd_la-util.lo `test -f 'lib/libadmin/util.c' || echo '$(srcdir)/'`lib/libadmin/util.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/libadmin/libns_dshttpd_la-util.lo `test -f 'lib/libadmin/util.c' || echo '$(srcdir)/'`lib/libadmin/util.c - - lib/base/libns_dshttpd_la-nscperror.lo: lib/base/nscperror.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/base/libns_dshttpd_la-nscperror.lo -MD -MP -MF lib/base/$(DEPDIR)/libns_dshttpd_la-nscperror.Tpo -c -o lib/base/libns_dshttpd_la-nscperror.lo `test -f 'lib/base/nscperror.c' || echo '$(srcdir)/'`lib/base/nscperror.c --@am__fastdepCC_TRUE@ $(am__mv) lib/base/$(DEPDIR)/libns_dshttpd_la-nscperror.Tpo lib/base/$(DEPDIR)/libns_dshttpd_la-nscperror.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lib/base/nscperror.c' object='lib/base/libns_dshttpd_la-nscperror.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/base/libns_dshttpd_la-nscperror.lo -MD -MP -MF lib/base/$(DEPDIR)/libns_dshttpd_la-nscperror.Tpo -c -o lib/base/libns_dshttpd_la-nscperror.lo `test -f 'lib/base/nscperror.c' || echo '$(srcdir)/'`lib/base/nscperror.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lib/base/$(DEPDIR)/libns_dshttpd_la-nscperror.Tpo lib/base/$(DEPDIR)/libns_dshttpd_la-nscperror.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lib/base/nscperror.c' object='lib/base/libns_dshttpd_la-nscperror.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/base/libns_dshttpd_la-nscperror.lo `test -f 'lib/base/nscperror.c' || echo '$(srcdir)/'`lib/base/nscperror.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/base/libns_dshttpd_la-nscperror.lo `test -f 'lib/base/nscperror.c' || echo '$(srcdir)/'`lib/base/nscperror.c - - lib/libsi18n/libns_dshttpd_la-getstrprop.lo: lib/libsi18n/getstrprop.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/libsi18n/libns_dshttpd_la-getstrprop.lo -MD -MP -MF lib/libsi18n/$(DEPDIR)/libns_dshttpd_la-getstrprop.Tpo -c -o lib/libsi18n/libns_dshttpd_la-getstrprop.lo `test -f 'lib/libsi18n/getstrprop.c' || echo '$(srcdir)/'`lib/libsi18n/getstrprop.c --@am__fastdepCC_TRUE@ $(am__mv) lib/libsi18n/$(DEPDIR)/libns_dshttpd_la-getstrprop.Tpo lib/libsi18n/$(DEPDIR)/libns_dshttpd_la-getstrprop.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lib/libsi18n/getstrprop.c' object='lib/libsi18n/libns_dshttpd_la-getstrprop.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/libsi18n/libns_dshttpd_la-getstrprop.lo -MD -MP -MF lib/libsi18n/$(DEPDIR)/libns_dshttpd_la-getstrprop.Tpo -c -o lib/libsi18n/libns_dshttpd_la-getstrprop.lo `test -f 'lib/libsi18n/getstrprop.c' || echo '$(srcdir)/'`lib/libsi18n/getstrprop.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lib/libsi18n/$(DEPDIR)/libns_dshttpd_la-getstrprop.Tpo lib/libsi18n/$(DEPDIR)/libns_dshttpd_la-getstrprop.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lib/libsi18n/getstrprop.c' object='lib/libsi18n/libns_dshttpd_la-getstrprop.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/libsi18n/libns_dshttpd_la-getstrprop.lo `test -f 'lib/libsi18n/getstrprop.c' || echo '$(srcdir)/'`lib/libsi18n/getstrprop.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/libsi18n/libns_dshttpd_la-getstrprop.lo `test -f 'lib/libsi18n/getstrprop.c' || echo '$(srcdir)/'`lib/libsi18n/getstrprop.c - - lib/libsi18n/libns_dshttpd_la-reshash.lo: lib/libsi18n/reshash.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/libsi18n/libns_dshttpd_la-reshash.lo -MD -MP -MF lib/libsi18n/$(DEPDIR)/libns_dshttpd_la-reshash.Tpo -c -o lib/libsi18n/libns_dshttpd_la-reshash.lo `test -f 'lib/libsi18n/reshash.c' || echo '$(srcdir)/'`lib/libsi18n/reshash.c --@am__fastdepCC_TRUE@ $(am__mv) lib/libsi18n/$(DEPDIR)/libns_dshttpd_la-reshash.Tpo lib/libsi18n/$(DEPDIR)/libns_dshttpd_la-reshash.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lib/libsi18n/reshash.c' object='lib/libsi18n/libns_dshttpd_la-reshash.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/libsi18n/libns_dshttpd_la-reshash.lo -MD -MP -MF lib/libsi18n/$(DEPDIR)/libns_dshttpd_la-reshash.Tpo -c -o lib/libsi18n/libns_dshttpd_la-reshash.lo `test -f 'lib/libsi18n/reshash.c' || echo '$(srcdir)/'`lib/libsi18n/reshash.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lib/libsi18n/$(DEPDIR)/libns_dshttpd_la-reshash.Tpo lib/libsi18n/$(DEPDIR)/libns_dshttpd_la-reshash.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lib/libsi18n/reshash.c' object='lib/libsi18n/libns_dshttpd_la-reshash.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/libsi18n/libns_dshttpd_la-reshash.lo `test -f 'lib/libsi18n/reshash.c' || echo '$(srcdir)/'`lib/libsi18n/reshash.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/libsi18n/libns_dshttpd_la-reshash.lo `test -f 'lib/libsi18n/reshash.c' || echo '$(srcdir)/'`lib/libsi18n/reshash.c - - lib/libsi18n/libns_dshttpd_la-txtfile.lo: lib/libsi18n/txtfile.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/libsi18n/libns_dshttpd_la-txtfile.lo -MD -MP -MF lib/libsi18n/$(DEPDIR)/libns_dshttpd_la-txtfile.Tpo -c -o lib/libsi18n/libns_dshttpd_la-txtfile.lo `test -f 'lib/libsi18n/txtfile.c' || echo '$(srcdir)/'`lib/libsi18n/txtfile.c --@am__fastdepCC_TRUE@ $(am__mv) lib/libsi18n/$(DEPDIR)/libns_dshttpd_la-txtfile.Tpo lib/libsi18n/$(DEPDIR)/libns_dshttpd_la-txtfile.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lib/libsi18n/txtfile.c' object='lib/libsi18n/libns_dshttpd_la-txtfile.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/libsi18n/libns_dshttpd_la-txtfile.lo -MD -MP -MF lib/libsi18n/$(DEPDIR)/libns_dshttpd_la-txtfile.Tpo -c -o lib/libsi18n/libns_dshttpd_la-txtfile.lo `test -f 'lib/libsi18n/txtfile.c' || echo '$(srcdir)/'`lib/libsi18n/txtfile.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lib/libsi18n/$(DEPDIR)/libns_dshttpd_la-txtfile.Tpo lib/libsi18n/$(DEPDIR)/libns_dshttpd_la-txtfile.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lib/libsi18n/txtfile.c' object='lib/libsi18n/libns_dshttpd_la-txtfile.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/libsi18n/libns_dshttpd_la-txtfile.lo `test -f 'lib/libsi18n/txtfile.c' || echo '$(srcdir)/'`lib/libsi18n/txtfile.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/libsi18n/libns_dshttpd_la-txtfile.lo `test -f 'lib/libsi18n/txtfile.c' || echo '$(srcdir)/'`lib/libsi18n/txtfile.c - - lib/ldaputil/libns_dshttpd_la-cert.lo: lib/ldaputil/cert.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/ldaputil/libns_dshttpd_la-cert.lo -MD -MP -MF lib/ldaputil/$(DEPDIR)/libns_dshttpd_la-cert.Tpo -c -o lib/ldaputil/libns_dshttpd_la-cert.lo `test -f 'lib/ldaputil/cert.c' || echo '$(srcdir)/'`lib/ldaputil/cert.c --@am__fastdepCC_TRUE@ $(am__mv) lib/ldaputil/$(DEPDIR)/libns_dshttpd_la-cert.Tpo lib/ldaputil/$(DEPDIR)/libns_dshttpd_la-cert.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lib/ldaputil/cert.c' object='lib/ldaputil/libns_dshttpd_la-cert.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/ldaputil/libns_dshttpd_la-cert.lo -MD -MP -MF lib/ldaputil/$(DEPDIR)/libns_dshttpd_la-cert.Tpo -c -o lib/ldaputil/libns_dshttpd_la-cert.lo `test -f 'lib/ldaputil/cert.c' || echo '$(srcdir)/'`lib/ldaputil/cert.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lib/ldaputil/$(DEPDIR)/libns_dshttpd_la-cert.Tpo lib/ldaputil/$(DEPDIR)/libns_dshttpd_la-cert.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lib/ldaputil/cert.c' object='lib/ldaputil/libns_dshttpd_la-cert.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/ldaputil/libns_dshttpd_la-cert.lo `test -f 'lib/ldaputil/cert.c' || echo '$(srcdir)/'`lib/ldaputil/cert.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/ldaputil/libns_dshttpd_la-cert.lo `test -f 'lib/ldaputil/cert.c' || echo '$(srcdir)/'`lib/ldaputil/cert.c - - lib/ldaputil/libns_dshttpd_la-certmap.lo: lib/ldaputil/certmap.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/ldaputil/libns_dshttpd_la-certmap.lo -MD -MP -MF lib/ldaputil/$(DEPDIR)/libns_dshttpd_la-certmap.Tpo -c -o lib/ldaputil/libns_dshttpd_la-certmap.lo `test -f 'lib/ldaputil/certmap.c' || echo '$(srcdir)/'`lib/ldaputil/certmap.c --@am__fastdepCC_TRUE@ $(am__mv) lib/ldaputil/$(DEPDIR)/libns_dshttpd_la-certmap.Tpo lib/ldaputil/$(DEPDIR)/libns_dshttpd_la-certmap.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lib/ldaputil/certmap.c' object='lib/ldaputil/libns_dshttpd_la-certmap.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/ldaputil/libns_dshttpd_la-certmap.lo -MD -MP -MF lib/ldaputil/$(DEPDIR)/libns_dshttpd_la-certmap.Tpo -c -o lib/ldaputil/libns_dshttpd_la-certmap.lo `test -f 'lib/ldaputil/certmap.c' || echo '$(srcdir)/'`lib/ldaputil/certmap.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lib/ldaputil/$(DEPDIR)/libns_dshttpd_la-certmap.Tpo lib/ldaputil/$(DEPDIR)/libns_dshttpd_la-certmap.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lib/ldaputil/certmap.c' object='lib/ldaputil/libns_dshttpd_la-certmap.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/ldaputil/libns_dshttpd_la-certmap.lo `test -f 'lib/ldaputil/certmap.c' || echo '$(srcdir)/'`lib/ldaputil/certmap.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/ldaputil/libns_dshttpd_la-certmap.lo `test -f 'lib/ldaputil/certmap.c' || echo '$(srcdir)/'`lib/ldaputil/certmap.c - - lib/ldaputil/libns_dshttpd_la-dbconf.lo: lib/ldaputil/dbconf.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/ldaputil/libns_dshttpd_la-dbconf.lo -MD -MP -MF lib/ldaputil/$(DEPDIR)/libns_dshttpd_la-dbconf.Tpo -c -o lib/ldaputil/libns_dshttpd_la-dbconf.lo `test -f 'lib/ldaputil/dbconf.c' || echo '$(srcdir)/'`lib/ldaputil/dbconf.c --@am__fastdepCC_TRUE@ $(am__mv) lib/ldaputil/$(DEPDIR)/libns_dshttpd_la-dbconf.Tpo lib/ldaputil/$(DEPDIR)/libns_dshttpd_la-dbconf.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lib/ldaputil/dbconf.c' object='lib/ldaputil/libns_dshttpd_la-dbconf.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/ldaputil/libns_dshttpd_la-dbconf.lo -MD -MP -MF lib/ldaputil/$(DEPDIR)/libns_dshttpd_la-dbconf.Tpo -c -o lib/ldaputil/libns_dshttpd_la-dbconf.lo `test -f 'lib/ldaputil/dbconf.c' || echo '$(srcdir)/'`lib/ldaputil/dbconf.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lib/ldaputil/$(DEPDIR)/libns_dshttpd_la-dbconf.Tpo lib/ldaputil/$(DEPDIR)/libns_dshttpd_la-dbconf.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lib/ldaputil/dbconf.c' object='lib/ldaputil/libns_dshttpd_la-dbconf.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/ldaputil/libns_dshttpd_la-dbconf.lo `test -f 'lib/ldaputil/dbconf.c' || echo '$(srcdir)/'`lib/ldaputil/dbconf.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/ldaputil/libns_dshttpd_la-dbconf.lo `test -f 'lib/ldaputil/dbconf.c' || echo '$(srcdir)/'`lib/ldaputil/dbconf.c - - lib/ldaputil/libns_dshttpd_la-encode.lo: lib/ldaputil/encode.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/ldaputil/libns_dshttpd_la-encode.lo -MD -MP -MF lib/ldaputil/$(DEPDIR)/libns_dshttpd_la-encode.Tpo -c -o lib/ldaputil/libns_dshttpd_la-encode.lo `test -f 'lib/ldaputil/encode.c' || echo '$(srcdir)/'`lib/ldaputil/encode.c --@am__fastdepCC_TRUE@ $(am__mv) lib/ldaputil/$(DEPDIR)/libns_dshttpd_la-encode.Tpo lib/ldaputil/$(DEPDIR)/libns_dshttpd_la-encode.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lib/ldaputil/encode.c' object='lib/ldaputil/libns_dshttpd_la-encode.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/ldaputil/libns_dshttpd_la-encode.lo -MD -MP -MF lib/ldaputil/$(DEPDIR)/libns_dshttpd_la-encode.Tpo -c -o lib/ldaputil/libns_dshttpd_la-encode.lo `test -f 'lib/ldaputil/encode.c' || echo '$(srcdir)/'`lib/ldaputil/encode.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lib/ldaputil/$(DEPDIR)/libns_dshttpd_la-encode.Tpo lib/ldaputil/$(DEPDIR)/libns_dshttpd_la-encode.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lib/ldaputil/encode.c' object='lib/ldaputil/libns_dshttpd_la-encode.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/ldaputil/libns_dshttpd_la-encode.lo `test -f 'lib/ldaputil/encode.c' || echo '$(srcdir)/'`lib/ldaputil/encode.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/ldaputil/libns_dshttpd_la-encode.lo `test -f 'lib/ldaputil/encode.c' || echo '$(srcdir)/'`lib/ldaputil/encode.c - - lib/ldaputil/libns_dshttpd_la-errors.lo: lib/ldaputil/errors.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/ldaputil/libns_dshttpd_la-errors.lo -MD -MP -MF lib/ldaputil/$(DEPDIR)/libns_dshttpd_la-errors.Tpo -c -o lib/ldaputil/libns_dshttpd_la-errors.lo `test -f 'lib/ldaputil/errors.c' || echo '$(srcdir)/'`lib/ldaputil/errors.c --@am__fastdepCC_TRUE@ $(am__mv) lib/ldaputil/$(DEPDIR)/libns_dshttpd_la-errors.Tpo lib/ldaputil/$(DEPDIR)/libns_dshttpd_la-errors.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lib/ldaputil/errors.c' object='lib/ldaputil/libns_dshttpd_la-errors.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/ldaputil/libns_dshttpd_la-errors.lo -MD -MP -MF lib/ldaputil/$(DEPDIR)/libns_dshttpd_la-errors.Tpo -c -o lib/ldaputil/libns_dshttpd_la-errors.lo `test -f 'lib/ldaputil/errors.c' || echo '$(srcdir)/'`lib/ldaputil/errors.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lib/ldaputil/$(DEPDIR)/libns_dshttpd_la-errors.Tpo lib/ldaputil/$(DEPDIR)/libns_dshttpd_la-errors.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lib/ldaputil/errors.c' object='lib/ldaputil/libns_dshttpd_la-errors.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/ldaputil/libns_dshttpd_la-errors.lo `test -f 'lib/ldaputil/errors.c' || echo '$(srcdir)/'`lib/ldaputil/errors.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/ldaputil/libns_dshttpd_la-errors.lo `test -f 'lib/ldaputil/errors.c' || echo '$(srcdir)/'`lib/ldaputil/errors.c - - lib/ldaputil/libns_dshttpd_la-init.lo: lib/ldaputil/init.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/ldaputil/libns_dshttpd_la-init.lo -MD -MP -MF lib/ldaputil/$(DEPDIR)/libns_dshttpd_la-init.Tpo -c -o lib/ldaputil/libns_dshttpd_la-init.lo `test -f 'lib/ldaputil/init.c' || echo '$(srcdir)/'`lib/ldaputil/init.c --@am__fastdepCC_TRUE@ $(am__mv) lib/ldaputil/$(DEPDIR)/libns_dshttpd_la-init.Tpo lib/ldaputil/$(DEPDIR)/libns_dshttpd_la-init.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lib/ldaputil/init.c' object='lib/ldaputil/libns_dshttpd_la-init.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/ldaputil/libns_dshttpd_la-init.lo -MD -MP -MF lib/ldaputil/$(DEPDIR)/libns_dshttpd_la-init.Tpo -c -o lib/ldaputil/libns_dshttpd_la-init.lo `test -f 'lib/ldaputil/init.c' || echo '$(srcdir)/'`lib/ldaputil/init.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lib/ldaputil/$(DEPDIR)/libns_dshttpd_la-init.Tpo lib/ldaputil/$(DEPDIR)/libns_dshttpd_la-init.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lib/ldaputil/init.c' object='lib/ldaputil/libns_dshttpd_la-init.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/ldaputil/libns_dshttpd_la-init.lo `test -f 'lib/ldaputil/init.c' || echo '$(srcdir)/'`lib/ldaputil/init.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/ldaputil/libns_dshttpd_la-init.lo `test -f 'lib/ldaputil/init.c' || echo '$(srcdir)/'`lib/ldaputil/init.c - - lib/ldaputil/libns_dshttpd_la-ldapauth.lo: lib/ldaputil/ldapauth.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/ldaputil/libns_dshttpd_la-ldapauth.lo -MD -MP -MF lib/ldaputil/$(DEPDIR)/libns_dshttpd_la-ldapauth.Tpo -c -o lib/ldaputil/libns_dshttpd_la-ldapauth.lo `test -f 'lib/ldaputil/ldapauth.c' || echo '$(srcdir)/'`lib/ldaputil/ldapauth.c --@am__fastdepCC_TRUE@ $(am__mv) lib/ldaputil/$(DEPDIR)/libns_dshttpd_la-ldapauth.Tpo lib/ldaputil/$(DEPDIR)/libns_dshttpd_la-ldapauth.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lib/ldaputil/ldapauth.c' object='lib/ldaputil/libns_dshttpd_la-ldapauth.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/ldaputil/libns_dshttpd_la-ldapauth.lo -MD -MP -MF lib/ldaputil/$(DEPDIR)/libns_dshttpd_la-ldapauth.Tpo -c -o lib/ldaputil/libns_dshttpd_la-ldapauth.lo `test -f 'lib/ldaputil/ldapauth.c' || echo '$(srcdir)/'`lib/ldaputil/ldapauth.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lib/ldaputil/$(DEPDIR)/libns_dshttpd_la-ldapauth.Tpo lib/ldaputil/$(DEPDIR)/libns_dshttpd_la-ldapauth.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lib/ldaputil/ldapauth.c' object='lib/ldaputil/libns_dshttpd_la-ldapauth.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/ldaputil/libns_dshttpd_la-ldapauth.lo `test -f 'lib/ldaputil/ldapauth.c' || echo '$(srcdir)/'`lib/ldaputil/ldapauth.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/ldaputil/libns_dshttpd_la-ldapauth.lo `test -f 'lib/ldaputil/ldapauth.c' || echo '$(srcdir)/'`lib/ldaputil/ldapauth.c - - lib/ldaputil/libns_dshttpd_la-vtable.lo: lib/ldaputil/vtable.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/ldaputil/libns_dshttpd_la-vtable.lo -MD -MP -MF lib/ldaputil/$(DEPDIR)/libns_dshttpd_la-vtable.Tpo -c -o lib/ldaputil/libns_dshttpd_la-vtable.lo `test -f 'lib/ldaputil/vtable.c' || echo '$(srcdir)/'`lib/ldaputil/vtable.c --@am__fastdepCC_TRUE@ $(am__mv) lib/ldaputil/$(DEPDIR)/libns_dshttpd_la-vtable.Tpo lib/ldaputil/$(DEPDIR)/libns_dshttpd_la-vtable.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lib/ldaputil/vtable.c' object='lib/ldaputil/libns_dshttpd_la-vtable.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/ldaputil/libns_dshttpd_la-vtable.lo -MD -MP -MF lib/ldaputil/$(DEPDIR)/libns_dshttpd_la-vtable.Tpo -c -o lib/ldaputil/libns_dshttpd_la-vtable.lo `test -f 'lib/ldaputil/vtable.c' || echo '$(srcdir)/'`lib/ldaputil/vtable.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lib/ldaputil/$(DEPDIR)/libns_dshttpd_la-vtable.Tpo lib/ldaputil/$(DEPDIR)/libns_dshttpd_la-vtable.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lib/ldaputil/vtable.c' object='lib/ldaputil/libns_dshttpd_la-vtable.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/ldaputil/libns_dshttpd_la-vtable.lo `test -f 'lib/ldaputil/vtable.c' || echo '$(srcdir)/'`lib/ldaputil/vtable.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/ldaputil/libns_dshttpd_la-vtable.lo `test -f 'lib/ldaputil/vtable.c' || echo '$(srcdir)/'`lib/ldaputil/vtable.c - - ldap/servers/plugins/pam_passthru/libpam_passthru_plugin_la-pam_ptconfig.lo: ldap/servers/plugins/pam_passthru/pam_ptconfig.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpam_passthru_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/pam_passthru/libpam_passthru_plugin_la-pam_ptconfig.lo -MD -MP -MF ldap/servers/plugins/pam_passthru/$(DEPDIR)/libpam_passthru_plugin_la-pam_ptconfig.Tpo -c -o ldap/servers/plugins/pam_passthru/libpam_passthru_plugin_la-pam_ptconfig.lo `test -f 'ldap/servers/plugins/pam_passthru/pam_ptconfig.c' || echo '$(srcdir)/'`ldap/servers/plugins/pam_passthru/pam_ptconfig.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/pam_passthru/$(DEPDIR)/libpam_passthru_plugin_la-pam_ptconfig.Tpo ldap/servers/plugins/pam_passthru/$(DEPDIR)/libpam_passthru_plugin_la-pam_ptconfig.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/pam_passthru/pam_ptconfig.c' object='ldap/servers/plugins/pam_passthru/libpam_passthru_plugin_la-pam_ptconfig.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpam_passthru_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/pam_passthru/libpam_passthru_plugin_la-pam_ptconfig.lo -MD -MP -MF ldap/servers/plugins/pam_passthru/$(DEPDIR)/libpam_passthru_plugin_la-pam_ptconfig.Tpo -c -o ldap/servers/plugins/pam_passthru/libpam_passthru_plugin_la-pam_ptconfig.lo `test -f 'ldap/servers/plugins/pam_passthru/pam_ptconfig.c' || echo '$(srcdir)/'`ldap/servers/plugins/pam_passthru/pam_ptconfig.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/pam_passthru/$(DEPDIR)/libpam_passthru_plugin_la-pam_ptconfig.Tpo ldap/servers/plugins/pam_passthru/$(DEPDIR)/libpam_passthru_plugin_la-pam_ptconfig.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/pam_passthru/pam_ptconfig.c' object='ldap/servers/plugins/pam_passthru/libpam_passthru_plugin_la-pam_ptconfig.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpam_passthru_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/pam_passthru/libpam_passthru_plugin_la-pam_ptconfig.lo `test -f 'ldap/servers/plugins/pam_passthru/pam_ptconfig.c' || echo '$(srcdir)/'`ldap/servers/plugins/pam_passthru/pam_ptconfig.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpam_passthru_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/pam_passthru/libpam_passthru_plugin_la-pam_ptconfig.lo `test -f 'ldap/servers/plugins/pam_passthru/pam_ptconfig.c' || echo '$(srcdir)/'`ldap/servers/plugins/pam_passthru/pam_ptconfig.c - - ldap/servers/plugins/pam_passthru/libpam_passthru_plugin_la-pam_ptdebug.lo: ldap/servers/plugins/pam_passthru/pam_ptdebug.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpam_passthru_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/pam_passthru/libpam_passthru_plugin_la-pam_ptdebug.lo -MD -MP -MF ldap/servers/plugins/pam_passthru/$(DEPDIR)/libpam_passthru_plugin_la-pam_ptdebug.Tpo -c -o ldap/servers/plugins/pam_passthru/libpam_passthru_plugin_la-pam_ptdebug.lo `test -f 'ldap/servers/plugins/pam_passthru/pam_ptdebug.c' || echo '$(srcdir)/'`ldap/servers/plugins/pam_passthru/pam_ptdebug.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/pam_passthru/$(DEPDIR)/libpam_passthru_plugin_la-pam_ptdebug.Tpo ldap/servers/plugins/pam_passthru/$(DEPDIR)/libpam_passthru_plugin_la-pam_ptdebug.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/pam_passthru/pam_ptdebug.c' object='ldap/servers/plugins/pam_passthru/libpam_passthru_plugin_la-pam_ptdebug.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpam_passthru_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/pam_passthru/libpam_passthru_plugin_la-pam_ptdebug.lo -MD -MP -MF ldap/servers/plugins/pam_passthru/$(DEPDIR)/libpam_passthru_plugin_la-pam_ptdebug.Tpo -c -o ldap/servers/plugins/pam_passthru/libpam_passthru_plugin_la-pam_ptdebug.lo `test -f 'ldap/servers/plugins/pam_passthru/pam_ptdebug.c' || echo '$(srcdir)/'`ldap/servers/plugins/pam_passthru/pam_ptdebug.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/pam_passthru/$(DEPDIR)/libpam_passthru_plugin_la-pam_ptdebug.Tpo ldap/servers/plugins/pam_passthru/$(DEPDIR)/libpam_passthru_plugin_la-pam_ptdebug.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/pam_passthru/pam_ptdebug.c' object='ldap/servers/plugins/pam_passthru/libpam_passthru_plugin_la-pam_ptdebug.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpam_passthru_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/pam_passthru/libpam_passthru_plugin_la-pam_ptdebug.lo `test -f 'ldap/servers/plugins/pam_passthru/pam_ptdebug.c' || echo '$(srcdir)/'`ldap/servers/plugins/pam_passthru/pam_ptdebug.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpam_passthru_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/pam_passthru/libpam_passthru_plugin_la-pam_ptdebug.lo `test -f 'ldap/servers/plugins/pam_passthru/pam_ptdebug.c' || echo '$(srcdir)/'`ldap/servers/plugins/pam_passthru/pam_ptdebug.c - - ldap/servers/plugins/pam_passthru/libpam_passthru_plugin_la-pam_ptimpl.lo: ldap/servers/plugins/pam_passthru/pam_ptimpl.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpam_passthru_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/pam_passthru/libpam_passthru_plugin_la-pam_ptimpl.lo -MD -MP -MF ldap/servers/plugins/pam_passthru/$(DEPDIR)/libpam_passthru_plugin_la-pam_ptimpl.Tpo -c -o ldap/servers/plugins/pam_passthru/libpam_passthru_plugin_la-pam_ptimpl.lo `test -f 'ldap/servers/plugins/pam_passthru/pam_ptimpl.c' || echo '$(srcdir)/'`ldap/servers/plugins/pam_passthru/pam_ptimpl.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/pam_passthru/$(DEPDIR)/libpam_passthru_plugin_la-pam_ptimpl.Tpo ldap/servers/plugins/pam_passthru/$(DEPDIR)/libpam_passthru_plugin_la-pam_ptimpl.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/pam_passthru/pam_ptimpl.c' object='ldap/servers/plugins/pam_passthru/libpam_passthru_plugin_la-pam_ptimpl.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpam_passthru_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/pam_passthru/libpam_passthru_plugin_la-pam_ptimpl.lo -MD -MP -MF ldap/servers/plugins/pam_passthru/$(DEPDIR)/libpam_passthru_plugin_la-pam_ptimpl.Tpo -c -o ldap/servers/plugins/pam_passthru/libpam_passthru_plugin_la-pam_ptimpl.lo `test -f 'ldap/servers/plugins/pam_passthru/pam_ptimpl.c' || echo '$(srcdir)/'`ldap/servers/plugins/pam_passthru/pam_ptimpl.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/pam_passthru/$(DEPDIR)/libpam_passthru_plugin_la-pam_ptimpl.Tpo ldap/servers/plugins/pam_passthru/$(DEPDIR)/libpam_passthru_plugin_la-pam_ptimpl.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/pam_passthru/pam_ptimpl.c' object='ldap/servers/plugins/pam_passthru/libpam_passthru_plugin_la-pam_ptimpl.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpam_passthru_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/pam_passthru/libpam_passthru_plugin_la-pam_ptimpl.lo `test -f 'ldap/servers/plugins/pam_passthru/pam_ptimpl.c' || echo '$(srcdir)/'`ldap/servers/plugins/pam_passthru/pam_ptimpl.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpam_passthru_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/pam_passthru/libpam_passthru_plugin_la-pam_ptimpl.lo `test -f 'ldap/servers/plugins/pam_passthru/pam_ptimpl.c' || echo '$(srcdir)/'`ldap/servers/plugins/pam_passthru/pam_ptimpl.c - - ldap/servers/plugins/pam_passthru/libpam_passthru_plugin_la-pam_ptpreop.lo: ldap/servers/plugins/pam_passthru/pam_ptpreop.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpam_passthru_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/pam_passthru/libpam_passthru_plugin_la-pam_ptpreop.lo -MD -MP -MF ldap/servers/plugins/pam_passthru/$(DEPDIR)/libpam_passthru_plugin_la-pam_ptpreop.Tpo -c -o ldap/servers/plugins/pam_passthru/libpam_passthru_plugin_la-pam_ptpreop.lo `test -f 'ldap/servers/plugins/pam_passthru/pam_ptpreop.c' || echo '$(srcdir)/'`ldap/servers/plugins/pam_passthru/pam_ptpreop.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/pam_passthru/$(DEPDIR)/libpam_passthru_plugin_la-pam_ptpreop.Tpo ldap/servers/plugins/pam_passthru/$(DEPDIR)/libpam_passthru_plugin_la-pam_ptpreop.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/pam_passthru/pam_ptpreop.c' object='ldap/servers/plugins/pam_passthru/libpam_passthru_plugin_la-pam_ptpreop.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpam_passthru_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/pam_passthru/libpam_passthru_plugin_la-pam_ptpreop.lo -MD -MP -MF ldap/servers/plugins/pam_passthru/$(DEPDIR)/libpam_passthru_plugin_la-pam_ptpreop.Tpo -c -o ldap/servers/plugins/pam_passthru/libpam_passthru_plugin_la-pam_ptpreop.lo `test -f 'ldap/servers/plugins/pam_passthru/pam_ptpreop.c' || echo '$(srcdir)/'`ldap/servers/plugins/pam_passthru/pam_ptpreop.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/pam_passthru/$(DEPDIR)/libpam_passthru_plugin_la-pam_ptpreop.Tpo ldap/servers/plugins/pam_passthru/$(DEPDIR)/libpam_passthru_plugin_la-pam_ptpreop.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/pam_passthru/pam_ptpreop.c' object='ldap/servers/plugins/pam_passthru/libpam_passthru_plugin_la-pam_ptpreop.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpam_passthru_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/pam_passthru/libpam_passthru_plugin_la-pam_ptpreop.lo `test -f 'ldap/servers/plugins/pam_passthru/pam_ptpreop.c' || echo '$(srcdir)/'`ldap/servers/plugins/pam_passthru/pam_ptpreop.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpam_passthru_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/pam_passthru/libpam_passthru_plugin_la-pam_ptpreop.lo `test -f 'ldap/servers/plugins/pam_passthru/pam_ptpreop.c' || echo '$(srcdir)/'`ldap/servers/plugins/pam_passthru/pam_ptpreop.c - - ldap/servers/plugins/passthru/libpassthru_plugin_la-ptbind.lo: ldap/servers/plugins/passthru/ptbind.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpassthru_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/passthru/libpassthru_plugin_la-ptbind.lo -MD -MP -MF ldap/servers/plugins/passthru/$(DEPDIR)/libpassthru_plugin_la-ptbind.Tpo -c -o ldap/servers/plugins/passthru/libpassthru_plugin_la-ptbind.lo `test -f 'ldap/servers/plugins/passthru/ptbind.c' || echo '$(srcdir)/'`ldap/servers/plugins/passthru/ptbind.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/passthru/$(DEPDIR)/libpassthru_plugin_la-ptbind.Tpo ldap/servers/plugins/passthru/$(DEPDIR)/libpassthru_plugin_la-ptbind.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/passthru/ptbind.c' object='ldap/servers/plugins/passthru/libpassthru_plugin_la-ptbind.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpassthru_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/passthru/libpassthru_plugin_la-ptbind.lo -MD -MP -MF ldap/servers/plugins/passthru/$(DEPDIR)/libpassthru_plugin_la-ptbind.Tpo -c -o ldap/servers/plugins/passthru/libpassthru_plugin_la-ptbind.lo `test -f 'ldap/servers/plugins/passthru/ptbind.c' || echo '$(srcdir)/'`ldap/servers/plugins/passthru/ptbind.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/passthru/$(DEPDIR)/libpassthru_plugin_la-ptbind.Tpo ldap/servers/plugins/passthru/$(DEPDIR)/libpassthru_plugin_la-ptbind.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/passthru/ptbind.c' object='ldap/servers/plugins/passthru/libpassthru_plugin_la-ptbind.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpassthru_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/passthru/libpassthru_plugin_la-ptbind.lo `test -f 'ldap/servers/plugins/passthru/ptbind.c' || echo '$(srcdir)/'`ldap/servers/plugins/passthru/ptbind.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpassthru_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/passthru/libpassthru_plugin_la-ptbind.lo `test -f 'ldap/servers/plugins/passthru/ptbind.c' || echo '$(srcdir)/'`ldap/servers/plugins/passthru/ptbind.c - - ldap/servers/plugins/passthru/libpassthru_plugin_la-ptconfig.lo: ldap/servers/plugins/passthru/ptconfig.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpassthru_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/passthru/libpassthru_plugin_la-ptconfig.lo -MD -MP -MF ldap/servers/plugins/passthru/$(DEPDIR)/libpassthru_plugin_la-ptconfig.Tpo -c -o ldap/servers/plugins/passthru/libpassthru_plugin_la-ptconfig.lo `test -f 'ldap/servers/plugins/passthru/ptconfig.c' || echo '$(srcdir)/'`ldap/servers/plugins/passthru/ptconfig.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/passthru/$(DEPDIR)/libpassthru_plugin_la-ptconfig.Tpo ldap/servers/plugins/passthru/$(DEPDIR)/libpassthru_plugin_la-ptconfig.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/passthru/ptconfig.c' object='ldap/servers/plugins/passthru/libpassthru_plugin_la-ptconfig.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpassthru_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/passthru/libpassthru_plugin_la-ptconfig.lo -MD -MP -MF ldap/servers/plugins/passthru/$(DEPDIR)/libpassthru_plugin_la-ptconfig.Tpo -c -o ldap/servers/plugins/passthru/libpassthru_plugin_la-ptconfig.lo `test -f 'ldap/servers/plugins/passthru/ptconfig.c' || echo '$(srcdir)/'`ldap/servers/plugins/passthru/ptconfig.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/passthru/$(DEPDIR)/libpassthru_plugin_la-ptconfig.Tpo ldap/servers/plugins/passthru/$(DEPDIR)/libpassthru_plugin_la-ptconfig.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/passthru/ptconfig.c' object='ldap/servers/plugins/passthru/libpassthru_plugin_la-ptconfig.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpassthru_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/passthru/libpassthru_plugin_la-ptconfig.lo `test -f 'ldap/servers/plugins/passthru/ptconfig.c' || echo '$(srcdir)/'`ldap/servers/plugins/passthru/ptconfig.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpassthru_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/passthru/libpassthru_plugin_la-ptconfig.lo `test -f 'ldap/servers/plugins/passthru/ptconfig.c' || echo '$(srcdir)/'`ldap/servers/plugins/passthru/ptconfig.c - - ldap/servers/plugins/passthru/libpassthru_plugin_la-ptconn.lo: ldap/servers/plugins/passthru/ptconn.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpassthru_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/passthru/libpassthru_plugin_la-ptconn.lo -MD -MP -MF ldap/servers/plugins/passthru/$(DEPDIR)/libpassthru_plugin_la-ptconn.Tpo -c -o ldap/servers/plugins/passthru/libpassthru_plugin_la-ptconn.lo `test -f 'ldap/servers/plugins/passthru/ptconn.c' || echo '$(srcdir)/'`ldap/servers/plugins/passthru/ptconn.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/passthru/$(DEPDIR)/libpassthru_plugin_la-ptconn.Tpo ldap/servers/plugins/passthru/$(DEPDIR)/libpassthru_plugin_la-ptconn.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/passthru/ptconn.c' object='ldap/servers/plugins/passthru/libpassthru_plugin_la-ptconn.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpassthru_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/passthru/libpassthru_plugin_la-ptconn.lo -MD -MP -MF ldap/servers/plugins/passthru/$(DEPDIR)/libpassthru_plugin_la-ptconn.Tpo -c -o ldap/servers/plugins/passthru/libpassthru_plugin_la-ptconn.lo `test -f 'ldap/servers/plugins/passthru/ptconn.c' || echo '$(srcdir)/'`ldap/servers/plugins/passthru/ptconn.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/passthru/$(DEPDIR)/libpassthru_plugin_la-ptconn.Tpo ldap/servers/plugins/passthru/$(DEPDIR)/libpassthru_plugin_la-ptconn.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/passthru/ptconn.c' object='ldap/servers/plugins/passthru/libpassthru_plugin_la-ptconn.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpassthru_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/passthru/libpassthru_plugin_la-ptconn.lo `test -f 'ldap/servers/plugins/passthru/ptconn.c' || echo '$(srcdir)/'`ldap/servers/plugins/passthru/ptconn.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpassthru_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/passthru/libpassthru_plugin_la-ptconn.lo `test -f 'ldap/servers/plugins/passthru/ptconn.c' || echo '$(srcdir)/'`ldap/servers/plugins/passthru/ptconn.c - - ldap/servers/plugins/passthru/libpassthru_plugin_la-ptdebug.lo: ldap/servers/plugins/passthru/ptdebug.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpassthru_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/passthru/libpassthru_plugin_la-ptdebug.lo -MD -MP -MF ldap/servers/plugins/passthru/$(DEPDIR)/libpassthru_plugin_la-ptdebug.Tpo -c -o ldap/servers/plugins/passthru/libpassthru_plugin_la-ptdebug.lo `test -f 'ldap/servers/plugins/passthru/ptdebug.c' || echo '$(srcdir)/'`ldap/servers/plugins/passthru/ptdebug.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/passthru/$(DEPDIR)/libpassthru_plugin_la-ptdebug.Tpo ldap/servers/plugins/passthru/$(DEPDIR)/libpassthru_plugin_la-ptdebug.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/passthru/ptdebug.c' object='ldap/servers/plugins/passthru/libpassthru_plugin_la-ptdebug.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpassthru_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/passthru/libpassthru_plugin_la-ptdebug.lo -MD -MP -MF ldap/servers/plugins/passthru/$(DEPDIR)/libpassthru_plugin_la-ptdebug.Tpo -c -o ldap/servers/plugins/passthru/libpassthru_plugin_la-ptdebug.lo `test -f 'ldap/servers/plugins/passthru/ptdebug.c' || echo '$(srcdir)/'`ldap/servers/plugins/passthru/ptdebug.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/passthru/$(DEPDIR)/libpassthru_plugin_la-ptdebug.Tpo ldap/servers/plugins/passthru/$(DEPDIR)/libpassthru_plugin_la-ptdebug.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/passthru/ptdebug.c' object='ldap/servers/plugins/passthru/libpassthru_plugin_la-ptdebug.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpassthru_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/passthru/libpassthru_plugin_la-ptdebug.lo `test -f 'ldap/servers/plugins/passthru/ptdebug.c' || echo '$(srcdir)/'`ldap/servers/plugins/passthru/ptdebug.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpassthru_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/passthru/libpassthru_plugin_la-ptdebug.lo `test -f 'ldap/servers/plugins/passthru/ptdebug.c' || echo '$(srcdir)/'`ldap/servers/plugins/passthru/ptdebug.c - - ldap/servers/plugins/passthru/libpassthru_plugin_la-ptpreop.lo: ldap/servers/plugins/passthru/ptpreop.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpassthru_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/passthru/libpassthru_plugin_la-ptpreop.lo -MD -MP -MF ldap/servers/plugins/passthru/$(DEPDIR)/libpassthru_plugin_la-ptpreop.Tpo -c -o ldap/servers/plugins/passthru/libpassthru_plugin_la-ptpreop.lo `test -f 'ldap/servers/plugins/passthru/ptpreop.c' || echo '$(srcdir)/'`ldap/servers/plugins/passthru/ptpreop.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/passthru/$(DEPDIR)/libpassthru_plugin_la-ptpreop.Tpo ldap/servers/plugins/passthru/$(DEPDIR)/libpassthru_plugin_la-ptpreop.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/passthru/ptpreop.c' object='ldap/servers/plugins/passthru/libpassthru_plugin_la-ptpreop.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpassthru_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/passthru/libpassthru_plugin_la-ptpreop.lo -MD -MP -MF ldap/servers/plugins/passthru/$(DEPDIR)/libpassthru_plugin_la-ptpreop.Tpo -c -o ldap/servers/plugins/passthru/libpassthru_plugin_la-ptpreop.lo `test -f 'ldap/servers/plugins/passthru/ptpreop.c' || echo '$(srcdir)/'`ldap/servers/plugins/passthru/ptpreop.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/passthru/$(DEPDIR)/libpassthru_plugin_la-ptpreop.Tpo ldap/servers/plugins/passthru/$(DEPDIR)/libpassthru_plugin_la-ptpreop.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/passthru/ptpreop.c' object='ldap/servers/plugins/passthru/libpassthru_plugin_la-ptpreop.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpassthru_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/passthru/libpassthru_plugin_la-ptpreop.lo `test -f 'ldap/servers/plugins/passthru/ptpreop.c' || echo '$(srcdir)/'`ldap/servers/plugins/passthru/ptpreop.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpassthru_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/passthru/libpassthru_plugin_la-ptpreop.lo `test -f 'ldap/servers/plugins/passthru/ptpreop.c' || echo '$(srcdir)/'`ldap/servers/plugins/passthru/ptpreop.c - - ldap/servers/plugins/passthru/libpassthru_plugin_la-ptutil.lo: ldap/servers/plugins/passthru/ptutil.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpassthru_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/passthru/libpassthru_plugin_la-ptutil.lo -MD -MP -MF ldap/servers/plugins/passthru/$(DEPDIR)/libpassthru_plugin_la-ptutil.Tpo -c -o ldap/servers/plugins/passthru/libpassthru_plugin_la-ptutil.lo `test -f 'ldap/servers/plugins/passthru/ptutil.c' || echo '$(srcdir)/'`ldap/servers/plugins/passthru/ptutil.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/passthru/$(DEPDIR)/libpassthru_plugin_la-ptutil.Tpo ldap/servers/plugins/passthru/$(DEPDIR)/libpassthru_plugin_la-ptutil.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/passthru/ptutil.c' object='ldap/servers/plugins/passthru/libpassthru_plugin_la-ptutil.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpassthru_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/passthru/libpassthru_plugin_la-ptutil.lo -MD -MP -MF ldap/servers/plugins/passthru/$(DEPDIR)/libpassthru_plugin_la-ptutil.Tpo -c -o ldap/servers/plugins/passthru/libpassthru_plugin_la-ptutil.lo `test -f 'ldap/servers/plugins/passthru/ptutil.c' || echo '$(srcdir)/'`ldap/servers/plugins/passthru/ptutil.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/passthru/$(DEPDIR)/libpassthru_plugin_la-ptutil.Tpo ldap/servers/plugins/passthru/$(DEPDIR)/libpassthru_plugin_la-ptutil.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/passthru/ptutil.c' object='ldap/servers/plugins/passthru/libpassthru_plugin_la-ptutil.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpassthru_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/passthru/libpassthru_plugin_la-ptutil.lo `test -f 'ldap/servers/plugins/passthru/ptutil.c' || echo '$(srcdir)/'`ldap/servers/plugins/passthru/ptutil.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpassthru_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/passthru/libpassthru_plugin_la-ptutil.lo `test -f 'ldap/servers/plugins/passthru/ptutil.c' || echo '$(srcdir)/'`ldap/servers/plugins/passthru/ptutil.c - - ldap/servers/plugins/posix-winsync/libposix_winsync_plugin_la-posix-winsync.lo: ldap/servers/plugins/posix-winsync/posix-winsync.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libposix_winsync_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/posix-winsync/libposix_winsync_plugin_la-posix-winsync.lo -MD -MP -MF ldap/servers/plugins/posix-winsync/$(DEPDIR)/libposix_winsync_plugin_la-posix-winsync.Tpo -c -o ldap/servers/plugins/posix-winsync/libposix_winsync_plugin_la-posix-winsync.lo `test -f 'ldap/servers/plugins/posix-winsync/posix-winsync.c' || echo '$(srcdir)/'`ldap/servers/plugins/posix-winsync/posix-winsync.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/posix-winsync/$(DEPDIR)/libposix_winsync_plugin_la-posix-winsync.Tpo ldap/servers/plugins/posix-winsync/$(DEPDIR)/libposix_winsync_plugin_la-posix-winsync.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/posix-winsync/posix-winsync.c' object='ldap/servers/plugins/posix-winsync/libposix_winsync_plugin_la-posix-winsync.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libposix_winsync_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/posix-winsync/libposix_winsync_plugin_la-posix-winsync.lo -MD -MP -MF ldap/servers/plugins/posix-winsync/$(DEPDIR)/libposix_winsync_plugin_la-posix-winsync.Tpo -c -o ldap/servers/plugins/posix-winsync/libposix_winsync_plugin_la-posix-winsync.lo `test -f 'ldap/servers/plugins/posix-winsync/posix-winsync.c' || echo '$(srcdir)/'`ldap/servers/plugins/posix-winsync/posix-winsync.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/posix-winsync/$(DEPDIR)/libposix_winsync_plugin_la-posix-winsync.Tpo ldap/servers/plugins/posix-winsync/$(DEPDIR)/libposix_winsync_plugin_la-posix-winsync.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/posix-winsync/posix-winsync.c' object='ldap/servers/plugins/posix-winsync/libposix_winsync_plugin_la-posix-winsync.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libposix_winsync_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/posix-winsync/libposix_winsync_plugin_la-posix-winsync.lo `test -f 'ldap/servers/plugins/posix-winsync/posix-winsync.c' || echo '$(srcdir)/'`ldap/servers/plugins/posix-winsync/posix-winsync.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libposix_winsync_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/posix-winsync/libposix_winsync_plugin_la-posix-winsync.lo `test -f 'ldap/servers/plugins/posix-winsync/posix-winsync.c' || echo '$(srcdir)/'`ldap/servers/plugins/posix-winsync/posix-winsync.c - - ldap/servers/plugins/posix-winsync/libposix_winsync_plugin_la-posix-group-func.lo: ldap/servers/plugins/posix-winsync/posix-group-func.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libposix_winsync_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/posix-winsync/libposix_winsync_plugin_la-posix-group-func.lo -MD -MP -MF ldap/servers/plugins/posix-winsync/$(DEPDIR)/libposix_winsync_plugin_la-posix-group-func.Tpo -c -o ldap/servers/plugins/posix-winsync/libposix_winsync_plugin_la-posix-group-func.lo `test -f 'ldap/servers/plugins/posix-winsync/posix-group-func.c' || echo '$(srcdir)/'`ldap/servers/plugins/posix-winsync/posix-group-func.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/posix-winsync/$(DEPDIR)/libposix_winsync_plugin_la-posix-group-func.Tpo ldap/servers/plugins/posix-winsync/$(DEPDIR)/libposix_winsync_plugin_la-posix-group-func.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/posix-winsync/posix-group-func.c' object='ldap/servers/plugins/posix-winsync/libposix_winsync_plugin_la-posix-group-func.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libposix_winsync_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/posix-winsync/libposix_winsync_plugin_la-posix-group-func.lo -MD -MP -MF ldap/servers/plugins/posix-winsync/$(DEPDIR)/libposix_winsync_plugin_la-posix-group-func.Tpo -c -o ldap/servers/plugins/posix-winsync/libposix_winsync_plugin_la-posix-group-func.lo `test -f 'ldap/servers/plugins/posix-winsync/posix-group-func.c' || echo '$(srcdir)/'`ldap/servers/plugins/posix-winsync/posix-group-func.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/posix-winsync/$(DEPDIR)/libposix_winsync_plugin_la-posix-group-func.Tpo ldap/servers/plugins/posix-winsync/$(DEPDIR)/libposix_winsync_plugin_la-posix-group-func.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/posix-winsync/posix-group-func.c' object='ldap/servers/plugins/posix-winsync/libposix_winsync_plugin_la-posix-group-func.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libposix_winsync_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/posix-winsync/libposix_winsync_plugin_la-posix-group-func.lo `test -f 'ldap/servers/plugins/posix-winsync/posix-group-func.c' || echo '$(srcdir)/'`ldap/servers/plugins/posix-winsync/posix-group-func.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libposix_winsync_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/posix-winsync/libposix_winsync_plugin_la-posix-group-func.lo `test -f 'ldap/servers/plugins/posix-winsync/posix-group-func.c' || echo '$(srcdir)/'`ldap/servers/plugins/posix-winsync/posix-group-func.c - - ldap/servers/plugins/posix-winsync/libposix_winsync_plugin_la-posix-group-task.lo: ldap/servers/plugins/posix-winsync/posix-group-task.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libposix_winsync_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/posix-winsync/libposix_winsync_plugin_la-posix-group-task.lo -MD -MP -MF ldap/servers/plugins/posix-winsync/$(DEPDIR)/libposix_winsync_plugin_la-posix-group-task.Tpo -c -o ldap/servers/plugins/posix-winsync/libposix_winsync_plugin_la-posix-group-task.lo `test -f 'ldap/servers/plugins/posix-winsync/posix-group-task.c' || echo '$(srcdir)/'`ldap/servers/plugins/posix-winsync/posix-group-task.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/posix-winsync/$(DEPDIR)/libposix_winsync_plugin_la-posix-group-task.Tpo ldap/servers/plugins/posix-winsync/$(DEPDIR)/libposix_winsync_plugin_la-posix-group-task.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/posix-winsync/posix-group-task.c' object='ldap/servers/plugins/posix-winsync/libposix_winsync_plugin_la-posix-group-task.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libposix_winsync_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/posix-winsync/libposix_winsync_plugin_la-posix-group-task.lo -MD -MP -MF ldap/servers/plugins/posix-winsync/$(DEPDIR)/libposix_winsync_plugin_la-posix-group-task.Tpo -c -o ldap/servers/plugins/posix-winsync/libposix_winsync_plugin_la-posix-group-task.lo `test -f 'ldap/servers/plugins/posix-winsync/posix-group-task.c' || echo '$(srcdir)/'`ldap/servers/plugins/posix-winsync/posix-group-task.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/posix-winsync/$(DEPDIR)/libposix_winsync_plugin_la-posix-group-task.Tpo ldap/servers/plugins/posix-winsync/$(DEPDIR)/libposix_winsync_plugin_la-posix-group-task.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/posix-winsync/posix-group-task.c' object='ldap/servers/plugins/posix-winsync/libposix_winsync_plugin_la-posix-group-task.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libposix_winsync_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/posix-winsync/libposix_winsync_plugin_la-posix-group-task.lo `test -f 'ldap/servers/plugins/posix-winsync/posix-group-task.c' || echo '$(srcdir)/'`ldap/servers/plugins/posix-winsync/posix-group-task.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libposix_winsync_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/posix-winsync/libposix_winsync_plugin_la-posix-group-task.lo `test -f 'ldap/servers/plugins/posix-winsync/posix-group-task.c' || echo '$(srcdir)/'`ldap/servers/plugins/posix-winsync/posix-group-task.c - - ldap/servers/plugins/posix-winsync/libposix_winsync_plugin_la-posix-winsync-config.lo: ldap/servers/plugins/posix-winsync/posix-winsync-config.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libposix_winsync_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/posix-winsync/libposix_winsync_plugin_la-posix-winsync-config.lo -MD -MP -MF ldap/servers/plugins/posix-winsync/$(DEPDIR)/libposix_winsync_plugin_la-posix-winsync-config.Tpo -c -o ldap/servers/plugins/posix-winsync/libposix_winsync_plugin_la-posix-winsync-config.lo `test -f 'ldap/servers/plugins/posix-winsync/posix-winsync-config.c' || echo '$(srcdir)/'`ldap/servers/plugins/posix-winsync/posix-winsync-config.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/posix-winsync/$(DEPDIR)/libposix_winsync_plugin_la-posix-winsync-config.Tpo ldap/servers/plugins/posix-winsync/$(DEPDIR)/libposix_winsync_plugin_la-posix-winsync-config.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/posix-winsync/posix-winsync-config.c' object='ldap/servers/plugins/posix-winsync/libposix_winsync_plugin_la-posix-winsync-config.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libposix_winsync_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/posix-winsync/libposix_winsync_plugin_la-posix-winsync-config.lo -MD -MP -MF ldap/servers/plugins/posix-winsync/$(DEPDIR)/libposix_winsync_plugin_la-posix-winsync-config.Tpo -c -o ldap/servers/plugins/posix-winsync/libposix_winsync_plugin_la-posix-winsync-config.lo `test -f 'ldap/servers/plugins/posix-winsync/posix-winsync-config.c' || echo '$(srcdir)/'`ldap/servers/plugins/posix-winsync/posix-winsync-config.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/posix-winsync/$(DEPDIR)/libposix_winsync_plugin_la-posix-winsync-config.Tpo ldap/servers/plugins/posix-winsync/$(DEPDIR)/libposix_winsync_plugin_la-posix-winsync-config.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/posix-winsync/posix-winsync-config.c' object='ldap/servers/plugins/posix-winsync/libposix_winsync_plugin_la-posix-winsync-config.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libposix_winsync_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/posix-winsync/libposix_winsync_plugin_la-posix-winsync-config.lo `test -f 'ldap/servers/plugins/posix-winsync/posix-winsync-config.c' || echo '$(srcdir)/'`ldap/servers/plugins/posix-winsync/posix-winsync-config.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libposix_winsync_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/posix-winsync/libposix_winsync_plugin_la-posix-winsync-config.lo `test -f 'ldap/servers/plugins/posix-winsync/posix-winsync-config.c' || echo '$(srcdir)/'`ldap/servers/plugins/posix-winsync/posix-winsync-config.c - - ldap/servers/plugins/presence/libpresence_plugin_la-presence.lo: ldap/servers/plugins/presence/presence.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpresence_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/presence/libpresence_plugin_la-presence.lo -MD -MP -MF ldap/servers/plugins/presence/$(DEPDIR)/libpresence_plugin_la-presence.Tpo -c -o ldap/servers/plugins/presence/libpresence_plugin_la-presence.lo `test -f 'ldap/servers/plugins/presence/presence.c' || echo '$(srcdir)/'`ldap/servers/plugins/presence/presence.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/presence/$(DEPDIR)/libpresence_plugin_la-presence.Tpo ldap/servers/plugins/presence/$(DEPDIR)/libpresence_plugin_la-presence.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/presence/presence.c' object='ldap/servers/plugins/presence/libpresence_plugin_la-presence.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpresence_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/presence/libpresence_plugin_la-presence.lo -MD -MP -MF ldap/servers/plugins/presence/$(DEPDIR)/libpresence_plugin_la-presence.Tpo -c -o ldap/servers/plugins/presence/libpresence_plugin_la-presence.lo `test -f 'ldap/servers/plugins/presence/presence.c' || echo '$(srcdir)/'`ldap/servers/plugins/presence/presence.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/presence/$(DEPDIR)/libpresence_plugin_la-presence.Tpo ldap/servers/plugins/presence/$(DEPDIR)/libpresence_plugin_la-presence.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/presence/presence.c' object='ldap/servers/plugins/presence/libpresence_plugin_la-presence.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpresence_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/presence/libpresence_plugin_la-presence.lo `test -f 'ldap/servers/plugins/presence/presence.c' || echo '$(srcdir)/'`ldap/servers/plugins/presence/presence.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpresence_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/presence/libpresence_plugin_la-presence.lo `test -f 'ldap/servers/plugins/presence/presence.c' || echo '$(srcdir)/'`ldap/servers/plugins/presence/presence.c - - ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-clear_pwd.lo: ldap/servers/plugins/pwdstorage/clear_pwd.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpwdstorage_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-clear_pwd.lo -MD -MP -MF ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-clear_pwd.Tpo -c -o ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-clear_pwd.lo `test -f 'ldap/servers/plugins/pwdstorage/clear_pwd.c' || echo '$(srcdir)/'`ldap/servers/plugins/pwdstorage/clear_pwd.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-clear_pwd.Tpo ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-clear_pwd.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/pwdstorage/clear_pwd.c' object='ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-clear_pwd.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpwdstorage_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-clear_pwd.lo -MD -MP -MF ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-clear_pwd.Tpo -c -o ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-clear_pwd.lo `test -f 'ldap/servers/plugins/pwdstorage/clear_pwd.c' || echo '$(srcdir)/'`ldap/servers/plugins/pwdstorage/clear_pwd.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-clear_pwd.Tpo ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-clear_pwd.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/pwdstorage/clear_pwd.c' object='ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-clear_pwd.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpwdstorage_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-clear_pwd.lo `test -f 'ldap/servers/plugins/pwdstorage/clear_pwd.c' || echo '$(srcdir)/'`ldap/servers/plugins/pwdstorage/clear_pwd.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpwdstorage_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-clear_pwd.lo `test -f 'ldap/servers/plugins/pwdstorage/clear_pwd.c' || echo '$(srcdir)/'`ldap/servers/plugins/pwdstorage/clear_pwd.c - - ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-crypt_pwd.lo: ldap/servers/plugins/pwdstorage/crypt_pwd.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpwdstorage_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-crypt_pwd.lo -MD -MP -MF ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-crypt_pwd.Tpo -c -o ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-crypt_pwd.lo `test -f 'ldap/servers/plugins/pwdstorage/crypt_pwd.c' || echo '$(srcdir)/'`ldap/servers/plugins/pwdstorage/crypt_pwd.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-crypt_pwd.Tpo ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-crypt_pwd.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/pwdstorage/crypt_pwd.c' object='ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-crypt_pwd.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpwdstorage_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-crypt_pwd.lo -MD -MP -MF ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-crypt_pwd.Tpo -c -o ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-crypt_pwd.lo `test -f 'ldap/servers/plugins/pwdstorage/crypt_pwd.c' || echo '$(srcdir)/'`ldap/servers/plugins/pwdstorage/crypt_pwd.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-crypt_pwd.Tpo ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-crypt_pwd.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/pwdstorage/crypt_pwd.c' object='ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-crypt_pwd.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpwdstorage_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-crypt_pwd.lo `test -f 'ldap/servers/plugins/pwdstorage/crypt_pwd.c' || echo '$(srcdir)/'`ldap/servers/plugins/pwdstorage/crypt_pwd.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpwdstorage_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-crypt_pwd.lo `test -f 'ldap/servers/plugins/pwdstorage/crypt_pwd.c' || echo '$(srcdir)/'`ldap/servers/plugins/pwdstorage/crypt_pwd.c - - ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-md5_pwd.lo: ldap/servers/plugins/pwdstorage/md5_pwd.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpwdstorage_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-md5_pwd.lo -MD -MP -MF ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-md5_pwd.Tpo -c -o ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-md5_pwd.lo `test -f 'ldap/servers/plugins/pwdstorage/md5_pwd.c' || echo '$(srcdir)/'`ldap/servers/plugins/pwdstorage/md5_pwd.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-md5_pwd.Tpo ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-md5_pwd.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/pwdstorage/md5_pwd.c' object='ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-md5_pwd.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpwdstorage_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-md5_pwd.lo -MD -MP -MF ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-md5_pwd.Tpo -c -o ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-md5_pwd.lo `test -f 'ldap/servers/plugins/pwdstorage/md5_pwd.c' || echo '$(srcdir)/'`ldap/servers/plugins/pwdstorage/md5_pwd.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-md5_pwd.Tpo ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-md5_pwd.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/pwdstorage/md5_pwd.c' object='ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-md5_pwd.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpwdstorage_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-md5_pwd.lo `test -f 'ldap/servers/plugins/pwdstorage/md5_pwd.c' || echo '$(srcdir)/'`ldap/servers/plugins/pwdstorage/md5_pwd.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpwdstorage_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-md5_pwd.lo `test -f 'ldap/servers/plugins/pwdstorage/md5_pwd.c' || echo '$(srcdir)/'`ldap/servers/plugins/pwdstorage/md5_pwd.c - - ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-md5c.lo: ldap/servers/plugins/pwdstorage/md5c.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpwdstorage_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-md5c.lo -MD -MP -MF ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-md5c.Tpo -c -o ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-md5c.lo `test -f 'ldap/servers/plugins/pwdstorage/md5c.c' || echo '$(srcdir)/'`ldap/servers/plugins/pwdstorage/md5c.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-md5c.Tpo ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-md5c.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/pwdstorage/md5c.c' object='ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-md5c.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpwdstorage_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-md5c.lo -MD -MP -MF ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-md5c.Tpo -c -o ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-md5c.lo `test -f 'ldap/servers/plugins/pwdstorage/md5c.c' || echo '$(srcdir)/'`ldap/servers/plugins/pwdstorage/md5c.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-md5c.Tpo ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-md5c.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/pwdstorage/md5c.c' object='ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-md5c.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpwdstorage_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-md5c.lo `test -f 'ldap/servers/plugins/pwdstorage/md5c.c' || echo '$(srcdir)/'`ldap/servers/plugins/pwdstorage/md5c.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpwdstorage_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-md5c.lo `test -f 'ldap/servers/plugins/pwdstorage/md5c.c' || echo '$(srcdir)/'`ldap/servers/plugins/pwdstorage/md5c.c - - ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-ns-mta-md5_pwd.lo: ldap/servers/plugins/pwdstorage/ns-mta-md5_pwd.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpwdstorage_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-ns-mta-md5_pwd.lo -MD -MP -MF ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-ns-mta-md5_pwd.Tpo -c -o ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-ns-mta-md5_pwd.lo `test -f 'ldap/servers/plugins/pwdstorage/ns-mta-md5_pwd.c' || echo '$(srcdir)/'`ldap/servers/plugins/pwdstorage/ns-mta-md5_pwd.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-ns-mta-md5_pwd.Tpo ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-ns-mta-md5_pwd.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/pwdstorage/ns-mta-md5_pwd.c' object='ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-ns-mta-md5_pwd.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpwdstorage_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-ns-mta-md5_pwd.lo -MD -MP -MF ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-ns-mta-md5_pwd.Tpo -c -o ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-ns-mta-md5_pwd.lo `test -f 'ldap/servers/plugins/pwdstorage/ns-mta-md5_pwd.c' || echo '$(srcdir)/'`ldap/servers/plugins/pwdstorage/ns-mta-md5_pwd.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-ns-mta-md5_pwd.Tpo ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-ns-mta-md5_pwd.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/pwdstorage/ns-mta-md5_pwd.c' object='ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-ns-mta-md5_pwd.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpwdstorage_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-ns-mta-md5_pwd.lo `test -f 'ldap/servers/plugins/pwdstorage/ns-mta-md5_pwd.c' || echo '$(srcdir)/'`ldap/servers/plugins/pwdstorage/ns-mta-md5_pwd.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpwdstorage_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-ns-mta-md5_pwd.lo `test -f 'ldap/servers/plugins/pwdstorage/ns-mta-md5_pwd.c' || echo '$(srcdir)/'`ldap/servers/plugins/pwdstorage/ns-mta-md5_pwd.c - - ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-pwd_init.lo: ldap/servers/plugins/pwdstorage/pwd_init.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpwdstorage_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-pwd_init.lo -MD -MP -MF ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-pwd_init.Tpo -c -o ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-pwd_init.lo `test -f 'ldap/servers/plugins/pwdstorage/pwd_init.c' || echo '$(srcdir)/'`ldap/servers/plugins/pwdstorage/pwd_init.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-pwd_init.Tpo ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-pwd_init.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/pwdstorage/pwd_init.c' object='ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-pwd_init.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpwdstorage_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-pwd_init.lo -MD -MP -MF ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-pwd_init.Tpo -c -o ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-pwd_init.lo `test -f 'ldap/servers/plugins/pwdstorage/pwd_init.c' || echo '$(srcdir)/'`ldap/servers/plugins/pwdstorage/pwd_init.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-pwd_init.Tpo ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-pwd_init.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/pwdstorage/pwd_init.c' object='ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-pwd_init.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpwdstorage_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-pwd_init.lo `test -f 'ldap/servers/plugins/pwdstorage/pwd_init.c' || echo '$(srcdir)/'`ldap/servers/plugins/pwdstorage/pwd_init.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpwdstorage_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-pwd_init.lo `test -f 'ldap/servers/plugins/pwdstorage/pwd_init.c' || echo '$(srcdir)/'`ldap/servers/plugins/pwdstorage/pwd_init.c - - ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-pwd_util.lo: ldap/servers/plugins/pwdstorage/pwd_util.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpwdstorage_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-pwd_util.lo -MD -MP -MF ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-pwd_util.Tpo -c -o ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-pwd_util.lo `test -f 'ldap/servers/plugins/pwdstorage/pwd_util.c' || echo '$(srcdir)/'`ldap/servers/plugins/pwdstorage/pwd_util.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-pwd_util.Tpo ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-pwd_util.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/pwdstorage/pwd_util.c' object='ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-pwd_util.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpwdstorage_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-pwd_util.lo -MD -MP -MF ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-pwd_util.Tpo -c -o ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-pwd_util.lo `test -f 'ldap/servers/plugins/pwdstorage/pwd_util.c' || echo '$(srcdir)/'`ldap/servers/plugins/pwdstorage/pwd_util.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-pwd_util.Tpo ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-pwd_util.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/pwdstorage/pwd_util.c' object='ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-pwd_util.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpwdstorage_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-pwd_util.lo `test -f 'ldap/servers/plugins/pwdstorage/pwd_util.c' || echo '$(srcdir)/'`ldap/servers/plugins/pwdstorage/pwd_util.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpwdstorage_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-pwd_util.lo `test -f 'ldap/servers/plugins/pwdstorage/pwd_util.c' || echo '$(srcdir)/'`ldap/servers/plugins/pwdstorage/pwd_util.c - - ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-sha_pwd.lo: ldap/servers/plugins/pwdstorage/sha_pwd.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpwdstorage_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-sha_pwd.lo -MD -MP -MF ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-sha_pwd.Tpo -c -o ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-sha_pwd.lo `test -f 'ldap/servers/plugins/pwdstorage/sha_pwd.c' || echo '$(srcdir)/'`ldap/servers/plugins/pwdstorage/sha_pwd.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-sha_pwd.Tpo ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-sha_pwd.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/pwdstorage/sha_pwd.c' object='ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-sha_pwd.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpwdstorage_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-sha_pwd.lo -MD -MP -MF ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-sha_pwd.Tpo -c -o ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-sha_pwd.lo `test -f 'ldap/servers/plugins/pwdstorage/sha_pwd.c' || echo '$(srcdir)/'`ldap/servers/plugins/pwdstorage/sha_pwd.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-sha_pwd.Tpo ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-sha_pwd.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/pwdstorage/sha_pwd.c' object='ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-sha_pwd.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpwdstorage_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-sha_pwd.lo `test -f 'ldap/servers/plugins/pwdstorage/sha_pwd.c' || echo '$(srcdir)/'`ldap/servers/plugins/pwdstorage/sha_pwd.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpwdstorage_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-sha_pwd.lo `test -f 'ldap/servers/plugins/pwdstorage/sha_pwd.c' || echo '$(srcdir)/'`ldap/servers/plugins/pwdstorage/sha_pwd.c - - ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-smd5_pwd.lo: ldap/servers/plugins/pwdstorage/smd5_pwd.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpwdstorage_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-smd5_pwd.lo -MD -MP -MF ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-smd5_pwd.Tpo -c -o ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-smd5_pwd.lo `test -f 'ldap/servers/plugins/pwdstorage/smd5_pwd.c' || echo '$(srcdir)/'`ldap/servers/plugins/pwdstorage/smd5_pwd.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-smd5_pwd.Tpo ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-smd5_pwd.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/pwdstorage/smd5_pwd.c' object='ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-smd5_pwd.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpwdstorage_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-smd5_pwd.lo -MD -MP -MF ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-smd5_pwd.Tpo -c -o ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-smd5_pwd.lo `test -f 'ldap/servers/plugins/pwdstorage/smd5_pwd.c' || echo '$(srcdir)/'`ldap/servers/plugins/pwdstorage/smd5_pwd.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-smd5_pwd.Tpo ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-smd5_pwd.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/pwdstorage/smd5_pwd.c' object='ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-smd5_pwd.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpwdstorage_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-smd5_pwd.lo `test -f 'ldap/servers/plugins/pwdstorage/smd5_pwd.c' || echo '$(srcdir)/'`ldap/servers/plugins/pwdstorage/smd5_pwd.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpwdstorage_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-smd5_pwd.lo `test -f 'ldap/servers/plugins/pwdstorage/smd5_pwd.c' || echo '$(srcdir)/'`ldap/servers/plugins/pwdstorage/smd5_pwd.c - - ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-ssha_pwd.lo: ldap/servers/plugins/pwdstorage/ssha_pwd.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpwdstorage_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-ssha_pwd.lo -MD -MP -MF ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-ssha_pwd.Tpo -c -o ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-ssha_pwd.lo `test -f 'ldap/servers/plugins/pwdstorage/ssha_pwd.c' || echo '$(srcdir)/'`ldap/servers/plugins/pwdstorage/ssha_pwd.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-ssha_pwd.Tpo ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-ssha_pwd.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/pwdstorage/ssha_pwd.c' object='ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-ssha_pwd.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpwdstorage_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-ssha_pwd.lo -MD -MP -MF ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-ssha_pwd.Tpo -c -o ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-ssha_pwd.lo `test -f 'ldap/servers/plugins/pwdstorage/ssha_pwd.c' || echo '$(srcdir)/'`ldap/servers/plugins/pwdstorage/ssha_pwd.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-ssha_pwd.Tpo ldap/servers/plugins/pwdstorage/$(DEPDIR)/libpwdstorage_plugin_la-ssha_pwd.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/pwdstorage/ssha_pwd.c' object='ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-ssha_pwd.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpwdstorage_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-ssha_pwd.lo `test -f 'ldap/servers/plugins/pwdstorage/ssha_pwd.c' || echo '$(srcdir)/'`ldap/servers/plugins/pwdstorage/ssha_pwd.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpwdstorage_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-ssha_pwd.lo `test -f 'ldap/servers/plugins/pwdstorage/ssha_pwd.c' || echo '$(srcdir)/'`ldap/servers/plugins/pwdstorage/ssha_pwd.c - - ldap/servers/plugins/referint/libreferint_plugin_la-referint.lo: ldap/servers/plugins/referint/referint.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreferint_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/referint/libreferint_plugin_la-referint.lo -MD -MP -MF ldap/servers/plugins/referint/$(DEPDIR)/libreferint_plugin_la-referint.Tpo -c -o ldap/servers/plugins/referint/libreferint_plugin_la-referint.lo `test -f 'ldap/servers/plugins/referint/referint.c' || echo '$(srcdir)/'`ldap/servers/plugins/referint/referint.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/referint/$(DEPDIR)/libreferint_plugin_la-referint.Tpo ldap/servers/plugins/referint/$(DEPDIR)/libreferint_plugin_la-referint.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/referint/referint.c' object='ldap/servers/plugins/referint/libreferint_plugin_la-referint.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreferint_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/referint/libreferint_plugin_la-referint.lo -MD -MP -MF ldap/servers/plugins/referint/$(DEPDIR)/libreferint_plugin_la-referint.Tpo -c -o ldap/servers/plugins/referint/libreferint_plugin_la-referint.lo `test -f 'ldap/servers/plugins/referint/referint.c' || echo '$(srcdir)/'`ldap/servers/plugins/referint/referint.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/referint/$(DEPDIR)/libreferint_plugin_la-referint.Tpo ldap/servers/plugins/referint/$(DEPDIR)/libreferint_plugin_la-referint.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/referint/referint.c' object='ldap/servers/plugins/referint/libreferint_plugin_la-referint.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreferint_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/referint/libreferint_plugin_la-referint.lo `test -f 'ldap/servers/plugins/referint/referint.c' || echo '$(srcdir)/'`ldap/servers/plugins/referint/referint.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreferint_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/referint/libreferint_plugin_la-referint.lo `test -f 'ldap/servers/plugins/referint/referint.c' || echo '$(srcdir)/'`ldap/servers/plugins/referint/referint.c - - ldap/servers/plugins/replication/libreplication_plugin_la-cl5_api.lo: ldap/servers/plugins/replication/cl5_api.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-cl5_api.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-cl5_api.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-cl5_api.lo `test -f 'ldap/servers/plugins/replication/cl5_api.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/cl5_api.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-cl5_api.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-cl5_api.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/cl5_api.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-cl5_api.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-cl5_api.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-cl5_api.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-cl5_api.lo `test -f 'ldap/servers/plugins/replication/cl5_api.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/cl5_api.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-cl5_api.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-cl5_api.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/cl5_api.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-cl5_api.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-cl5_api.lo `test -f 'ldap/servers/plugins/replication/cl5_api.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/cl5_api.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-cl5_api.lo `test -f 'ldap/servers/plugins/replication/cl5_api.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/cl5_api.c - - ldap/servers/plugins/replication/libreplication_plugin_la-cl5_clcache.lo: ldap/servers/plugins/replication/cl5_clcache.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-cl5_clcache.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-cl5_clcache.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-cl5_clcache.lo `test -f 'ldap/servers/plugins/replication/cl5_clcache.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/cl5_clcache.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-cl5_clcache.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-cl5_clcache.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/cl5_clcache.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-cl5_clcache.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-cl5_clcache.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-cl5_clcache.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-cl5_clcache.lo `test -f 'ldap/servers/plugins/replication/cl5_clcache.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/cl5_clcache.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-cl5_clcache.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-cl5_clcache.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/cl5_clcache.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-cl5_clcache.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-cl5_clcache.lo `test -f 'ldap/servers/plugins/replication/cl5_clcache.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/cl5_clcache.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-cl5_clcache.lo `test -f 'ldap/servers/plugins/replication/cl5_clcache.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/cl5_clcache.c - - ldap/servers/plugins/replication/libreplication_plugin_la-cl5_config.lo: ldap/servers/plugins/replication/cl5_config.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-cl5_config.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-cl5_config.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-cl5_config.lo `test -f 'ldap/servers/plugins/replication/cl5_config.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/cl5_config.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-cl5_config.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-cl5_config.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/cl5_config.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-cl5_config.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-cl5_config.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-cl5_config.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-cl5_config.lo `test -f 'ldap/servers/plugins/replication/cl5_config.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/cl5_config.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-cl5_config.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-cl5_config.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/cl5_config.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-cl5_config.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-cl5_config.lo `test -f 'ldap/servers/plugins/replication/cl5_config.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/cl5_config.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-cl5_config.lo `test -f 'ldap/servers/plugins/replication/cl5_config.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/cl5_config.c - - ldap/servers/plugins/replication/libreplication_plugin_la-cl5_init.lo: ldap/servers/plugins/replication/cl5_init.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-cl5_init.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-cl5_init.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-cl5_init.lo `test -f 'ldap/servers/plugins/replication/cl5_init.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/cl5_init.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-cl5_init.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-cl5_init.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/cl5_init.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-cl5_init.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-cl5_init.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-cl5_init.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-cl5_init.lo `test -f 'ldap/servers/plugins/replication/cl5_init.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/cl5_init.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-cl5_init.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-cl5_init.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/cl5_init.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-cl5_init.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-cl5_init.lo `test -f 'ldap/servers/plugins/replication/cl5_init.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/cl5_init.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-cl5_init.lo `test -f 'ldap/servers/plugins/replication/cl5_init.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/cl5_init.c - - ldap/servers/plugins/replication/libreplication_plugin_la-cl_crypt.lo: ldap/servers/plugins/replication/cl_crypt.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-cl_crypt.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-cl_crypt.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-cl_crypt.lo `test -f 'ldap/servers/plugins/replication/cl_crypt.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/cl_crypt.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-cl_crypt.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-cl_crypt.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/cl_crypt.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-cl_crypt.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-cl_crypt.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-cl_crypt.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-cl_crypt.lo `test -f 'ldap/servers/plugins/replication/cl_crypt.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/cl_crypt.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-cl_crypt.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-cl_crypt.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/cl_crypt.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-cl_crypt.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-cl_crypt.lo `test -f 'ldap/servers/plugins/replication/cl_crypt.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/cl_crypt.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-cl_crypt.lo `test -f 'ldap/servers/plugins/replication/cl_crypt.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/cl_crypt.c - - ldap/servers/plugins/replication/libreplication_plugin_la-csnpl.lo: ldap/servers/plugins/replication/csnpl.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-csnpl.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-csnpl.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-csnpl.lo `test -f 'ldap/servers/plugins/replication/csnpl.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/csnpl.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-csnpl.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-csnpl.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/csnpl.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-csnpl.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-csnpl.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-csnpl.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-csnpl.lo `test -f 'ldap/servers/plugins/replication/csnpl.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/csnpl.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-csnpl.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-csnpl.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/csnpl.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-csnpl.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-csnpl.lo `test -f 'ldap/servers/plugins/replication/csnpl.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/csnpl.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-csnpl.lo `test -f 'ldap/servers/plugins/replication/csnpl.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/csnpl.c - - ldap/servers/plugins/replication/libreplication_plugin_la-legacy_consumer.lo: ldap/servers/plugins/replication/legacy_consumer.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-legacy_consumer.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-legacy_consumer.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-legacy_consumer.lo `test -f 'ldap/servers/plugins/replication/legacy_consumer.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/legacy_consumer.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-legacy_consumer.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-legacy_consumer.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/legacy_consumer.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-legacy_consumer.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-legacy_consumer.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-legacy_consumer.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-legacy_consumer.lo `test -f 'ldap/servers/plugins/replication/legacy_consumer.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/legacy_consumer.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-legacy_consumer.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-legacy_consumer.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/legacy_consumer.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-legacy_consumer.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-legacy_consumer.lo `test -f 'ldap/servers/plugins/replication/legacy_consumer.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/legacy_consumer.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-legacy_consumer.lo `test -f 'ldap/servers/plugins/replication/legacy_consumer.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/legacy_consumer.c - - ldap/servers/plugins/replication/libreplication_plugin_la-llist.lo: ldap/servers/plugins/replication/llist.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-llist.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-llist.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-llist.lo `test -f 'ldap/servers/plugins/replication/llist.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/llist.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-llist.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-llist.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/llist.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-llist.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-llist.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-llist.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-llist.lo `test -f 'ldap/servers/plugins/replication/llist.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/llist.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-llist.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-llist.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/llist.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-llist.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-llist.lo `test -f 'ldap/servers/plugins/replication/llist.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/llist.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-llist.lo `test -f 'ldap/servers/plugins/replication/llist.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/llist.c - - ldap/servers/plugins/replication/libreplication_plugin_la-repl_add.lo: ldap/servers/plugins/replication/repl_add.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl_add.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_add.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_add.lo `test -f 'ldap/servers/plugins/replication/repl_add.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_add.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_add.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_add.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/repl_add.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl_add.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl_add.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_add.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_add.lo `test -f 'ldap/servers/plugins/replication/repl_add.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_add.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_add.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_add.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/repl_add.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl_add.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_add.lo `test -f 'ldap/servers/plugins/replication/repl_add.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_add.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_add.lo `test -f 'ldap/servers/plugins/replication/repl_add.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_add.c - - ldap/servers/plugins/replication/libreplication_plugin_la-repl_bind.lo: ldap/servers/plugins/replication/repl_bind.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl_bind.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_bind.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_bind.lo `test -f 'ldap/servers/plugins/replication/repl_bind.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_bind.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_bind.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_bind.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/repl_bind.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl_bind.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl_bind.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_bind.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_bind.lo `test -f 'ldap/servers/plugins/replication/repl_bind.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_bind.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_bind.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_bind.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/repl_bind.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl_bind.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_bind.lo `test -f 'ldap/servers/plugins/replication/repl_bind.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_bind.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_bind.lo `test -f 'ldap/servers/plugins/replication/repl_bind.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_bind.c - - ldap/servers/plugins/replication/libreplication_plugin_la-repl_compare.lo: ldap/servers/plugins/replication/repl_compare.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl_compare.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_compare.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_compare.lo `test -f 'ldap/servers/plugins/replication/repl_compare.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_compare.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_compare.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_compare.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/repl_compare.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl_compare.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl_compare.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_compare.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_compare.lo `test -f 'ldap/servers/plugins/replication/repl_compare.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_compare.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_compare.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_compare.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/repl_compare.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl_compare.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_compare.lo `test -f 'ldap/servers/plugins/replication/repl_compare.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_compare.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_compare.lo `test -f 'ldap/servers/plugins/replication/repl_compare.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_compare.c - - ldap/servers/plugins/replication/libreplication_plugin_la-repl_connext.lo: ldap/servers/plugins/replication/repl_connext.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl_connext.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_connext.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_connext.lo `test -f 'ldap/servers/plugins/replication/repl_connext.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_connext.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_connext.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_connext.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/repl_connext.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl_connext.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl_connext.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_connext.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_connext.lo `test -f 'ldap/servers/plugins/replication/repl_connext.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_connext.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_connext.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_connext.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/repl_connext.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl_connext.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_connext.lo `test -f 'ldap/servers/plugins/replication/repl_connext.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_connext.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_connext.lo `test -f 'ldap/servers/plugins/replication/repl_connext.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_connext.c - - ldap/servers/plugins/replication/libreplication_plugin_la-repl_controls.lo: ldap/servers/plugins/replication/repl_controls.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl_controls.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_controls.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_controls.lo `test -f 'ldap/servers/plugins/replication/repl_controls.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_controls.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_controls.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_controls.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/repl_controls.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl_controls.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl_controls.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_controls.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_controls.lo `test -f 'ldap/servers/plugins/replication/repl_controls.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_controls.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_controls.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_controls.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/repl_controls.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl_controls.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_controls.lo `test -f 'ldap/servers/plugins/replication/repl_controls.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_controls.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_controls.lo `test -f 'ldap/servers/plugins/replication/repl_controls.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_controls.c - - ldap/servers/plugins/replication/libreplication_plugin_la-repl_delete.lo: ldap/servers/plugins/replication/repl_delete.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl_delete.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_delete.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_delete.lo `test -f 'ldap/servers/plugins/replication/repl_delete.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_delete.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_delete.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_delete.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/repl_delete.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl_delete.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl_delete.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_delete.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_delete.lo `test -f 'ldap/servers/plugins/replication/repl_delete.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_delete.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_delete.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_delete.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/repl_delete.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl_delete.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_delete.lo `test -f 'ldap/servers/plugins/replication/repl_delete.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_delete.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_delete.lo `test -f 'ldap/servers/plugins/replication/repl_delete.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_delete.c - - ldap/servers/plugins/replication/libreplication_plugin_la-repl_entry.lo: ldap/servers/plugins/replication/repl_entry.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl_entry.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_entry.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_entry.lo `test -f 'ldap/servers/plugins/replication/repl_entry.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_entry.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_entry.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_entry.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/repl_entry.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl_entry.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl_entry.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_entry.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_entry.lo `test -f 'ldap/servers/plugins/replication/repl_entry.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_entry.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_entry.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_entry.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/repl_entry.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl_entry.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_entry.lo `test -f 'ldap/servers/plugins/replication/repl_entry.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_entry.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_entry.lo `test -f 'ldap/servers/plugins/replication/repl_entry.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_entry.c - - ldap/servers/plugins/replication/libreplication_plugin_la-repl_ext.lo: ldap/servers/plugins/replication/repl_ext.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl_ext.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_ext.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_ext.lo `test -f 'ldap/servers/plugins/replication/repl_ext.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_ext.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_ext.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_ext.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/repl_ext.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl_ext.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl_ext.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_ext.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_ext.lo `test -f 'ldap/servers/plugins/replication/repl_ext.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_ext.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_ext.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_ext.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/repl_ext.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl_ext.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_ext.lo `test -f 'ldap/servers/plugins/replication/repl_ext.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_ext.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_ext.lo `test -f 'ldap/servers/plugins/replication/repl_ext.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_ext.c - - ldap/servers/plugins/replication/libreplication_plugin_la-repl_extop.lo: ldap/servers/plugins/replication/repl_extop.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl_extop.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_extop.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_extop.lo `test -f 'ldap/servers/plugins/replication/repl_extop.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_extop.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_extop.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_extop.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/repl_extop.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl_extop.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl_extop.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_extop.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_extop.lo `test -f 'ldap/servers/plugins/replication/repl_extop.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_extop.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_extop.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_extop.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/repl_extop.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl_extop.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_extop.lo `test -f 'ldap/servers/plugins/replication/repl_extop.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_extop.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_extop.lo `test -f 'ldap/servers/plugins/replication/repl_extop.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_extop.c - - ldap/servers/plugins/replication/libreplication_plugin_la-repl_globals.lo: ldap/servers/plugins/replication/repl_globals.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl_globals.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_globals.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_globals.lo `test -f 'ldap/servers/plugins/replication/repl_globals.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_globals.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_globals.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_globals.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/repl_globals.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl_globals.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl_globals.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_globals.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_globals.lo `test -f 'ldap/servers/plugins/replication/repl_globals.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_globals.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_globals.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_globals.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/repl_globals.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl_globals.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_globals.lo `test -f 'ldap/servers/plugins/replication/repl_globals.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_globals.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_globals.lo `test -f 'ldap/servers/plugins/replication/repl_globals.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_globals.c - - ldap/servers/plugins/replication/libreplication_plugin_la-repl_init.lo: ldap/servers/plugins/replication/repl_init.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl_init.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_init.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_init.lo `test -f 'ldap/servers/plugins/replication/repl_init.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_init.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_init.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_init.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/repl_init.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl_init.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl_init.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_init.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_init.lo `test -f 'ldap/servers/plugins/replication/repl_init.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_init.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_init.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_init.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/repl_init.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl_init.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_init.lo `test -f 'ldap/servers/plugins/replication/repl_init.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_init.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_init.lo `test -f 'ldap/servers/plugins/replication/repl_init.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_init.c - - ldap/servers/plugins/replication/libreplication_plugin_la-repl_modify.lo: ldap/servers/plugins/replication/repl_modify.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl_modify.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_modify.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_modify.lo `test -f 'ldap/servers/plugins/replication/repl_modify.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_modify.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_modify.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_modify.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/repl_modify.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl_modify.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl_modify.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_modify.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_modify.lo `test -f 'ldap/servers/plugins/replication/repl_modify.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_modify.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_modify.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_modify.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/repl_modify.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl_modify.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_modify.lo `test -f 'ldap/servers/plugins/replication/repl_modify.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_modify.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_modify.lo `test -f 'ldap/servers/plugins/replication/repl_modify.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_modify.c - - ldap/servers/plugins/replication/libreplication_plugin_la-repl_modrdn.lo: ldap/servers/plugins/replication/repl_modrdn.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl_modrdn.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_modrdn.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_modrdn.lo `test -f 'ldap/servers/plugins/replication/repl_modrdn.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_modrdn.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_modrdn.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_modrdn.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/repl_modrdn.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl_modrdn.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl_modrdn.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_modrdn.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_modrdn.lo `test -f 'ldap/servers/plugins/replication/repl_modrdn.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_modrdn.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_modrdn.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_modrdn.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/repl_modrdn.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl_modrdn.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_modrdn.lo `test -f 'ldap/servers/plugins/replication/repl_modrdn.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_modrdn.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_modrdn.lo `test -f 'ldap/servers/plugins/replication/repl_modrdn.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_modrdn.c - - ldap/servers/plugins/replication/libreplication_plugin_la-repl_monitor.lo: ldap/servers/plugins/replication/repl_monitor.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl_monitor.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_monitor.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_monitor.lo `test -f 'ldap/servers/plugins/replication/repl_monitor.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_monitor.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_monitor.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_monitor.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/repl_monitor.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl_monitor.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl_monitor.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_monitor.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_monitor.lo `test -f 'ldap/servers/plugins/replication/repl_monitor.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_monitor.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_monitor.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_monitor.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/repl_monitor.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl_monitor.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_monitor.lo `test -f 'ldap/servers/plugins/replication/repl_monitor.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_monitor.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_monitor.lo `test -f 'ldap/servers/plugins/replication/repl_monitor.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_monitor.c - - ldap/servers/plugins/replication/libreplication_plugin_la-repl_objset.lo: ldap/servers/plugins/replication/repl_objset.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl_objset.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_objset.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_objset.lo `test -f 'ldap/servers/plugins/replication/repl_objset.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_objset.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_objset.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_objset.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/repl_objset.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl_objset.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl_objset.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_objset.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_objset.lo `test -f 'ldap/servers/plugins/replication/repl_objset.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_objset.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_objset.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_objset.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/repl_objset.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl_objset.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_objset.lo `test -f 'ldap/servers/plugins/replication/repl_objset.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_objset.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_objset.lo `test -f 'ldap/servers/plugins/replication/repl_objset.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_objset.c - - ldap/servers/plugins/replication/libreplication_plugin_la-repl_opext.lo: ldap/servers/plugins/replication/repl_opext.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl_opext.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_opext.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_opext.lo `test -f 'ldap/servers/plugins/replication/repl_opext.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_opext.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_opext.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_opext.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/repl_opext.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl_opext.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl_opext.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_opext.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_opext.lo `test -f 'ldap/servers/plugins/replication/repl_opext.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_opext.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_opext.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_opext.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/repl_opext.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl_opext.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_opext.lo `test -f 'ldap/servers/plugins/replication/repl_opext.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_opext.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_opext.lo `test -f 'ldap/servers/plugins/replication/repl_opext.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_opext.c - - ldap/servers/plugins/replication/libreplication_plugin_la-repl_ops.lo: ldap/servers/plugins/replication/repl_ops.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl_ops.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_ops.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_ops.lo `test -f 'ldap/servers/plugins/replication/repl_ops.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_ops.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_ops.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_ops.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/repl_ops.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl_ops.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl_ops.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_ops.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_ops.lo `test -f 'ldap/servers/plugins/replication/repl_ops.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_ops.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_ops.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_ops.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/repl_ops.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl_ops.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_ops.lo `test -f 'ldap/servers/plugins/replication/repl_ops.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_ops.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_ops.lo `test -f 'ldap/servers/plugins/replication/repl_ops.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_ops.c - - ldap/servers/plugins/replication/libreplication_plugin_la-repl_rootdse.lo: ldap/servers/plugins/replication/repl_rootdse.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl_rootdse.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_rootdse.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_rootdse.lo `test -f 'ldap/servers/plugins/replication/repl_rootdse.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_rootdse.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_rootdse.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_rootdse.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/repl_rootdse.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl_rootdse.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl_rootdse.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_rootdse.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_rootdse.lo `test -f 'ldap/servers/plugins/replication/repl_rootdse.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_rootdse.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_rootdse.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_rootdse.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/repl_rootdse.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl_rootdse.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_rootdse.lo `test -f 'ldap/servers/plugins/replication/repl_rootdse.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_rootdse.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_rootdse.lo `test -f 'ldap/servers/plugins/replication/repl_rootdse.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_rootdse.c - - ldap/servers/plugins/replication/libreplication_plugin_la-repl_search.lo: ldap/servers/plugins/replication/repl_search.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl_search.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_search.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_search.lo `test -f 'ldap/servers/plugins/replication/repl_search.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_search.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_search.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_search.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/repl_search.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl_search.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl_search.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_search.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_search.lo `test -f 'ldap/servers/plugins/replication/repl_search.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_search.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_search.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_search.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/repl_search.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl_search.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_search.lo `test -f 'ldap/servers/plugins/replication/repl_search.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_search.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_search.lo `test -f 'ldap/servers/plugins/replication/repl_search.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_search.c - - ldap/servers/plugins/replication/libreplication_plugin_la-repl_session_plugin.lo: ldap/servers/plugins/replication/repl_session_plugin.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl_session_plugin.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_session_plugin.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_session_plugin.lo `test -f 'ldap/servers/plugins/replication/repl_session_plugin.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_session_plugin.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_session_plugin.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_session_plugin.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/repl_session_plugin.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl_session_plugin.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl_session_plugin.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_session_plugin.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_session_plugin.lo `test -f 'ldap/servers/plugins/replication/repl_session_plugin.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_session_plugin.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_session_plugin.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl_session_plugin.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/repl_session_plugin.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl_session_plugin.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_session_plugin.lo `test -f 'ldap/servers/plugins/replication/repl_session_plugin.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_session_plugin.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl_session_plugin.lo `test -f 'ldap/servers/plugins/replication/repl_session_plugin.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl_session_plugin.c - - ldap/servers/plugins/replication/libreplication_plugin_la-repl5_agmt.lo: ldap/servers/plugins/replication/repl5_agmt.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl5_agmt.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_agmt.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_agmt.lo `test -f 'ldap/servers/plugins/replication/repl5_agmt.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_agmt.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_agmt.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_agmt.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/repl5_agmt.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl5_agmt.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl5_agmt.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_agmt.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_agmt.lo `test -f 'ldap/servers/plugins/replication/repl5_agmt.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_agmt.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_agmt.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_agmt.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/repl5_agmt.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl5_agmt.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_agmt.lo `test -f 'ldap/servers/plugins/replication/repl5_agmt.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_agmt.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_agmt.lo `test -f 'ldap/servers/plugins/replication/repl5_agmt.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_agmt.c - - ldap/servers/plugins/replication/libreplication_plugin_la-repl5_agmtlist.lo: ldap/servers/plugins/replication/repl5_agmtlist.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl5_agmtlist.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_agmtlist.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_agmtlist.lo `test -f 'ldap/servers/plugins/replication/repl5_agmtlist.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_agmtlist.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_agmtlist.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_agmtlist.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/repl5_agmtlist.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl5_agmtlist.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl5_agmtlist.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_agmtlist.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_agmtlist.lo `test -f 'ldap/servers/plugins/replication/repl5_agmtlist.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_agmtlist.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_agmtlist.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_agmtlist.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/repl5_agmtlist.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl5_agmtlist.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_agmtlist.lo `test -f 'ldap/servers/plugins/replication/repl5_agmtlist.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_agmtlist.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_agmtlist.lo `test -f 'ldap/servers/plugins/replication/repl5_agmtlist.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_agmtlist.c - - ldap/servers/plugins/replication/libreplication_plugin_la-repl5_backoff.lo: ldap/servers/plugins/replication/repl5_backoff.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl5_backoff.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_backoff.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_backoff.lo `test -f 'ldap/servers/plugins/replication/repl5_backoff.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_backoff.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_backoff.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_backoff.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/repl5_backoff.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl5_backoff.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl5_backoff.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_backoff.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_backoff.lo `test -f 'ldap/servers/plugins/replication/repl5_backoff.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_backoff.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_backoff.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_backoff.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/repl5_backoff.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl5_backoff.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_backoff.lo `test -f 'ldap/servers/plugins/replication/repl5_backoff.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_backoff.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_backoff.lo `test -f 'ldap/servers/plugins/replication/repl5_backoff.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_backoff.c - - ldap/servers/plugins/replication/libreplication_plugin_la-repl5_connection.lo: ldap/servers/plugins/replication/repl5_connection.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl5_connection.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_connection.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_connection.lo `test -f 'ldap/servers/plugins/replication/repl5_connection.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_connection.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_connection.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_connection.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/repl5_connection.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl5_connection.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl5_connection.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_connection.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_connection.lo `test -f 'ldap/servers/plugins/replication/repl5_connection.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_connection.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_connection.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_connection.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/repl5_connection.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl5_connection.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_connection.lo `test -f 'ldap/servers/plugins/replication/repl5_connection.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_connection.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_connection.lo `test -f 'ldap/servers/plugins/replication/repl5_connection.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_connection.c - - ldap/servers/plugins/replication/libreplication_plugin_la-repl5_inc_protocol.lo: ldap/servers/plugins/replication/repl5_inc_protocol.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl5_inc_protocol.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_inc_protocol.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_inc_protocol.lo `test -f 'ldap/servers/plugins/replication/repl5_inc_protocol.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_inc_protocol.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_inc_protocol.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_inc_protocol.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/repl5_inc_protocol.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl5_inc_protocol.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl5_inc_protocol.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_inc_protocol.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_inc_protocol.lo `test -f 'ldap/servers/plugins/replication/repl5_inc_protocol.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_inc_protocol.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_inc_protocol.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_inc_protocol.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/repl5_inc_protocol.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl5_inc_protocol.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_inc_protocol.lo `test -f 'ldap/servers/plugins/replication/repl5_inc_protocol.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_inc_protocol.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_inc_protocol.lo `test -f 'ldap/servers/plugins/replication/repl5_inc_protocol.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_inc_protocol.c - - ldap/servers/plugins/replication/libreplication_plugin_la-repl5_init.lo: ldap/servers/plugins/replication/repl5_init.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl5_init.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_init.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_init.lo `test -f 'ldap/servers/plugins/replication/repl5_init.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_init.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_init.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_init.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/repl5_init.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl5_init.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl5_init.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_init.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_init.lo `test -f 'ldap/servers/plugins/replication/repl5_init.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_init.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_init.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_init.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/repl5_init.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl5_init.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_init.lo `test -f 'ldap/servers/plugins/replication/repl5_init.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_init.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_init.lo `test -f 'ldap/servers/plugins/replication/repl5_init.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_init.c - - ldap/servers/plugins/replication/libreplication_plugin_la-repl5_mtnode_ext.lo: ldap/servers/plugins/replication/repl5_mtnode_ext.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl5_mtnode_ext.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_mtnode_ext.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_mtnode_ext.lo `test -f 'ldap/servers/plugins/replication/repl5_mtnode_ext.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_mtnode_ext.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_mtnode_ext.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_mtnode_ext.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/repl5_mtnode_ext.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl5_mtnode_ext.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl5_mtnode_ext.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_mtnode_ext.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_mtnode_ext.lo `test -f 'ldap/servers/plugins/replication/repl5_mtnode_ext.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_mtnode_ext.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_mtnode_ext.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_mtnode_ext.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/repl5_mtnode_ext.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl5_mtnode_ext.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_mtnode_ext.lo `test -f 'ldap/servers/plugins/replication/repl5_mtnode_ext.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_mtnode_ext.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_mtnode_ext.lo `test -f 'ldap/servers/plugins/replication/repl5_mtnode_ext.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_mtnode_ext.c - - ldap/servers/plugins/replication/libreplication_plugin_la-repl5_plugins.lo: ldap/servers/plugins/replication/repl5_plugins.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl5_plugins.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_plugins.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_plugins.lo `test -f 'ldap/servers/plugins/replication/repl5_plugins.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_plugins.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_plugins.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_plugins.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/repl5_plugins.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl5_plugins.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl5_plugins.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_plugins.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_plugins.lo `test -f 'ldap/servers/plugins/replication/repl5_plugins.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_plugins.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_plugins.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_plugins.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/repl5_plugins.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl5_plugins.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_plugins.lo `test -f 'ldap/servers/plugins/replication/repl5_plugins.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_plugins.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_plugins.lo `test -f 'ldap/servers/plugins/replication/repl5_plugins.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_plugins.c - - ldap/servers/plugins/replication/libreplication_plugin_la-repl5_protocol.lo: ldap/servers/plugins/replication/repl5_protocol.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl5_protocol.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_protocol.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_protocol.lo `test -f 'ldap/servers/plugins/replication/repl5_protocol.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_protocol.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_protocol.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_protocol.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/repl5_protocol.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl5_protocol.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl5_protocol.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_protocol.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_protocol.lo `test -f 'ldap/servers/plugins/replication/repl5_protocol.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_protocol.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_protocol.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_protocol.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/repl5_protocol.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl5_protocol.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_protocol.lo `test -f 'ldap/servers/plugins/replication/repl5_protocol.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_protocol.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_protocol.lo `test -f 'ldap/servers/plugins/replication/repl5_protocol.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_protocol.c - - ldap/servers/plugins/replication/libreplication_plugin_la-repl5_protocol_util.lo: ldap/servers/plugins/replication/repl5_protocol_util.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl5_protocol_util.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_protocol_util.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_protocol_util.lo `test -f 'ldap/servers/plugins/replication/repl5_protocol_util.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_protocol_util.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_protocol_util.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_protocol_util.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/repl5_protocol_util.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl5_protocol_util.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl5_protocol_util.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_protocol_util.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_protocol_util.lo `test -f 'ldap/servers/plugins/replication/repl5_protocol_util.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_protocol_util.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_protocol_util.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_protocol_util.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/repl5_protocol_util.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl5_protocol_util.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_protocol_util.lo `test -f 'ldap/servers/plugins/replication/repl5_protocol_util.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_protocol_util.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_protocol_util.lo `test -f 'ldap/servers/plugins/replication/repl5_protocol_util.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_protocol_util.c - - ldap/servers/plugins/replication/libreplication_plugin_la-repl5_replica.lo: ldap/servers/plugins/replication/repl5_replica.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl5_replica.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_replica.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_replica.lo `test -f 'ldap/servers/plugins/replication/repl5_replica.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_replica.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_replica.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_replica.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/repl5_replica.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl5_replica.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl5_replica.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_replica.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_replica.lo `test -f 'ldap/servers/plugins/replication/repl5_replica.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_replica.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_replica.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_replica.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/repl5_replica.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl5_replica.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_replica.lo `test -f 'ldap/servers/plugins/replication/repl5_replica.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_replica.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_replica.lo `test -f 'ldap/servers/plugins/replication/repl5_replica.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_replica.c - - ldap/servers/plugins/replication/libreplication_plugin_la-repl5_replica_config.lo: ldap/servers/plugins/replication/repl5_replica_config.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl5_replica_config.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_replica_config.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_replica_config.lo `test -f 'ldap/servers/plugins/replication/repl5_replica_config.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_replica_config.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_replica_config.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_replica_config.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/repl5_replica_config.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl5_replica_config.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl5_replica_config.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_replica_config.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_replica_config.lo `test -f 'ldap/servers/plugins/replication/repl5_replica_config.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_replica_config.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_replica_config.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_replica_config.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/repl5_replica_config.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl5_replica_config.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_replica_config.lo `test -f 'ldap/servers/plugins/replication/repl5_replica_config.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_replica_config.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_replica_config.lo `test -f 'ldap/servers/plugins/replication/repl5_replica_config.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_replica_config.c - - ldap/servers/plugins/replication/libreplication_plugin_la-repl5_replica_dnhash.lo: ldap/servers/plugins/replication/repl5_replica_dnhash.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl5_replica_dnhash.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_replica_dnhash.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_replica_dnhash.lo `test -f 'ldap/servers/plugins/replication/repl5_replica_dnhash.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_replica_dnhash.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_replica_dnhash.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_replica_dnhash.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/repl5_replica_dnhash.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl5_replica_dnhash.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl5_replica_dnhash.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_replica_dnhash.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_replica_dnhash.lo `test -f 'ldap/servers/plugins/replication/repl5_replica_dnhash.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_replica_dnhash.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_replica_dnhash.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_replica_dnhash.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/repl5_replica_dnhash.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl5_replica_dnhash.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_replica_dnhash.lo `test -f 'ldap/servers/plugins/replication/repl5_replica_dnhash.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_replica_dnhash.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_replica_dnhash.lo `test -f 'ldap/servers/plugins/replication/repl5_replica_dnhash.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_replica_dnhash.c - - ldap/servers/plugins/replication/libreplication_plugin_la-repl5_replica_hash.lo: ldap/servers/plugins/replication/repl5_replica_hash.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl5_replica_hash.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_replica_hash.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_replica_hash.lo `test -f 'ldap/servers/plugins/replication/repl5_replica_hash.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_replica_hash.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_replica_hash.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_replica_hash.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/repl5_replica_hash.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl5_replica_hash.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl5_replica_hash.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_replica_hash.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_replica_hash.lo `test -f 'ldap/servers/plugins/replication/repl5_replica_hash.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_replica_hash.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_replica_hash.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_replica_hash.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/repl5_replica_hash.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl5_replica_hash.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_replica_hash.lo `test -f 'ldap/servers/plugins/replication/repl5_replica_hash.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_replica_hash.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_replica_hash.lo `test -f 'ldap/servers/plugins/replication/repl5_replica_hash.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_replica_hash.c - - ldap/servers/plugins/replication/libreplication_plugin_la-repl5_ruv.lo: ldap/servers/plugins/replication/repl5_ruv.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl5_ruv.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_ruv.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_ruv.lo `test -f 'ldap/servers/plugins/replication/repl5_ruv.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_ruv.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_ruv.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_ruv.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/repl5_ruv.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl5_ruv.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl5_ruv.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_ruv.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_ruv.lo `test -f 'ldap/servers/plugins/replication/repl5_ruv.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_ruv.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_ruv.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_ruv.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/repl5_ruv.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl5_ruv.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_ruv.lo `test -f 'ldap/servers/plugins/replication/repl5_ruv.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_ruv.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_ruv.lo `test -f 'ldap/servers/plugins/replication/repl5_ruv.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_ruv.c - - ldap/servers/plugins/replication/libreplication_plugin_la-repl5_schedule.lo: ldap/servers/plugins/replication/repl5_schedule.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl5_schedule.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_schedule.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_schedule.lo `test -f 'ldap/servers/plugins/replication/repl5_schedule.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_schedule.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_schedule.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_schedule.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/repl5_schedule.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl5_schedule.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl5_schedule.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_schedule.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_schedule.lo `test -f 'ldap/servers/plugins/replication/repl5_schedule.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_schedule.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_schedule.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_schedule.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/repl5_schedule.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl5_schedule.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_schedule.lo `test -f 'ldap/servers/plugins/replication/repl5_schedule.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_schedule.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_schedule.lo `test -f 'ldap/servers/plugins/replication/repl5_schedule.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_schedule.c - - ldap/servers/plugins/replication/libreplication_plugin_la-repl5_tot_protocol.lo: ldap/servers/plugins/replication/repl5_tot_protocol.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl5_tot_protocol.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_tot_protocol.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_tot_protocol.lo `test -f 'ldap/servers/plugins/replication/repl5_tot_protocol.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_tot_protocol.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_tot_protocol.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_tot_protocol.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/repl5_tot_protocol.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl5_tot_protocol.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl5_tot_protocol.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_tot_protocol.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_tot_protocol.lo `test -f 'ldap/servers/plugins/replication/repl5_tot_protocol.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_tot_protocol.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_tot_protocol.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_tot_protocol.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/repl5_tot_protocol.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl5_tot_protocol.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_tot_protocol.lo `test -f 'ldap/servers/plugins/replication/repl5_tot_protocol.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_tot_protocol.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_tot_protocol.lo `test -f 'ldap/servers/plugins/replication/repl5_tot_protocol.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_tot_protocol.c - - ldap/servers/plugins/replication/libreplication_plugin_la-repl5_total.lo: ldap/servers/plugins/replication/repl5_total.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl5_total.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_total.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_total.lo `test -f 'ldap/servers/plugins/replication/repl5_total.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_total.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_total.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_total.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/repl5_total.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl5_total.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl5_total.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_total.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_total.lo `test -f 'ldap/servers/plugins/replication/repl5_total.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_total.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_total.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_total.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/repl5_total.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl5_total.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_total.lo `test -f 'ldap/servers/plugins/replication/repl5_total.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_total.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_total.lo `test -f 'ldap/servers/plugins/replication/repl5_total.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_total.c - - ldap/servers/plugins/replication/libreplication_plugin_la-repl5_updatedn_list.lo: ldap/servers/plugins/replication/repl5_updatedn_list.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl5_updatedn_list.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_updatedn_list.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_updatedn_list.lo `test -f 'ldap/servers/plugins/replication/repl5_updatedn_list.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_updatedn_list.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_updatedn_list.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_updatedn_list.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/repl5_updatedn_list.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl5_updatedn_list.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-repl5_updatedn_list.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_updatedn_list.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_updatedn_list.lo `test -f 'ldap/servers/plugins/replication/repl5_updatedn_list.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_updatedn_list.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_updatedn_list.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-repl5_updatedn_list.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/repl5_updatedn_list.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-repl5_updatedn_list.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_updatedn_list.lo `test -f 'ldap/servers/plugins/replication/repl5_updatedn_list.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_updatedn_list.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-repl5_updatedn_list.lo `test -f 'ldap/servers/plugins/replication/repl5_updatedn_list.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/repl5_updatedn_list.c - - ldap/servers/plugins/replication/libreplication_plugin_la-replutil.lo: ldap/servers/plugins/replication/replutil.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-replutil.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-replutil.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-replutil.lo `test -f 'ldap/servers/plugins/replication/replutil.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/replutil.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-replutil.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-replutil.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/replutil.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-replutil.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-replutil.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-replutil.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-replutil.lo `test -f 'ldap/servers/plugins/replication/replutil.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/replutil.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-replutil.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-replutil.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/replutil.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-replutil.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-replutil.lo `test -f 'ldap/servers/plugins/replication/replutil.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/replutil.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-replutil.lo `test -f 'ldap/servers/plugins/replication/replutil.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/replutil.c - - ldap/servers/plugins/replication/libreplication_plugin_la-urp.lo: ldap/servers/plugins/replication/urp.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-urp.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-urp.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-urp.lo `test -f 'ldap/servers/plugins/replication/urp.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/urp.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-urp.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-urp.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/urp.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-urp.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-urp.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-urp.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-urp.lo `test -f 'ldap/servers/plugins/replication/urp.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/urp.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-urp.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-urp.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/urp.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-urp.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-urp.lo `test -f 'ldap/servers/plugins/replication/urp.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/urp.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-urp.lo `test -f 'ldap/servers/plugins/replication/urp.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/urp.c - - ldap/servers/plugins/replication/libreplication_plugin_la-urp_glue.lo: ldap/servers/plugins/replication/urp_glue.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-urp_glue.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-urp_glue.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-urp_glue.lo `test -f 'ldap/servers/plugins/replication/urp_glue.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/urp_glue.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-urp_glue.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-urp_glue.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/urp_glue.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-urp_glue.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-urp_glue.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-urp_glue.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-urp_glue.lo `test -f 'ldap/servers/plugins/replication/urp_glue.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/urp_glue.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-urp_glue.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-urp_glue.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/urp_glue.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-urp_glue.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-urp_glue.lo `test -f 'ldap/servers/plugins/replication/urp_glue.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/urp_glue.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-urp_glue.lo `test -f 'ldap/servers/plugins/replication/urp_glue.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/urp_glue.c - - ldap/servers/plugins/replication/libreplication_plugin_la-urp_tombstone.lo: ldap/servers/plugins/replication/urp_tombstone.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-urp_tombstone.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-urp_tombstone.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-urp_tombstone.lo `test -f 'ldap/servers/plugins/replication/urp_tombstone.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/urp_tombstone.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-urp_tombstone.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-urp_tombstone.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/urp_tombstone.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-urp_tombstone.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-urp_tombstone.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-urp_tombstone.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-urp_tombstone.lo `test -f 'ldap/servers/plugins/replication/urp_tombstone.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/urp_tombstone.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-urp_tombstone.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-urp_tombstone.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/urp_tombstone.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-urp_tombstone.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-urp_tombstone.lo `test -f 'ldap/servers/plugins/replication/urp_tombstone.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/urp_tombstone.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-urp_tombstone.lo `test -f 'ldap/servers/plugins/replication/urp_tombstone.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/urp_tombstone.c - - ldap/servers/plugins/replication/libreplication_plugin_la-windows_connection.lo: ldap/servers/plugins/replication/windows_connection.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-windows_connection.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-windows_connection.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-windows_connection.lo `test -f 'ldap/servers/plugins/replication/windows_connection.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/windows_connection.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-windows_connection.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-windows_connection.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/windows_connection.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-windows_connection.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-windows_connection.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-windows_connection.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-windows_connection.lo `test -f 'ldap/servers/plugins/replication/windows_connection.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/windows_connection.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-windows_connection.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-windows_connection.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/windows_connection.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-windows_connection.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-windows_connection.lo `test -f 'ldap/servers/plugins/replication/windows_connection.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/windows_connection.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-windows_connection.lo `test -f 'ldap/servers/plugins/replication/windows_connection.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/windows_connection.c - - ldap/servers/plugins/replication/libreplication_plugin_la-windows_inc_protocol.lo: ldap/servers/plugins/replication/windows_inc_protocol.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-windows_inc_protocol.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-windows_inc_protocol.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-windows_inc_protocol.lo `test -f 'ldap/servers/plugins/replication/windows_inc_protocol.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/windows_inc_protocol.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-windows_inc_protocol.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-windows_inc_protocol.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/windows_inc_protocol.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-windows_inc_protocol.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-windows_inc_protocol.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-windows_inc_protocol.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-windows_inc_protocol.lo `test -f 'ldap/servers/plugins/replication/windows_inc_protocol.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/windows_inc_protocol.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-windows_inc_protocol.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-windows_inc_protocol.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/windows_inc_protocol.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-windows_inc_protocol.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-windows_inc_protocol.lo `test -f 'ldap/servers/plugins/replication/windows_inc_protocol.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/windows_inc_protocol.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-windows_inc_protocol.lo `test -f 'ldap/servers/plugins/replication/windows_inc_protocol.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/windows_inc_protocol.c - - ldap/servers/plugins/replication/libreplication_plugin_la-windows_private.lo: ldap/servers/plugins/replication/windows_private.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-windows_private.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-windows_private.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-windows_private.lo `test -f 'ldap/servers/plugins/replication/windows_private.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/windows_private.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-windows_private.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-windows_private.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/windows_private.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-windows_private.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-windows_private.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-windows_private.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-windows_private.lo `test -f 'ldap/servers/plugins/replication/windows_private.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/windows_private.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-windows_private.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-windows_private.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/windows_private.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-windows_private.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-windows_private.lo `test -f 'ldap/servers/plugins/replication/windows_private.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/windows_private.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-windows_private.lo `test -f 'ldap/servers/plugins/replication/windows_private.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/windows_private.c - - ldap/servers/plugins/replication/libreplication_plugin_la-windows_protocol_util.lo: ldap/servers/plugins/replication/windows_protocol_util.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-windows_protocol_util.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-windows_protocol_util.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-windows_protocol_util.lo `test -f 'ldap/servers/plugins/replication/windows_protocol_util.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/windows_protocol_util.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-windows_protocol_util.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-windows_protocol_util.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/windows_protocol_util.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-windows_protocol_util.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-windows_protocol_util.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-windows_protocol_util.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-windows_protocol_util.lo `test -f 'ldap/servers/plugins/replication/windows_protocol_util.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/windows_protocol_util.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-windows_protocol_util.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-windows_protocol_util.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/windows_protocol_util.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-windows_protocol_util.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-windows_protocol_util.lo `test -f 'ldap/servers/plugins/replication/windows_protocol_util.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/windows_protocol_util.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-windows_protocol_util.lo `test -f 'ldap/servers/plugins/replication/windows_protocol_util.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/windows_protocol_util.c - - ldap/servers/plugins/replication/libreplication_plugin_la-windows_tot_protocol.lo: ldap/servers/plugins/replication/windows_tot_protocol.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-windows_tot_protocol.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-windows_tot_protocol.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-windows_tot_protocol.lo `test -f 'ldap/servers/plugins/replication/windows_tot_protocol.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/windows_tot_protocol.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-windows_tot_protocol.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-windows_tot_protocol.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/replication/windows_tot_protocol.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-windows_tot_protocol.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/replication/libreplication_plugin_la-windows_tot_protocol.lo -MD -MP -MF ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-windows_tot_protocol.Tpo -c -o ldap/servers/plugins/replication/libreplication_plugin_la-windows_tot_protocol.lo `test -f 'ldap/servers/plugins/replication/windows_tot_protocol.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/windows_tot_protocol.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-windows_tot_protocol.Tpo ldap/servers/plugins/replication/$(DEPDIR)/libreplication_plugin_la-windows_tot_protocol.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/replication/windows_tot_protocol.c' object='ldap/servers/plugins/replication/libreplication_plugin_la-windows_tot_protocol.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-windows_tot_protocol.lo `test -f 'ldap/servers/plugins/replication/windows_tot_protocol.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/windows_tot_protocol.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libreplication_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/replication/libreplication_plugin_la-windows_tot_protocol.lo `test -f 'ldap/servers/plugins/replication/windows_tot_protocol.c' || echo '$(srcdir)/'`ldap/servers/plugins/replication/windows_tot_protocol.c - - ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl.lo: ldap/servers/plugins/retrocl/retrocl.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libretrocl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl.lo -MD -MP -MF ldap/servers/plugins/retrocl/$(DEPDIR)/libretrocl_plugin_la-retrocl.Tpo -c -o ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl.lo `test -f 'ldap/servers/plugins/retrocl/retrocl.c' || echo '$(srcdir)/'`ldap/servers/plugins/retrocl/retrocl.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/retrocl/$(DEPDIR)/libretrocl_plugin_la-retrocl.Tpo ldap/servers/plugins/retrocl/$(DEPDIR)/libretrocl_plugin_la-retrocl.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/retrocl/retrocl.c' object='ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libretrocl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl.lo -MD -MP -MF ldap/servers/plugins/retrocl/$(DEPDIR)/libretrocl_plugin_la-retrocl.Tpo -c -o ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl.lo `test -f 'ldap/servers/plugins/retrocl/retrocl.c' || echo '$(srcdir)/'`ldap/servers/plugins/retrocl/retrocl.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/retrocl/$(DEPDIR)/libretrocl_plugin_la-retrocl.Tpo ldap/servers/plugins/retrocl/$(DEPDIR)/libretrocl_plugin_la-retrocl.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/retrocl/retrocl.c' object='ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libretrocl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl.lo `test -f 'ldap/servers/plugins/retrocl/retrocl.c' || echo '$(srcdir)/'`ldap/servers/plugins/retrocl/retrocl.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libretrocl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl.lo `test -f 'ldap/servers/plugins/retrocl/retrocl.c' || echo '$(srcdir)/'`ldap/servers/plugins/retrocl/retrocl.c - - ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_cn.lo: ldap/servers/plugins/retrocl/retrocl_cn.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libretrocl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_cn.lo -MD -MP -MF ldap/servers/plugins/retrocl/$(DEPDIR)/libretrocl_plugin_la-retrocl_cn.Tpo -c -o ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_cn.lo `test -f 'ldap/servers/plugins/retrocl/retrocl_cn.c' || echo '$(srcdir)/'`ldap/servers/plugins/retrocl/retrocl_cn.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/retrocl/$(DEPDIR)/libretrocl_plugin_la-retrocl_cn.Tpo ldap/servers/plugins/retrocl/$(DEPDIR)/libretrocl_plugin_la-retrocl_cn.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/retrocl/retrocl_cn.c' object='ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_cn.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libretrocl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_cn.lo -MD -MP -MF ldap/servers/plugins/retrocl/$(DEPDIR)/libretrocl_plugin_la-retrocl_cn.Tpo -c -o ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_cn.lo `test -f 'ldap/servers/plugins/retrocl/retrocl_cn.c' || echo '$(srcdir)/'`ldap/servers/plugins/retrocl/retrocl_cn.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/retrocl/$(DEPDIR)/libretrocl_plugin_la-retrocl_cn.Tpo ldap/servers/plugins/retrocl/$(DEPDIR)/libretrocl_plugin_la-retrocl_cn.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/retrocl/retrocl_cn.c' object='ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_cn.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libretrocl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_cn.lo `test -f 'ldap/servers/plugins/retrocl/retrocl_cn.c' || echo '$(srcdir)/'`ldap/servers/plugins/retrocl/retrocl_cn.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libretrocl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_cn.lo `test -f 'ldap/servers/plugins/retrocl/retrocl_cn.c' || echo '$(srcdir)/'`ldap/servers/plugins/retrocl/retrocl_cn.c - - ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_create.lo: ldap/servers/plugins/retrocl/retrocl_create.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libretrocl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_create.lo -MD -MP -MF ldap/servers/plugins/retrocl/$(DEPDIR)/libretrocl_plugin_la-retrocl_create.Tpo -c -o ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_create.lo `test -f 'ldap/servers/plugins/retrocl/retrocl_create.c' || echo '$(srcdir)/'`ldap/servers/plugins/retrocl/retrocl_create.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/retrocl/$(DEPDIR)/libretrocl_plugin_la-retrocl_create.Tpo ldap/servers/plugins/retrocl/$(DEPDIR)/libretrocl_plugin_la-retrocl_create.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/retrocl/retrocl_create.c' object='ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_create.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libretrocl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_create.lo -MD -MP -MF ldap/servers/plugins/retrocl/$(DEPDIR)/libretrocl_plugin_la-retrocl_create.Tpo -c -o ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_create.lo `test -f 'ldap/servers/plugins/retrocl/retrocl_create.c' || echo '$(srcdir)/'`ldap/servers/plugins/retrocl/retrocl_create.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/retrocl/$(DEPDIR)/libretrocl_plugin_la-retrocl_create.Tpo ldap/servers/plugins/retrocl/$(DEPDIR)/libretrocl_plugin_la-retrocl_create.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/retrocl/retrocl_create.c' object='ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_create.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libretrocl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_create.lo `test -f 'ldap/servers/plugins/retrocl/retrocl_create.c' || echo '$(srcdir)/'`ldap/servers/plugins/retrocl/retrocl_create.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libretrocl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_create.lo `test -f 'ldap/servers/plugins/retrocl/retrocl_create.c' || echo '$(srcdir)/'`ldap/servers/plugins/retrocl/retrocl_create.c - - ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_po.lo: ldap/servers/plugins/retrocl/retrocl_po.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libretrocl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_po.lo -MD -MP -MF ldap/servers/plugins/retrocl/$(DEPDIR)/libretrocl_plugin_la-retrocl_po.Tpo -c -o ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_po.lo `test -f 'ldap/servers/plugins/retrocl/retrocl_po.c' || echo '$(srcdir)/'`ldap/servers/plugins/retrocl/retrocl_po.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/retrocl/$(DEPDIR)/libretrocl_plugin_la-retrocl_po.Tpo ldap/servers/plugins/retrocl/$(DEPDIR)/libretrocl_plugin_la-retrocl_po.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/retrocl/retrocl_po.c' object='ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_po.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libretrocl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_po.lo -MD -MP -MF ldap/servers/plugins/retrocl/$(DEPDIR)/libretrocl_plugin_la-retrocl_po.Tpo -c -o ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_po.lo `test -f 'ldap/servers/plugins/retrocl/retrocl_po.c' || echo '$(srcdir)/'`ldap/servers/plugins/retrocl/retrocl_po.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/retrocl/$(DEPDIR)/libretrocl_plugin_la-retrocl_po.Tpo ldap/servers/plugins/retrocl/$(DEPDIR)/libretrocl_plugin_la-retrocl_po.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/retrocl/retrocl_po.c' object='ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_po.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libretrocl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_po.lo `test -f 'ldap/servers/plugins/retrocl/retrocl_po.c' || echo '$(srcdir)/'`ldap/servers/plugins/retrocl/retrocl_po.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libretrocl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_po.lo `test -f 'ldap/servers/plugins/retrocl/retrocl_po.c' || echo '$(srcdir)/'`ldap/servers/plugins/retrocl/retrocl_po.c - - ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_rootdse.lo: ldap/servers/plugins/retrocl/retrocl_rootdse.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libretrocl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_rootdse.lo -MD -MP -MF ldap/servers/plugins/retrocl/$(DEPDIR)/libretrocl_plugin_la-retrocl_rootdse.Tpo -c -o ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_rootdse.lo `test -f 'ldap/servers/plugins/retrocl/retrocl_rootdse.c' || echo '$(srcdir)/'`ldap/servers/plugins/retrocl/retrocl_rootdse.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/retrocl/$(DEPDIR)/libretrocl_plugin_la-retrocl_rootdse.Tpo ldap/servers/plugins/retrocl/$(DEPDIR)/libretrocl_plugin_la-retrocl_rootdse.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/retrocl/retrocl_rootdse.c' object='ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_rootdse.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libretrocl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_rootdse.lo -MD -MP -MF ldap/servers/plugins/retrocl/$(DEPDIR)/libretrocl_plugin_la-retrocl_rootdse.Tpo -c -o ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_rootdse.lo `test -f 'ldap/servers/plugins/retrocl/retrocl_rootdse.c' || echo '$(srcdir)/'`ldap/servers/plugins/retrocl/retrocl_rootdse.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/retrocl/$(DEPDIR)/libretrocl_plugin_la-retrocl_rootdse.Tpo ldap/servers/plugins/retrocl/$(DEPDIR)/libretrocl_plugin_la-retrocl_rootdse.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/retrocl/retrocl_rootdse.c' object='ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_rootdse.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libretrocl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_rootdse.lo `test -f 'ldap/servers/plugins/retrocl/retrocl_rootdse.c' || echo '$(srcdir)/'`ldap/servers/plugins/retrocl/retrocl_rootdse.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libretrocl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_rootdse.lo `test -f 'ldap/servers/plugins/retrocl/retrocl_rootdse.c' || echo '$(srcdir)/'`ldap/servers/plugins/retrocl/retrocl_rootdse.c - - ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_trim.lo: ldap/servers/plugins/retrocl/retrocl_trim.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libretrocl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_trim.lo -MD -MP -MF ldap/servers/plugins/retrocl/$(DEPDIR)/libretrocl_plugin_la-retrocl_trim.Tpo -c -o ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_trim.lo `test -f 'ldap/servers/plugins/retrocl/retrocl_trim.c' || echo '$(srcdir)/'`ldap/servers/plugins/retrocl/retrocl_trim.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/retrocl/$(DEPDIR)/libretrocl_plugin_la-retrocl_trim.Tpo ldap/servers/plugins/retrocl/$(DEPDIR)/libretrocl_plugin_la-retrocl_trim.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/retrocl/retrocl_trim.c' object='ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_trim.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libretrocl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_trim.lo -MD -MP -MF ldap/servers/plugins/retrocl/$(DEPDIR)/libretrocl_plugin_la-retrocl_trim.Tpo -c -o ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_trim.lo `test -f 'ldap/servers/plugins/retrocl/retrocl_trim.c' || echo '$(srcdir)/'`ldap/servers/plugins/retrocl/retrocl_trim.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/retrocl/$(DEPDIR)/libretrocl_plugin_la-retrocl_trim.Tpo ldap/servers/plugins/retrocl/$(DEPDIR)/libretrocl_plugin_la-retrocl_trim.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/retrocl/retrocl_trim.c' object='ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_trim.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libretrocl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_trim.lo `test -f 'ldap/servers/plugins/retrocl/retrocl_trim.c' || echo '$(srcdir)/'`ldap/servers/plugins/retrocl/retrocl_trim.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libretrocl_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_trim.lo `test -f 'ldap/servers/plugins/retrocl/retrocl_trim.c' || echo '$(srcdir)/'`ldap/servers/plugins/retrocl/retrocl_trim.c - - ldap/servers/plugins/roles/libroles_plugin_la-roles_cache.lo: ldap/servers/plugins/roles/roles_cache.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libroles_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/roles/libroles_plugin_la-roles_cache.lo -MD -MP -MF ldap/servers/plugins/roles/$(DEPDIR)/libroles_plugin_la-roles_cache.Tpo -c -o ldap/servers/plugins/roles/libroles_plugin_la-roles_cache.lo `test -f 'ldap/servers/plugins/roles/roles_cache.c' || echo '$(srcdir)/'`ldap/servers/plugins/roles/roles_cache.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/roles/$(DEPDIR)/libroles_plugin_la-roles_cache.Tpo ldap/servers/plugins/roles/$(DEPDIR)/libroles_plugin_la-roles_cache.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/roles/roles_cache.c' object='ldap/servers/plugins/roles/libroles_plugin_la-roles_cache.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libroles_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/roles/libroles_plugin_la-roles_cache.lo -MD -MP -MF ldap/servers/plugins/roles/$(DEPDIR)/libroles_plugin_la-roles_cache.Tpo -c -o ldap/servers/plugins/roles/libroles_plugin_la-roles_cache.lo `test -f 'ldap/servers/plugins/roles/roles_cache.c' || echo '$(srcdir)/'`ldap/servers/plugins/roles/roles_cache.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/roles/$(DEPDIR)/libroles_plugin_la-roles_cache.Tpo ldap/servers/plugins/roles/$(DEPDIR)/libroles_plugin_la-roles_cache.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/roles/roles_cache.c' object='ldap/servers/plugins/roles/libroles_plugin_la-roles_cache.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libroles_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/roles/libroles_plugin_la-roles_cache.lo `test -f 'ldap/servers/plugins/roles/roles_cache.c' || echo '$(srcdir)/'`ldap/servers/plugins/roles/roles_cache.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libroles_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/roles/libroles_plugin_la-roles_cache.lo `test -f 'ldap/servers/plugins/roles/roles_cache.c' || echo '$(srcdir)/'`ldap/servers/plugins/roles/roles_cache.c - - ldap/servers/plugins/roles/libroles_plugin_la-roles_plugin.lo: ldap/servers/plugins/roles/roles_plugin.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libroles_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/roles/libroles_plugin_la-roles_plugin.lo -MD -MP -MF ldap/servers/plugins/roles/$(DEPDIR)/libroles_plugin_la-roles_plugin.Tpo -c -o ldap/servers/plugins/roles/libroles_plugin_la-roles_plugin.lo `test -f 'ldap/servers/plugins/roles/roles_plugin.c' || echo '$(srcdir)/'`ldap/servers/plugins/roles/roles_plugin.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/roles/$(DEPDIR)/libroles_plugin_la-roles_plugin.Tpo ldap/servers/plugins/roles/$(DEPDIR)/libroles_plugin_la-roles_plugin.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/roles/roles_plugin.c' object='ldap/servers/plugins/roles/libroles_plugin_la-roles_plugin.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libroles_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/roles/libroles_plugin_la-roles_plugin.lo -MD -MP -MF ldap/servers/plugins/roles/$(DEPDIR)/libroles_plugin_la-roles_plugin.Tpo -c -o ldap/servers/plugins/roles/libroles_plugin_la-roles_plugin.lo `test -f 'ldap/servers/plugins/roles/roles_plugin.c' || echo '$(srcdir)/'`ldap/servers/plugins/roles/roles_plugin.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/roles/$(DEPDIR)/libroles_plugin_la-roles_plugin.Tpo ldap/servers/plugins/roles/$(DEPDIR)/libroles_plugin_la-roles_plugin.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/roles/roles_plugin.c' object='ldap/servers/plugins/roles/libroles_plugin_la-roles_plugin.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libroles_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/roles/libroles_plugin_la-roles_plugin.lo `test -f 'ldap/servers/plugins/roles/roles_plugin.c' || echo '$(srcdir)/'`ldap/servers/plugins/roles/roles_plugin.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libroles_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/roles/libroles_plugin_la-roles_plugin.lo `test -f 'ldap/servers/plugins/roles/roles_plugin.c' || echo '$(srcdir)/'`ldap/servers/plugins/roles/roles_plugin.c - - ldap/servers/plugins/rootdn_access/librootdn_access_plugin_la-rootdn_access.lo: ldap/servers/plugins/rootdn_access/rootdn_access.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(librootdn_access_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/rootdn_access/librootdn_access_plugin_la-rootdn_access.lo -MD -MP -MF ldap/servers/plugins/rootdn_access/$(DEPDIR)/librootdn_access_plugin_la-rootdn_access.Tpo -c -o ldap/servers/plugins/rootdn_access/librootdn_access_plugin_la-rootdn_access.lo `test -f 'ldap/servers/plugins/rootdn_access/rootdn_access.c' || echo '$(srcdir)/'`ldap/servers/plugins/rootdn_access/rootdn_access.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/rootdn_access/$(DEPDIR)/librootdn_access_plugin_la-rootdn_access.Tpo ldap/servers/plugins/rootdn_access/$(DEPDIR)/librootdn_access_plugin_la-rootdn_access.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/rootdn_access/rootdn_access.c' object='ldap/servers/plugins/rootdn_access/librootdn_access_plugin_la-rootdn_access.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(librootdn_access_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/rootdn_access/librootdn_access_plugin_la-rootdn_access.lo -MD -MP -MF ldap/servers/plugins/rootdn_access/$(DEPDIR)/librootdn_access_plugin_la-rootdn_access.Tpo -c -o ldap/servers/plugins/rootdn_access/librootdn_access_plugin_la-rootdn_access.lo `test -f 'ldap/servers/plugins/rootdn_access/rootdn_access.c' || echo '$(srcdir)/'`ldap/servers/plugins/rootdn_access/rootdn_access.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/rootdn_access/$(DEPDIR)/librootdn_access_plugin_la-rootdn_access.Tpo ldap/servers/plugins/rootdn_access/$(DEPDIR)/librootdn_access_plugin_la-rootdn_access.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/rootdn_access/rootdn_access.c' object='ldap/servers/plugins/rootdn_access/librootdn_access_plugin_la-rootdn_access.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(librootdn_access_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/rootdn_access/librootdn_access_plugin_la-rootdn_access.lo `test -f 'ldap/servers/plugins/rootdn_access/rootdn_access.c' || echo '$(srcdir)/'`ldap/servers/plugins/rootdn_access/rootdn_access.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(librootdn_access_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/rootdn_access/librootdn_access_plugin_la-rootdn_access.lo `test -f 'ldap/servers/plugins/rootdn_access/rootdn_access.c' || echo '$(srcdir)/'`ldap/servers/plugins/rootdn_access/rootdn_access.c - - ldap/servers/plugins/schema_reload/libschemareload_plugin_la-schema_reload.lo: ldap/servers/plugins/schema_reload/schema_reload.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libschemareload_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/schema_reload/libschemareload_plugin_la-schema_reload.lo -MD -MP -MF ldap/servers/plugins/schema_reload/$(DEPDIR)/libschemareload_plugin_la-schema_reload.Tpo -c -o ldap/servers/plugins/schema_reload/libschemareload_plugin_la-schema_reload.lo `test -f 'ldap/servers/plugins/schema_reload/schema_reload.c' || echo '$(srcdir)/'`ldap/servers/plugins/schema_reload/schema_reload.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/schema_reload/$(DEPDIR)/libschemareload_plugin_la-schema_reload.Tpo ldap/servers/plugins/schema_reload/$(DEPDIR)/libschemareload_plugin_la-schema_reload.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/schema_reload/schema_reload.c' object='ldap/servers/plugins/schema_reload/libschemareload_plugin_la-schema_reload.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libschemareload_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/schema_reload/libschemareload_plugin_la-schema_reload.lo -MD -MP -MF ldap/servers/plugins/schema_reload/$(DEPDIR)/libschemareload_plugin_la-schema_reload.Tpo -c -o ldap/servers/plugins/schema_reload/libschemareload_plugin_la-schema_reload.lo `test -f 'ldap/servers/plugins/schema_reload/schema_reload.c' || echo '$(srcdir)/'`ldap/servers/plugins/schema_reload/schema_reload.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/schema_reload/$(DEPDIR)/libschemareload_plugin_la-schema_reload.Tpo ldap/servers/plugins/schema_reload/$(DEPDIR)/libschemareload_plugin_la-schema_reload.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/schema_reload/schema_reload.c' object='ldap/servers/plugins/schema_reload/libschemareload_plugin_la-schema_reload.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libschemareload_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/schema_reload/libschemareload_plugin_la-schema_reload.lo `test -f 'ldap/servers/plugins/schema_reload/schema_reload.c' || echo '$(srcdir)/'`ldap/servers/plugins/schema_reload/schema_reload.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libschemareload_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/schema_reload/libschemareload_plugin_la-schema_reload.lo `test -f 'ldap/servers/plugins/schema_reload/schema_reload.c' || echo '$(srcdir)/'`ldap/servers/plugins/schema_reload/schema_reload.c - - ldap/servers/slapd/libslapd_la-add.lo: ldap/servers/slapd/add.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-add.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-add.Tpo -c -o ldap/servers/slapd/libslapd_la-add.lo `test -f 'ldap/servers/slapd/add.c' || echo '$(srcdir)/'`ldap/servers/slapd/add.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-add.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-add.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/add.c' object='ldap/servers/slapd/libslapd_la-add.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-add.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-add.Tpo -c -o ldap/servers/slapd/libslapd_la-add.lo `test -f 'ldap/servers/slapd/add.c' || echo '$(srcdir)/'`ldap/servers/slapd/add.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-add.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-add.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/add.c' object='ldap/servers/slapd/libslapd_la-add.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-add.lo `test -f 'ldap/servers/slapd/add.c' || echo '$(srcdir)/'`ldap/servers/slapd/add.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-add.lo `test -f 'ldap/servers/slapd/add.c' || echo '$(srcdir)/'`ldap/servers/slapd/add.c - - ldap/servers/slapd/libslapd_la-agtmmap.lo: ldap/servers/slapd/agtmmap.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-agtmmap.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-agtmmap.Tpo -c -o ldap/servers/slapd/libslapd_la-agtmmap.lo `test -f 'ldap/servers/slapd/agtmmap.c' || echo '$(srcdir)/'`ldap/servers/slapd/agtmmap.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-agtmmap.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-agtmmap.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/agtmmap.c' object='ldap/servers/slapd/libslapd_la-agtmmap.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-agtmmap.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-agtmmap.Tpo -c -o ldap/servers/slapd/libslapd_la-agtmmap.lo `test -f 'ldap/servers/slapd/agtmmap.c' || echo '$(srcdir)/'`ldap/servers/slapd/agtmmap.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-agtmmap.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-agtmmap.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/agtmmap.c' object='ldap/servers/slapd/libslapd_la-agtmmap.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-agtmmap.lo `test -f 'ldap/servers/slapd/agtmmap.c' || echo '$(srcdir)/'`ldap/servers/slapd/agtmmap.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-agtmmap.lo `test -f 'ldap/servers/slapd/agtmmap.c' || echo '$(srcdir)/'`ldap/servers/slapd/agtmmap.c - - ldap/servers/slapd/libslapd_la-apibroker.lo: ldap/servers/slapd/apibroker.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-apibroker.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-apibroker.Tpo -c -o ldap/servers/slapd/libslapd_la-apibroker.lo `test -f 'ldap/servers/slapd/apibroker.c' || echo '$(srcdir)/'`ldap/servers/slapd/apibroker.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-apibroker.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-apibroker.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/apibroker.c' object='ldap/servers/slapd/libslapd_la-apibroker.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-apibroker.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-apibroker.Tpo -c -o ldap/servers/slapd/libslapd_la-apibroker.lo `test -f 'ldap/servers/slapd/apibroker.c' || echo '$(srcdir)/'`ldap/servers/slapd/apibroker.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-apibroker.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-apibroker.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/apibroker.c' object='ldap/servers/slapd/libslapd_la-apibroker.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-apibroker.lo `test -f 'ldap/servers/slapd/apibroker.c' || echo '$(srcdir)/'`ldap/servers/slapd/apibroker.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-apibroker.lo `test -f 'ldap/servers/slapd/apibroker.c' || echo '$(srcdir)/'`ldap/servers/slapd/apibroker.c - - ldap/servers/slapd/libslapd_la-attr.lo: ldap/servers/slapd/attr.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-attr.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-attr.Tpo -c -o ldap/servers/slapd/libslapd_la-attr.lo `test -f 'ldap/servers/slapd/attr.c' || echo '$(srcdir)/'`ldap/servers/slapd/attr.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-attr.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-attr.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/attr.c' object='ldap/servers/slapd/libslapd_la-attr.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-attr.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-attr.Tpo -c -o ldap/servers/slapd/libslapd_la-attr.lo `test -f 'ldap/servers/slapd/attr.c' || echo '$(srcdir)/'`ldap/servers/slapd/attr.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-attr.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-attr.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/attr.c' object='ldap/servers/slapd/libslapd_la-attr.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-attr.lo `test -f 'ldap/servers/slapd/attr.c' || echo '$(srcdir)/'`ldap/servers/slapd/attr.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-attr.lo `test -f 'ldap/servers/slapd/attr.c' || echo '$(srcdir)/'`ldap/servers/slapd/attr.c - - ldap/servers/slapd/libslapd_la-attrlist.lo: ldap/servers/slapd/attrlist.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-attrlist.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-attrlist.Tpo -c -o ldap/servers/slapd/libslapd_la-attrlist.lo `test -f 'ldap/servers/slapd/attrlist.c' || echo '$(srcdir)/'`ldap/servers/slapd/attrlist.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-attrlist.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-attrlist.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/attrlist.c' object='ldap/servers/slapd/libslapd_la-attrlist.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-attrlist.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-attrlist.Tpo -c -o ldap/servers/slapd/libslapd_la-attrlist.lo `test -f 'ldap/servers/slapd/attrlist.c' || echo '$(srcdir)/'`ldap/servers/slapd/attrlist.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-attrlist.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-attrlist.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/attrlist.c' object='ldap/servers/slapd/libslapd_la-attrlist.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-attrlist.lo `test -f 'ldap/servers/slapd/attrlist.c' || echo '$(srcdir)/'`ldap/servers/slapd/attrlist.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-attrlist.lo `test -f 'ldap/servers/slapd/attrlist.c' || echo '$(srcdir)/'`ldap/servers/slapd/attrlist.c - - ldap/servers/slapd/libslapd_la-attrsyntax.lo: ldap/servers/slapd/attrsyntax.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-attrsyntax.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-attrsyntax.Tpo -c -o ldap/servers/slapd/libslapd_la-attrsyntax.lo `test -f 'ldap/servers/slapd/attrsyntax.c' || echo '$(srcdir)/'`ldap/servers/slapd/attrsyntax.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-attrsyntax.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-attrsyntax.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/attrsyntax.c' object='ldap/servers/slapd/libslapd_la-attrsyntax.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-attrsyntax.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-attrsyntax.Tpo -c -o ldap/servers/slapd/libslapd_la-attrsyntax.lo `test -f 'ldap/servers/slapd/attrsyntax.c' || echo '$(srcdir)/'`ldap/servers/slapd/attrsyntax.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-attrsyntax.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-attrsyntax.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/attrsyntax.c' object='ldap/servers/slapd/libslapd_la-attrsyntax.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-attrsyntax.lo `test -f 'ldap/servers/slapd/attrsyntax.c' || echo '$(srcdir)/'`ldap/servers/slapd/attrsyntax.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-attrsyntax.lo `test -f 'ldap/servers/slapd/attrsyntax.c' || echo '$(srcdir)/'`ldap/servers/slapd/attrsyntax.c - - ldap/servers/slapd/libslapd_la-auditlog.lo: ldap/servers/slapd/auditlog.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-auditlog.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-auditlog.Tpo -c -o ldap/servers/slapd/libslapd_la-auditlog.lo `test -f 'ldap/servers/slapd/auditlog.c' || echo '$(srcdir)/'`ldap/servers/slapd/auditlog.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-auditlog.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-auditlog.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/auditlog.c' object='ldap/servers/slapd/libslapd_la-auditlog.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-auditlog.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-auditlog.Tpo -c -o ldap/servers/slapd/libslapd_la-auditlog.lo `test -f 'ldap/servers/slapd/auditlog.c' || echo '$(srcdir)/'`ldap/servers/slapd/auditlog.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-auditlog.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-auditlog.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/auditlog.c' object='ldap/servers/slapd/libslapd_la-auditlog.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-auditlog.lo `test -f 'ldap/servers/slapd/auditlog.c' || echo '$(srcdir)/'`ldap/servers/slapd/auditlog.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-auditlog.lo `test -f 'ldap/servers/slapd/auditlog.c' || echo '$(srcdir)/'`ldap/servers/slapd/auditlog.c - - ldap/servers/slapd/libslapd_la-ava.lo: ldap/servers/slapd/ava.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-ava.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-ava.Tpo -c -o ldap/servers/slapd/libslapd_la-ava.lo `test -f 'ldap/servers/slapd/ava.c' || echo '$(srcdir)/'`ldap/servers/slapd/ava.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-ava.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-ava.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/ava.c' object='ldap/servers/slapd/libslapd_la-ava.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-ava.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-ava.Tpo -c -o ldap/servers/slapd/libslapd_la-ava.lo `test -f 'ldap/servers/slapd/ava.c' || echo '$(srcdir)/'`ldap/servers/slapd/ava.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-ava.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-ava.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/ava.c' object='ldap/servers/slapd/libslapd_la-ava.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-ava.lo `test -f 'ldap/servers/slapd/ava.c' || echo '$(srcdir)/'`ldap/servers/slapd/ava.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-ava.lo `test -f 'ldap/servers/slapd/ava.c' || echo '$(srcdir)/'`ldap/servers/slapd/ava.c - - ldap/servers/slapd/libslapd_la-backend.lo: ldap/servers/slapd/backend.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-backend.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-backend.Tpo -c -o ldap/servers/slapd/libslapd_la-backend.lo `test -f 'ldap/servers/slapd/backend.c' || echo '$(srcdir)/'`ldap/servers/slapd/backend.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-backend.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-backend.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/backend.c' object='ldap/servers/slapd/libslapd_la-backend.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-backend.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-backend.Tpo -c -o ldap/servers/slapd/libslapd_la-backend.lo `test -f 'ldap/servers/slapd/backend.c' || echo '$(srcdir)/'`ldap/servers/slapd/backend.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-backend.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-backend.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/backend.c' object='ldap/servers/slapd/libslapd_la-backend.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-backend.lo `test -f 'ldap/servers/slapd/backend.c' || echo '$(srcdir)/'`ldap/servers/slapd/backend.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-backend.lo `test -f 'ldap/servers/slapd/backend.c' || echo '$(srcdir)/'`ldap/servers/slapd/backend.c - - ldap/servers/slapd/libslapd_la-backend_manager.lo: ldap/servers/slapd/backend_manager.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-backend_manager.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-backend_manager.Tpo -c -o ldap/servers/slapd/libslapd_la-backend_manager.lo `test -f 'ldap/servers/slapd/backend_manager.c' || echo '$(srcdir)/'`ldap/servers/slapd/backend_manager.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-backend_manager.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-backend_manager.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/backend_manager.c' object='ldap/servers/slapd/libslapd_la-backend_manager.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-backend_manager.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-backend_manager.Tpo -c -o ldap/servers/slapd/libslapd_la-backend_manager.lo `test -f 'ldap/servers/slapd/backend_manager.c' || echo '$(srcdir)/'`ldap/servers/slapd/backend_manager.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-backend_manager.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-backend_manager.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/backend_manager.c' object='ldap/servers/slapd/libslapd_la-backend_manager.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-backend_manager.lo `test -f 'ldap/servers/slapd/backend_manager.c' || echo '$(srcdir)/'`ldap/servers/slapd/backend_manager.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-backend_manager.lo `test -f 'ldap/servers/slapd/backend_manager.c' || echo '$(srcdir)/'`ldap/servers/slapd/backend_manager.c - - ldap/servers/slapd/libslapd_la-bitset.lo: ldap/servers/slapd/bitset.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-bitset.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-bitset.Tpo -c -o ldap/servers/slapd/libslapd_la-bitset.lo `test -f 'ldap/servers/slapd/bitset.c' || echo '$(srcdir)/'`ldap/servers/slapd/bitset.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-bitset.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-bitset.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/bitset.c' object='ldap/servers/slapd/libslapd_la-bitset.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-bitset.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-bitset.Tpo -c -o ldap/servers/slapd/libslapd_la-bitset.lo `test -f 'ldap/servers/slapd/bitset.c' || echo '$(srcdir)/'`ldap/servers/slapd/bitset.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-bitset.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-bitset.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/bitset.c' object='ldap/servers/slapd/libslapd_la-bitset.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-bitset.lo `test -f 'ldap/servers/slapd/bitset.c' || echo '$(srcdir)/'`ldap/servers/slapd/bitset.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-bitset.lo `test -f 'ldap/servers/slapd/bitset.c' || echo '$(srcdir)/'`ldap/servers/slapd/bitset.c - - ldap/servers/slapd/libslapd_la-bulk_import.lo: ldap/servers/slapd/bulk_import.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-bulk_import.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-bulk_import.Tpo -c -o ldap/servers/slapd/libslapd_la-bulk_import.lo `test -f 'ldap/servers/slapd/bulk_import.c' || echo '$(srcdir)/'`ldap/servers/slapd/bulk_import.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-bulk_import.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-bulk_import.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/bulk_import.c' object='ldap/servers/slapd/libslapd_la-bulk_import.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-bulk_import.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-bulk_import.Tpo -c -o ldap/servers/slapd/libslapd_la-bulk_import.lo `test -f 'ldap/servers/slapd/bulk_import.c' || echo '$(srcdir)/'`ldap/servers/slapd/bulk_import.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-bulk_import.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-bulk_import.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/bulk_import.c' object='ldap/servers/slapd/libslapd_la-bulk_import.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-bulk_import.lo `test -f 'ldap/servers/slapd/bulk_import.c' || echo '$(srcdir)/'`ldap/servers/slapd/bulk_import.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-bulk_import.lo `test -f 'ldap/servers/slapd/bulk_import.c' || echo '$(srcdir)/'`ldap/servers/slapd/bulk_import.c - - ldap/servers/slapd/libslapd_la-charray.lo: ldap/servers/slapd/charray.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-charray.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-charray.Tpo -c -o ldap/servers/slapd/libslapd_la-charray.lo `test -f 'ldap/servers/slapd/charray.c' || echo '$(srcdir)/'`ldap/servers/slapd/charray.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-charray.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-charray.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/charray.c' object='ldap/servers/slapd/libslapd_la-charray.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-charray.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-charray.Tpo -c -o ldap/servers/slapd/libslapd_la-charray.lo `test -f 'ldap/servers/slapd/charray.c' || echo '$(srcdir)/'`ldap/servers/slapd/charray.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-charray.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-charray.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/charray.c' object='ldap/servers/slapd/libslapd_la-charray.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-charray.lo `test -f 'ldap/servers/slapd/charray.c' || echo '$(srcdir)/'`ldap/servers/slapd/charray.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-charray.lo `test -f 'ldap/servers/slapd/charray.c' || echo '$(srcdir)/'`ldap/servers/slapd/charray.c - - ldap/servers/slapd/libslapd_la-ch_malloc.lo: ldap/servers/slapd/ch_malloc.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-ch_malloc.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-ch_malloc.Tpo -c -o ldap/servers/slapd/libslapd_la-ch_malloc.lo `test -f 'ldap/servers/slapd/ch_malloc.c' || echo '$(srcdir)/'`ldap/servers/slapd/ch_malloc.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-ch_malloc.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-ch_malloc.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/ch_malloc.c' object='ldap/servers/slapd/libslapd_la-ch_malloc.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-ch_malloc.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-ch_malloc.Tpo -c -o ldap/servers/slapd/libslapd_la-ch_malloc.lo `test -f 'ldap/servers/slapd/ch_malloc.c' || echo '$(srcdir)/'`ldap/servers/slapd/ch_malloc.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-ch_malloc.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-ch_malloc.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/ch_malloc.c' object='ldap/servers/slapd/libslapd_la-ch_malloc.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-ch_malloc.lo `test -f 'ldap/servers/slapd/ch_malloc.c' || echo '$(srcdir)/'`ldap/servers/slapd/ch_malloc.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-ch_malloc.lo `test -f 'ldap/servers/slapd/ch_malloc.c' || echo '$(srcdir)/'`ldap/servers/slapd/ch_malloc.c - - ldap/servers/slapd/libslapd_la-computed.lo: ldap/servers/slapd/computed.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-computed.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-computed.Tpo -c -o ldap/servers/slapd/libslapd_la-computed.lo `test -f 'ldap/servers/slapd/computed.c' || echo '$(srcdir)/'`ldap/servers/slapd/computed.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-computed.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-computed.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/computed.c' object='ldap/servers/slapd/libslapd_la-computed.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-computed.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-computed.Tpo -c -o ldap/servers/slapd/libslapd_la-computed.lo `test -f 'ldap/servers/slapd/computed.c' || echo '$(srcdir)/'`ldap/servers/slapd/computed.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-computed.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-computed.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/computed.c' object='ldap/servers/slapd/libslapd_la-computed.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-computed.lo `test -f 'ldap/servers/slapd/computed.c' || echo '$(srcdir)/'`ldap/servers/slapd/computed.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-computed.lo `test -f 'ldap/servers/slapd/computed.c' || echo '$(srcdir)/'`ldap/servers/slapd/computed.c - - ldap/servers/slapd/libslapd_la-control.lo: ldap/servers/slapd/control.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-control.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-control.Tpo -c -o ldap/servers/slapd/libslapd_la-control.lo `test -f 'ldap/servers/slapd/control.c' || echo '$(srcdir)/'`ldap/servers/slapd/control.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-control.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-control.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/control.c' object='ldap/servers/slapd/libslapd_la-control.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-control.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-control.Tpo -c -o ldap/servers/slapd/libslapd_la-control.lo `test -f 'ldap/servers/slapd/control.c' || echo '$(srcdir)/'`ldap/servers/slapd/control.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-control.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-control.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/control.c' object='ldap/servers/slapd/libslapd_la-control.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-control.lo `test -f 'ldap/servers/slapd/control.c' || echo '$(srcdir)/'`ldap/servers/slapd/control.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-control.lo `test -f 'ldap/servers/slapd/control.c' || echo '$(srcdir)/'`ldap/servers/slapd/control.c - - ldap/servers/slapd/libslapd_la-counters.lo: ldap/servers/slapd/counters.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-counters.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-counters.Tpo -c -o ldap/servers/slapd/libslapd_la-counters.lo `test -f 'ldap/servers/slapd/counters.c' || echo '$(srcdir)/'`ldap/servers/slapd/counters.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-counters.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-counters.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/counters.c' object='ldap/servers/slapd/libslapd_la-counters.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-counters.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-counters.Tpo -c -o ldap/servers/slapd/libslapd_la-counters.lo `test -f 'ldap/servers/slapd/counters.c' || echo '$(srcdir)/'`ldap/servers/slapd/counters.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-counters.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-counters.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/counters.c' object='ldap/servers/slapd/libslapd_la-counters.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-counters.lo `test -f 'ldap/servers/slapd/counters.c' || echo '$(srcdir)/'`ldap/servers/slapd/counters.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-counters.lo `test -f 'ldap/servers/slapd/counters.c' || echo '$(srcdir)/'`ldap/servers/slapd/counters.c - - ldap/servers/slapd/libslapd_la-csn.lo: ldap/servers/slapd/csn.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-csn.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-csn.Tpo -c -o ldap/servers/slapd/libslapd_la-csn.lo `test -f 'ldap/servers/slapd/csn.c' || echo '$(srcdir)/'`ldap/servers/slapd/csn.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-csn.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-csn.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/csn.c' object='ldap/servers/slapd/libslapd_la-csn.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-csn.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-csn.Tpo -c -o ldap/servers/slapd/libslapd_la-csn.lo `test -f 'ldap/servers/slapd/csn.c' || echo '$(srcdir)/'`ldap/servers/slapd/csn.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-csn.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-csn.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/csn.c' object='ldap/servers/slapd/libslapd_la-csn.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-csn.lo `test -f 'ldap/servers/slapd/csn.c' || echo '$(srcdir)/'`ldap/servers/slapd/csn.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-csn.lo `test -f 'ldap/servers/slapd/csn.c' || echo '$(srcdir)/'`ldap/servers/slapd/csn.c - - ldap/servers/slapd/libslapd_la-csngen.lo: ldap/servers/slapd/csngen.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-csngen.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-csngen.Tpo -c -o ldap/servers/slapd/libslapd_la-csngen.lo `test -f 'ldap/servers/slapd/csngen.c' || echo '$(srcdir)/'`ldap/servers/slapd/csngen.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-csngen.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-csngen.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/csngen.c' object='ldap/servers/slapd/libslapd_la-csngen.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-csngen.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-csngen.Tpo -c -o ldap/servers/slapd/libslapd_la-csngen.lo `test -f 'ldap/servers/slapd/csngen.c' || echo '$(srcdir)/'`ldap/servers/slapd/csngen.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-csngen.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-csngen.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/csngen.c' object='ldap/servers/slapd/libslapd_la-csngen.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-csngen.lo `test -f 'ldap/servers/slapd/csngen.c' || echo '$(srcdir)/'`ldap/servers/slapd/csngen.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-csngen.lo `test -f 'ldap/servers/slapd/csngen.c' || echo '$(srcdir)/'`ldap/servers/slapd/csngen.c - - ldap/servers/slapd/libslapd_la-csnset.lo: ldap/servers/slapd/csnset.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-csnset.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-csnset.Tpo -c -o ldap/servers/slapd/libslapd_la-csnset.lo `test -f 'ldap/servers/slapd/csnset.c' || echo '$(srcdir)/'`ldap/servers/slapd/csnset.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-csnset.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-csnset.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/csnset.c' object='ldap/servers/slapd/libslapd_la-csnset.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-csnset.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-csnset.Tpo -c -o ldap/servers/slapd/libslapd_la-csnset.lo `test -f 'ldap/servers/slapd/csnset.c' || echo '$(srcdir)/'`ldap/servers/slapd/csnset.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-csnset.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-csnset.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/csnset.c' object='ldap/servers/slapd/libslapd_la-csnset.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-csnset.lo `test -f 'ldap/servers/slapd/csnset.c' || echo '$(srcdir)/'`ldap/servers/slapd/csnset.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-csnset.lo `test -f 'ldap/servers/slapd/csnset.c' || echo '$(srcdir)/'`ldap/servers/slapd/csnset.c - - ldap/servers/slapd/libslapd_la-defbackend.lo: ldap/servers/slapd/defbackend.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-defbackend.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-defbackend.Tpo -c -o ldap/servers/slapd/libslapd_la-defbackend.lo `test -f 'ldap/servers/slapd/defbackend.c' || echo '$(srcdir)/'`ldap/servers/slapd/defbackend.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-defbackend.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-defbackend.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/defbackend.c' object='ldap/servers/slapd/libslapd_la-defbackend.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-defbackend.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-defbackend.Tpo -c -o ldap/servers/slapd/libslapd_la-defbackend.lo `test -f 'ldap/servers/slapd/defbackend.c' || echo '$(srcdir)/'`ldap/servers/slapd/defbackend.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-defbackend.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-defbackend.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/defbackend.c' object='ldap/servers/slapd/libslapd_la-defbackend.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-defbackend.lo `test -f 'ldap/servers/slapd/defbackend.c' || echo '$(srcdir)/'`ldap/servers/slapd/defbackend.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-defbackend.lo `test -f 'ldap/servers/slapd/defbackend.c' || echo '$(srcdir)/'`ldap/servers/slapd/defbackend.c - - ldap/servers/slapd/libslapd_la-delete.lo: ldap/servers/slapd/delete.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-delete.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-delete.Tpo -c -o ldap/servers/slapd/libslapd_la-delete.lo `test -f 'ldap/servers/slapd/delete.c' || echo '$(srcdir)/'`ldap/servers/slapd/delete.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-delete.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-delete.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/delete.c' object='ldap/servers/slapd/libslapd_la-delete.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-delete.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-delete.Tpo -c -o ldap/servers/slapd/libslapd_la-delete.lo `test -f 'ldap/servers/slapd/delete.c' || echo '$(srcdir)/'`ldap/servers/slapd/delete.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-delete.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-delete.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/delete.c' object='ldap/servers/slapd/libslapd_la-delete.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-delete.lo `test -f 'ldap/servers/slapd/delete.c' || echo '$(srcdir)/'`ldap/servers/slapd/delete.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-delete.lo `test -f 'ldap/servers/slapd/delete.c' || echo '$(srcdir)/'`ldap/servers/slapd/delete.c - - ldap/servers/slapd/libslapd_la-dl.lo: ldap/servers/slapd/dl.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-dl.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-dl.Tpo -c -o ldap/servers/slapd/libslapd_la-dl.lo `test -f 'ldap/servers/slapd/dl.c' || echo '$(srcdir)/'`ldap/servers/slapd/dl.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-dl.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-dl.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/dl.c' object='ldap/servers/slapd/libslapd_la-dl.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-dl.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-dl.Tpo -c -o ldap/servers/slapd/libslapd_la-dl.lo `test -f 'ldap/servers/slapd/dl.c' || echo '$(srcdir)/'`ldap/servers/slapd/dl.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-dl.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-dl.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/dl.c' object='ldap/servers/slapd/libslapd_la-dl.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-dl.lo `test -f 'ldap/servers/slapd/dl.c' || echo '$(srcdir)/'`ldap/servers/slapd/dl.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-dl.lo `test -f 'ldap/servers/slapd/dl.c' || echo '$(srcdir)/'`ldap/servers/slapd/dl.c - - ldap/servers/slapd/libslapd_la-dn.lo: ldap/servers/slapd/dn.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-dn.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-dn.Tpo -c -o ldap/servers/slapd/libslapd_la-dn.lo `test -f 'ldap/servers/slapd/dn.c' || echo '$(srcdir)/'`ldap/servers/slapd/dn.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-dn.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-dn.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/dn.c' object='ldap/servers/slapd/libslapd_la-dn.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-dn.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-dn.Tpo -c -o ldap/servers/slapd/libslapd_la-dn.lo `test -f 'ldap/servers/slapd/dn.c' || echo '$(srcdir)/'`ldap/servers/slapd/dn.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-dn.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-dn.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/dn.c' object='ldap/servers/slapd/libslapd_la-dn.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-dn.lo `test -f 'ldap/servers/slapd/dn.c' || echo '$(srcdir)/'`ldap/servers/slapd/dn.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-dn.lo `test -f 'ldap/servers/slapd/dn.c' || echo '$(srcdir)/'`ldap/servers/slapd/dn.c - - ldap/servers/slapd/libslapd_la-dse.lo: ldap/servers/slapd/dse.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-dse.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-dse.Tpo -c -o ldap/servers/slapd/libslapd_la-dse.lo `test -f 'ldap/servers/slapd/dse.c' || echo '$(srcdir)/'`ldap/servers/slapd/dse.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-dse.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-dse.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/dse.c' object='ldap/servers/slapd/libslapd_la-dse.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-dse.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-dse.Tpo -c -o ldap/servers/slapd/libslapd_la-dse.lo `test -f 'ldap/servers/slapd/dse.c' || echo '$(srcdir)/'`ldap/servers/slapd/dse.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-dse.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-dse.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/dse.c' object='ldap/servers/slapd/libslapd_la-dse.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-dse.lo `test -f 'ldap/servers/slapd/dse.c' || echo '$(srcdir)/'`ldap/servers/slapd/dse.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-dse.lo `test -f 'ldap/servers/slapd/dse.c' || echo '$(srcdir)/'`ldap/servers/slapd/dse.c - - ldap/servers/slapd/libslapd_la-dynalib.lo: ldap/servers/slapd/dynalib.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-dynalib.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-dynalib.Tpo -c -o ldap/servers/slapd/libslapd_la-dynalib.lo `test -f 'ldap/servers/slapd/dynalib.c' || echo '$(srcdir)/'`ldap/servers/slapd/dynalib.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-dynalib.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-dynalib.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/dynalib.c' object='ldap/servers/slapd/libslapd_la-dynalib.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-dynalib.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-dynalib.Tpo -c -o ldap/servers/slapd/libslapd_la-dynalib.lo `test -f 'ldap/servers/slapd/dynalib.c' || echo '$(srcdir)/'`ldap/servers/slapd/dynalib.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-dynalib.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-dynalib.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/dynalib.c' object='ldap/servers/slapd/libslapd_la-dynalib.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-dynalib.lo `test -f 'ldap/servers/slapd/dynalib.c' || echo '$(srcdir)/'`ldap/servers/slapd/dynalib.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-dynalib.lo `test -f 'ldap/servers/slapd/dynalib.c' || echo '$(srcdir)/'`ldap/servers/slapd/dynalib.c - - ldap/servers/slapd/libslapd_la-entry.lo: ldap/servers/slapd/entry.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-entry.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-entry.Tpo -c -o ldap/servers/slapd/libslapd_la-entry.lo `test -f 'ldap/servers/slapd/entry.c' || echo '$(srcdir)/'`ldap/servers/slapd/entry.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-entry.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-entry.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/entry.c' object='ldap/servers/slapd/libslapd_la-entry.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-entry.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-entry.Tpo -c -o ldap/servers/slapd/libslapd_la-entry.lo `test -f 'ldap/servers/slapd/entry.c' || echo '$(srcdir)/'`ldap/servers/slapd/entry.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-entry.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-entry.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/entry.c' object='ldap/servers/slapd/libslapd_la-entry.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-entry.lo `test -f 'ldap/servers/slapd/entry.c' || echo '$(srcdir)/'`ldap/servers/slapd/entry.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-entry.lo `test -f 'ldap/servers/slapd/entry.c' || echo '$(srcdir)/'`ldap/servers/slapd/entry.c - - ldap/servers/slapd/libslapd_la-entrywsi.lo: ldap/servers/slapd/entrywsi.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-entrywsi.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-entrywsi.Tpo -c -o ldap/servers/slapd/libslapd_la-entrywsi.lo `test -f 'ldap/servers/slapd/entrywsi.c' || echo '$(srcdir)/'`ldap/servers/slapd/entrywsi.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-entrywsi.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-entrywsi.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/entrywsi.c' object='ldap/servers/slapd/libslapd_la-entrywsi.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-entrywsi.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-entrywsi.Tpo -c -o ldap/servers/slapd/libslapd_la-entrywsi.lo `test -f 'ldap/servers/slapd/entrywsi.c' || echo '$(srcdir)/'`ldap/servers/slapd/entrywsi.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-entrywsi.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-entrywsi.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/entrywsi.c' object='ldap/servers/slapd/libslapd_la-entrywsi.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-entrywsi.lo `test -f 'ldap/servers/slapd/entrywsi.c' || echo '$(srcdir)/'`ldap/servers/slapd/entrywsi.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-entrywsi.lo `test -f 'ldap/servers/slapd/entrywsi.c' || echo '$(srcdir)/'`ldap/servers/slapd/entrywsi.c - - ldap/servers/slapd/libslapd_la-errormap.lo: ldap/servers/slapd/errormap.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-errormap.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-errormap.Tpo -c -o ldap/servers/slapd/libslapd_la-errormap.lo `test -f 'ldap/servers/slapd/errormap.c' || echo '$(srcdir)/'`ldap/servers/slapd/errormap.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-errormap.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-errormap.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/errormap.c' object='ldap/servers/slapd/libslapd_la-errormap.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-errormap.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-errormap.Tpo -c -o ldap/servers/slapd/libslapd_la-errormap.lo `test -f 'ldap/servers/slapd/errormap.c' || echo '$(srcdir)/'`ldap/servers/slapd/errormap.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-errormap.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-errormap.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/errormap.c' object='ldap/servers/slapd/libslapd_la-errormap.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-errormap.lo `test -f 'ldap/servers/slapd/errormap.c' || echo '$(srcdir)/'`ldap/servers/slapd/errormap.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-errormap.lo `test -f 'ldap/servers/slapd/errormap.c' || echo '$(srcdir)/'`ldap/servers/slapd/errormap.c - - ldap/servers/slapd/libslapd_la-eventq.lo: ldap/servers/slapd/eventq.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-eventq.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-eventq.Tpo -c -o ldap/servers/slapd/libslapd_la-eventq.lo `test -f 'ldap/servers/slapd/eventq.c' || echo '$(srcdir)/'`ldap/servers/slapd/eventq.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-eventq.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-eventq.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/eventq.c' object='ldap/servers/slapd/libslapd_la-eventq.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-eventq.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-eventq.Tpo -c -o ldap/servers/slapd/libslapd_la-eventq.lo `test -f 'ldap/servers/slapd/eventq.c' || echo '$(srcdir)/'`ldap/servers/slapd/eventq.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-eventq.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-eventq.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/eventq.c' object='ldap/servers/slapd/libslapd_la-eventq.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-eventq.lo `test -f 'ldap/servers/slapd/eventq.c' || echo '$(srcdir)/'`ldap/servers/slapd/eventq.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-eventq.lo `test -f 'ldap/servers/slapd/eventq.c' || echo '$(srcdir)/'`ldap/servers/slapd/eventq.c - - ldap/servers/slapd/libslapd_la-factory.lo: ldap/servers/slapd/factory.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-factory.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-factory.Tpo -c -o ldap/servers/slapd/libslapd_la-factory.lo `test -f 'ldap/servers/slapd/factory.c' || echo '$(srcdir)/'`ldap/servers/slapd/factory.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-factory.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-factory.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/factory.c' object='ldap/servers/slapd/libslapd_la-factory.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-factory.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-factory.Tpo -c -o ldap/servers/slapd/libslapd_la-factory.lo `test -f 'ldap/servers/slapd/factory.c' || echo '$(srcdir)/'`ldap/servers/slapd/factory.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-factory.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-factory.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/factory.c' object='ldap/servers/slapd/libslapd_la-factory.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-factory.lo `test -f 'ldap/servers/slapd/factory.c' || echo '$(srcdir)/'`ldap/servers/slapd/factory.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-factory.lo `test -f 'ldap/servers/slapd/factory.c' || echo '$(srcdir)/'`ldap/servers/slapd/factory.c - - ldap/servers/slapd/libslapd_la-fileio.lo: ldap/servers/slapd/fileio.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-fileio.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-fileio.Tpo -c -o ldap/servers/slapd/libslapd_la-fileio.lo `test -f 'ldap/servers/slapd/fileio.c' || echo '$(srcdir)/'`ldap/servers/slapd/fileio.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-fileio.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-fileio.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/fileio.c' object='ldap/servers/slapd/libslapd_la-fileio.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-fileio.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-fileio.Tpo -c -o ldap/servers/slapd/libslapd_la-fileio.lo `test -f 'ldap/servers/slapd/fileio.c' || echo '$(srcdir)/'`ldap/servers/slapd/fileio.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-fileio.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-fileio.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/fileio.c' object='ldap/servers/slapd/libslapd_la-fileio.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-fileio.lo `test -f 'ldap/servers/slapd/fileio.c' || echo '$(srcdir)/'`ldap/servers/slapd/fileio.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-fileio.lo `test -f 'ldap/servers/slapd/fileio.c' || echo '$(srcdir)/'`ldap/servers/slapd/fileio.c - - ldap/servers/slapd/libslapd_la-filter.lo: ldap/servers/slapd/filter.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-filter.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-filter.Tpo -c -o ldap/servers/slapd/libslapd_la-filter.lo `test -f 'ldap/servers/slapd/filter.c' || echo '$(srcdir)/'`ldap/servers/slapd/filter.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-filter.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-filter.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/filter.c' object='ldap/servers/slapd/libslapd_la-filter.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-filter.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-filter.Tpo -c -o ldap/servers/slapd/libslapd_la-filter.lo `test -f 'ldap/servers/slapd/filter.c' || echo '$(srcdir)/'`ldap/servers/slapd/filter.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-filter.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-filter.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/filter.c' object='ldap/servers/slapd/libslapd_la-filter.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-filter.lo `test -f 'ldap/servers/slapd/filter.c' || echo '$(srcdir)/'`ldap/servers/slapd/filter.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-filter.lo `test -f 'ldap/servers/slapd/filter.c' || echo '$(srcdir)/'`ldap/servers/slapd/filter.c - - ldap/servers/slapd/libslapd_la-filtercmp.lo: ldap/servers/slapd/filtercmp.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-filtercmp.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-filtercmp.Tpo -c -o ldap/servers/slapd/libslapd_la-filtercmp.lo `test -f 'ldap/servers/slapd/filtercmp.c' || echo '$(srcdir)/'`ldap/servers/slapd/filtercmp.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-filtercmp.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-filtercmp.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/filtercmp.c' object='ldap/servers/slapd/libslapd_la-filtercmp.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-filtercmp.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-filtercmp.Tpo -c -o ldap/servers/slapd/libslapd_la-filtercmp.lo `test -f 'ldap/servers/slapd/filtercmp.c' || echo '$(srcdir)/'`ldap/servers/slapd/filtercmp.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-filtercmp.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-filtercmp.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/filtercmp.c' object='ldap/servers/slapd/libslapd_la-filtercmp.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-filtercmp.lo `test -f 'ldap/servers/slapd/filtercmp.c' || echo '$(srcdir)/'`ldap/servers/slapd/filtercmp.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-filtercmp.lo `test -f 'ldap/servers/slapd/filtercmp.c' || echo '$(srcdir)/'`ldap/servers/slapd/filtercmp.c - - ldap/servers/slapd/libslapd_la-filterentry.lo: ldap/servers/slapd/filterentry.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-filterentry.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-filterentry.Tpo -c -o ldap/servers/slapd/libslapd_la-filterentry.lo `test -f 'ldap/servers/slapd/filterentry.c' || echo '$(srcdir)/'`ldap/servers/slapd/filterentry.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-filterentry.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-filterentry.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/filterentry.c' object='ldap/servers/slapd/libslapd_la-filterentry.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-filterentry.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-filterentry.Tpo -c -o ldap/servers/slapd/libslapd_la-filterentry.lo `test -f 'ldap/servers/slapd/filterentry.c' || echo '$(srcdir)/'`ldap/servers/slapd/filterentry.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-filterentry.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-filterentry.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/filterentry.c' object='ldap/servers/slapd/libslapd_la-filterentry.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-filterentry.lo `test -f 'ldap/servers/slapd/filterentry.c' || echo '$(srcdir)/'`ldap/servers/slapd/filterentry.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-filterentry.lo `test -f 'ldap/servers/slapd/filterentry.c' || echo '$(srcdir)/'`ldap/servers/slapd/filterentry.c - - ldap/servers/slapd/libslapd_la-generation.lo: ldap/servers/slapd/generation.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-generation.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-generation.Tpo -c -o ldap/servers/slapd/libslapd_la-generation.lo `test -f 'ldap/servers/slapd/generation.c' || echo '$(srcdir)/'`ldap/servers/slapd/generation.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-generation.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-generation.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/generation.c' object='ldap/servers/slapd/libslapd_la-generation.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-generation.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-generation.Tpo -c -o ldap/servers/slapd/libslapd_la-generation.lo `test -f 'ldap/servers/slapd/generation.c' || echo '$(srcdir)/'`ldap/servers/slapd/generation.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-generation.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-generation.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/generation.c' object='ldap/servers/slapd/libslapd_la-generation.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-generation.lo `test -f 'ldap/servers/slapd/generation.c' || echo '$(srcdir)/'`ldap/servers/slapd/generation.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-generation.lo `test -f 'ldap/servers/slapd/generation.c' || echo '$(srcdir)/'`ldap/servers/slapd/generation.c - - ldap/servers/slapd/libslapd_la-getfilelist.lo: ldap/servers/slapd/getfilelist.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-getfilelist.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-getfilelist.Tpo -c -o ldap/servers/slapd/libslapd_la-getfilelist.lo `test -f 'ldap/servers/slapd/getfilelist.c' || echo '$(srcdir)/'`ldap/servers/slapd/getfilelist.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-getfilelist.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-getfilelist.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/getfilelist.c' object='ldap/servers/slapd/libslapd_la-getfilelist.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-getfilelist.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-getfilelist.Tpo -c -o ldap/servers/slapd/libslapd_la-getfilelist.lo `test -f 'ldap/servers/slapd/getfilelist.c' || echo '$(srcdir)/'`ldap/servers/slapd/getfilelist.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-getfilelist.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-getfilelist.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/getfilelist.c' object='ldap/servers/slapd/libslapd_la-getfilelist.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-getfilelist.lo `test -f 'ldap/servers/slapd/getfilelist.c' || echo '$(srcdir)/'`ldap/servers/slapd/getfilelist.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-getfilelist.lo `test -f 'ldap/servers/slapd/getfilelist.c' || echo '$(srcdir)/'`ldap/servers/slapd/getfilelist.c - - ldap/servers/slapd/libslapd_la-index_subsystem.lo: ldap/servers/slapd/index_subsystem.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-index_subsystem.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-index_subsystem.Tpo -c -o ldap/servers/slapd/libslapd_la-index_subsystem.lo `test -f 'ldap/servers/slapd/index_subsystem.c' || echo '$(srcdir)/'`ldap/servers/slapd/index_subsystem.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-index_subsystem.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-index_subsystem.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/index_subsystem.c' object='ldap/servers/slapd/libslapd_la-index_subsystem.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-index_subsystem.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-index_subsystem.Tpo -c -o ldap/servers/slapd/libslapd_la-index_subsystem.lo `test -f 'ldap/servers/slapd/index_subsystem.c' || echo '$(srcdir)/'`ldap/servers/slapd/index_subsystem.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-index_subsystem.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-index_subsystem.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/index_subsystem.c' object='ldap/servers/slapd/libslapd_la-index_subsystem.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-index_subsystem.lo `test -f 'ldap/servers/slapd/index_subsystem.c' || echo '$(srcdir)/'`ldap/servers/slapd/index_subsystem.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-index_subsystem.lo `test -f 'ldap/servers/slapd/index_subsystem.c' || echo '$(srcdir)/'`ldap/servers/slapd/index_subsystem.c - - ldap/servers/slapd/libslapd_la-ldaputil.lo: ldap/servers/slapd/ldaputil.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-ldaputil.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-ldaputil.Tpo -c -o ldap/servers/slapd/libslapd_la-ldaputil.lo `test -f 'ldap/servers/slapd/ldaputil.c' || echo '$(srcdir)/'`ldap/servers/slapd/ldaputil.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-ldaputil.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-ldaputil.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/ldaputil.c' object='ldap/servers/slapd/libslapd_la-ldaputil.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-ldaputil.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-ldaputil.Tpo -c -o ldap/servers/slapd/libslapd_la-ldaputil.lo `test -f 'ldap/servers/slapd/ldaputil.c' || echo '$(srcdir)/'`ldap/servers/slapd/ldaputil.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-ldaputil.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-ldaputil.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/ldaputil.c' object='ldap/servers/slapd/libslapd_la-ldaputil.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-ldaputil.lo `test -f 'ldap/servers/slapd/ldaputil.c' || echo '$(srcdir)/'`ldap/servers/slapd/ldaputil.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-ldaputil.lo `test -f 'ldap/servers/slapd/ldaputil.c' || echo '$(srcdir)/'`ldap/servers/slapd/ldaputil.c - - ldap/servers/slapd/libslapd_la-lenstr.lo: ldap/servers/slapd/lenstr.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-lenstr.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-lenstr.Tpo -c -o ldap/servers/slapd/libslapd_la-lenstr.lo `test -f 'ldap/servers/slapd/lenstr.c' || echo '$(srcdir)/'`ldap/servers/slapd/lenstr.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-lenstr.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-lenstr.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/lenstr.c' object='ldap/servers/slapd/libslapd_la-lenstr.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-lenstr.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-lenstr.Tpo -c -o ldap/servers/slapd/libslapd_la-lenstr.lo `test -f 'ldap/servers/slapd/lenstr.c' || echo '$(srcdir)/'`ldap/servers/slapd/lenstr.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-lenstr.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-lenstr.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/lenstr.c' object='ldap/servers/slapd/libslapd_la-lenstr.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-lenstr.lo `test -f 'ldap/servers/slapd/lenstr.c' || echo '$(srcdir)/'`ldap/servers/slapd/lenstr.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-lenstr.lo `test -f 'ldap/servers/slapd/lenstr.c' || echo '$(srcdir)/'`ldap/servers/slapd/lenstr.c - - ldap/servers/slapd/libslapd_la-libglobs.lo: ldap/servers/slapd/libglobs.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-libglobs.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-libglobs.Tpo -c -o ldap/servers/slapd/libslapd_la-libglobs.lo `test -f 'ldap/servers/slapd/libglobs.c' || echo '$(srcdir)/'`ldap/servers/slapd/libglobs.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-libglobs.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-libglobs.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/libglobs.c' object='ldap/servers/slapd/libslapd_la-libglobs.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-libglobs.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-libglobs.Tpo -c -o ldap/servers/slapd/libslapd_la-libglobs.lo `test -f 'ldap/servers/slapd/libglobs.c' || echo '$(srcdir)/'`ldap/servers/slapd/libglobs.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-libglobs.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-libglobs.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/libglobs.c' object='ldap/servers/slapd/libslapd_la-libglobs.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-libglobs.lo `test -f 'ldap/servers/slapd/libglobs.c' || echo '$(srcdir)/'`ldap/servers/slapd/libglobs.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-libglobs.lo `test -f 'ldap/servers/slapd/libglobs.c' || echo '$(srcdir)/'`ldap/servers/slapd/libglobs.c - - ldap/servers/slapd/libslapd_la-localhost.lo: ldap/servers/slapd/localhost.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-localhost.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-localhost.Tpo -c -o ldap/servers/slapd/libslapd_la-localhost.lo `test -f 'ldap/servers/slapd/localhost.c' || echo '$(srcdir)/'`ldap/servers/slapd/localhost.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-localhost.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-localhost.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/localhost.c' object='ldap/servers/slapd/libslapd_la-localhost.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-localhost.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-localhost.Tpo -c -o ldap/servers/slapd/libslapd_la-localhost.lo `test -f 'ldap/servers/slapd/localhost.c' || echo '$(srcdir)/'`ldap/servers/slapd/localhost.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-localhost.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-localhost.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/localhost.c' object='ldap/servers/slapd/libslapd_la-localhost.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-localhost.lo `test -f 'ldap/servers/slapd/localhost.c' || echo '$(srcdir)/'`ldap/servers/slapd/localhost.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-localhost.lo `test -f 'ldap/servers/slapd/localhost.c' || echo '$(srcdir)/'`ldap/servers/slapd/localhost.c - - ldap/servers/slapd/libslapd_la-log.lo: ldap/servers/slapd/log.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-log.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-log.Tpo -c -o ldap/servers/slapd/libslapd_la-log.lo `test -f 'ldap/servers/slapd/log.c' || echo '$(srcdir)/'`ldap/servers/slapd/log.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-log.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-log.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/log.c' object='ldap/servers/slapd/libslapd_la-log.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-log.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-log.Tpo -c -o ldap/servers/slapd/libslapd_la-log.lo `test -f 'ldap/servers/slapd/log.c' || echo '$(srcdir)/'`ldap/servers/slapd/log.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-log.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-log.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/log.c' object='ldap/servers/slapd/libslapd_la-log.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-log.lo `test -f 'ldap/servers/slapd/log.c' || echo '$(srcdir)/'`ldap/servers/slapd/log.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-log.lo `test -f 'ldap/servers/slapd/log.c' || echo '$(srcdir)/'`ldap/servers/slapd/log.c - - ldap/servers/slapd/libslapd_la-mapping_tree.lo: ldap/servers/slapd/mapping_tree.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-mapping_tree.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-mapping_tree.Tpo -c -o ldap/servers/slapd/libslapd_la-mapping_tree.lo `test -f 'ldap/servers/slapd/mapping_tree.c' || echo '$(srcdir)/'`ldap/servers/slapd/mapping_tree.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-mapping_tree.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-mapping_tree.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/mapping_tree.c' object='ldap/servers/slapd/libslapd_la-mapping_tree.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-mapping_tree.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-mapping_tree.Tpo -c -o ldap/servers/slapd/libslapd_la-mapping_tree.lo `test -f 'ldap/servers/slapd/mapping_tree.c' || echo '$(srcdir)/'`ldap/servers/slapd/mapping_tree.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-mapping_tree.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-mapping_tree.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/mapping_tree.c' object='ldap/servers/slapd/libslapd_la-mapping_tree.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-mapping_tree.lo `test -f 'ldap/servers/slapd/mapping_tree.c' || echo '$(srcdir)/'`ldap/servers/slapd/mapping_tree.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-mapping_tree.lo `test -f 'ldap/servers/slapd/mapping_tree.c' || echo '$(srcdir)/'`ldap/servers/slapd/mapping_tree.c - - ldap/servers/slapd/libslapd_la-match.lo: ldap/servers/slapd/match.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-match.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-match.Tpo -c -o ldap/servers/slapd/libslapd_la-match.lo `test -f 'ldap/servers/slapd/match.c' || echo '$(srcdir)/'`ldap/servers/slapd/match.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-match.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-match.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/match.c' object='ldap/servers/slapd/libslapd_la-match.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-match.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-match.Tpo -c -o ldap/servers/slapd/libslapd_la-match.lo `test -f 'ldap/servers/slapd/match.c' || echo '$(srcdir)/'`ldap/servers/slapd/match.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-match.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-match.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/match.c' object='ldap/servers/slapd/libslapd_la-match.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-match.lo `test -f 'ldap/servers/slapd/match.c' || echo '$(srcdir)/'`ldap/servers/slapd/match.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-match.lo `test -f 'ldap/servers/slapd/match.c' || echo '$(srcdir)/'`ldap/servers/slapd/match.c - - ldap/servers/slapd/libslapd_la-modify.lo: ldap/servers/slapd/modify.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-modify.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-modify.Tpo -c -o ldap/servers/slapd/libslapd_la-modify.lo `test -f 'ldap/servers/slapd/modify.c' || echo '$(srcdir)/'`ldap/servers/slapd/modify.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-modify.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-modify.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/modify.c' object='ldap/servers/slapd/libslapd_la-modify.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-modify.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-modify.Tpo -c -o ldap/servers/slapd/libslapd_la-modify.lo `test -f 'ldap/servers/slapd/modify.c' || echo '$(srcdir)/'`ldap/servers/slapd/modify.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-modify.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-modify.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/modify.c' object='ldap/servers/slapd/libslapd_la-modify.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-modify.lo `test -f 'ldap/servers/slapd/modify.c' || echo '$(srcdir)/'`ldap/servers/slapd/modify.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-modify.lo `test -f 'ldap/servers/slapd/modify.c' || echo '$(srcdir)/'`ldap/servers/slapd/modify.c - - ldap/servers/slapd/libslapd_la-modrdn.lo: ldap/servers/slapd/modrdn.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-modrdn.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-modrdn.Tpo -c -o ldap/servers/slapd/libslapd_la-modrdn.lo `test -f 'ldap/servers/slapd/modrdn.c' || echo '$(srcdir)/'`ldap/servers/slapd/modrdn.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-modrdn.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-modrdn.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/modrdn.c' object='ldap/servers/slapd/libslapd_la-modrdn.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-modrdn.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-modrdn.Tpo -c -o ldap/servers/slapd/libslapd_la-modrdn.lo `test -f 'ldap/servers/slapd/modrdn.c' || echo '$(srcdir)/'`ldap/servers/slapd/modrdn.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-modrdn.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-modrdn.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/modrdn.c' object='ldap/servers/slapd/libslapd_la-modrdn.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-modrdn.lo `test -f 'ldap/servers/slapd/modrdn.c' || echo '$(srcdir)/'`ldap/servers/slapd/modrdn.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-modrdn.lo `test -f 'ldap/servers/slapd/modrdn.c' || echo '$(srcdir)/'`ldap/servers/slapd/modrdn.c - - ldap/servers/slapd/libslapd_la-modutil.lo: ldap/servers/slapd/modutil.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-modutil.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-modutil.Tpo -c -o ldap/servers/slapd/libslapd_la-modutil.lo `test -f 'ldap/servers/slapd/modutil.c' || echo '$(srcdir)/'`ldap/servers/slapd/modutil.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-modutil.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-modutil.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/modutil.c' object='ldap/servers/slapd/libslapd_la-modutil.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-modutil.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-modutil.Tpo -c -o ldap/servers/slapd/libslapd_la-modutil.lo `test -f 'ldap/servers/slapd/modutil.c' || echo '$(srcdir)/'`ldap/servers/slapd/modutil.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-modutil.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-modutil.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/modutil.c' object='ldap/servers/slapd/libslapd_la-modutil.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-modutil.lo `test -f 'ldap/servers/slapd/modutil.c' || echo '$(srcdir)/'`ldap/servers/slapd/modutil.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-modutil.lo `test -f 'ldap/servers/slapd/modutil.c' || echo '$(srcdir)/'`ldap/servers/slapd/modutil.c - - ldap/servers/slapd/libslapd_la-ntuserpin.lo: ldap/servers/slapd/ntuserpin.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-ntuserpin.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-ntuserpin.Tpo -c -o ldap/servers/slapd/libslapd_la-ntuserpin.lo `test -f 'ldap/servers/slapd/ntuserpin.c' || echo '$(srcdir)/'`ldap/servers/slapd/ntuserpin.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-ntuserpin.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-ntuserpin.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/ntuserpin.c' object='ldap/servers/slapd/libslapd_la-ntuserpin.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-ntuserpin.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-ntuserpin.Tpo -c -o ldap/servers/slapd/libslapd_la-ntuserpin.lo `test -f 'ldap/servers/slapd/ntuserpin.c' || echo '$(srcdir)/'`ldap/servers/slapd/ntuserpin.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-ntuserpin.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-ntuserpin.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/ntuserpin.c' object='ldap/servers/slapd/libslapd_la-ntuserpin.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-ntuserpin.lo `test -f 'ldap/servers/slapd/ntuserpin.c' || echo '$(srcdir)/'`ldap/servers/slapd/ntuserpin.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-ntuserpin.lo `test -f 'ldap/servers/slapd/ntuserpin.c' || echo '$(srcdir)/'`ldap/servers/slapd/ntuserpin.c - - ldap/servers/slapd/libslapd_la-object.lo: ldap/servers/slapd/object.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-object.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-object.Tpo -c -o ldap/servers/slapd/libslapd_la-object.lo `test -f 'ldap/servers/slapd/object.c' || echo '$(srcdir)/'`ldap/servers/slapd/object.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-object.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-object.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/object.c' object='ldap/servers/slapd/libslapd_la-object.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-object.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-object.Tpo -c -o ldap/servers/slapd/libslapd_la-object.lo `test -f 'ldap/servers/slapd/object.c' || echo '$(srcdir)/'`ldap/servers/slapd/object.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-object.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-object.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/object.c' object='ldap/servers/slapd/libslapd_la-object.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-object.lo `test -f 'ldap/servers/slapd/object.c' || echo '$(srcdir)/'`ldap/servers/slapd/object.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-object.lo `test -f 'ldap/servers/slapd/object.c' || echo '$(srcdir)/'`ldap/servers/slapd/object.c - - ldap/servers/slapd/libslapd_la-objset.lo: ldap/servers/slapd/objset.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-objset.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-objset.Tpo -c -o ldap/servers/slapd/libslapd_la-objset.lo `test -f 'ldap/servers/slapd/objset.c' || echo '$(srcdir)/'`ldap/servers/slapd/objset.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-objset.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-objset.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/objset.c' object='ldap/servers/slapd/libslapd_la-objset.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-objset.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-objset.Tpo -c -o ldap/servers/slapd/libslapd_la-objset.lo `test -f 'ldap/servers/slapd/objset.c' || echo '$(srcdir)/'`ldap/servers/slapd/objset.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-objset.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-objset.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/objset.c' object='ldap/servers/slapd/libslapd_la-objset.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-objset.lo `test -f 'ldap/servers/slapd/objset.c' || echo '$(srcdir)/'`ldap/servers/slapd/objset.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-objset.lo `test -f 'ldap/servers/slapd/objset.c' || echo '$(srcdir)/'`ldap/servers/slapd/objset.c - - ldap/servers/slapd/libslapd_la-operation.lo: ldap/servers/slapd/operation.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-operation.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-operation.Tpo -c -o ldap/servers/slapd/libslapd_la-operation.lo `test -f 'ldap/servers/slapd/operation.c' || echo '$(srcdir)/'`ldap/servers/slapd/operation.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-operation.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-operation.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/operation.c' object='ldap/servers/slapd/libslapd_la-operation.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-operation.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-operation.Tpo -c -o ldap/servers/slapd/libslapd_la-operation.lo `test -f 'ldap/servers/slapd/operation.c' || echo '$(srcdir)/'`ldap/servers/slapd/operation.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-operation.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-operation.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/operation.c' object='ldap/servers/slapd/libslapd_la-operation.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-operation.lo `test -f 'ldap/servers/slapd/operation.c' || echo '$(srcdir)/'`ldap/servers/slapd/operation.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-operation.lo `test -f 'ldap/servers/slapd/operation.c' || echo '$(srcdir)/'`ldap/servers/slapd/operation.c - - ldap/servers/slapd/libslapd_la-opshared.lo: ldap/servers/slapd/opshared.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-opshared.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-opshared.Tpo -c -o ldap/servers/slapd/libslapd_la-opshared.lo `test -f 'ldap/servers/slapd/opshared.c' || echo '$(srcdir)/'`ldap/servers/slapd/opshared.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-opshared.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-opshared.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/opshared.c' object='ldap/servers/slapd/libslapd_la-opshared.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-opshared.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-opshared.Tpo -c -o ldap/servers/slapd/libslapd_la-opshared.lo `test -f 'ldap/servers/slapd/opshared.c' || echo '$(srcdir)/'`ldap/servers/slapd/opshared.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-opshared.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-opshared.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/opshared.c' object='ldap/servers/slapd/libslapd_la-opshared.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-opshared.lo `test -f 'ldap/servers/slapd/opshared.c' || echo '$(srcdir)/'`ldap/servers/slapd/opshared.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-opshared.lo `test -f 'ldap/servers/slapd/opshared.c' || echo '$(srcdir)/'`ldap/servers/slapd/opshared.c - - ldap/servers/slapd/libslapd_la-pagedresults.lo: ldap/servers/slapd/pagedresults.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-pagedresults.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-pagedresults.Tpo -c -o ldap/servers/slapd/libslapd_la-pagedresults.lo `test -f 'ldap/servers/slapd/pagedresults.c' || echo '$(srcdir)/'`ldap/servers/slapd/pagedresults.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-pagedresults.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-pagedresults.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/pagedresults.c' object='ldap/servers/slapd/libslapd_la-pagedresults.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-pagedresults.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-pagedresults.Tpo -c -o ldap/servers/slapd/libslapd_la-pagedresults.lo `test -f 'ldap/servers/slapd/pagedresults.c' || echo '$(srcdir)/'`ldap/servers/slapd/pagedresults.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-pagedresults.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-pagedresults.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/pagedresults.c' object='ldap/servers/slapd/libslapd_la-pagedresults.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-pagedresults.lo `test -f 'ldap/servers/slapd/pagedresults.c' || echo '$(srcdir)/'`ldap/servers/slapd/pagedresults.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-pagedresults.lo `test -f 'ldap/servers/slapd/pagedresults.c' || echo '$(srcdir)/'`ldap/servers/slapd/pagedresults.c - - ldap/servers/slapd/libslapd_la-pblock.lo: ldap/servers/slapd/pblock.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-pblock.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-pblock.Tpo -c -o ldap/servers/slapd/libslapd_la-pblock.lo `test -f 'ldap/servers/slapd/pblock.c' || echo '$(srcdir)/'`ldap/servers/slapd/pblock.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-pblock.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-pblock.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/pblock.c' object='ldap/servers/slapd/libslapd_la-pblock.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-pblock.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-pblock.Tpo -c -o ldap/servers/slapd/libslapd_la-pblock.lo `test -f 'ldap/servers/slapd/pblock.c' || echo '$(srcdir)/'`ldap/servers/slapd/pblock.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-pblock.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-pblock.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/pblock.c' object='ldap/servers/slapd/libslapd_la-pblock.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-pblock.lo `test -f 'ldap/servers/slapd/pblock.c' || echo '$(srcdir)/'`ldap/servers/slapd/pblock.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-pblock.lo `test -f 'ldap/servers/slapd/pblock.c' || echo '$(srcdir)/'`ldap/servers/slapd/pblock.c - - ldap/servers/slapd/libslapd_la-plugin.lo: ldap/servers/slapd/plugin.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-plugin.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-plugin.Tpo -c -o ldap/servers/slapd/libslapd_la-plugin.lo `test -f 'ldap/servers/slapd/plugin.c' || echo '$(srcdir)/'`ldap/servers/slapd/plugin.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-plugin.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-plugin.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/plugin.c' object='ldap/servers/slapd/libslapd_la-plugin.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-plugin.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-plugin.Tpo -c -o ldap/servers/slapd/libslapd_la-plugin.lo `test -f 'ldap/servers/slapd/plugin.c' || echo '$(srcdir)/'`ldap/servers/slapd/plugin.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-plugin.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-plugin.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/plugin.c' object='ldap/servers/slapd/libslapd_la-plugin.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-plugin.lo `test -f 'ldap/servers/slapd/plugin.c' || echo '$(srcdir)/'`ldap/servers/slapd/plugin.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-plugin.lo `test -f 'ldap/servers/slapd/plugin.c' || echo '$(srcdir)/'`ldap/servers/slapd/plugin.c - - ldap/servers/slapd/libslapd_la-plugin_acl.lo: ldap/servers/slapd/plugin_acl.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-plugin_acl.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-plugin_acl.Tpo -c -o ldap/servers/slapd/libslapd_la-plugin_acl.lo `test -f 'ldap/servers/slapd/plugin_acl.c' || echo '$(srcdir)/'`ldap/servers/slapd/plugin_acl.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-plugin_acl.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-plugin_acl.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/plugin_acl.c' object='ldap/servers/slapd/libslapd_la-plugin_acl.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-plugin_acl.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-plugin_acl.Tpo -c -o ldap/servers/slapd/libslapd_la-plugin_acl.lo `test -f 'ldap/servers/slapd/plugin_acl.c' || echo '$(srcdir)/'`ldap/servers/slapd/plugin_acl.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-plugin_acl.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-plugin_acl.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/plugin_acl.c' object='ldap/servers/slapd/libslapd_la-plugin_acl.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-plugin_acl.lo `test -f 'ldap/servers/slapd/plugin_acl.c' || echo '$(srcdir)/'`ldap/servers/slapd/plugin_acl.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-plugin_acl.lo `test -f 'ldap/servers/slapd/plugin_acl.c' || echo '$(srcdir)/'`ldap/servers/slapd/plugin_acl.c - - ldap/servers/slapd/libslapd_la-plugin_internal_op.lo: ldap/servers/slapd/plugin_internal_op.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-plugin_internal_op.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-plugin_internal_op.Tpo -c -o ldap/servers/slapd/libslapd_la-plugin_internal_op.lo `test -f 'ldap/servers/slapd/plugin_internal_op.c' || echo '$(srcdir)/'`ldap/servers/slapd/plugin_internal_op.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-plugin_internal_op.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-plugin_internal_op.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/plugin_internal_op.c' object='ldap/servers/slapd/libslapd_la-plugin_internal_op.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-plugin_internal_op.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-plugin_internal_op.Tpo -c -o ldap/servers/slapd/libslapd_la-plugin_internal_op.lo `test -f 'ldap/servers/slapd/plugin_internal_op.c' || echo '$(srcdir)/'`ldap/servers/slapd/plugin_internal_op.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-plugin_internal_op.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-plugin_internal_op.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/plugin_internal_op.c' object='ldap/servers/slapd/libslapd_la-plugin_internal_op.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-plugin_internal_op.lo `test -f 'ldap/servers/slapd/plugin_internal_op.c' || echo '$(srcdir)/'`ldap/servers/slapd/plugin_internal_op.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-plugin_internal_op.lo `test -f 'ldap/servers/slapd/plugin_internal_op.c' || echo '$(srcdir)/'`ldap/servers/slapd/plugin_internal_op.c - - ldap/servers/slapd/libslapd_la-plugin_mr.lo: ldap/servers/slapd/plugin_mr.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-plugin_mr.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-plugin_mr.Tpo -c -o ldap/servers/slapd/libslapd_la-plugin_mr.lo `test -f 'ldap/servers/slapd/plugin_mr.c' || echo '$(srcdir)/'`ldap/servers/slapd/plugin_mr.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-plugin_mr.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-plugin_mr.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/plugin_mr.c' object='ldap/servers/slapd/libslapd_la-plugin_mr.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-plugin_mr.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-plugin_mr.Tpo -c -o ldap/servers/slapd/libslapd_la-plugin_mr.lo `test -f 'ldap/servers/slapd/plugin_mr.c' || echo '$(srcdir)/'`ldap/servers/slapd/plugin_mr.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-plugin_mr.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-plugin_mr.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/plugin_mr.c' object='ldap/servers/slapd/libslapd_la-plugin_mr.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-plugin_mr.lo `test -f 'ldap/servers/slapd/plugin_mr.c' || echo '$(srcdir)/'`ldap/servers/slapd/plugin_mr.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-plugin_mr.lo `test -f 'ldap/servers/slapd/plugin_mr.c' || echo '$(srcdir)/'`ldap/servers/slapd/plugin_mr.c - - ldap/servers/slapd/libslapd_la-plugin_role.lo: ldap/servers/slapd/plugin_role.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-plugin_role.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-plugin_role.Tpo -c -o ldap/servers/slapd/libslapd_la-plugin_role.lo `test -f 'ldap/servers/slapd/plugin_role.c' || echo '$(srcdir)/'`ldap/servers/slapd/plugin_role.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-plugin_role.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-plugin_role.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/plugin_role.c' object='ldap/servers/slapd/libslapd_la-plugin_role.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-plugin_role.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-plugin_role.Tpo -c -o ldap/servers/slapd/libslapd_la-plugin_role.lo `test -f 'ldap/servers/slapd/plugin_role.c' || echo '$(srcdir)/'`ldap/servers/slapd/plugin_role.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-plugin_role.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-plugin_role.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/plugin_role.c' object='ldap/servers/slapd/libslapd_la-plugin_role.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-plugin_role.lo `test -f 'ldap/servers/slapd/plugin_role.c' || echo '$(srcdir)/'`ldap/servers/slapd/plugin_role.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-plugin_role.lo `test -f 'ldap/servers/slapd/plugin_role.c' || echo '$(srcdir)/'`ldap/servers/slapd/plugin_role.c - - ldap/servers/slapd/libslapd_la-plugin_syntax.lo: ldap/servers/slapd/plugin_syntax.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-plugin_syntax.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-plugin_syntax.Tpo -c -o ldap/servers/slapd/libslapd_la-plugin_syntax.lo `test -f 'ldap/servers/slapd/plugin_syntax.c' || echo '$(srcdir)/'`ldap/servers/slapd/plugin_syntax.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-plugin_syntax.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-plugin_syntax.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/plugin_syntax.c' object='ldap/servers/slapd/libslapd_la-plugin_syntax.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-plugin_syntax.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-plugin_syntax.Tpo -c -o ldap/servers/slapd/libslapd_la-plugin_syntax.lo `test -f 'ldap/servers/slapd/plugin_syntax.c' || echo '$(srcdir)/'`ldap/servers/slapd/plugin_syntax.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-plugin_syntax.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-plugin_syntax.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/plugin_syntax.c' object='ldap/servers/slapd/libslapd_la-plugin_syntax.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-plugin_syntax.lo `test -f 'ldap/servers/slapd/plugin_syntax.c' || echo '$(srcdir)/'`ldap/servers/slapd/plugin_syntax.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-plugin_syntax.lo `test -f 'ldap/servers/slapd/plugin_syntax.c' || echo '$(srcdir)/'`ldap/servers/slapd/plugin_syntax.c - - ldap/servers/slapd/libslapd_la-protect_db.lo: ldap/servers/slapd/protect_db.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-protect_db.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-protect_db.Tpo -c -o ldap/servers/slapd/libslapd_la-protect_db.lo `test -f 'ldap/servers/slapd/protect_db.c' || echo '$(srcdir)/'`ldap/servers/slapd/protect_db.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-protect_db.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-protect_db.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/protect_db.c' object='ldap/servers/slapd/libslapd_la-protect_db.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-protect_db.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-protect_db.Tpo -c -o ldap/servers/slapd/libslapd_la-protect_db.lo `test -f 'ldap/servers/slapd/protect_db.c' || echo '$(srcdir)/'`ldap/servers/slapd/protect_db.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-protect_db.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-protect_db.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/protect_db.c' object='ldap/servers/slapd/libslapd_la-protect_db.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-protect_db.lo `test -f 'ldap/servers/slapd/protect_db.c' || echo '$(srcdir)/'`ldap/servers/slapd/protect_db.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-protect_db.lo `test -f 'ldap/servers/slapd/protect_db.c' || echo '$(srcdir)/'`ldap/servers/slapd/protect_db.c - - ldap/servers/slapd/libslapd_la-proxyauth.lo: ldap/servers/slapd/proxyauth.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-proxyauth.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-proxyauth.Tpo -c -o ldap/servers/slapd/libslapd_la-proxyauth.lo `test -f 'ldap/servers/slapd/proxyauth.c' || echo '$(srcdir)/'`ldap/servers/slapd/proxyauth.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-proxyauth.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-proxyauth.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/proxyauth.c' object='ldap/servers/slapd/libslapd_la-proxyauth.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-proxyauth.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-proxyauth.Tpo -c -o ldap/servers/slapd/libslapd_la-proxyauth.lo `test -f 'ldap/servers/slapd/proxyauth.c' || echo '$(srcdir)/'`ldap/servers/slapd/proxyauth.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-proxyauth.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-proxyauth.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/proxyauth.c' object='ldap/servers/slapd/libslapd_la-proxyauth.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-proxyauth.lo `test -f 'ldap/servers/slapd/proxyauth.c' || echo '$(srcdir)/'`ldap/servers/slapd/proxyauth.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-proxyauth.lo `test -f 'ldap/servers/slapd/proxyauth.c' || echo '$(srcdir)/'`ldap/servers/slapd/proxyauth.c - - ldap/servers/slapd/libslapd_la-pw.lo: ldap/servers/slapd/pw.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-pw.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-pw.Tpo -c -o ldap/servers/slapd/libslapd_la-pw.lo `test -f 'ldap/servers/slapd/pw.c' || echo '$(srcdir)/'`ldap/servers/slapd/pw.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-pw.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-pw.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/pw.c' object='ldap/servers/slapd/libslapd_la-pw.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-pw.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-pw.Tpo -c -o ldap/servers/slapd/libslapd_la-pw.lo `test -f 'ldap/servers/slapd/pw.c' || echo '$(srcdir)/'`ldap/servers/slapd/pw.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-pw.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-pw.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/pw.c' object='ldap/servers/slapd/libslapd_la-pw.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-pw.lo `test -f 'ldap/servers/slapd/pw.c' || echo '$(srcdir)/'`ldap/servers/slapd/pw.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-pw.lo `test -f 'ldap/servers/slapd/pw.c' || echo '$(srcdir)/'`ldap/servers/slapd/pw.c - - ldap/servers/slapd/libslapd_la-pw_retry.lo: ldap/servers/slapd/pw_retry.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-pw_retry.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-pw_retry.Tpo -c -o ldap/servers/slapd/libslapd_la-pw_retry.lo `test -f 'ldap/servers/slapd/pw_retry.c' || echo '$(srcdir)/'`ldap/servers/slapd/pw_retry.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-pw_retry.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-pw_retry.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/pw_retry.c' object='ldap/servers/slapd/libslapd_la-pw_retry.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-pw_retry.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-pw_retry.Tpo -c -o ldap/servers/slapd/libslapd_la-pw_retry.lo `test -f 'ldap/servers/slapd/pw_retry.c' || echo '$(srcdir)/'`ldap/servers/slapd/pw_retry.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-pw_retry.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-pw_retry.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/pw_retry.c' object='ldap/servers/slapd/libslapd_la-pw_retry.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-pw_retry.lo `test -f 'ldap/servers/slapd/pw_retry.c' || echo '$(srcdir)/'`ldap/servers/slapd/pw_retry.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-pw_retry.lo `test -f 'ldap/servers/slapd/pw_retry.c' || echo '$(srcdir)/'`ldap/servers/slapd/pw_retry.c - - ldap/servers/slapd/libslapd_la-rdn.lo: ldap/servers/slapd/rdn.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-rdn.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-rdn.Tpo -c -o ldap/servers/slapd/libslapd_la-rdn.lo `test -f 'ldap/servers/slapd/rdn.c' || echo '$(srcdir)/'`ldap/servers/slapd/rdn.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-rdn.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-rdn.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/rdn.c' object='ldap/servers/slapd/libslapd_la-rdn.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-rdn.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-rdn.Tpo -c -o ldap/servers/slapd/libslapd_la-rdn.lo `test -f 'ldap/servers/slapd/rdn.c' || echo '$(srcdir)/'`ldap/servers/slapd/rdn.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-rdn.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-rdn.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/rdn.c' object='ldap/servers/slapd/libslapd_la-rdn.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-rdn.lo `test -f 'ldap/servers/slapd/rdn.c' || echo '$(srcdir)/'`ldap/servers/slapd/rdn.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-rdn.lo `test -f 'ldap/servers/slapd/rdn.c' || echo '$(srcdir)/'`ldap/servers/slapd/rdn.c - - ldap/servers/slapd/libslapd_la-referral.lo: ldap/servers/slapd/referral.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-referral.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-referral.Tpo -c -o ldap/servers/slapd/libslapd_la-referral.lo `test -f 'ldap/servers/slapd/referral.c' || echo '$(srcdir)/'`ldap/servers/slapd/referral.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-referral.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-referral.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/referral.c' object='ldap/servers/slapd/libslapd_la-referral.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-referral.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-referral.Tpo -c -o ldap/servers/slapd/libslapd_la-referral.lo `test -f 'ldap/servers/slapd/referral.c' || echo '$(srcdir)/'`ldap/servers/slapd/referral.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-referral.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-referral.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/referral.c' object='ldap/servers/slapd/libslapd_la-referral.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-referral.lo `test -f 'ldap/servers/slapd/referral.c' || echo '$(srcdir)/'`ldap/servers/slapd/referral.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-referral.lo `test -f 'ldap/servers/slapd/referral.c' || echo '$(srcdir)/'`ldap/servers/slapd/referral.c - - ldap/servers/slapd/libslapd_la-regex.lo: ldap/servers/slapd/regex.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-regex.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-regex.Tpo -c -o ldap/servers/slapd/libslapd_la-regex.lo `test -f 'ldap/servers/slapd/regex.c' || echo '$(srcdir)/'`ldap/servers/slapd/regex.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-regex.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-regex.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/regex.c' object='ldap/servers/slapd/libslapd_la-regex.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-regex.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-regex.Tpo -c -o ldap/servers/slapd/libslapd_la-regex.lo `test -f 'ldap/servers/slapd/regex.c' || echo '$(srcdir)/'`ldap/servers/slapd/regex.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-regex.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-regex.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/regex.c' object='ldap/servers/slapd/libslapd_la-regex.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-regex.lo `test -f 'ldap/servers/slapd/regex.c' || echo '$(srcdir)/'`ldap/servers/slapd/regex.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-regex.lo `test -f 'ldap/servers/slapd/regex.c' || echo '$(srcdir)/'`ldap/servers/slapd/regex.c - - ldap/servers/slapd/libslapd_la-resourcelimit.lo: ldap/servers/slapd/resourcelimit.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-resourcelimit.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-resourcelimit.Tpo -c -o ldap/servers/slapd/libslapd_la-resourcelimit.lo `test -f 'ldap/servers/slapd/resourcelimit.c' || echo '$(srcdir)/'`ldap/servers/slapd/resourcelimit.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-resourcelimit.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-resourcelimit.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/resourcelimit.c' object='ldap/servers/slapd/libslapd_la-resourcelimit.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-resourcelimit.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-resourcelimit.Tpo -c -o ldap/servers/slapd/libslapd_la-resourcelimit.lo `test -f 'ldap/servers/slapd/resourcelimit.c' || echo '$(srcdir)/'`ldap/servers/slapd/resourcelimit.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-resourcelimit.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-resourcelimit.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/resourcelimit.c' object='ldap/servers/slapd/libslapd_la-resourcelimit.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-resourcelimit.lo `test -f 'ldap/servers/slapd/resourcelimit.c' || echo '$(srcdir)/'`ldap/servers/slapd/resourcelimit.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-resourcelimit.lo `test -f 'ldap/servers/slapd/resourcelimit.c' || echo '$(srcdir)/'`ldap/servers/slapd/resourcelimit.c - - ldap/servers/slapd/libslapd_la-result.lo: ldap/servers/slapd/result.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-result.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-result.Tpo -c -o ldap/servers/slapd/libslapd_la-result.lo `test -f 'ldap/servers/slapd/result.c' || echo '$(srcdir)/'`ldap/servers/slapd/result.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-result.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-result.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/result.c' object='ldap/servers/slapd/libslapd_la-result.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-result.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-result.Tpo -c -o ldap/servers/slapd/libslapd_la-result.lo `test -f 'ldap/servers/slapd/result.c' || echo '$(srcdir)/'`ldap/servers/slapd/result.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-result.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-result.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/result.c' object='ldap/servers/slapd/libslapd_la-result.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-result.lo `test -f 'ldap/servers/slapd/result.c' || echo '$(srcdir)/'`ldap/servers/slapd/result.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-result.lo `test -f 'ldap/servers/slapd/result.c' || echo '$(srcdir)/'`ldap/servers/slapd/result.c - - ldap/servers/slapd/libslapd_la-sasl_map.lo: ldap/servers/slapd/sasl_map.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-sasl_map.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-sasl_map.Tpo -c -o ldap/servers/slapd/libslapd_la-sasl_map.lo `test -f 'ldap/servers/slapd/sasl_map.c' || echo '$(srcdir)/'`ldap/servers/slapd/sasl_map.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-sasl_map.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-sasl_map.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/sasl_map.c' object='ldap/servers/slapd/libslapd_la-sasl_map.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-sasl_map.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-sasl_map.Tpo -c -o ldap/servers/slapd/libslapd_la-sasl_map.lo `test -f 'ldap/servers/slapd/sasl_map.c' || echo '$(srcdir)/'`ldap/servers/slapd/sasl_map.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-sasl_map.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-sasl_map.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/sasl_map.c' object='ldap/servers/slapd/libslapd_la-sasl_map.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-sasl_map.lo `test -f 'ldap/servers/slapd/sasl_map.c' || echo '$(srcdir)/'`ldap/servers/slapd/sasl_map.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-sasl_map.lo `test -f 'ldap/servers/slapd/sasl_map.c' || echo '$(srcdir)/'`ldap/servers/slapd/sasl_map.c - - ldap/servers/slapd/libslapd_la-schema.lo: ldap/servers/slapd/schema.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-schema.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-schema.Tpo -c -o ldap/servers/slapd/libslapd_la-schema.lo `test -f 'ldap/servers/slapd/schema.c' || echo '$(srcdir)/'`ldap/servers/slapd/schema.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-schema.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-schema.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/schema.c' object='ldap/servers/slapd/libslapd_la-schema.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-schema.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-schema.Tpo -c -o ldap/servers/slapd/libslapd_la-schema.lo `test -f 'ldap/servers/slapd/schema.c' || echo '$(srcdir)/'`ldap/servers/slapd/schema.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-schema.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-schema.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/schema.c' object='ldap/servers/slapd/libslapd_la-schema.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-schema.lo `test -f 'ldap/servers/slapd/schema.c' || echo '$(srcdir)/'`ldap/servers/slapd/schema.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-schema.lo `test -f 'ldap/servers/slapd/schema.c' || echo '$(srcdir)/'`ldap/servers/slapd/schema.c - - ldap/servers/slapd/libslapd_la-schemaparse.lo: ldap/servers/slapd/schemaparse.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-schemaparse.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-schemaparse.Tpo -c -o ldap/servers/slapd/libslapd_la-schemaparse.lo `test -f 'ldap/servers/slapd/schemaparse.c' || echo '$(srcdir)/'`ldap/servers/slapd/schemaparse.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-schemaparse.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-schemaparse.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/schemaparse.c' object='ldap/servers/slapd/libslapd_la-schemaparse.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-schemaparse.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-schemaparse.Tpo -c -o ldap/servers/slapd/libslapd_la-schemaparse.lo `test -f 'ldap/servers/slapd/schemaparse.c' || echo '$(srcdir)/'`ldap/servers/slapd/schemaparse.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-schemaparse.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-schemaparse.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/schemaparse.c' object='ldap/servers/slapd/libslapd_la-schemaparse.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-schemaparse.lo `test -f 'ldap/servers/slapd/schemaparse.c' || echo '$(srcdir)/'`ldap/servers/slapd/schemaparse.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-schemaparse.lo `test -f 'ldap/servers/slapd/schemaparse.c' || echo '$(srcdir)/'`ldap/servers/slapd/schemaparse.c - - ldap/servers/slapd/libslapd_la-security_wrappers.lo: ldap/servers/slapd/security_wrappers.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-security_wrappers.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-security_wrappers.Tpo -c -o ldap/servers/slapd/libslapd_la-security_wrappers.lo `test -f 'ldap/servers/slapd/security_wrappers.c' || echo '$(srcdir)/'`ldap/servers/slapd/security_wrappers.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-security_wrappers.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-security_wrappers.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/security_wrappers.c' object='ldap/servers/slapd/libslapd_la-security_wrappers.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-security_wrappers.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-security_wrappers.Tpo -c -o ldap/servers/slapd/libslapd_la-security_wrappers.lo `test -f 'ldap/servers/slapd/security_wrappers.c' || echo '$(srcdir)/'`ldap/servers/slapd/security_wrappers.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-security_wrappers.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-security_wrappers.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/security_wrappers.c' object='ldap/servers/slapd/libslapd_la-security_wrappers.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-security_wrappers.lo `test -f 'ldap/servers/slapd/security_wrappers.c' || echo '$(srcdir)/'`ldap/servers/slapd/security_wrappers.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-security_wrappers.lo `test -f 'ldap/servers/slapd/security_wrappers.c' || echo '$(srcdir)/'`ldap/servers/slapd/security_wrappers.c - - ldap/servers/slapd/libslapd_la-slapd_plhash.lo: ldap/servers/slapd/slapd_plhash.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-slapd_plhash.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-slapd_plhash.Tpo -c -o ldap/servers/slapd/libslapd_la-slapd_plhash.lo `test -f 'ldap/servers/slapd/slapd_plhash.c' || echo '$(srcdir)/'`ldap/servers/slapd/slapd_plhash.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-slapd_plhash.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-slapd_plhash.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/slapd_plhash.c' object='ldap/servers/slapd/libslapd_la-slapd_plhash.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-slapd_plhash.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-slapd_plhash.Tpo -c -o ldap/servers/slapd/libslapd_la-slapd_plhash.lo `test -f 'ldap/servers/slapd/slapd_plhash.c' || echo '$(srcdir)/'`ldap/servers/slapd/slapd_plhash.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-slapd_plhash.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-slapd_plhash.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/slapd_plhash.c' object='ldap/servers/slapd/libslapd_la-slapd_plhash.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-slapd_plhash.lo `test -f 'ldap/servers/slapd/slapd_plhash.c' || echo '$(srcdir)/'`ldap/servers/slapd/slapd_plhash.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-slapd_plhash.lo `test -f 'ldap/servers/slapd/slapd_plhash.c' || echo '$(srcdir)/'`ldap/servers/slapd/slapd_plhash.c - - ldap/servers/slapd/libslapd_la-slapi_counter.lo: ldap/servers/slapd/slapi_counter.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-slapi_counter.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-slapi_counter.Tpo -c -o ldap/servers/slapd/libslapd_la-slapi_counter.lo `test -f 'ldap/servers/slapd/slapi_counter.c' || echo '$(srcdir)/'`ldap/servers/slapd/slapi_counter.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-slapi_counter.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-slapi_counter.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/slapi_counter.c' object='ldap/servers/slapd/libslapd_la-slapi_counter.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-slapi_counter.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-slapi_counter.Tpo -c -o ldap/servers/slapd/libslapd_la-slapi_counter.lo `test -f 'ldap/servers/slapd/slapi_counter.c' || echo '$(srcdir)/'`ldap/servers/slapd/slapi_counter.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-slapi_counter.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-slapi_counter.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/slapi_counter.c' object='ldap/servers/slapd/libslapd_la-slapi_counter.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-slapi_counter.lo `test -f 'ldap/servers/slapd/slapi_counter.c' || echo '$(srcdir)/'`ldap/servers/slapd/slapi_counter.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-slapi_counter.lo `test -f 'ldap/servers/slapd/slapi_counter.c' || echo '$(srcdir)/'`ldap/servers/slapd/slapi_counter.c - - ldap/servers/slapd/libslapd_la-slapi2nspr.lo: ldap/servers/slapd/slapi2nspr.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-slapi2nspr.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-slapi2nspr.Tpo -c -o ldap/servers/slapd/libslapd_la-slapi2nspr.lo `test -f 'ldap/servers/slapd/slapi2nspr.c' || echo '$(srcdir)/'`ldap/servers/slapd/slapi2nspr.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-slapi2nspr.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-slapi2nspr.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/slapi2nspr.c' object='ldap/servers/slapd/libslapd_la-slapi2nspr.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-slapi2nspr.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-slapi2nspr.Tpo -c -o ldap/servers/slapd/libslapd_la-slapi2nspr.lo `test -f 'ldap/servers/slapd/slapi2nspr.c' || echo '$(srcdir)/'`ldap/servers/slapd/slapi2nspr.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-slapi2nspr.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-slapi2nspr.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/slapi2nspr.c' object='ldap/servers/slapd/libslapd_la-slapi2nspr.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-slapi2nspr.lo `test -f 'ldap/servers/slapd/slapi2nspr.c' || echo '$(srcdir)/'`ldap/servers/slapd/slapi2nspr.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-slapi2nspr.lo `test -f 'ldap/servers/slapd/slapi2nspr.c' || echo '$(srcdir)/'`ldap/servers/slapd/slapi2nspr.c - - ldap/servers/slapd/libslapd_la-snmp_collator.lo: ldap/servers/slapd/snmp_collator.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-snmp_collator.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-snmp_collator.Tpo -c -o ldap/servers/slapd/libslapd_la-snmp_collator.lo `test -f 'ldap/servers/slapd/snmp_collator.c' || echo '$(srcdir)/'`ldap/servers/slapd/snmp_collator.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-snmp_collator.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-snmp_collator.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/snmp_collator.c' object='ldap/servers/slapd/libslapd_la-snmp_collator.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-snmp_collator.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-snmp_collator.Tpo -c -o ldap/servers/slapd/libslapd_la-snmp_collator.lo `test -f 'ldap/servers/slapd/snmp_collator.c' || echo '$(srcdir)/'`ldap/servers/slapd/snmp_collator.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-snmp_collator.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-snmp_collator.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/snmp_collator.c' object='ldap/servers/slapd/libslapd_la-snmp_collator.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-snmp_collator.lo `test -f 'ldap/servers/slapd/snmp_collator.c' || echo '$(srcdir)/'`ldap/servers/slapd/snmp_collator.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-snmp_collator.lo `test -f 'ldap/servers/slapd/snmp_collator.c' || echo '$(srcdir)/'`ldap/servers/slapd/snmp_collator.c - - ldap/servers/slapd/libslapd_la-sort.lo: ldap/servers/slapd/sort.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-sort.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-sort.Tpo -c -o ldap/servers/slapd/libslapd_la-sort.lo `test -f 'ldap/servers/slapd/sort.c' || echo '$(srcdir)/'`ldap/servers/slapd/sort.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-sort.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-sort.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/sort.c' object='ldap/servers/slapd/libslapd_la-sort.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-sort.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-sort.Tpo -c -o ldap/servers/slapd/libslapd_la-sort.lo `test -f 'ldap/servers/slapd/sort.c' || echo '$(srcdir)/'`ldap/servers/slapd/sort.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-sort.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-sort.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/sort.c' object='ldap/servers/slapd/libslapd_la-sort.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-sort.lo `test -f 'ldap/servers/slapd/sort.c' || echo '$(srcdir)/'`ldap/servers/slapd/sort.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-sort.lo `test -f 'ldap/servers/slapd/sort.c' || echo '$(srcdir)/'`ldap/servers/slapd/sort.c - - ldap/servers/slapd/libslapd_la-ssl.lo: ldap/servers/slapd/ssl.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-ssl.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-ssl.Tpo -c -o ldap/servers/slapd/libslapd_la-ssl.lo `test -f 'ldap/servers/slapd/ssl.c' || echo '$(srcdir)/'`ldap/servers/slapd/ssl.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-ssl.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-ssl.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/ssl.c' object='ldap/servers/slapd/libslapd_la-ssl.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-ssl.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-ssl.Tpo -c -o ldap/servers/slapd/libslapd_la-ssl.lo `test -f 'ldap/servers/slapd/ssl.c' || echo '$(srcdir)/'`ldap/servers/slapd/ssl.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-ssl.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-ssl.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/ssl.c' object='ldap/servers/slapd/libslapd_la-ssl.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-ssl.lo `test -f 'ldap/servers/slapd/ssl.c' || echo '$(srcdir)/'`ldap/servers/slapd/ssl.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-ssl.lo `test -f 'ldap/servers/slapd/ssl.c' || echo '$(srcdir)/'`ldap/servers/slapd/ssl.c - - ldap/servers/slapd/libslapd_la-str2filter.lo: ldap/servers/slapd/str2filter.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-str2filter.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-str2filter.Tpo -c -o ldap/servers/slapd/libslapd_la-str2filter.lo `test -f 'ldap/servers/slapd/str2filter.c' || echo '$(srcdir)/'`ldap/servers/slapd/str2filter.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-str2filter.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-str2filter.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/str2filter.c' object='ldap/servers/slapd/libslapd_la-str2filter.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-str2filter.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-str2filter.Tpo -c -o ldap/servers/slapd/libslapd_la-str2filter.lo `test -f 'ldap/servers/slapd/str2filter.c' || echo '$(srcdir)/'`ldap/servers/slapd/str2filter.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-str2filter.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-str2filter.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/str2filter.c' object='ldap/servers/slapd/libslapd_la-str2filter.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-str2filter.lo `test -f 'ldap/servers/slapd/str2filter.c' || echo '$(srcdir)/'`ldap/servers/slapd/str2filter.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-str2filter.lo `test -f 'ldap/servers/slapd/str2filter.c' || echo '$(srcdir)/'`ldap/servers/slapd/str2filter.c - - ldap/servers/slapd/libslapd_la-subentry.lo: ldap/servers/slapd/subentry.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-subentry.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-subentry.Tpo -c -o ldap/servers/slapd/libslapd_la-subentry.lo `test -f 'ldap/servers/slapd/subentry.c' || echo '$(srcdir)/'`ldap/servers/slapd/subentry.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-subentry.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-subentry.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/subentry.c' object='ldap/servers/slapd/libslapd_la-subentry.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-subentry.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-subentry.Tpo -c -o ldap/servers/slapd/libslapd_la-subentry.lo `test -f 'ldap/servers/slapd/subentry.c' || echo '$(srcdir)/'`ldap/servers/slapd/subentry.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-subentry.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-subentry.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/subentry.c' object='ldap/servers/slapd/libslapd_la-subentry.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-subentry.lo `test -f 'ldap/servers/slapd/subentry.c' || echo '$(srcdir)/'`ldap/servers/slapd/subentry.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-subentry.lo `test -f 'ldap/servers/slapd/subentry.c' || echo '$(srcdir)/'`ldap/servers/slapd/subentry.c - - ldap/servers/slapd/libslapd_la-task.lo: ldap/servers/slapd/task.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-task.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-task.Tpo -c -o ldap/servers/slapd/libslapd_la-task.lo `test -f 'ldap/servers/slapd/task.c' || echo '$(srcdir)/'`ldap/servers/slapd/task.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-task.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-task.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/task.c' object='ldap/servers/slapd/libslapd_la-task.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-task.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-task.Tpo -c -o ldap/servers/slapd/libslapd_la-task.lo `test -f 'ldap/servers/slapd/task.c' || echo '$(srcdir)/'`ldap/servers/slapd/task.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-task.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-task.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/task.c' object='ldap/servers/slapd/libslapd_la-task.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-task.lo `test -f 'ldap/servers/slapd/task.c' || echo '$(srcdir)/'`ldap/servers/slapd/task.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-task.lo `test -f 'ldap/servers/slapd/task.c' || echo '$(srcdir)/'`ldap/servers/slapd/task.c - - ldap/servers/slapd/libslapd_la-time.lo: ldap/servers/slapd/time.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-time.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-time.Tpo -c -o ldap/servers/slapd/libslapd_la-time.lo `test -f 'ldap/servers/slapd/time.c' || echo '$(srcdir)/'`ldap/servers/slapd/time.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-time.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-time.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/time.c' object='ldap/servers/slapd/libslapd_la-time.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-time.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-time.Tpo -c -o ldap/servers/slapd/libslapd_la-time.lo `test -f 'ldap/servers/slapd/time.c' || echo '$(srcdir)/'`ldap/servers/slapd/time.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-time.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-time.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/time.c' object='ldap/servers/slapd/libslapd_la-time.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-time.lo `test -f 'ldap/servers/slapd/time.c' || echo '$(srcdir)/'`ldap/servers/slapd/time.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-time.lo `test -f 'ldap/servers/slapd/time.c' || echo '$(srcdir)/'`ldap/servers/slapd/time.c - - ldap/servers/slapd/libslapd_la-thread_data.lo: ldap/servers/slapd/thread_data.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-thread_data.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-thread_data.Tpo -c -o ldap/servers/slapd/libslapd_la-thread_data.lo `test -f 'ldap/servers/slapd/thread_data.c' || echo '$(srcdir)/'`ldap/servers/slapd/thread_data.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-thread_data.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-thread_data.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/thread_data.c' object='ldap/servers/slapd/libslapd_la-thread_data.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-thread_data.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-thread_data.Tpo -c -o ldap/servers/slapd/libslapd_la-thread_data.lo `test -f 'ldap/servers/slapd/thread_data.c' || echo '$(srcdir)/'`ldap/servers/slapd/thread_data.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-thread_data.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-thread_data.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/thread_data.c' object='ldap/servers/slapd/libslapd_la-thread_data.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-thread_data.lo `test -f 'ldap/servers/slapd/thread_data.c' || echo '$(srcdir)/'`ldap/servers/slapd/thread_data.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-thread_data.lo `test -f 'ldap/servers/slapd/thread_data.c' || echo '$(srcdir)/'`ldap/servers/slapd/thread_data.c - - ldap/servers/slapd/libslapd_la-uniqueid.lo: ldap/servers/slapd/uniqueid.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-uniqueid.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-uniqueid.Tpo -c -o ldap/servers/slapd/libslapd_la-uniqueid.lo `test -f 'ldap/servers/slapd/uniqueid.c' || echo '$(srcdir)/'`ldap/servers/slapd/uniqueid.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-uniqueid.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-uniqueid.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/uniqueid.c' object='ldap/servers/slapd/libslapd_la-uniqueid.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-uniqueid.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-uniqueid.Tpo -c -o ldap/servers/slapd/libslapd_la-uniqueid.lo `test -f 'ldap/servers/slapd/uniqueid.c' || echo '$(srcdir)/'`ldap/servers/slapd/uniqueid.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-uniqueid.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-uniqueid.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/uniqueid.c' object='ldap/servers/slapd/libslapd_la-uniqueid.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-uniqueid.lo `test -f 'ldap/servers/slapd/uniqueid.c' || echo '$(srcdir)/'`ldap/servers/slapd/uniqueid.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-uniqueid.lo `test -f 'ldap/servers/slapd/uniqueid.c' || echo '$(srcdir)/'`ldap/servers/slapd/uniqueid.c - - ldap/servers/slapd/libslapd_la-uniqueidgen.lo: ldap/servers/slapd/uniqueidgen.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-uniqueidgen.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-uniqueidgen.Tpo -c -o ldap/servers/slapd/libslapd_la-uniqueidgen.lo `test -f 'ldap/servers/slapd/uniqueidgen.c' || echo '$(srcdir)/'`ldap/servers/slapd/uniqueidgen.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-uniqueidgen.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-uniqueidgen.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/uniqueidgen.c' object='ldap/servers/slapd/libslapd_la-uniqueidgen.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-uniqueidgen.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-uniqueidgen.Tpo -c -o ldap/servers/slapd/libslapd_la-uniqueidgen.lo `test -f 'ldap/servers/slapd/uniqueidgen.c' || echo '$(srcdir)/'`ldap/servers/slapd/uniqueidgen.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-uniqueidgen.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-uniqueidgen.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/uniqueidgen.c' object='ldap/servers/slapd/libslapd_la-uniqueidgen.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-uniqueidgen.lo `test -f 'ldap/servers/slapd/uniqueidgen.c' || echo '$(srcdir)/'`ldap/servers/slapd/uniqueidgen.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-uniqueidgen.lo `test -f 'ldap/servers/slapd/uniqueidgen.c' || echo '$(srcdir)/'`ldap/servers/slapd/uniqueidgen.c - - ldap/servers/slapd/libslapd_la-utf8.lo: ldap/servers/slapd/utf8.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-utf8.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-utf8.Tpo -c -o ldap/servers/slapd/libslapd_la-utf8.lo `test -f 'ldap/servers/slapd/utf8.c' || echo '$(srcdir)/'`ldap/servers/slapd/utf8.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-utf8.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-utf8.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/utf8.c' object='ldap/servers/slapd/libslapd_la-utf8.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-utf8.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-utf8.Tpo -c -o ldap/servers/slapd/libslapd_la-utf8.lo `test -f 'ldap/servers/slapd/utf8.c' || echo '$(srcdir)/'`ldap/servers/slapd/utf8.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-utf8.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-utf8.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/utf8.c' object='ldap/servers/slapd/libslapd_la-utf8.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-utf8.lo `test -f 'ldap/servers/slapd/utf8.c' || echo '$(srcdir)/'`ldap/servers/slapd/utf8.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-utf8.lo `test -f 'ldap/servers/slapd/utf8.c' || echo '$(srcdir)/'`ldap/servers/slapd/utf8.c - - ldap/servers/slapd/libslapd_la-utf8compare.lo: ldap/servers/slapd/utf8compare.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-utf8compare.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-utf8compare.Tpo -c -o ldap/servers/slapd/libslapd_la-utf8compare.lo `test -f 'ldap/servers/slapd/utf8compare.c' || echo '$(srcdir)/'`ldap/servers/slapd/utf8compare.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-utf8compare.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-utf8compare.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/utf8compare.c' object='ldap/servers/slapd/libslapd_la-utf8compare.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-utf8compare.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-utf8compare.Tpo -c -o ldap/servers/slapd/libslapd_la-utf8compare.lo `test -f 'ldap/servers/slapd/utf8compare.c' || echo '$(srcdir)/'`ldap/servers/slapd/utf8compare.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-utf8compare.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-utf8compare.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/utf8compare.c' object='ldap/servers/slapd/libslapd_la-utf8compare.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-utf8compare.lo `test -f 'ldap/servers/slapd/utf8compare.c' || echo '$(srcdir)/'`ldap/servers/slapd/utf8compare.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-utf8compare.lo `test -f 'ldap/servers/slapd/utf8compare.c' || echo '$(srcdir)/'`ldap/servers/slapd/utf8compare.c - - ldap/servers/slapd/libslapd_la-util.lo: ldap/servers/slapd/util.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-util.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-util.Tpo -c -o ldap/servers/slapd/libslapd_la-util.lo `test -f 'ldap/servers/slapd/util.c' || echo '$(srcdir)/'`ldap/servers/slapd/util.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-util.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-util.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/util.c' object='ldap/servers/slapd/libslapd_la-util.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-util.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-util.Tpo -c -o ldap/servers/slapd/libslapd_la-util.lo `test -f 'ldap/servers/slapd/util.c' || echo '$(srcdir)/'`ldap/servers/slapd/util.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-util.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-util.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/util.c' object='ldap/servers/slapd/libslapd_la-util.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-util.lo `test -f 'ldap/servers/slapd/util.c' || echo '$(srcdir)/'`ldap/servers/slapd/util.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-util.lo `test -f 'ldap/servers/slapd/util.c' || echo '$(srcdir)/'`ldap/servers/slapd/util.c - - ldap/servers/slapd/libslapd_la-uuid.lo: ldap/servers/slapd/uuid.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-uuid.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-uuid.Tpo -c -o ldap/servers/slapd/libslapd_la-uuid.lo `test -f 'ldap/servers/slapd/uuid.c' || echo '$(srcdir)/'`ldap/servers/slapd/uuid.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-uuid.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-uuid.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/uuid.c' object='ldap/servers/slapd/libslapd_la-uuid.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-uuid.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-uuid.Tpo -c -o ldap/servers/slapd/libslapd_la-uuid.lo `test -f 'ldap/servers/slapd/uuid.c' || echo '$(srcdir)/'`ldap/servers/slapd/uuid.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-uuid.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-uuid.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/uuid.c' object='ldap/servers/slapd/libslapd_la-uuid.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-uuid.lo `test -f 'ldap/servers/slapd/uuid.c' || echo '$(srcdir)/'`ldap/servers/slapd/uuid.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-uuid.lo `test -f 'ldap/servers/slapd/uuid.c' || echo '$(srcdir)/'`ldap/servers/slapd/uuid.c - - ldap/servers/slapd/libslapd_la-value.lo: ldap/servers/slapd/value.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-value.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-value.Tpo -c -o ldap/servers/slapd/libslapd_la-value.lo `test -f 'ldap/servers/slapd/value.c' || echo '$(srcdir)/'`ldap/servers/slapd/value.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-value.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-value.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/value.c' object='ldap/servers/slapd/libslapd_la-value.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-value.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-value.Tpo -c -o ldap/servers/slapd/libslapd_la-value.lo `test -f 'ldap/servers/slapd/value.c' || echo '$(srcdir)/'`ldap/servers/slapd/value.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-value.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-value.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/value.c' object='ldap/servers/slapd/libslapd_la-value.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-value.lo `test -f 'ldap/servers/slapd/value.c' || echo '$(srcdir)/'`ldap/servers/slapd/value.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-value.lo `test -f 'ldap/servers/slapd/value.c' || echo '$(srcdir)/'`ldap/servers/slapd/value.c - - ldap/servers/slapd/libslapd_la-valueset.lo: ldap/servers/slapd/valueset.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-valueset.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-valueset.Tpo -c -o ldap/servers/slapd/libslapd_la-valueset.lo `test -f 'ldap/servers/slapd/valueset.c' || echo '$(srcdir)/'`ldap/servers/slapd/valueset.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-valueset.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-valueset.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/valueset.c' object='ldap/servers/slapd/libslapd_la-valueset.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-valueset.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-valueset.Tpo -c -o ldap/servers/slapd/libslapd_la-valueset.lo `test -f 'ldap/servers/slapd/valueset.c' || echo '$(srcdir)/'`ldap/servers/slapd/valueset.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-valueset.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-valueset.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/valueset.c' object='ldap/servers/slapd/libslapd_la-valueset.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-valueset.lo `test -f 'ldap/servers/slapd/valueset.c' || echo '$(srcdir)/'`ldap/servers/slapd/valueset.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-valueset.lo `test -f 'ldap/servers/slapd/valueset.c' || echo '$(srcdir)/'`ldap/servers/slapd/valueset.c - - ldap/servers/slapd/libslapd_la-vattr.lo: ldap/servers/slapd/vattr.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-vattr.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-vattr.Tpo -c -o ldap/servers/slapd/libslapd_la-vattr.lo `test -f 'ldap/servers/slapd/vattr.c' || echo '$(srcdir)/'`ldap/servers/slapd/vattr.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-vattr.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-vattr.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/vattr.c' object='ldap/servers/slapd/libslapd_la-vattr.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/libslapd_la-vattr.lo -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/libslapd_la-vattr.Tpo -c -o ldap/servers/slapd/libslapd_la-vattr.lo `test -f 'ldap/servers/slapd/vattr.c' || echo '$(srcdir)/'`ldap/servers/slapd/vattr.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/libslapd_la-vattr.Tpo ldap/servers/slapd/$(DEPDIR)/libslapd_la-vattr.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/vattr.c' object='ldap/servers/slapd/libslapd_la-vattr.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-vattr.lo `test -f 'ldap/servers/slapd/vattr.c' || echo '$(srcdir)/'`ldap/servers/slapd/vattr.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/libslapd_la-vattr.lo `test -f 'ldap/servers/slapd/vattr.c' || echo '$(srcdir)/'`ldap/servers/slapd/vattr.c - - ldap/libraries/libavl/libslapd_la-avl.lo: ldap/libraries/libavl/avl.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/libraries/libavl/libslapd_la-avl.lo -MD -MP -MF ldap/libraries/libavl/$(DEPDIR)/libslapd_la-avl.Tpo -c -o ldap/libraries/libavl/libslapd_la-avl.lo `test -f 'ldap/libraries/libavl/avl.c' || echo '$(srcdir)/'`ldap/libraries/libavl/avl.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/libraries/libavl/$(DEPDIR)/libslapd_la-avl.Tpo ldap/libraries/libavl/$(DEPDIR)/libslapd_la-avl.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/libraries/libavl/avl.c' object='ldap/libraries/libavl/libslapd_la-avl.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/libraries/libavl/libslapd_la-avl.lo -MD -MP -MF ldap/libraries/libavl/$(DEPDIR)/libslapd_la-avl.Tpo -c -o ldap/libraries/libavl/libslapd_la-avl.lo `test -f 'ldap/libraries/libavl/avl.c' || echo '$(srcdir)/'`ldap/libraries/libavl/avl.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/libraries/libavl/$(DEPDIR)/libslapd_la-avl.Tpo ldap/libraries/libavl/$(DEPDIR)/libslapd_la-avl.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/libraries/libavl/avl.c' object='ldap/libraries/libavl/libslapd_la-avl.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/libraries/libavl/libslapd_la-avl.lo `test -f 'ldap/libraries/libavl/avl.c' || echo '$(srcdir)/'`ldap/libraries/libavl/avl.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libslapd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/libraries/libavl/libslapd_la-avl.lo `test -f 'ldap/libraries/libavl/avl.c' || echo '$(srcdir)/'`ldap/libraries/libavl/avl.c - - ldap/servers/plugins/statechange/libstatechange_plugin_la-statechange.lo: ldap/servers/plugins/statechange/statechange.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstatechange_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/statechange/libstatechange_plugin_la-statechange.lo -MD -MP -MF ldap/servers/plugins/statechange/$(DEPDIR)/libstatechange_plugin_la-statechange.Tpo -c -o ldap/servers/plugins/statechange/libstatechange_plugin_la-statechange.lo `test -f 'ldap/servers/plugins/statechange/statechange.c' || echo '$(srcdir)/'`ldap/servers/plugins/statechange/statechange.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/statechange/$(DEPDIR)/libstatechange_plugin_la-statechange.Tpo ldap/servers/plugins/statechange/$(DEPDIR)/libstatechange_plugin_la-statechange.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/statechange/statechange.c' object='ldap/servers/plugins/statechange/libstatechange_plugin_la-statechange.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstatechange_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/statechange/libstatechange_plugin_la-statechange.lo -MD -MP -MF ldap/servers/plugins/statechange/$(DEPDIR)/libstatechange_plugin_la-statechange.Tpo -c -o ldap/servers/plugins/statechange/libstatechange_plugin_la-statechange.lo `test -f 'ldap/servers/plugins/statechange/statechange.c' || echo '$(srcdir)/'`ldap/servers/plugins/statechange/statechange.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/statechange/$(DEPDIR)/libstatechange_plugin_la-statechange.Tpo ldap/servers/plugins/statechange/$(DEPDIR)/libstatechange_plugin_la-statechange.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/statechange/statechange.c' object='ldap/servers/plugins/statechange/libstatechange_plugin_la-statechange.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstatechange_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/statechange/libstatechange_plugin_la-statechange.lo `test -f 'ldap/servers/plugins/statechange/statechange.c' || echo '$(srcdir)/'`ldap/servers/plugins/statechange/statechange.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstatechange_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/statechange/libstatechange_plugin_la-statechange.lo `test -f 'ldap/servers/plugins/statechange/statechange.c' || echo '$(srcdir)/'`ldap/servers/plugins/statechange/statechange.c - - ldap/servers/plugins/syntaxes/libsyntax_plugin_la-bin.lo: ldap/servers/plugins/syntaxes/bin.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/syntaxes/libsyntax_plugin_la-bin.lo -MD -MP -MF ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-bin.Tpo -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-bin.lo `test -f 'ldap/servers/plugins/syntaxes/bin.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/bin.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-bin.Tpo ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-bin.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/syntaxes/bin.c' object='ldap/servers/plugins/syntaxes/libsyntax_plugin_la-bin.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/syntaxes/libsyntax_plugin_la-bin.lo -MD -MP -MF ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-bin.Tpo -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-bin.lo `test -f 'ldap/servers/plugins/syntaxes/bin.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/bin.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-bin.Tpo ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-bin.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/syntaxes/bin.c' object='ldap/servers/plugins/syntaxes/libsyntax_plugin_la-bin.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-bin.lo `test -f 'ldap/servers/plugins/syntaxes/bin.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/bin.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-bin.lo `test -f 'ldap/servers/plugins/syntaxes/bin.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/bin.c - - ldap/servers/plugins/syntaxes/libsyntax_plugin_la-bitstring.lo: ldap/servers/plugins/syntaxes/bitstring.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/syntaxes/libsyntax_plugin_la-bitstring.lo -MD -MP -MF ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-bitstring.Tpo -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-bitstring.lo `test -f 'ldap/servers/plugins/syntaxes/bitstring.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/bitstring.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-bitstring.Tpo ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-bitstring.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/syntaxes/bitstring.c' object='ldap/servers/plugins/syntaxes/libsyntax_plugin_la-bitstring.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/syntaxes/libsyntax_plugin_la-bitstring.lo -MD -MP -MF ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-bitstring.Tpo -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-bitstring.lo `test -f 'ldap/servers/plugins/syntaxes/bitstring.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/bitstring.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-bitstring.Tpo ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-bitstring.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/syntaxes/bitstring.c' object='ldap/servers/plugins/syntaxes/libsyntax_plugin_la-bitstring.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-bitstring.lo `test -f 'ldap/servers/plugins/syntaxes/bitstring.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/bitstring.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-bitstring.lo `test -f 'ldap/servers/plugins/syntaxes/bitstring.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/bitstring.c - - ldap/servers/plugins/syntaxes/libsyntax_plugin_la-ces.lo: ldap/servers/plugins/syntaxes/ces.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/syntaxes/libsyntax_plugin_la-ces.lo -MD -MP -MF ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-ces.Tpo -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-ces.lo `test -f 'ldap/servers/plugins/syntaxes/ces.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/ces.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-ces.Tpo ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-ces.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/syntaxes/ces.c' object='ldap/servers/plugins/syntaxes/libsyntax_plugin_la-ces.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/syntaxes/libsyntax_plugin_la-ces.lo -MD -MP -MF ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-ces.Tpo -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-ces.lo `test -f 'ldap/servers/plugins/syntaxes/ces.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/ces.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-ces.Tpo ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-ces.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/syntaxes/ces.c' object='ldap/servers/plugins/syntaxes/libsyntax_plugin_la-ces.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-ces.lo `test -f 'ldap/servers/plugins/syntaxes/ces.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/ces.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-ces.lo `test -f 'ldap/servers/plugins/syntaxes/ces.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/ces.c - - ldap/servers/plugins/syntaxes/libsyntax_plugin_la-cis.lo: ldap/servers/plugins/syntaxes/cis.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/syntaxes/libsyntax_plugin_la-cis.lo -MD -MP -MF ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-cis.Tpo -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-cis.lo `test -f 'ldap/servers/plugins/syntaxes/cis.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/cis.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-cis.Tpo ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-cis.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/syntaxes/cis.c' object='ldap/servers/plugins/syntaxes/libsyntax_plugin_la-cis.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/syntaxes/libsyntax_plugin_la-cis.lo -MD -MP -MF ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-cis.Tpo -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-cis.lo `test -f 'ldap/servers/plugins/syntaxes/cis.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/cis.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-cis.Tpo ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-cis.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/syntaxes/cis.c' object='ldap/servers/plugins/syntaxes/libsyntax_plugin_la-cis.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-cis.lo `test -f 'ldap/servers/plugins/syntaxes/cis.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/cis.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-cis.lo `test -f 'ldap/servers/plugins/syntaxes/cis.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/cis.c - - ldap/servers/plugins/syntaxes/libsyntax_plugin_la-debug.lo: ldap/servers/plugins/syntaxes/debug.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/syntaxes/libsyntax_plugin_la-debug.lo -MD -MP -MF ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-debug.Tpo -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-debug.lo `test -f 'ldap/servers/plugins/syntaxes/debug.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/debug.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-debug.Tpo ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-debug.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/syntaxes/debug.c' object='ldap/servers/plugins/syntaxes/libsyntax_plugin_la-debug.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/syntaxes/libsyntax_plugin_la-debug.lo -MD -MP -MF ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-debug.Tpo -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-debug.lo `test -f 'ldap/servers/plugins/syntaxes/debug.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/debug.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-debug.Tpo ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-debug.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/syntaxes/debug.c' object='ldap/servers/plugins/syntaxes/libsyntax_plugin_la-debug.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-debug.lo `test -f 'ldap/servers/plugins/syntaxes/debug.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/debug.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-debug.lo `test -f 'ldap/servers/plugins/syntaxes/debug.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/debug.c - - ldap/servers/plugins/syntaxes/libsyntax_plugin_la-dn.lo: ldap/servers/plugins/syntaxes/dn.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/syntaxes/libsyntax_plugin_la-dn.lo -MD -MP -MF ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-dn.Tpo -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-dn.lo `test -f 'ldap/servers/plugins/syntaxes/dn.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/dn.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-dn.Tpo ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-dn.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/syntaxes/dn.c' object='ldap/servers/plugins/syntaxes/libsyntax_plugin_la-dn.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/syntaxes/libsyntax_plugin_la-dn.lo -MD -MP -MF ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-dn.Tpo -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-dn.lo `test -f 'ldap/servers/plugins/syntaxes/dn.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/dn.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-dn.Tpo ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-dn.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/syntaxes/dn.c' object='ldap/servers/plugins/syntaxes/libsyntax_plugin_la-dn.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-dn.lo `test -f 'ldap/servers/plugins/syntaxes/dn.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/dn.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-dn.lo `test -f 'ldap/servers/plugins/syntaxes/dn.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/dn.c - - ldap/servers/plugins/syntaxes/libsyntax_plugin_la-deliverymethod.lo: ldap/servers/plugins/syntaxes/deliverymethod.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/syntaxes/libsyntax_plugin_la-deliverymethod.lo -MD -MP -MF ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-deliverymethod.Tpo -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-deliverymethod.lo `test -f 'ldap/servers/plugins/syntaxes/deliverymethod.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/deliverymethod.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-deliverymethod.Tpo ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-deliverymethod.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/syntaxes/deliverymethod.c' object='ldap/servers/plugins/syntaxes/libsyntax_plugin_la-deliverymethod.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/syntaxes/libsyntax_plugin_la-deliverymethod.lo -MD -MP -MF ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-deliverymethod.Tpo -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-deliverymethod.lo `test -f 'ldap/servers/plugins/syntaxes/deliverymethod.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/deliverymethod.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-deliverymethod.Tpo ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-deliverymethod.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/syntaxes/deliverymethod.c' object='ldap/servers/plugins/syntaxes/libsyntax_plugin_la-deliverymethod.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-deliverymethod.lo `test -f 'ldap/servers/plugins/syntaxes/deliverymethod.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/deliverymethod.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-deliverymethod.lo `test -f 'ldap/servers/plugins/syntaxes/deliverymethod.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/deliverymethod.c - - ldap/servers/plugins/syntaxes/libsyntax_plugin_la-facsimile.lo: ldap/servers/plugins/syntaxes/facsimile.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/syntaxes/libsyntax_plugin_la-facsimile.lo -MD -MP -MF ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-facsimile.Tpo -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-facsimile.lo `test -f 'ldap/servers/plugins/syntaxes/facsimile.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/facsimile.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-facsimile.Tpo ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-facsimile.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/syntaxes/facsimile.c' object='ldap/servers/plugins/syntaxes/libsyntax_plugin_la-facsimile.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/syntaxes/libsyntax_plugin_la-facsimile.lo -MD -MP -MF ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-facsimile.Tpo -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-facsimile.lo `test -f 'ldap/servers/plugins/syntaxes/facsimile.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/facsimile.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-facsimile.Tpo ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-facsimile.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/syntaxes/facsimile.c' object='ldap/servers/plugins/syntaxes/libsyntax_plugin_la-facsimile.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-facsimile.lo `test -f 'ldap/servers/plugins/syntaxes/facsimile.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/facsimile.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-facsimile.lo `test -f 'ldap/servers/plugins/syntaxes/facsimile.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/facsimile.c - - ldap/servers/plugins/syntaxes/libsyntax_plugin_la-guide.lo: ldap/servers/plugins/syntaxes/guide.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/syntaxes/libsyntax_plugin_la-guide.lo -MD -MP -MF ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-guide.Tpo -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-guide.lo `test -f 'ldap/servers/plugins/syntaxes/guide.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/guide.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-guide.Tpo ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-guide.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/syntaxes/guide.c' object='ldap/servers/plugins/syntaxes/libsyntax_plugin_la-guide.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/syntaxes/libsyntax_plugin_la-guide.lo -MD -MP -MF ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-guide.Tpo -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-guide.lo `test -f 'ldap/servers/plugins/syntaxes/guide.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/guide.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-guide.Tpo ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-guide.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/syntaxes/guide.c' object='ldap/servers/plugins/syntaxes/libsyntax_plugin_la-guide.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-guide.lo `test -f 'ldap/servers/plugins/syntaxes/guide.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/guide.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-guide.lo `test -f 'ldap/servers/plugins/syntaxes/guide.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/guide.c - - ldap/servers/plugins/syntaxes/libsyntax_plugin_la-int.lo: ldap/servers/plugins/syntaxes/int.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/syntaxes/libsyntax_plugin_la-int.lo -MD -MP -MF ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-int.Tpo -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-int.lo `test -f 'ldap/servers/plugins/syntaxes/int.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/int.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-int.Tpo ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-int.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/syntaxes/int.c' object='ldap/servers/plugins/syntaxes/libsyntax_plugin_la-int.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/syntaxes/libsyntax_plugin_la-int.lo -MD -MP -MF ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-int.Tpo -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-int.lo `test -f 'ldap/servers/plugins/syntaxes/int.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/int.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-int.Tpo ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-int.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/syntaxes/int.c' object='ldap/servers/plugins/syntaxes/libsyntax_plugin_la-int.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-int.lo `test -f 'ldap/servers/plugins/syntaxes/int.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/int.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-int.lo `test -f 'ldap/servers/plugins/syntaxes/int.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/int.c - - ldap/servers/plugins/syntaxes/libsyntax_plugin_la-nameoptuid.lo: ldap/servers/plugins/syntaxes/nameoptuid.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/syntaxes/libsyntax_plugin_la-nameoptuid.lo -MD -MP -MF ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-nameoptuid.Tpo -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-nameoptuid.lo `test -f 'ldap/servers/plugins/syntaxes/nameoptuid.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/nameoptuid.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-nameoptuid.Tpo ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-nameoptuid.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/syntaxes/nameoptuid.c' object='ldap/servers/plugins/syntaxes/libsyntax_plugin_la-nameoptuid.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/syntaxes/libsyntax_plugin_la-nameoptuid.lo -MD -MP -MF ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-nameoptuid.Tpo -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-nameoptuid.lo `test -f 'ldap/servers/plugins/syntaxes/nameoptuid.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/nameoptuid.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-nameoptuid.Tpo ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-nameoptuid.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/syntaxes/nameoptuid.c' object='ldap/servers/plugins/syntaxes/libsyntax_plugin_la-nameoptuid.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-nameoptuid.lo `test -f 'ldap/servers/plugins/syntaxes/nameoptuid.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/nameoptuid.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-nameoptuid.lo `test -f 'ldap/servers/plugins/syntaxes/nameoptuid.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/nameoptuid.c - - ldap/servers/plugins/syntaxes/libsyntax_plugin_la-numericstring.lo: ldap/servers/plugins/syntaxes/numericstring.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/syntaxes/libsyntax_plugin_la-numericstring.lo -MD -MP -MF ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-numericstring.Tpo -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-numericstring.lo `test -f 'ldap/servers/plugins/syntaxes/numericstring.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/numericstring.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-numericstring.Tpo ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-numericstring.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/syntaxes/numericstring.c' object='ldap/servers/plugins/syntaxes/libsyntax_plugin_la-numericstring.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/syntaxes/libsyntax_plugin_la-numericstring.lo -MD -MP -MF ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-numericstring.Tpo -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-numericstring.lo `test -f 'ldap/servers/plugins/syntaxes/numericstring.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/numericstring.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-numericstring.Tpo ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-numericstring.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/syntaxes/numericstring.c' object='ldap/servers/plugins/syntaxes/libsyntax_plugin_la-numericstring.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-numericstring.lo `test -f 'ldap/servers/plugins/syntaxes/numericstring.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/numericstring.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-numericstring.lo `test -f 'ldap/servers/plugins/syntaxes/numericstring.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/numericstring.c - - ldap/servers/plugins/syntaxes/libsyntax_plugin_la-phonetic.lo: ldap/servers/plugins/syntaxes/phonetic.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/syntaxes/libsyntax_plugin_la-phonetic.lo -MD -MP -MF ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-phonetic.Tpo -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-phonetic.lo `test -f 'ldap/servers/plugins/syntaxes/phonetic.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/phonetic.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-phonetic.Tpo ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-phonetic.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/syntaxes/phonetic.c' object='ldap/servers/plugins/syntaxes/libsyntax_plugin_la-phonetic.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/syntaxes/libsyntax_plugin_la-phonetic.lo -MD -MP -MF ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-phonetic.Tpo -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-phonetic.lo `test -f 'ldap/servers/plugins/syntaxes/phonetic.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/phonetic.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-phonetic.Tpo ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-phonetic.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/syntaxes/phonetic.c' object='ldap/servers/plugins/syntaxes/libsyntax_plugin_la-phonetic.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-phonetic.lo `test -f 'ldap/servers/plugins/syntaxes/phonetic.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/phonetic.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-phonetic.lo `test -f 'ldap/servers/plugins/syntaxes/phonetic.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/phonetic.c - - ldap/servers/plugins/syntaxes/libsyntax_plugin_la-sicis.lo: ldap/servers/plugins/syntaxes/sicis.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/syntaxes/libsyntax_plugin_la-sicis.lo -MD -MP -MF ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-sicis.Tpo -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-sicis.lo `test -f 'ldap/servers/plugins/syntaxes/sicis.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/sicis.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-sicis.Tpo ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-sicis.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/syntaxes/sicis.c' object='ldap/servers/plugins/syntaxes/libsyntax_plugin_la-sicis.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/syntaxes/libsyntax_plugin_la-sicis.lo -MD -MP -MF ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-sicis.Tpo -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-sicis.lo `test -f 'ldap/servers/plugins/syntaxes/sicis.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/sicis.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-sicis.Tpo ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-sicis.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/syntaxes/sicis.c' object='ldap/servers/plugins/syntaxes/libsyntax_plugin_la-sicis.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-sicis.lo `test -f 'ldap/servers/plugins/syntaxes/sicis.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/sicis.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-sicis.lo `test -f 'ldap/servers/plugins/syntaxes/sicis.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/sicis.c - - ldap/servers/plugins/syntaxes/libsyntax_plugin_la-string.lo: ldap/servers/plugins/syntaxes/string.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/syntaxes/libsyntax_plugin_la-string.lo -MD -MP -MF ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-string.Tpo -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-string.lo `test -f 'ldap/servers/plugins/syntaxes/string.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/string.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-string.Tpo ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-string.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/syntaxes/string.c' object='ldap/servers/plugins/syntaxes/libsyntax_plugin_la-string.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/syntaxes/libsyntax_plugin_la-string.lo -MD -MP -MF ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-string.Tpo -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-string.lo `test -f 'ldap/servers/plugins/syntaxes/string.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/string.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-string.Tpo ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-string.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/syntaxes/string.c' object='ldap/servers/plugins/syntaxes/libsyntax_plugin_la-string.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-string.lo `test -f 'ldap/servers/plugins/syntaxes/string.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/string.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-string.lo `test -f 'ldap/servers/plugins/syntaxes/string.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/string.c - - ldap/servers/plugins/syntaxes/libsyntax_plugin_la-syntax_common.lo: ldap/servers/plugins/syntaxes/syntax_common.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/syntaxes/libsyntax_plugin_la-syntax_common.lo -MD -MP -MF ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-syntax_common.Tpo -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-syntax_common.lo `test -f 'ldap/servers/plugins/syntaxes/syntax_common.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/syntax_common.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-syntax_common.Tpo ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-syntax_common.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/syntaxes/syntax_common.c' object='ldap/servers/plugins/syntaxes/libsyntax_plugin_la-syntax_common.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/syntaxes/libsyntax_plugin_la-syntax_common.lo -MD -MP -MF ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-syntax_common.Tpo -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-syntax_common.lo `test -f 'ldap/servers/plugins/syntaxes/syntax_common.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/syntax_common.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-syntax_common.Tpo ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-syntax_common.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/syntaxes/syntax_common.c' object='ldap/servers/plugins/syntaxes/libsyntax_plugin_la-syntax_common.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-syntax_common.lo `test -f 'ldap/servers/plugins/syntaxes/syntax_common.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/syntax_common.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-syntax_common.lo `test -f 'ldap/servers/plugins/syntaxes/syntax_common.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/syntax_common.c - - ldap/servers/plugins/syntaxes/libsyntax_plugin_la-tel.lo: ldap/servers/plugins/syntaxes/tel.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/syntaxes/libsyntax_plugin_la-tel.lo -MD -MP -MF ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-tel.Tpo -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-tel.lo `test -f 'ldap/servers/plugins/syntaxes/tel.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/tel.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-tel.Tpo ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-tel.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/syntaxes/tel.c' object='ldap/servers/plugins/syntaxes/libsyntax_plugin_la-tel.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/syntaxes/libsyntax_plugin_la-tel.lo -MD -MP -MF ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-tel.Tpo -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-tel.lo `test -f 'ldap/servers/plugins/syntaxes/tel.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/tel.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-tel.Tpo ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-tel.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/syntaxes/tel.c' object='ldap/servers/plugins/syntaxes/libsyntax_plugin_la-tel.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-tel.lo `test -f 'ldap/servers/plugins/syntaxes/tel.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/tel.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-tel.lo `test -f 'ldap/servers/plugins/syntaxes/tel.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/tel.c - - ldap/servers/plugins/syntaxes/libsyntax_plugin_la-telex.lo: ldap/servers/plugins/syntaxes/telex.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/syntaxes/libsyntax_plugin_la-telex.lo -MD -MP -MF ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-telex.Tpo -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-telex.lo `test -f 'ldap/servers/plugins/syntaxes/telex.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/telex.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-telex.Tpo ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-telex.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/syntaxes/telex.c' object='ldap/servers/plugins/syntaxes/libsyntax_plugin_la-telex.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/syntaxes/libsyntax_plugin_la-telex.lo -MD -MP -MF ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-telex.Tpo -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-telex.lo `test -f 'ldap/servers/plugins/syntaxes/telex.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/telex.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-telex.Tpo ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-telex.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/syntaxes/telex.c' object='ldap/servers/plugins/syntaxes/libsyntax_plugin_la-telex.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-telex.lo `test -f 'ldap/servers/plugins/syntaxes/telex.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/telex.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-telex.lo `test -f 'ldap/servers/plugins/syntaxes/telex.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/telex.c - - ldap/servers/plugins/syntaxes/libsyntax_plugin_la-teletex.lo: ldap/servers/plugins/syntaxes/teletex.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/syntaxes/libsyntax_plugin_la-teletex.lo -MD -MP -MF ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-teletex.Tpo -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-teletex.lo `test -f 'ldap/servers/plugins/syntaxes/teletex.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/teletex.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-teletex.Tpo ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-teletex.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/syntaxes/teletex.c' object='ldap/servers/plugins/syntaxes/libsyntax_plugin_la-teletex.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/syntaxes/libsyntax_plugin_la-teletex.lo -MD -MP -MF ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-teletex.Tpo -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-teletex.lo `test -f 'ldap/servers/plugins/syntaxes/teletex.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/teletex.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-teletex.Tpo ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-teletex.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/syntaxes/teletex.c' object='ldap/servers/plugins/syntaxes/libsyntax_plugin_la-teletex.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-teletex.lo `test -f 'ldap/servers/plugins/syntaxes/teletex.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/teletex.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-teletex.lo `test -f 'ldap/servers/plugins/syntaxes/teletex.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/teletex.c - - ldap/servers/plugins/syntaxes/libsyntax_plugin_la-validate.lo: ldap/servers/plugins/syntaxes/validate.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/syntaxes/libsyntax_plugin_la-validate.lo -MD -MP -MF ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-validate.Tpo -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-validate.lo `test -f 'ldap/servers/plugins/syntaxes/validate.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/validate.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-validate.Tpo ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-validate.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/syntaxes/validate.c' object='ldap/servers/plugins/syntaxes/libsyntax_plugin_la-validate.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/syntaxes/libsyntax_plugin_la-validate.lo -MD -MP -MF ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-validate.Tpo -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-validate.lo `test -f 'ldap/servers/plugins/syntaxes/validate.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/validate.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-validate.Tpo ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-validate.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/syntaxes/validate.c' object='ldap/servers/plugins/syntaxes/libsyntax_plugin_la-validate.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-validate.lo `test -f 'ldap/servers/plugins/syntaxes/validate.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/validate.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-validate.lo `test -f 'ldap/servers/plugins/syntaxes/validate.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/validate.c - - ldap/servers/plugins/syntaxes/libsyntax_plugin_la-validate_task.lo: ldap/servers/plugins/syntaxes/validate_task.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/syntaxes/libsyntax_plugin_la-validate_task.lo -MD -MP -MF ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-validate_task.Tpo -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-validate_task.lo `test -f 'ldap/servers/plugins/syntaxes/validate_task.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/validate_task.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-validate_task.Tpo ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-validate_task.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/syntaxes/validate_task.c' object='ldap/servers/plugins/syntaxes/libsyntax_plugin_la-validate_task.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/syntaxes/libsyntax_plugin_la-validate_task.lo -MD -MP -MF ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-validate_task.Tpo -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-validate_task.lo `test -f 'ldap/servers/plugins/syntaxes/validate_task.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/validate_task.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-validate_task.Tpo ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-validate_task.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/syntaxes/validate_task.c' object='ldap/servers/plugins/syntaxes/libsyntax_plugin_la-validate_task.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-validate_task.lo `test -f 'ldap/servers/plugins/syntaxes/validate_task.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/validate_task.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-validate_task.lo `test -f 'ldap/servers/plugins/syntaxes/validate_task.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/validate_task.c - - ldap/servers/plugins/syntaxes/libsyntax_plugin_la-value.lo: ldap/servers/plugins/syntaxes/value.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/syntaxes/libsyntax_plugin_la-value.lo -MD -MP -MF ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-value.Tpo -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-value.lo `test -f 'ldap/servers/plugins/syntaxes/value.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/value.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-value.Tpo ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-value.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/syntaxes/value.c' object='ldap/servers/plugins/syntaxes/libsyntax_plugin_la-value.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/syntaxes/libsyntax_plugin_la-value.lo -MD -MP -MF ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-value.Tpo -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-value.lo `test -f 'ldap/servers/plugins/syntaxes/value.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/value.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-value.Tpo ldap/servers/plugins/syntaxes/$(DEPDIR)/libsyntax_plugin_la-value.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/syntaxes/value.c' object='ldap/servers/plugins/syntaxes/libsyntax_plugin_la-value.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-value.lo `test -f 'ldap/servers/plugins/syntaxes/value.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/value.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsyntax_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/syntaxes/libsyntax_plugin_la-value.lo `test -f 'ldap/servers/plugins/syntaxes/value.c' || echo '$(srcdir)/'`ldap/servers/plugins/syntaxes/value.c - - ldap/servers/plugins/usn/libusn_plugin_la-usn.lo: ldap/servers/plugins/usn/usn.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libusn_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/usn/libusn_plugin_la-usn.lo -MD -MP -MF ldap/servers/plugins/usn/$(DEPDIR)/libusn_plugin_la-usn.Tpo -c -o ldap/servers/plugins/usn/libusn_plugin_la-usn.lo `test -f 'ldap/servers/plugins/usn/usn.c' || echo '$(srcdir)/'`ldap/servers/plugins/usn/usn.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/usn/$(DEPDIR)/libusn_plugin_la-usn.Tpo ldap/servers/plugins/usn/$(DEPDIR)/libusn_plugin_la-usn.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/usn/usn.c' object='ldap/servers/plugins/usn/libusn_plugin_la-usn.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libusn_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/usn/libusn_plugin_la-usn.lo -MD -MP -MF ldap/servers/plugins/usn/$(DEPDIR)/libusn_plugin_la-usn.Tpo -c -o ldap/servers/plugins/usn/libusn_plugin_la-usn.lo `test -f 'ldap/servers/plugins/usn/usn.c' || echo '$(srcdir)/'`ldap/servers/plugins/usn/usn.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/usn/$(DEPDIR)/libusn_plugin_la-usn.Tpo ldap/servers/plugins/usn/$(DEPDIR)/libusn_plugin_la-usn.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/usn/usn.c' object='ldap/servers/plugins/usn/libusn_plugin_la-usn.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libusn_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/usn/libusn_plugin_la-usn.lo `test -f 'ldap/servers/plugins/usn/usn.c' || echo '$(srcdir)/'`ldap/servers/plugins/usn/usn.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libusn_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/usn/libusn_plugin_la-usn.lo `test -f 'ldap/servers/plugins/usn/usn.c' || echo '$(srcdir)/'`ldap/servers/plugins/usn/usn.c - - ldap/servers/plugins/usn/libusn_plugin_la-usn_cleanup.lo: ldap/servers/plugins/usn/usn_cleanup.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libusn_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/usn/libusn_plugin_la-usn_cleanup.lo -MD -MP -MF ldap/servers/plugins/usn/$(DEPDIR)/libusn_plugin_la-usn_cleanup.Tpo -c -o ldap/servers/plugins/usn/libusn_plugin_la-usn_cleanup.lo `test -f 'ldap/servers/plugins/usn/usn_cleanup.c' || echo '$(srcdir)/'`ldap/servers/plugins/usn/usn_cleanup.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/usn/$(DEPDIR)/libusn_plugin_la-usn_cleanup.Tpo ldap/servers/plugins/usn/$(DEPDIR)/libusn_plugin_la-usn_cleanup.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/usn/usn_cleanup.c' object='ldap/servers/plugins/usn/libusn_plugin_la-usn_cleanup.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libusn_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/usn/libusn_plugin_la-usn_cleanup.lo -MD -MP -MF ldap/servers/plugins/usn/$(DEPDIR)/libusn_plugin_la-usn_cleanup.Tpo -c -o ldap/servers/plugins/usn/libusn_plugin_la-usn_cleanup.lo `test -f 'ldap/servers/plugins/usn/usn_cleanup.c' || echo '$(srcdir)/'`ldap/servers/plugins/usn/usn_cleanup.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/usn/$(DEPDIR)/libusn_plugin_la-usn_cleanup.Tpo ldap/servers/plugins/usn/$(DEPDIR)/libusn_plugin_la-usn_cleanup.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/usn/usn_cleanup.c' object='ldap/servers/plugins/usn/libusn_plugin_la-usn_cleanup.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libusn_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/usn/libusn_plugin_la-usn_cleanup.lo `test -f 'ldap/servers/plugins/usn/usn_cleanup.c' || echo '$(srcdir)/'`ldap/servers/plugins/usn/usn_cleanup.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libusn_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/usn/libusn_plugin_la-usn_cleanup.lo `test -f 'ldap/servers/plugins/usn/usn_cleanup.c' || echo '$(srcdir)/'`ldap/servers/plugins/usn/usn_cleanup.c - - ldap/servers/plugins/views/libviews_plugin_la-views.lo: ldap/servers/plugins/views/views.c --@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libviews_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/views/libviews_plugin_la-views.lo -MD -MP -MF ldap/servers/plugins/views/$(DEPDIR)/libviews_plugin_la-views.Tpo -c -o ldap/servers/plugins/views/libviews_plugin_la-views.lo `test -f 'ldap/servers/plugins/views/views.c' || echo '$(srcdir)/'`ldap/servers/plugins/views/views.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/plugins/views/$(DEPDIR)/libviews_plugin_la-views.Tpo ldap/servers/plugins/views/$(DEPDIR)/libviews_plugin_la-views.Plo --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/plugins/views/views.c' object='ldap/servers/plugins/views/libviews_plugin_la-views.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libviews_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/plugins/views/libviews_plugin_la-views.lo -MD -MP -MF ldap/servers/plugins/views/$(DEPDIR)/libviews_plugin_la-views.Tpo -c -o ldap/servers/plugins/views/libviews_plugin_la-views.lo `test -f 'ldap/servers/plugins/views/views.c' || echo '$(srcdir)/'`ldap/servers/plugins/views/views.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/plugins/views/$(DEPDIR)/libviews_plugin_la-views.Tpo ldap/servers/plugins/views/$(DEPDIR)/libviews_plugin_la-views.Plo -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/plugins/views/views.c' object='ldap/servers/plugins/views/libviews_plugin_la-views.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libviews_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/views/libviews_plugin_la-views.lo `test -f 'ldap/servers/plugins/views/views.c' || echo '$(srcdir)/'`ldap/servers/plugins/views/views.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libviews_plugin_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/plugins/views/libviews_plugin_la-views.lo `test -f 'ldap/servers/plugins/views/views.c' || echo '$(srcdir)/'`ldap/servers/plugins/views/views.c - - ldap/servers/slapd/tools/dbscan_bin-dbscan.o: ldap/servers/slapd/tools/dbscan.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(dbscan_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/dbscan_bin-dbscan.o -MD -MP -MF ldap/servers/slapd/tools/$(DEPDIR)/dbscan_bin-dbscan.Tpo -c -o ldap/servers/slapd/tools/dbscan_bin-dbscan.o `test -f 'ldap/servers/slapd/tools/dbscan.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/dbscan.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/tools/$(DEPDIR)/dbscan_bin-dbscan.Tpo ldap/servers/slapd/tools/$(DEPDIR)/dbscan_bin-dbscan.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/tools/dbscan.c' object='ldap/servers/slapd/tools/dbscan_bin-dbscan.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(dbscan_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/dbscan_bin-dbscan.o -MD -MP -MF ldap/servers/slapd/tools/$(DEPDIR)/dbscan_bin-dbscan.Tpo -c -o ldap/servers/slapd/tools/dbscan_bin-dbscan.o `test -f 'ldap/servers/slapd/tools/dbscan.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/dbscan.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/tools/$(DEPDIR)/dbscan_bin-dbscan.Tpo ldap/servers/slapd/tools/$(DEPDIR)/dbscan_bin-dbscan.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/tools/dbscan.c' object='ldap/servers/slapd/tools/dbscan_bin-dbscan.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(dbscan_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/dbscan_bin-dbscan.o `test -f 'ldap/servers/slapd/tools/dbscan.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/dbscan.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(dbscan_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/dbscan_bin-dbscan.o `test -f 'ldap/servers/slapd/tools/dbscan.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/dbscan.c - - ldap/servers/slapd/tools/dbscan_bin-dbscan.obj: ldap/servers/slapd/tools/dbscan.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(dbscan_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/dbscan_bin-dbscan.obj -MD -MP -MF ldap/servers/slapd/tools/$(DEPDIR)/dbscan_bin-dbscan.Tpo -c -o ldap/servers/slapd/tools/dbscan_bin-dbscan.obj `if test -f 'ldap/servers/slapd/tools/dbscan.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/dbscan.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/dbscan.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/tools/$(DEPDIR)/dbscan_bin-dbscan.Tpo ldap/servers/slapd/tools/$(DEPDIR)/dbscan_bin-dbscan.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/tools/dbscan.c' object='ldap/servers/slapd/tools/dbscan_bin-dbscan.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(dbscan_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/dbscan_bin-dbscan.obj -MD -MP -MF ldap/servers/slapd/tools/$(DEPDIR)/dbscan_bin-dbscan.Tpo -c -o ldap/servers/slapd/tools/dbscan_bin-dbscan.obj `if test -f 'ldap/servers/slapd/tools/dbscan.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/dbscan.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/dbscan.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/tools/$(DEPDIR)/dbscan_bin-dbscan.Tpo ldap/servers/slapd/tools/$(DEPDIR)/dbscan_bin-dbscan.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/tools/dbscan.c' object='ldap/servers/slapd/tools/dbscan_bin-dbscan.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(dbscan_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/dbscan_bin-dbscan.obj `if test -f 'ldap/servers/slapd/tools/dbscan.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/dbscan.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/dbscan.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(dbscan_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/dbscan_bin-dbscan.obj `if test -f 'ldap/servers/slapd/tools/dbscan.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/dbscan.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/dbscan.c'; fi` - - ldap/servers/slapd/tools/rsearch/infadd_bin-addthread.o: ldap/servers/slapd/tools/rsearch/addthread.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(infadd_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/rsearch/infadd_bin-addthread.o -MD -MP -MF ldap/servers/slapd/tools/rsearch/$(DEPDIR)/infadd_bin-addthread.Tpo -c -o ldap/servers/slapd/tools/rsearch/infadd_bin-addthread.o `test -f 'ldap/servers/slapd/tools/rsearch/addthread.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/rsearch/addthread.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/tools/rsearch/$(DEPDIR)/infadd_bin-addthread.Tpo ldap/servers/slapd/tools/rsearch/$(DEPDIR)/infadd_bin-addthread.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/tools/rsearch/addthread.c' object='ldap/servers/slapd/tools/rsearch/infadd_bin-addthread.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(infadd_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/rsearch/infadd_bin-addthread.o -MD -MP -MF ldap/servers/slapd/tools/rsearch/$(DEPDIR)/infadd_bin-addthread.Tpo -c -o ldap/servers/slapd/tools/rsearch/infadd_bin-addthread.o `test -f 'ldap/servers/slapd/tools/rsearch/addthread.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/rsearch/addthread.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/tools/rsearch/$(DEPDIR)/infadd_bin-addthread.Tpo ldap/servers/slapd/tools/rsearch/$(DEPDIR)/infadd_bin-addthread.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/tools/rsearch/addthread.c' object='ldap/servers/slapd/tools/rsearch/infadd_bin-addthread.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(infadd_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/rsearch/infadd_bin-addthread.o `test -f 'ldap/servers/slapd/tools/rsearch/addthread.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/rsearch/addthread.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(infadd_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/rsearch/infadd_bin-addthread.o `test -f 'ldap/servers/slapd/tools/rsearch/addthread.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/rsearch/addthread.c - - ldap/servers/slapd/tools/rsearch/infadd_bin-addthread.obj: ldap/servers/slapd/tools/rsearch/addthread.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(infadd_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/rsearch/infadd_bin-addthread.obj -MD -MP -MF ldap/servers/slapd/tools/rsearch/$(DEPDIR)/infadd_bin-addthread.Tpo -c -o ldap/servers/slapd/tools/rsearch/infadd_bin-addthread.obj `if test -f 'ldap/servers/slapd/tools/rsearch/addthread.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/rsearch/addthread.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/rsearch/addthread.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/tools/rsearch/$(DEPDIR)/infadd_bin-addthread.Tpo ldap/servers/slapd/tools/rsearch/$(DEPDIR)/infadd_bin-addthread.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/tools/rsearch/addthread.c' object='ldap/servers/slapd/tools/rsearch/infadd_bin-addthread.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(infadd_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/rsearch/infadd_bin-addthread.obj -MD -MP -MF ldap/servers/slapd/tools/rsearch/$(DEPDIR)/infadd_bin-addthread.Tpo -c -o ldap/servers/slapd/tools/rsearch/infadd_bin-addthread.obj `if test -f 'ldap/servers/slapd/tools/rsearch/addthread.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/rsearch/addthread.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/rsearch/addthread.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/tools/rsearch/$(DEPDIR)/infadd_bin-addthread.Tpo ldap/servers/slapd/tools/rsearch/$(DEPDIR)/infadd_bin-addthread.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/tools/rsearch/addthread.c' object='ldap/servers/slapd/tools/rsearch/infadd_bin-addthread.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(infadd_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/rsearch/infadd_bin-addthread.obj `if test -f 'ldap/servers/slapd/tools/rsearch/addthread.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/rsearch/addthread.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/rsearch/addthread.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(infadd_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/rsearch/infadd_bin-addthread.obj `if test -f 'ldap/servers/slapd/tools/rsearch/addthread.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/rsearch/addthread.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/rsearch/addthread.c'; fi` - - ldap/servers/slapd/tools/rsearch/infadd_bin-infadd.o: ldap/servers/slapd/tools/rsearch/infadd.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(infadd_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/rsearch/infadd_bin-infadd.o -MD -MP -MF ldap/servers/slapd/tools/rsearch/$(DEPDIR)/infadd_bin-infadd.Tpo -c -o ldap/servers/slapd/tools/rsearch/infadd_bin-infadd.o `test -f 'ldap/servers/slapd/tools/rsearch/infadd.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/rsearch/infadd.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/tools/rsearch/$(DEPDIR)/infadd_bin-infadd.Tpo ldap/servers/slapd/tools/rsearch/$(DEPDIR)/infadd_bin-infadd.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/tools/rsearch/infadd.c' object='ldap/servers/slapd/tools/rsearch/infadd_bin-infadd.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(infadd_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/rsearch/infadd_bin-infadd.o -MD -MP -MF ldap/servers/slapd/tools/rsearch/$(DEPDIR)/infadd_bin-infadd.Tpo -c -o ldap/servers/slapd/tools/rsearch/infadd_bin-infadd.o `test -f 'ldap/servers/slapd/tools/rsearch/infadd.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/rsearch/infadd.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/tools/rsearch/$(DEPDIR)/infadd_bin-infadd.Tpo ldap/servers/slapd/tools/rsearch/$(DEPDIR)/infadd_bin-infadd.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/tools/rsearch/infadd.c' object='ldap/servers/slapd/tools/rsearch/infadd_bin-infadd.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(infadd_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/rsearch/infadd_bin-infadd.o `test -f 'ldap/servers/slapd/tools/rsearch/infadd.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/rsearch/infadd.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(infadd_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/rsearch/infadd_bin-infadd.o `test -f 'ldap/servers/slapd/tools/rsearch/infadd.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/rsearch/infadd.c - - ldap/servers/slapd/tools/rsearch/infadd_bin-infadd.obj: ldap/servers/slapd/tools/rsearch/infadd.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(infadd_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/rsearch/infadd_bin-infadd.obj -MD -MP -MF ldap/servers/slapd/tools/rsearch/$(DEPDIR)/infadd_bin-infadd.Tpo -c -o ldap/servers/slapd/tools/rsearch/infadd_bin-infadd.obj `if test -f 'ldap/servers/slapd/tools/rsearch/infadd.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/rsearch/infadd.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/rsearch/infadd.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/tools/rsearch/$(DEPDIR)/infadd_bin-infadd.Tpo ldap/servers/slapd/tools/rsearch/$(DEPDIR)/infadd_bin-infadd.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/tools/rsearch/infadd.c' object='ldap/servers/slapd/tools/rsearch/infadd_bin-infadd.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(infadd_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/rsearch/infadd_bin-infadd.obj -MD -MP -MF ldap/servers/slapd/tools/rsearch/$(DEPDIR)/infadd_bin-infadd.Tpo -c -o ldap/servers/slapd/tools/rsearch/infadd_bin-infadd.obj `if test -f 'ldap/servers/slapd/tools/rsearch/infadd.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/rsearch/infadd.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/rsearch/infadd.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/tools/rsearch/$(DEPDIR)/infadd_bin-infadd.Tpo ldap/servers/slapd/tools/rsearch/$(DEPDIR)/infadd_bin-infadd.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/tools/rsearch/infadd.c' object='ldap/servers/slapd/tools/rsearch/infadd_bin-infadd.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(infadd_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/rsearch/infadd_bin-infadd.obj `if test -f 'ldap/servers/slapd/tools/rsearch/infadd.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/rsearch/infadd.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/rsearch/infadd.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(infadd_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/rsearch/infadd_bin-infadd.obj `if test -f 'ldap/servers/slapd/tools/rsearch/infadd.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/rsearch/infadd.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/rsearch/infadd.c'; fi` - - ldap/servers/slapd/tools/rsearch/infadd_bin-nametable.o: ldap/servers/slapd/tools/rsearch/nametable.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(infadd_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/rsearch/infadd_bin-nametable.o -MD -MP -MF ldap/servers/slapd/tools/rsearch/$(DEPDIR)/infadd_bin-nametable.Tpo -c -o ldap/servers/slapd/tools/rsearch/infadd_bin-nametable.o `test -f 'ldap/servers/slapd/tools/rsearch/nametable.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/rsearch/nametable.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/tools/rsearch/$(DEPDIR)/infadd_bin-nametable.Tpo ldap/servers/slapd/tools/rsearch/$(DEPDIR)/infadd_bin-nametable.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/tools/rsearch/nametable.c' object='ldap/servers/slapd/tools/rsearch/infadd_bin-nametable.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(infadd_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/rsearch/infadd_bin-nametable.o -MD -MP -MF ldap/servers/slapd/tools/rsearch/$(DEPDIR)/infadd_bin-nametable.Tpo -c -o ldap/servers/slapd/tools/rsearch/infadd_bin-nametable.o `test -f 'ldap/servers/slapd/tools/rsearch/nametable.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/rsearch/nametable.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/tools/rsearch/$(DEPDIR)/infadd_bin-nametable.Tpo ldap/servers/slapd/tools/rsearch/$(DEPDIR)/infadd_bin-nametable.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/tools/rsearch/nametable.c' object='ldap/servers/slapd/tools/rsearch/infadd_bin-nametable.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(infadd_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/rsearch/infadd_bin-nametable.o `test -f 'ldap/servers/slapd/tools/rsearch/nametable.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/rsearch/nametable.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(infadd_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/rsearch/infadd_bin-nametable.o `test -f 'ldap/servers/slapd/tools/rsearch/nametable.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/rsearch/nametable.c - - ldap/servers/slapd/tools/rsearch/infadd_bin-nametable.obj: ldap/servers/slapd/tools/rsearch/nametable.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(infadd_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/rsearch/infadd_bin-nametable.obj -MD -MP -MF ldap/servers/slapd/tools/rsearch/$(DEPDIR)/infadd_bin-nametable.Tpo -c -o ldap/servers/slapd/tools/rsearch/infadd_bin-nametable.obj `if test -f 'ldap/servers/slapd/tools/rsearch/nametable.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/rsearch/nametable.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/rsearch/nametable.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/tools/rsearch/$(DEPDIR)/infadd_bin-nametable.Tpo ldap/servers/slapd/tools/rsearch/$(DEPDIR)/infadd_bin-nametable.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/tools/rsearch/nametable.c' object='ldap/servers/slapd/tools/rsearch/infadd_bin-nametable.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(infadd_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/rsearch/infadd_bin-nametable.obj -MD -MP -MF ldap/servers/slapd/tools/rsearch/$(DEPDIR)/infadd_bin-nametable.Tpo -c -o ldap/servers/slapd/tools/rsearch/infadd_bin-nametable.obj `if test -f 'ldap/servers/slapd/tools/rsearch/nametable.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/rsearch/nametable.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/rsearch/nametable.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/tools/rsearch/$(DEPDIR)/infadd_bin-nametable.Tpo ldap/servers/slapd/tools/rsearch/$(DEPDIR)/infadd_bin-nametable.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/tools/rsearch/nametable.c' object='ldap/servers/slapd/tools/rsearch/infadd_bin-nametable.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(infadd_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/rsearch/infadd_bin-nametable.obj `if test -f 'ldap/servers/slapd/tools/rsearch/nametable.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/rsearch/nametable.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/rsearch/nametable.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(infadd_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/rsearch/infadd_bin-nametable.obj `if test -f 'ldap/servers/slapd/tools/rsearch/nametable.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/rsearch/nametable.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/rsearch/nametable.c'; fi` - - ldap/servers/snmp/ldap_agent_bin-main.o: ldap/servers/snmp/main.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldap_agent_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/snmp/ldap_agent_bin-main.o -MD -MP -MF ldap/servers/snmp/$(DEPDIR)/ldap_agent_bin-main.Tpo -c -o ldap/servers/snmp/ldap_agent_bin-main.o `test -f 'ldap/servers/snmp/main.c' || echo '$(srcdir)/'`ldap/servers/snmp/main.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/snmp/$(DEPDIR)/ldap_agent_bin-main.Tpo ldap/servers/snmp/$(DEPDIR)/ldap_agent_bin-main.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/snmp/main.c' object='ldap/servers/snmp/ldap_agent_bin-main.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldap_agent_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/snmp/ldap_agent_bin-main.o -MD -MP -MF ldap/servers/snmp/$(DEPDIR)/ldap_agent_bin-main.Tpo -c -o ldap/servers/snmp/ldap_agent_bin-main.o `test -f 'ldap/servers/snmp/main.c' || echo '$(srcdir)/'`ldap/servers/snmp/main.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/snmp/$(DEPDIR)/ldap_agent_bin-main.Tpo ldap/servers/snmp/$(DEPDIR)/ldap_agent_bin-main.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/snmp/main.c' object='ldap/servers/snmp/ldap_agent_bin-main.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldap_agent_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/snmp/ldap_agent_bin-main.o `test -f 'ldap/servers/snmp/main.c' || echo '$(srcdir)/'`ldap/servers/snmp/main.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldap_agent_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/snmp/ldap_agent_bin-main.o `test -f 'ldap/servers/snmp/main.c' || echo '$(srcdir)/'`ldap/servers/snmp/main.c - - ldap/servers/snmp/ldap_agent_bin-main.obj: ldap/servers/snmp/main.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldap_agent_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/snmp/ldap_agent_bin-main.obj -MD -MP -MF ldap/servers/snmp/$(DEPDIR)/ldap_agent_bin-main.Tpo -c -o ldap/servers/snmp/ldap_agent_bin-main.obj `if test -f 'ldap/servers/snmp/main.c'; then $(CYGPATH_W) 'ldap/servers/snmp/main.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/snmp/main.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/snmp/$(DEPDIR)/ldap_agent_bin-main.Tpo ldap/servers/snmp/$(DEPDIR)/ldap_agent_bin-main.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/snmp/main.c' object='ldap/servers/snmp/ldap_agent_bin-main.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldap_agent_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/snmp/ldap_agent_bin-main.obj -MD -MP -MF ldap/servers/snmp/$(DEPDIR)/ldap_agent_bin-main.Tpo -c -o ldap/servers/snmp/ldap_agent_bin-main.obj `if test -f 'ldap/servers/snmp/main.c'; then $(CYGPATH_W) 'ldap/servers/snmp/main.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/snmp/main.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/snmp/$(DEPDIR)/ldap_agent_bin-main.Tpo ldap/servers/snmp/$(DEPDIR)/ldap_agent_bin-main.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/snmp/main.c' object='ldap/servers/snmp/ldap_agent_bin-main.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldap_agent_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/snmp/ldap_agent_bin-main.obj `if test -f 'ldap/servers/snmp/main.c'; then $(CYGPATH_W) 'ldap/servers/snmp/main.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/snmp/main.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldap_agent_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/snmp/ldap_agent_bin-main.obj `if test -f 'ldap/servers/snmp/main.c'; then $(CYGPATH_W) 'ldap/servers/snmp/main.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/snmp/main.c'; fi` - - ldap/servers/snmp/ldap_agent_bin-ldap-agent.o: ldap/servers/snmp/ldap-agent.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldap_agent_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/snmp/ldap_agent_bin-ldap-agent.o -MD -MP -MF ldap/servers/snmp/$(DEPDIR)/ldap_agent_bin-ldap-agent.Tpo -c -o ldap/servers/snmp/ldap_agent_bin-ldap-agent.o `test -f 'ldap/servers/snmp/ldap-agent.c' || echo '$(srcdir)/'`ldap/servers/snmp/ldap-agent.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/snmp/$(DEPDIR)/ldap_agent_bin-ldap-agent.Tpo ldap/servers/snmp/$(DEPDIR)/ldap_agent_bin-ldap-agent.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/snmp/ldap-agent.c' object='ldap/servers/snmp/ldap_agent_bin-ldap-agent.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldap_agent_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/snmp/ldap_agent_bin-ldap-agent.o -MD -MP -MF ldap/servers/snmp/$(DEPDIR)/ldap_agent_bin-ldap-agent.Tpo -c -o ldap/servers/snmp/ldap_agent_bin-ldap-agent.o `test -f 'ldap/servers/snmp/ldap-agent.c' || echo '$(srcdir)/'`ldap/servers/snmp/ldap-agent.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/snmp/$(DEPDIR)/ldap_agent_bin-ldap-agent.Tpo ldap/servers/snmp/$(DEPDIR)/ldap_agent_bin-ldap-agent.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/snmp/ldap-agent.c' object='ldap/servers/snmp/ldap_agent_bin-ldap-agent.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldap_agent_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/snmp/ldap_agent_bin-ldap-agent.o `test -f 'ldap/servers/snmp/ldap-agent.c' || echo '$(srcdir)/'`ldap/servers/snmp/ldap-agent.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldap_agent_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/snmp/ldap_agent_bin-ldap-agent.o `test -f 'ldap/servers/snmp/ldap-agent.c' || echo '$(srcdir)/'`ldap/servers/snmp/ldap-agent.c - - ldap/servers/snmp/ldap_agent_bin-ldap-agent.obj: ldap/servers/snmp/ldap-agent.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldap_agent_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/snmp/ldap_agent_bin-ldap-agent.obj -MD -MP -MF ldap/servers/snmp/$(DEPDIR)/ldap_agent_bin-ldap-agent.Tpo -c -o ldap/servers/snmp/ldap_agent_bin-ldap-agent.obj `if test -f 'ldap/servers/snmp/ldap-agent.c'; then $(CYGPATH_W) 'ldap/servers/snmp/ldap-agent.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/snmp/ldap-agent.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/snmp/$(DEPDIR)/ldap_agent_bin-ldap-agent.Tpo ldap/servers/snmp/$(DEPDIR)/ldap_agent_bin-ldap-agent.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/snmp/ldap-agent.c' object='ldap/servers/snmp/ldap_agent_bin-ldap-agent.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldap_agent_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/snmp/ldap_agent_bin-ldap-agent.obj -MD -MP -MF ldap/servers/snmp/$(DEPDIR)/ldap_agent_bin-ldap-agent.Tpo -c -o ldap/servers/snmp/ldap_agent_bin-ldap-agent.obj `if test -f 'ldap/servers/snmp/ldap-agent.c'; then $(CYGPATH_W) 'ldap/servers/snmp/ldap-agent.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/snmp/ldap-agent.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/snmp/$(DEPDIR)/ldap_agent_bin-ldap-agent.Tpo ldap/servers/snmp/$(DEPDIR)/ldap_agent_bin-ldap-agent.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/snmp/ldap-agent.c' object='ldap/servers/snmp/ldap_agent_bin-ldap-agent.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldap_agent_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/snmp/ldap_agent_bin-ldap-agent.obj `if test -f 'ldap/servers/snmp/ldap-agent.c'; then $(CYGPATH_W) 'ldap/servers/snmp/ldap-agent.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/snmp/ldap-agent.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldap_agent_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/snmp/ldap_agent_bin-ldap-agent.obj `if test -f 'ldap/servers/snmp/ldap-agent.c'; then $(CYGPATH_W) 'ldap/servers/snmp/ldap-agent.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/snmp/ldap-agent.c'; fi` - - ldap/servers/slapd/ldap_agent_bin-agtmmap.o: ldap/servers/slapd/agtmmap.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldap_agent_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ldap_agent_bin-agtmmap.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ldap_agent_bin-agtmmap.Tpo -c -o ldap/servers/slapd/ldap_agent_bin-agtmmap.o `test -f 'ldap/servers/slapd/agtmmap.c' || echo '$(srcdir)/'`ldap/servers/slapd/agtmmap.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ldap_agent_bin-agtmmap.Tpo ldap/servers/slapd/$(DEPDIR)/ldap_agent_bin-agtmmap.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/agtmmap.c' object='ldap/servers/slapd/ldap_agent_bin-agtmmap.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldap_agent_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ldap_agent_bin-agtmmap.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ldap_agent_bin-agtmmap.Tpo -c -o ldap/servers/slapd/ldap_agent_bin-agtmmap.o `test -f 'ldap/servers/slapd/agtmmap.c' || echo '$(srcdir)/'`ldap/servers/slapd/agtmmap.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ldap_agent_bin-agtmmap.Tpo ldap/servers/slapd/$(DEPDIR)/ldap_agent_bin-agtmmap.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/agtmmap.c' object='ldap/servers/slapd/ldap_agent_bin-agtmmap.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldap_agent_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ldap_agent_bin-agtmmap.o `test -f 'ldap/servers/slapd/agtmmap.c' || echo '$(srcdir)/'`ldap/servers/slapd/agtmmap.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldap_agent_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ldap_agent_bin-agtmmap.o `test -f 'ldap/servers/slapd/agtmmap.c' || echo '$(srcdir)/'`ldap/servers/slapd/agtmmap.c - - ldap/servers/slapd/ldap_agent_bin-agtmmap.obj: ldap/servers/slapd/agtmmap.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldap_agent_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ldap_agent_bin-agtmmap.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ldap_agent_bin-agtmmap.Tpo -c -o ldap/servers/slapd/ldap_agent_bin-agtmmap.obj `if test -f 'ldap/servers/slapd/agtmmap.c'; then $(CYGPATH_W) 'ldap/servers/slapd/agtmmap.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/agtmmap.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ldap_agent_bin-agtmmap.Tpo ldap/servers/slapd/$(DEPDIR)/ldap_agent_bin-agtmmap.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/agtmmap.c' object='ldap/servers/slapd/ldap_agent_bin-agtmmap.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldap_agent_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ldap_agent_bin-agtmmap.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ldap_agent_bin-agtmmap.Tpo -c -o ldap/servers/slapd/ldap_agent_bin-agtmmap.obj `if test -f 'ldap/servers/slapd/agtmmap.c'; then $(CYGPATH_W) 'ldap/servers/slapd/agtmmap.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/agtmmap.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ldap_agent_bin-agtmmap.Tpo ldap/servers/slapd/$(DEPDIR)/ldap_agent_bin-agtmmap.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/agtmmap.c' object='ldap/servers/slapd/ldap_agent_bin-agtmmap.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldap_agent_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ldap_agent_bin-agtmmap.obj `if test -f 'ldap/servers/slapd/agtmmap.c'; then $(CYGPATH_W) 'ldap/servers/slapd/agtmmap.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/agtmmap.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldap_agent_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ldap_agent_bin-agtmmap.obj `if test -f 'ldap/servers/slapd/agtmmap.c'; then $(CYGPATH_W) 'ldap/servers/slapd/agtmmap.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/agtmmap.c'; fi` - - ldap/servers/slapd/tools/ldclt_bin-ldaptool-sasl.o: ldap/servers/slapd/tools/ldaptool-sasl.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldclt_bin-ldaptool-sasl.o -MD -MP -MF ldap/servers/slapd/tools/$(DEPDIR)/ldclt_bin-ldaptool-sasl.Tpo -c -o ldap/servers/slapd/tools/ldclt_bin-ldaptool-sasl.o `test -f 'ldap/servers/slapd/tools/ldaptool-sasl.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldaptool-sasl.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/tools/$(DEPDIR)/ldclt_bin-ldaptool-sasl.Tpo ldap/servers/slapd/tools/$(DEPDIR)/ldclt_bin-ldaptool-sasl.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/tools/ldaptool-sasl.c' object='ldap/servers/slapd/tools/ldclt_bin-ldaptool-sasl.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldclt_bin-ldaptool-sasl.o -MD -MP -MF ldap/servers/slapd/tools/$(DEPDIR)/ldclt_bin-ldaptool-sasl.Tpo -c -o ldap/servers/slapd/tools/ldclt_bin-ldaptool-sasl.o `test -f 'ldap/servers/slapd/tools/ldaptool-sasl.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldaptool-sasl.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/tools/$(DEPDIR)/ldclt_bin-ldaptool-sasl.Tpo ldap/servers/slapd/tools/$(DEPDIR)/ldclt_bin-ldaptool-sasl.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/tools/ldaptool-sasl.c' object='ldap/servers/slapd/tools/ldclt_bin-ldaptool-sasl.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldclt_bin-ldaptool-sasl.o `test -f 'ldap/servers/slapd/tools/ldaptool-sasl.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldaptool-sasl.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldclt_bin-ldaptool-sasl.o `test -f 'ldap/servers/slapd/tools/ldaptool-sasl.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldaptool-sasl.c - - ldap/servers/slapd/tools/ldclt_bin-ldaptool-sasl.obj: ldap/servers/slapd/tools/ldaptool-sasl.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldclt_bin-ldaptool-sasl.obj -MD -MP -MF ldap/servers/slapd/tools/$(DEPDIR)/ldclt_bin-ldaptool-sasl.Tpo -c -o ldap/servers/slapd/tools/ldclt_bin-ldaptool-sasl.obj `if test -f 'ldap/servers/slapd/tools/ldaptool-sasl.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldaptool-sasl.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldaptool-sasl.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/tools/$(DEPDIR)/ldclt_bin-ldaptool-sasl.Tpo ldap/servers/slapd/tools/$(DEPDIR)/ldclt_bin-ldaptool-sasl.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/tools/ldaptool-sasl.c' object='ldap/servers/slapd/tools/ldclt_bin-ldaptool-sasl.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldclt_bin-ldaptool-sasl.obj -MD -MP -MF ldap/servers/slapd/tools/$(DEPDIR)/ldclt_bin-ldaptool-sasl.Tpo -c -o ldap/servers/slapd/tools/ldclt_bin-ldaptool-sasl.obj `if test -f 'ldap/servers/slapd/tools/ldaptool-sasl.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldaptool-sasl.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldaptool-sasl.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/tools/$(DEPDIR)/ldclt_bin-ldaptool-sasl.Tpo ldap/servers/slapd/tools/$(DEPDIR)/ldclt_bin-ldaptool-sasl.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/tools/ldaptool-sasl.c' object='ldap/servers/slapd/tools/ldclt_bin-ldaptool-sasl.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldclt_bin-ldaptool-sasl.obj `if test -f 'ldap/servers/slapd/tools/ldaptool-sasl.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldaptool-sasl.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldaptool-sasl.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldclt_bin-ldaptool-sasl.obj `if test -f 'ldap/servers/slapd/tools/ldaptool-sasl.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldaptool-sasl.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldaptool-sasl.c'; fi` - - ldap/servers/slapd/tools/ldclt/ldclt_bin-data.o: ldap/servers/slapd/tools/ldclt/data.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldclt/ldclt_bin-data.o -MD -MP -MF ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-data.Tpo -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-data.o `test -f 'ldap/servers/slapd/tools/ldclt/data.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldclt/data.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-data.Tpo ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-data.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/tools/ldclt/data.c' object='ldap/servers/slapd/tools/ldclt/ldclt_bin-data.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldclt/ldclt_bin-data.o -MD -MP -MF ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-data.Tpo -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-data.o `test -f 'ldap/servers/slapd/tools/ldclt/data.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldclt/data.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-data.Tpo ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-data.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/tools/ldclt/data.c' object='ldap/servers/slapd/tools/ldclt/ldclt_bin-data.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-data.o `test -f 'ldap/servers/slapd/tools/ldclt/data.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldclt/data.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-data.o `test -f 'ldap/servers/slapd/tools/ldclt/data.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldclt/data.c - - ldap/servers/slapd/tools/ldclt/ldclt_bin-data.obj: ldap/servers/slapd/tools/ldclt/data.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldclt/ldclt_bin-data.obj -MD -MP -MF ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-data.Tpo -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-data.obj `if test -f 'ldap/servers/slapd/tools/ldclt/data.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldclt/data.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldclt/data.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-data.Tpo ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-data.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/tools/ldclt/data.c' object='ldap/servers/slapd/tools/ldclt/ldclt_bin-data.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldclt/ldclt_bin-data.obj -MD -MP -MF ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-data.Tpo -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-data.obj `if test -f 'ldap/servers/slapd/tools/ldclt/data.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldclt/data.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldclt/data.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-data.Tpo ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-data.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/tools/ldclt/data.c' object='ldap/servers/slapd/tools/ldclt/ldclt_bin-data.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-data.obj `if test -f 'ldap/servers/slapd/tools/ldclt/data.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldclt/data.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldclt/data.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-data.obj `if test -f 'ldap/servers/slapd/tools/ldclt/data.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldclt/data.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldclt/data.c'; fi` - - ldap/servers/slapd/tools/ldclt/ldclt_bin-ldapfct.o: ldap/servers/slapd/tools/ldclt/ldapfct.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldclt/ldclt_bin-ldapfct.o -MD -MP -MF ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-ldapfct.Tpo -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-ldapfct.o `test -f 'ldap/servers/slapd/tools/ldclt/ldapfct.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldclt/ldapfct.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-ldapfct.Tpo ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-ldapfct.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/tools/ldclt/ldapfct.c' object='ldap/servers/slapd/tools/ldclt/ldclt_bin-ldapfct.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldclt/ldclt_bin-ldapfct.o -MD -MP -MF ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-ldapfct.Tpo -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-ldapfct.o `test -f 'ldap/servers/slapd/tools/ldclt/ldapfct.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldclt/ldapfct.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-ldapfct.Tpo ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-ldapfct.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/tools/ldclt/ldapfct.c' object='ldap/servers/slapd/tools/ldclt/ldclt_bin-ldapfct.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-ldapfct.o `test -f 'ldap/servers/slapd/tools/ldclt/ldapfct.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldclt/ldapfct.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-ldapfct.o `test -f 'ldap/servers/slapd/tools/ldclt/ldapfct.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldclt/ldapfct.c - - ldap/servers/slapd/tools/ldclt/ldclt_bin-ldapfct.obj: ldap/servers/slapd/tools/ldclt/ldapfct.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldclt/ldclt_bin-ldapfct.obj -MD -MP -MF ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-ldapfct.Tpo -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-ldapfct.obj `if test -f 'ldap/servers/slapd/tools/ldclt/ldapfct.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldclt/ldapfct.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldclt/ldapfct.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-ldapfct.Tpo ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-ldapfct.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/tools/ldclt/ldapfct.c' object='ldap/servers/slapd/tools/ldclt/ldclt_bin-ldapfct.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldclt/ldclt_bin-ldapfct.obj -MD -MP -MF ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-ldapfct.Tpo -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-ldapfct.obj `if test -f 'ldap/servers/slapd/tools/ldclt/ldapfct.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldclt/ldapfct.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldclt/ldapfct.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-ldapfct.Tpo ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-ldapfct.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/tools/ldclt/ldapfct.c' object='ldap/servers/slapd/tools/ldclt/ldclt_bin-ldapfct.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-ldapfct.obj `if test -f 'ldap/servers/slapd/tools/ldclt/ldapfct.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldclt/ldapfct.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldclt/ldapfct.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-ldapfct.obj `if test -f 'ldap/servers/slapd/tools/ldclt/ldapfct.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldclt/ldapfct.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldclt/ldapfct.c'; fi` - - ldap/servers/slapd/tools/ldclt/ldclt_bin-ldclt.o: ldap/servers/slapd/tools/ldclt/ldclt.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldclt/ldclt_bin-ldclt.o -MD -MP -MF ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-ldclt.Tpo -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-ldclt.o `test -f 'ldap/servers/slapd/tools/ldclt/ldclt.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldclt/ldclt.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-ldclt.Tpo ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-ldclt.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/tools/ldclt/ldclt.c' object='ldap/servers/slapd/tools/ldclt/ldclt_bin-ldclt.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldclt/ldclt_bin-ldclt.o -MD -MP -MF ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-ldclt.Tpo -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-ldclt.o `test -f 'ldap/servers/slapd/tools/ldclt/ldclt.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldclt/ldclt.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-ldclt.Tpo ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-ldclt.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/tools/ldclt/ldclt.c' object='ldap/servers/slapd/tools/ldclt/ldclt_bin-ldclt.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-ldclt.o `test -f 'ldap/servers/slapd/tools/ldclt/ldclt.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldclt/ldclt.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-ldclt.o `test -f 'ldap/servers/slapd/tools/ldclt/ldclt.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldclt/ldclt.c - - ldap/servers/slapd/tools/ldclt/ldclt_bin-ldclt.obj: ldap/servers/slapd/tools/ldclt/ldclt.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldclt/ldclt_bin-ldclt.obj -MD -MP -MF ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-ldclt.Tpo -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-ldclt.obj `if test -f 'ldap/servers/slapd/tools/ldclt/ldclt.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldclt/ldclt.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldclt/ldclt.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-ldclt.Tpo ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-ldclt.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/tools/ldclt/ldclt.c' object='ldap/servers/slapd/tools/ldclt/ldclt_bin-ldclt.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldclt/ldclt_bin-ldclt.obj -MD -MP -MF ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-ldclt.Tpo -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-ldclt.obj `if test -f 'ldap/servers/slapd/tools/ldclt/ldclt.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldclt/ldclt.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldclt/ldclt.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-ldclt.Tpo ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-ldclt.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/tools/ldclt/ldclt.c' object='ldap/servers/slapd/tools/ldclt/ldclt_bin-ldclt.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-ldclt.obj `if test -f 'ldap/servers/slapd/tools/ldclt/ldclt.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldclt/ldclt.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldclt/ldclt.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-ldclt.obj `if test -f 'ldap/servers/slapd/tools/ldclt/ldclt.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldclt/ldclt.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldclt/ldclt.c'; fi` - - ldap/servers/slapd/tools/ldclt/ldclt_bin-ldcltU.o: ldap/servers/slapd/tools/ldclt/ldcltU.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldclt/ldclt_bin-ldcltU.o -MD -MP -MF ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-ldcltU.Tpo -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-ldcltU.o `test -f 'ldap/servers/slapd/tools/ldclt/ldcltU.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldclt/ldcltU.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-ldcltU.Tpo ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-ldcltU.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/tools/ldclt/ldcltU.c' object='ldap/servers/slapd/tools/ldclt/ldclt_bin-ldcltU.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldclt/ldclt_bin-ldcltU.o -MD -MP -MF ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-ldcltU.Tpo -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-ldcltU.o `test -f 'ldap/servers/slapd/tools/ldclt/ldcltU.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldclt/ldcltU.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-ldcltU.Tpo ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-ldcltU.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/tools/ldclt/ldcltU.c' object='ldap/servers/slapd/tools/ldclt/ldclt_bin-ldcltU.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-ldcltU.o `test -f 'ldap/servers/slapd/tools/ldclt/ldcltU.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldclt/ldcltU.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-ldcltU.o `test -f 'ldap/servers/slapd/tools/ldclt/ldcltU.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldclt/ldcltU.c - - ldap/servers/slapd/tools/ldclt/ldclt_bin-ldcltU.obj: ldap/servers/slapd/tools/ldclt/ldcltU.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldclt/ldclt_bin-ldcltU.obj -MD -MP -MF ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-ldcltU.Tpo -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-ldcltU.obj `if test -f 'ldap/servers/slapd/tools/ldclt/ldcltU.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldclt/ldcltU.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldclt/ldcltU.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-ldcltU.Tpo ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-ldcltU.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/tools/ldclt/ldcltU.c' object='ldap/servers/slapd/tools/ldclt/ldclt_bin-ldcltU.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldclt/ldclt_bin-ldcltU.obj -MD -MP -MF ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-ldcltU.Tpo -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-ldcltU.obj `if test -f 'ldap/servers/slapd/tools/ldclt/ldcltU.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldclt/ldcltU.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldclt/ldcltU.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-ldcltU.Tpo ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-ldcltU.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/tools/ldclt/ldcltU.c' object='ldap/servers/slapd/tools/ldclt/ldclt_bin-ldcltU.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-ldcltU.obj `if test -f 'ldap/servers/slapd/tools/ldclt/ldcltU.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldclt/ldcltU.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldclt/ldcltU.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-ldcltU.obj `if test -f 'ldap/servers/slapd/tools/ldclt/ldcltU.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldclt/ldcltU.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldclt/ldcltU.c'; fi` - - ldap/servers/slapd/tools/ldclt/ldclt_bin-parser.o: ldap/servers/slapd/tools/ldclt/parser.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldclt/ldclt_bin-parser.o -MD -MP -MF ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-parser.Tpo -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-parser.o `test -f 'ldap/servers/slapd/tools/ldclt/parser.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldclt/parser.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-parser.Tpo ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-parser.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/tools/ldclt/parser.c' object='ldap/servers/slapd/tools/ldclt/ldclt_bin-parser.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldclt/ldclt_bin-parser.o -MD -MP -MF ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-parser.Tpo -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-parser.o `test -f 'ldap/servers/slapd/tools/ldclt/parser.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldclt/parser.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-parser.Tpo ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-parser.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/tools/ldclt/parser.c' object='ldap/servers/slapd/tools/ldclt/ldclt_bin-parser.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-parser.o `test -f 'ldap/servers/slapd/tools/ldclt/parser.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldclt/parser.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-parser.o `test -f 'ldap/servers/slapd/tools/ldclt/parser.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldclt/parser.c - - ldap/servers/slapd/tools/ldclt/ldclt_bin-parser.obj: ldap/servers/slapd/tools/ldclt/parser.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldclt/ldclt_bin-parser.obj -MD -MP -MF ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-parser.Tpo -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-parser.obj `if test -f 'ldap/servers/slapd/tools/ldclt/parser.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldclt/parser.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldclt/parser.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-parser.Tpo ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-parser.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/tools/ldclt/parser.c' object='ldap/servers/slapd/tools/ldclt/ldclt_bin-parser.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldclt/ldclt_bin-parser.obj -MD -MP -MF ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-parser.Tpo -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-parser.obj `if test -f 'ldap/servers/slapd/tools/ldclt/parser.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldclt/parser.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldclt/parser.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-parser.Tpo ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-parser.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/tools/ldclt/parser.c' object='ldap/servers/slapd/tools/ldclt/ldclt_bin-parser.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-parser.obj `if test -f 'ldap/servers/slapd/tools/ldclt/parser.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldclt/parser.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldclt/parser.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-parser.obj `if test -f 'ldap/servers/slapd/tools/ldclt/parser.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldclt/parser.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldclt/parser.c'; fi` - - ldap/servers/slapd/tools/ldclt/ldclt_bin-port.o: ldap/servers/slapd/tools/ldclt/port.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldclt/ldclt_bin-port.o -MD -MP -MF ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-port.Tpo -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-port.o `test -f 'ldap/servers/slapd/tools/ldclt/port.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldclt/port.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-port.Tpo ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-port.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/tools/ldclt/port.c' object='ldap/servers/slapd/tools/ldclt/ldclt_bin-port.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldclt/ldclt_bin-port.o -MD -MP -MF ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-port.Tpo -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-port.o `test -f 'ldap/servers/slapd/tools/ldclt/port.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldclt/port.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-port.Tpo ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-port.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/tools/ldclt/port.c' object='ldap/servers/slapd/tools/ldclt/ldclt_bin-port.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-port.o `test -f 'ldap/servers/slapd/tools/ldclt/port.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldclt/port.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-port.o `test -f 'ldap/servers/slapd/tools/ldclt/port.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldclt/port.c - - ldap/servers/slapd/tools/ldclt/ldclt_bin-port.obj: ldap/servers/slapd/tools/ldclt/port.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldclt/ldclt_bin-port.obj -MD -MP -MF ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-port.Tpo -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-port.obj `if test -f 'ldap/servers/slapd/tools/ldclt/port.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldclt/port.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldclt/port.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-port.Tpo ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-port.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/tools/ldclt/port.c' object='ldap/servers/slapd/tools/ldclt/ldclt_bin-port.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldclt/ldclt_bin-port.obj -MD -MP -MF ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-port.Tpo -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-port.obj `if test -f 'ldap/servers/slapd/tools/ldclt/port.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldclt/port.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldclt/port.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-port.Tpo ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-port.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/tools/ldclt/port.c' object='ldap/servers/slapd/tools/ldclt/ldclt_bin-port.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-port.obj `if test -f 'ldap/servers/slapd/tools/ldclt/port.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldclt/port.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldclt/port.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-port.obj `if test -f 'ldap/servers/slapd/tools/ldclt/port.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldclt/port.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldclt/port.c'; fi` - - ldap/servers/slapd/tools/ldclt/ldclt_bin-scalab01.o: ldap/servers/slapd/tools/ldclt/scalab01.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldclt/ldclt_bin-scalab01.o -MD -MP -MF ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-scalab01.Tpo -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-scalab01.o `test -f 'ldap/servers/slapd/tools/ldclt/scalab01.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldclt/scalab01.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-scalab01.Tpo ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-scalab01.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/tools/ldclt/scalab01.c' object='ldap/servers/slapd/tools/ldclt/ldclt_bin-scalab01.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldclt/ldclt_bin-scalab01.o -MD -MP -MF ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-scalab01.Tpo -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-scalab01.o `test -f 'ldap/servers/slapd/tools/ldclt/scalab01.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldclt/scalab01.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-scalab01.Tpo ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-scalab01.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/tools/ldclt/scalab01.c' object='ldap/servers/slapd/tools/ldclt/ldclt_bin-scalab01.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-scalab01.o `test -f 'ldap/servers/slapd/tools/ldclt/scalab01.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldclt/scalab01.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-scalab01.o `test -f 'ldap/servers/slapd/tools/ldclt/scalab01.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldclt/scalab01.c - - ldap/servers/slapd/tools/ldclt/ldclt_bin-scalab01.obj: ldap/servers/slapd/tools/ldclt/scalab01.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldclt/ldclt_bin-scalab01.obj -MD -MP -MF ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-scalab01.Tpo -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-scalab01.obj `if test -f 'ldap/servers/slapd/tools/ldclt/scalab01.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldclt/scalab01.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldclt/scalab01.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-scalab01.Tpo ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-scalab01.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/tools/ldclt/scalab01.c' object='ldap/servers/slapd/tools/ldclt/ldclt_bin-scalab01.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldclt/ldclt_bin-scalab01.obj -MD -MP -MF ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-scalab01.Tpo -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-scalab01.obj `if test -f 'ldap/servers/slapd/tools/ldclt/scalab01.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldclt/scalab01.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldclt/scalab01.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-scalab01.Tpo ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-scalab01.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/tools/ldclt/scalab01.c' object='ldap/servers/slapd/tools/ldclt/ldclt_bin-scalab01.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-scalab01.obj `if test -f 'ldap/servers/slapd/tools/ldclt/scalab01.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldclt/scalab01.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldclt/scalab01.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-scalab01.obj `if test -f 'ldap/servers/slapd/tools/ldclt/scalab01.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldclt/scalab01.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldclt/scalab01.c'; fi` - - ldap/servers/slapd/tools/ldclt/ldclt_bin-threadMain.o: ldap/servers/slapd/tools/ldclt/threadMain.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldclt/ldclt_bin-threadMain.o -MD -MP -MF ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-threadMain.Tpo -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-threadMain.o `test -f 'ldap/servers/slapd/tools/ldclt/threadMain.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldclt/threadMain.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-threadMain.Tpo ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-threadMain.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/tools/ldclt/threadMain.c' object='ldap/servers/slapd/tools/ldclt/ldclt_bin-threadMain.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldclt/ldclt_bin-threadMain.o -MD -MP -MF ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-threadMain.Tpo -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-threadMain.o `test -f 'ldap/servers/slapd/tools/ldclt/threadMain.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldclt/threadMain.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-threadMain.Tpo ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-threadMain.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/tools/ldclt/threadMain.c' object='ldap/servers/slapd/tools/ldclt/ldclt_bin-threadMain.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-threadMain.o `test -f 'ldap/servers/slapd/tools/ldclt/threadMain.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldclt/threadMain.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-threadMain.o `test -f 'ldap/servers/slapd/tools/ldclt/threadMain.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldclt/threadMain.c - - ldap/servers/slapd/tools/ldclt/ldclt_bin-threadMain.obj: ldap/servers/slapd/tools/ldclt/threadMain.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldclt/ldclt_bin-threadMain.obj -MD -MP -MF ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-threadMain.Tpo -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-threadMain.obj `if test -f 'ldap/servers/slapd/tools/ldclt/threadMain.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldclt/threadMain.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldclt/threadMain.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-threadMain.Tpo ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-threadMain.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/tools/ldclt/threadMain.c' object='ldap/servers/slapd/tools/ldclt/ldclt_bin-threadMain.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldclt/ldclt_bin-threadMain.obj -MD -MP -MF ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-threadMain.Tpo -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-threadMain.obj `if test -f 'ldap/servers/slapd/tools/ldclt/threadMain.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldclt/threadMain.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldclt/threadMain.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-threadMain.Tpo ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-threadMain.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/tools/ldclt/threadMain.c' object='ldap/servers/slapd/tools/ldclt/ldclt_bin-threadMain.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-threadMain.obj `if test -f 'ldap/servers/slapd/tools/ldclt/threadMain.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldclt/threadMain.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldclt/threadMain.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-threadMain.obj `if test -f 'ldap/servers/slapd/tools/ldclt/threadMain.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldclt/threadMain.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldclt/threadMain.c'; fi` - - ldap/servers/slapd/tools/ldclt/ldclt_bin-utils.o: ldap/servers/slapd/tools/ldclt/utils.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldclt/ldclt_bin-utils.o -MD -MP -MF ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-utils.Tpo -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-utils.o `test -f 'ldap/servers/slapd/tools/ldclt/utils.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldclt/utils.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-utils.Tpo ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-utils.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/tools/ldclt/utils.c' object='ldap/servers/slapd/tools/ldclt/ldclt_bin-utils.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldclt/ldclt_bin-utils.o -MD -MP -MF ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-utils.Tpo -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-utils.o `test -f 'ldap/servers/slapd/tools/ldclt/utils.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldclt/utils.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-utils.Tpo ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-utils.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/tools/ldclt/utils.c' object='ldap/servers/slapd/tools/ldclt/ldclt_bin-utils.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-utils.o `test -f 'ldap/servers/slapd/tools/ldclt/utils.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldclt/utils.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-utils.o `test -f 'ldap/servers/slapd/tools/ldclt/utils.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldclt/utils.c - - ldap/servers/slapd/tools/ldclt/ldclt_bin-utils.obj: ldap/servers/slapd/tools/ldclt/utils.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldclt/ldclt_bin-utils.obj -MD -MP -MF ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-utils.Tpo -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-utils.obj `if test -f 'ldap/servers/slapd/tools/ldclt/utils.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldclt/utils.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldclt/utils.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-utils.Tpo ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-utils.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/tools/ldclt/utils.c' object='ldap/servers/slapd/tools/ldclt/ldclt_bin-utils.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldclt/ldclt_bin-utils.obj -MD -MP -MF ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-utils.Tpo -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-utils.obj `if test -f 'ldap/servers/slapd/tools/ldclt/utils.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldclt/utils.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldclt/utils.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-utils.Tpo ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-utils.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/tools/ldclt/utils.c' object='ldap/servers/slapd/tools/ldclt/ldclt_bin-utils.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-utils.obj `if test -f 'ldap/servers/slapd/tools/ldclt/utils.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldclt/utils.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldclt/utils.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-utils.obj `if test -f 'ldap/servers/slapd/tools/ldclt/utils.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldclt/utils.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldclt/utils.c'; fi` - - ldap/servers/slapd/tools/ldclt/ldclt_bin-version.o: ldap/servers/slapd/tools/ldclt/version.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldclt/ldclt_bin-version.o -MD -MP -MF ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-version.Tpo -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-version.o `test -f 'ldap/servers/slapd/tools/ldclt/version.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldclt/version.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-version.Tpo ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-version.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/tools/ldclt/version.c' object='ldap/servers/slapd/tools/ldclt/ldclt_bin-version.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldclt/ldclt_bin-version.o -MD -MP -MF ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-version.Tpo -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-version.o `test -f 'ldap/servers/slapd/tools/ldclt/version.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldclt/version.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-version.Tpo ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-version.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/tools/ldclt/version.c' object='ldap/servers/slapd/tools/ldclt/ldclt_bin-version.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-version.o `test -f 'ldap/servers/slapd/tools/ldclt/version.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldclt/version.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-version.o `test -f 'ldap/servers/slapd/tools/ldclt/version.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldclt/version.c - - ldap/servers/slapd/tools/ldclt/ldclt_bin-version.obj: ldap/servers/slapd/tools/ldclt/version.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldclt/ldclt_bin-version.obj -MD -MP -MF ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-version.Tpo -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-version.obj `if test -f 'ldap/servers/slapd/tools/ldclt/version.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldclt/version.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldclt/version.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-version.Tpo ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-version.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/tools/ldclt/version.c' object='ldap/servers/slapd/tools/ldclt/ldclt_bin-version.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldclt/ldclt_bin-version.obj -MD -MP -MF ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-version.Tpo -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-version.obj `if test -f 'ldap/servers/slapd/tools/ldclt/version.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldclt/version.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldclt/version.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-version.Tpo ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-version.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/tools/ldclt/version.c' object='ldap/servers/slapd/tools/ldclt/ldclt_bin-version.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-version.obj `if test -f 'ldap/servers/slapd/tools/ldclt/version.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldclt/version.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldclt/version.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-version.obj `if test -f 'ldap/servers/slapd/tools/ldclt/version.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldclt/version.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldclt/version.c'; fi` - - ldap/servers/slapd/tools/ldclt/ldclt_bin-workarounds.o: ldap/servers/slapd/tools/ldclt/workarounds.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldclt/ldclt_bin-workarounds.o -MD -MP -MF ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-workarounds.Tpo -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-workarounds.o `test -f 'ldap/servers/slapd/tools/ldclt/workarounds.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldclt/workarounds.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-workarounds.Tpo ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-workarounds.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/tools/ldclt/workarounds.c' object='ldap/servers/slapd/tools/ldclt/ldclt_bin-workarounds.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldclt/ldclt_bin-workarounds.o -MD -MP -MF ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-workarounds.Tpo -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-workarounds.o `test -f 'ldap/servers/slapd/tools/ldclt/workarounds.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldclt/workarounds.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-workarounds.Tpo ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-workarounds.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/tools/ldclt/workarounds.c' object='ldap/servers/slapd/tools/ldclt/ldclt_bin-workarounds.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-workarounds.o `test -f 'ldap/servers/slapd/tools/ldclt/workarounds.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldclt/workarounds.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-workarounds.o `test -f 'ldap/servers/slapd/tools/ldclt/workarounds.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldclt/workarounds.c - - ldap/servers/slapd/tools/ldclt/ldclt_bin-workarounds.obj: ldap/servers/slapd/tools/ldclt/workarounds.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldclt/ldclt_bin-workarounds.obj -MD -MP -MF ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-workarounds.Tpo -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-workarounds.obj `if test -f 'ldap/servers/slapd/tools/ldclt/workarounds.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldclt/workarounds.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldclt/workarounds.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-workarounds.Tpo ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-workarounds.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/tools/ldclt/workarounds.c' object='ldap/servers/slapd/tools/ldclt/ldclt_bin-workarounds.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldclt/ldclt_bin-workarounds.obj -MD -MP -MF ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-workarounds.Tpo -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-workarounds.obj `if test -f 'ldap/servers/slapd/tools/ldclt/workarounds.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldclt/workarounds.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldclt/workarounds.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-workarounds.Tpo ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-workarounds.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/tools/ldclt/workarounds.c' object='ldap/servers/slapd/tools/ldclt/ldclt_bin-workarounds.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-workarounds.obj `if test -f 'ldap/servers/slapd/tools/ldclt/workarounds.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldclt/workarounds.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldclt/workarounds.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-workarounds.obj `if test -f 'ldap/servers/slapd/tools/ldclt/workarounds.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldclt/workarounds.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldclt/workarounds.c'; fi` - - ldap/servers/slapd/tools/ldclt/ldclt_bin-opCheck.o: ldap/servers/slapd/tools/ldclt/opCheck.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldclt/ldclt_bin-opCheck.o -MD -MP -MF ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-opCheck.Tpo -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-opCheck.o `test -f 'ldap/servers/slapd/tools/ldclt/opCheck.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldclt/opCheck.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-opCheck.Tpo ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-opCheck.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/tools/ldclt/opCheck.c' object='ldap/servers/slapd/tools/ldclt/ldclt_bin-opCheck.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldclt/ldclt_bin-opCheck.o -MD -MP -MF ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-opCheck.Tpo -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-opCheck.o `test -f 'ldap/servers/slapd/tools/ldclt/opCheck.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldclt/opCheck.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-opCheck.Tpo ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-opCheck.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/tools/ldclt/opCheck.c' object='ldap/servers/slapd/tools/ldclt/ldclt_bin-opCheck.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-opCheck.o `test -f 'ldap/servers/slapd/tools/ldclt/opCheck.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldclt/opCheck.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-opCheck.o `test -f 'ldap/servers/slapd/tools/ldclt/opCheck.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldclt/opCheck.c - - ldap/servers/slapd/tools/ldclt/ldclt_bin-opCheck.obj: ldap/servers/slapd/tools/ldclt/opCheck.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldclt/ldclt_bin-opCheck.obj -MD -MP -MF ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-opCheck.Tpo -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-opCheck.obj `if test -f 'ldap/servers/slapd/tools/ldclt/opCheck.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldclt/opCheck.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldclt/opCheck.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-opCheck.Tpo ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-opCheck.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/tools/ldclt/opCheck.c' object='ldap/servers/slapd/tools/ldclt/ldclt_bin-opCheck.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldclt/ldclt_bin-opCheck.obj -MD -MP -MF ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-opCheck.Tpo -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-opCheck.obj `if test -f 'ldap/servers/slapd/tools/ldclt/opCheck.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldclt/opCheck.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldclt/opCheck.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-opCheck.Tpo ldap/servers/slapd/tools/ldclt/$(DEPDIR)/ldclt_bin-opCheck.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/tools/ldclt/opCheck.c' object='ldap/servers/slapd/tools/ldclt/ldclt_bin-opCheck.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-opCheck.obj `if test -f 'ldap/servers/slapd/tools/ldclt/opCheck.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldclt/opCheck.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldclt/opCheck.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldclt_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldclt/ldclt_bin-opCheck.obj `if test -f 'ldap/servers/slapd/tools/ldclt/opCheck.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldclt/opCheck.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldclt/opCheck.c'; fi` - - ldap/servers/slapd/tools/ldif_bin-ldif.o: ldap/servers/slapd/tools/ldif.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldif_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldif_bin-ldif.o -MD -MP -MF ldap/servers/slapd/tools/$(DEPDIR)/ldif_bin-ldif.Tpo -c -o ldap/servers/slapd/tools/ldif_bin-ldif.o `test -f 'ldap/servers/slapd/tools/ldif.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldif.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/tools/$(DEPDIR)/ldif_bin-ldif.Tpo ldap/servers/slapd/tools/$(DEPDIR)/ldif_bin-ldif.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/tools/ldif.c' object='ldap/servers/slapd/tools/ldif_bin-ldif.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldif_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldif_bin-ldif.o -MD -MP -MF ldap/servers/slapd/tools/$(DEPDIR)/ldif_bin-ldif.Tpo -c -o ldap/servers/slapd/tools/ldif_bin-ldif.o `test -f 'ldap/servers/slapd/tools/ldif.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldif.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/tools/$(DEPDIR)/ldif_bin-ldif.Tpo ldap/servers/slapd/tools/$(DEPDIR)/ldif_bin-ldif.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/tools/ldif.c' object='ldap/servers/slapd/tools/ldif_bin-ldif.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldif_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldif_bin-ldif.o `test -f 'ldap/servers/slapd/tools/ldif.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldif.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldif_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldif_bin-ldif.o `test -f 'ldap/servers/slapd/tools/ldif.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/ldif.c - - ldap/servers/slapd/tools/ldif_bin-ldif.obj: ldap/servers/slapd/tools/ldif.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldif_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldif_bin-ldif.obj -MD -MP -MF ldap/servers/slapd/tools/$(DEPDIR)/ldif_bin-ldif.Tpo -c -o ldap/servers/slapd/tools/ldif_bin-ldif.obj `if test -f 'ldap/servers/slapd/tools/ldif.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldif.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldif.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/tools/$(DEPDIR)/ldif_bin-ldif.Tpo ldap/servers/slapd/tools/$(DEPDIR)/ldif_bin-ldif.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/tools/ldif.c' object='ldap/servers/slapd/tools/ldif_bin-ldif.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldif_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/ldif_bin-ldif.obj -MD -MP -MF ldap/servers/slapd/tools/$(DEPDIR)/ldif_bin-ldif.Tpo -c -o ldap/servers/slapd/tools/ldif_bin-ldif.obj `if test -f 'ldap/servers/slapd/tools/ldif.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldif.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldif.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/tools/$(DEPDIR)/ldif_bin-ldif.Tpo ldap/servers/slapd/tools/$(DEPDIR)/ldif_bin-ldif.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/tools/ldif.c' object='ldap/servers/slapd/tools/ldif_bin-ldif.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldif_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldif_bin-ldif.obj `if test -f 'ldap/servers/slapd/tools/ldif.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldif.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldif.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ldif_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/ldif_bin-ldif.obj `if test -f 'ldap/servers/slapd/tools/ldif.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/ldif.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/ldif.c'; fi` - - lib/libsi18n/makstrdb-makstrdb.o: lib/libsi18n/makstrdb.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(makstrdb_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/libsi18n/makstrdb-makstrdb.o -MD -MP -MF lib/libsi18n/$(DEPDIR)/makstrdb-makstrdb.Tpo -c -o lib/libsi18n/makstrdb-makstrdb.o `test -f 'lib/libsi18n/makstrdb.c' || echo '$(srcdir)/'`lib/libsi18n/makstrdb.c --@am__fastdepCC_TRUE@ $(am__mv) lib/libsi18n/$(DEPDIR)/makstrdb-makstrdb.Tpo lib/libsi18n/$(DEPDIR)/makstrdb-makstrdb.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lib/libsi18n/makstrdb.c' object='lib/libsi18n/makstrdb-makstrdb.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(makstrdb_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/libsi18n/makstrdb-makstrdb.o -MD -MP -MF lib/libsi18n/$(DEPDIR)/makstrdb-makstrdb.Tpo -c -o lib/libsi18n/makstrdb-makstrdb.o `test -f 'lib/libsi18n/makstrdb.c' || echo '$(srcdir)/'`lib/libsi18n/makstrdb.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lib/libsi18n/$(DEPDIR)/makstrdb-makstrdb.Tpo lib/libsi18n/$(DEPDIR)/makstrdb-makstrdb.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lib/libsi18n/makstrdb.c' object='lib/libsi18n/makstrdb-makstrdb.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(makstrdb_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/libsi18n/makstrdb-makstrdb.o `test -f 'lib/libsi18n/makstrdb.c' || echo '$(srcdir)/'`lib/libsi18n/makstrdb.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(makstrdb_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/libsi18n/makstrdb-makstrdb.o `test -f 'lib/libsi18n/makstrdb.c' || echo '$(srcdir)/'`lib/libsi18n/makstrdb.c - - lib/libsi18n/makstrdb-makstrdb.obj: lib/libsi18n/makstrdb.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(makstrdb_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/libsi18n/makstrdb-makstrdb.obj -MD -MP -MF lib/libsi18n/$(DEPDIR)/makstrdb-makstrdb.Tpo -c -o lib/libsi18n/makstrdb-makstrdb.obj `if test -f 'lib/libsi18n/makstrdb.c'; then $(CYGPATH_W) 'lib/libsi18n/makstrdb.c'; else $(CYGPATH_W) '$(srcdir)/lib/libsi18n/makstrdb.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) lib/libsi18n/$(DEPDIR)/makstrdb-makstrdb.Tpo lib/libsi18n/$(DEPDIR)/makstrdb-makstrdb.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lib/libsi18n/makstrdb.c' object='lib/libsi18n/makstrdb-makstrdb.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(makstrdb_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/libsi18n/makstrdb-makstrdb.obj -MD -MP -MF lib/libsi18n/$(DEPDIR)/makstrdb-makstrdb.Tpo -c -o lib/libsi18n/makstrdb-makstrdb.obj `if test -f 'lib/libsi18n/makstrdb.c'; then $(CYGPATH_W) 'lib/libsi18n/makstrdb.c'; else $(CYGPATH_W) '$(srcdir)/lib/libsi18n/makstrdb.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lib/libsi18n/$(DEPDIR)/makstrdb-makstrdb.Tpo lib/libsi18n/$(DEPDIR)/makstrdb-makstrdb.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lib/libsi18n/makstrdb.c' object='lib/libsi18n/makstrdb-makstrdb.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(makstrdb_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/libsi18n/makstrdb-makstrdb.obj `if test -f 'lib/libsi18n/makstrdb.c'; then $(CYGPATH_W) 'lib/libsi18n/makstrdb.c'; else $(CYGPATH_W) '$(srcdir)/lib/libsi18n/makstrdb.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(makstrdb_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/libsi18n/makstrdb-makstrdb.obj `if test -f 'lib/libsi18n/makstrdb.c'; then $(CYGPATH_W) 'lib/libsi18n/makstrdb.c'; else $(CYGPATH_W) '$(srcdir)/lib/libsi18n/makstrdb.c'; fi` - - ldap/servers/slapd/tools/migratecred_bin-migratecred.o: ldap/servers/slapd/tools/migratecred.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(migratecred_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/migratecred_bin-migratecred.o -MD -MP -MF ldap/servers/slapd/tools/$(DEPDIR)/migratecred_bin-migratecred.Tpo -c -o ldap/servers/slapd/tools/migratecred_bin-migratecred.o `test -f 'ldap/servers/slapd/tools/migratecred.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/migratecred.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/tools/$(DEPDIR)/migratecred_bin-migratecred.Tpo ldap/servers/slapd/tools/$(DEPDIR)/migratecred_bin-migratecred.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/tools/migratecred.c' object='ldap/servers/slapd/tools/migratecred_bin-migratecred.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(migratecred_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/migratecred_bin-migratecred.o -MD -MP -MF ldap/servers/slapd/tools/$(DEPDIR)/migratecred_bin-migratecred.Tpo -c -o ldap/servers/slapd/tools/migratecred_bin-migratecred.o `test -f 'ldap/servers/slapd/tools/migratecred.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/migratecred.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/tools/$(DEPDIR)/migratecred_bin-migratecred.Tpo ldap/servers/slapd/tools/$(DEPDIR)/migratecred_bin-migratecred.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/tools/migratecred.c' object='ldap/servers/slapd/tools/migratecred_bin-migratecred.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(migratecred_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/migratecred_bin-migratecred.o `test -f 'ldap/servers/slapd/tools/migratecred.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/migratecred.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(migratecred_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/migratecred_bin-migratecred.o `test -f 'ldap/servers/slapd/tools/migratecred.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/migratecred.c - - ldap/servers/slapd/tools/migratecred_bin-migratecred.obj: ldap/servers/slapd/tools/migratecred.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(migratecred_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/migratecred_bin-migratecred.obj -MD -MP -MF ldap/servers/slapd/tools/$(DEPDIR)/migratecred_bin-migratecred.Tpo -c -o ldap/servers/slapd/tools/migratecred_bin-migratecred.obj `if test -f 'ldap/servers/slapd/tools/migratecred.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/migratecred.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/migratecred.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/tools/$(DEPDIR)/migratecred_bin-migratecred.Tpo ldap/servers/slapd/tools/$(DEPDIR)/migratecred_bin-migratecred.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/tools/migratecred.c' object='ldap/servers/slapd/tools/migratecred_bin-migratecred.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(migratecred_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/migratecred_bin-migratecred.obj -MD -MP -MF ldap/servers/slapd/tools/$(DEPDIR)/migratecred_bin-migratecred.Tpo -c -o ldap/servers/slapd/tools/migratecred_bin-migratecred.obj `if test -f 'ldap/servers/slapd/tools/migratecred.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/migratecred.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/migratecred.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/tools/$(DEPDIR)/migratecred_bin-migratecred.Tpo ldap/servers/slapd/tools/$(DEPDIR)/migratecred_bin-migratecred.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/tools/migratecred.c' object='ldap/servers/slapd/tools/migratecred_bin-migratecred.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(migratecred_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/migratecred_bin-migratecred.obj `if test -f 'ldap/servers/slapd/tools/migratecred.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/migratecred.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/migratecred.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(migratecred_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/migratecred_bin-migratecred.obj `if test -f 'ldap/servers/slapd/tools/migratecred.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/migratecred.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/migratecred.c'; fi` - - ldap/servers/slapd/tools/mmldif_bin-mmldif.o: ldap/servers/slapd/tools/mmldif.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mmldif_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/mmldif_bin-mmldif.o -MD -MP -MF ldap/servers/slapd/tools/$(DEPDIR)/mmldif_bin-mmldif.Tpo -c -o ldap/servers/slapd/tools/mmldif_bin-mmldif.o `test -f 'ldap/servers/slapd/tools/mmldif.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/mmldif.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/tools/$(DEPDIR)/mmldif_bin-mmldif.Tpo ldap/servers/slapd/tools/$(DEPDIR)/mmldif_bin-mmldif.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/tools/mmldif.c' object='ldap/servers/slapd/tools/mmldif_bin-mmldif.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mmldif_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/mmldif_bin-mmldif.o -MD -MP -MF ldap/servers/slapd/tools/$(DEPDIR)/mmldif_bin-mmldif.Tpo -c -o ldap/servers/slapd/tools/mmldif_bin-mmldif.o `test -f 'ldap/servers/slapd/tools/mmldif.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/mmldif.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/tools/$(DEPDIR)/mmldif_bin-mmldif.Tpo ldap/servers/slapd/tools/$(DEPDIR)/mmldif_bin-mmldif.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/tools/mmldif.c' object='ldap/servers/slapd/tools/mmldif_bin-mmldif.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mmldif_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/mmldif_bin-mmldif.o `test -f 'ldap/servers/slapd/tools/mmldif.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/mmldif.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mmldif_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/mmldif_bin-mmldif.o `test -f 'ldap/servers/slapd/tools/mmldif.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/mmldif.c - - ldap/servers/slapd/tools/mmldif_bin-mmldif.obj: ldap/servers/slapd/tools/mmldif.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mmldif_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/mmldif_bin-mmldif.obj -MD -MP -MF ldap/servers/slapd/tools/$(DEPDIR)/mmldif_bin-mmldif.Tpo -c -o ldap/servers/slapd/tools/mmldif_bin-mmldif.obj `if test -f 'ldap/servers/slapd/tools/mmldif.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/mmldif.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/mmldif.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/tools/$(DEPDIR)/mmldif_bin-mmldif.Tpo ldap/servers/slapd/tools/$(DEPDIR)/mmldif_bin-mmldif.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/tools/mmldif.c' object='ldap/servers/slapd/tools/mmldif_bin-mmldif.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mmldif_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/mmldif_bin-mmldif.obj -MD -MP -MF ldap/servers/slapd/tools/$(DEPDIR)/mmldif_bin-mmldif.Tpo -c -o ldap/servers/slapd/tools/mmldif_bin-mmldif.obj `if test -f 'ldap/servers/slapd/tools/mmldif.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/mmldif.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/mmldif.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/tools/$(DEPDIR)/mmldif_bin-mmldif.Tpo ldap/servers/slapd/tools/$(DEPDIR)/mmldif_bin-mmldif.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/tools/mmldif.c' object='ldap/servers/slapd/tools/mmldif_bin-mmldif.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mmldif_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/mmldif_bin-mmldif.obj `if test -f 'ldap/servers/slapd/tools/mmldif.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/mmldif.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/mmldif.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mmldif_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/mmldif_bin-mmldif.obj `if test -f 'ldap/servers/slapd/tools/mmldif.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/mmldif.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/mmldif.c'; fi` - - ldap/servers/slapd/ns_slapd-abandon.o: ldap/servers/slapd/abandon.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-abandon.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-abandon.Tpo -c -o ldap/servers/slapd/ns_slapd-abandon.o `test -f 'ldap/servers/slapd/abandon.c' || echo '$(srcdir)/'`ldap/servers/slapd/abandon.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-abandon.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-abandon.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/abandon.c' object='ldap/servers/slapd/ns_slapd-abandon.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-abandon.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-abandon.Tpo -c -o ldap/servers/slapd/ns_slapd-abandon.o `test -f 'ldap/servers/slapd/abandon.c' || echo '$(srcdir)/'`ldap/servers/slapd/abandon.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-abandon.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-abandon.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/abandon.c' object='ldap/servers/slapd/ns_slapd-abandon.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-abandon.o `test -f 'ldap/servers/slapd/abandon.c' || echo '$(srcdir)/'`ldap/servers/slapd/abandon.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-abandon.o `test -f 'ldap/servers/slapd/abandon.c' || echo '$(srcdir)/'`ldap/servers/slapd/abandon.c - - ldap/servers/slapd/ns_slapd-abandon.obj: ldap/servers/slapd/abandon.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-abandon.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-abandon.Tpo -c -o ldap/servers/slapd/ns_slapd-abandon.obj `if test -f 'ldap/servers/slapd/abandon.c'; then $(CYGPATH_W) 'ldap/servers/slapd/abandon.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/abandon.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-abandon.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-abandon.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/abandon.c' object='ldap/servers/slapd/ns_slapd-abandon.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-abandon.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-abandon.Tpo -c -o ldap/servers/slapd/ns_slapd-abandon.obj `if test -f 'ldap/servers/slapd/abandon.c'; then $(CYGPATH_W) 'ldap/servers/slapd/abandon.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/abandon.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-abandon.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-abandon.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/abandon.c' object='ldap/servers/slapd/ns_slapd-abandon.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-abandon.obj `if test -f 'ldap/servers/slapd/abandon.c'; then $(CYGPATH_W) 'ldap/servers/slapd/abandon.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/abandon.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-abandon.obj `if test -f 'ldap/servers/slapd/abandon.c'; then $(CYGPATH_W) 'ldap/servers/slapd/abandon.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/abandon.c'; fi` - - ldap/servers/slapd/ns_slapd-auth.o: ldap/servers/slapd/auth.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-auth.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-auth.Tpo -c -o ldap/servers/slapd/ns_slapd-auth.o `test -f 'ldap/servers/slapd/auth.c' || echo '$(srcdir)/'`ldap/servers/slapd/auth.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-auth.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-auth.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/auth.c' object='ldap/servers/slapd/ns_slapd-auth.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-auth.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-auth.Tpo -c -o ldap/servers/slapd/ns_slapd-auth.o `test -f 'ldap/servers/slapd/auth.c' || echo '$(srcdir)/'`ldap/servers/slapd/auth.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-auth.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-auth.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/auth.c' object='ldap/servers/slapd/ns_slapd-auth.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-auth.o `test -f 'ldap/servers/slapd/auth.c' || echo '$(srcdir)/'`ldap/servers/slapd/auth.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-auth.o `test -f 'ldap/servers/slapd/auth.c' || echo '$(srcdir)/'`ldap/servers/slapd/auth.c - - ldap/servers/slapd/ns_slapd-auth.obj: ldap/servers/slapd/auth.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-auth.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-auth.Tpo -c -o ldap/servers/slapd/ns_slapd-auth.obj `if test -f 'ldap/servers/slapd/auth.c'; then $(CYGPATH_W) 'ldap/servers/slapd/auth.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/auth.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-auth.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-auth.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/auth.c' object='ldap/servers/slapd/ns_slapd-auth.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-auth.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-auth.Tpo -c -o ldap/servers/slapd/ns_slapd-auth.obj `if test -f 'ldap/servers/slapd/auth.c'; then $(CYGPATH_W) 'ldap/servers/slapd/auth.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/auth.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-auth.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-auth.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/auth.c' object='ldap/servers/slapd/ns_slapd-auth.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-auth.obj `if test -f 'ldap/servers/slapd/auth.c'; then $(CYGPATH_W) 'ldap/servers/slapd/auth.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/auth.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-auth.obj `if test -f 'ldap/servers/slapd/auth.c'; then $(CYGPATH_W) 'ldap/servers/slapd/auth.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/auth.c'; fi` - - ldap/servers/slapd/ns_slapd-bind.o: ldap/servers/slapd/bind.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-bind.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-bind.Tpo -c -o ldap/servers/slapd/ns_slapd-bind.o `test -f 'ldap/servers/slapd/bind.c' || echo '$(srcdir)/'`ldap/servers/slapd/bind.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-bind.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-bind.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/bind.c' object='ldap/servers/slapd/ns_slapd-bind.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-bind.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-bind.Tpo -c -o ldap/servers/slapd/ns_slapd-bind.o `test -f 'ldap/servers/slapd/bind.c' || echo '$(srcdir)/'`ldap/servers/slapd/bind.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-bind.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-bind.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/bind.c' object='ldap/servers/slapd/ns_slapd-bind.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-bind.o `test -f 'ldap/servers/slapd/bind.c' || echo '$(srcdir)/'`ldap/servers/slapd/bind.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-bind.o `test -f 'ldap/servers/slapd/bind.c' || echo '$(srcdir)/'`ldap/servers/slapd/bind.c - - ldap/servers/slapd/ns_slapd-bind.obj: ldap/servers/slapd/bind.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-bind.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-bind.Tpo -c -o ldap/servers/slapd/ns_slapd-bind.obj `if test -f 'ldap/servers/slapd/bind.c'; then $(CYGPATH_W) 'ldap/servers/slapd/bind.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/bind.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-bind.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-bind.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/bind.c' object='ldap/servers/slapd/ns_slapd-bind.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-bind.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-bind.Tpo -c -o ldap/servers/slapd/ns_slapd-bind.obj `if test -f 'ldap/servers/slapd/bind.c'; then $(CYGPATH_W) 'ldap/servers/slapd/bind.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/bind.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-bind.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-bind.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/bind.c' object='ldap/servers/slapd/ns_slapd-bind.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-bind.obj `if test -f 'ldap/servers/slapd/bind.c'; then $(CYGPATH_W) 'ldap/servers/slapd/bind.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/bind.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-bind.obj `if test -f 'ldap/servers/slapd/bind.c'; then $(CYGPATH_W) 'ldap/servers/slapd/bind.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/bind.c'; fi` - - ldap/servers/slapd/ns_slapd-compare.o: ldap/servers/slapd/compare.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-compare.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-compare.Tpo -c -o ldap/servers/slapd/ns_slapd-compare.o `test -f 'ldap/servers/slapd/compare.c' || echo '$(srcdir)/'`ldap/servers/slapd/compare.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-compare.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-compare.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/compare.c' object='ldap/servers/slapd/ns_slapd-compare.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-compare.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-compare.Tpo -c -o ldap/servers/slapd/ns_slapd-compare.o `test -f 'ldap/servers/slapd/compare.c' || echo '$(srcdir)/'`ldap/servers/slapd/compare.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-compare.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-compare.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/compare.c' object='ldap/servers/slapd/ns_slapd-compare.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-compare.o `test -f 'ldap/servers/slapd/compare.c' || echo '$(srcdir)/'`ldap/servers/slapd/compare.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-compare.o `test -f 'ldap/servers/slapd/compare.c' || echo '$(srcdir)/'`ldap/servers/slapd/compare.c - - ldap/servers/slapd/ns_slapd-compare.obj: ldap/servers/slapd/compare.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-compare.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-compare.Tpo -c -o ldap/servers/slapd/ns_slapd-compare.obj `if test -f 'ldap/servers/slapd/compare.c'; then $(CYGPATH_W) 'ldap/servers/slapd/compare.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/compare.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-compare.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-compare.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/compare.c' object='ldap/servers/slapd/ns_slapd-compare.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-compare.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-compare.Tpo -c -o ldap/servers/slapd/ns_slapd-compare.obj `if test -f 'ldap/servers/slapd/compare.c'; then $(CYGPATH_W) 'ldap/servers/slapd/compare.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/compare.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-compare.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-compare.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/compare.c' object='ldap/servers/slapd/ns_slapd-compare.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-compare.obj `if test -f 'ldap/servers/slapd/compare.c'; then $(CYGPATH_W) 'ldap/servers/slapd/compare.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/compare.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-compare.obj `if test -f 'ldap/servers/slapd/compare.c'; then $(CYGPATH_W) 'ldap/servers/slapd/compare.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/compare.c'; fi` - - ldap/servers/slapd/ns_slapd-config.o: ldap/servers/slapd/config.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-config.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-config.Tpo -c -o ldap/servers/slapd/ns_slapd-config.o `test -f 'ldap/servers/slapd/config.c' || echo '$(srcdir)/'`ldap/servers/slapd/config.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-config.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-config.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/config.c' object='ldap/servers/slapd/ns_slapd-config.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-config.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-config.Tpo -c -o ldap/servers/slapd/ns_slapd-config.o `test -f 'ldap/servers/slapd/config.c' || echo '$(srcdir)/'`ldap/servers/slapd/config.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-config.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-config.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/config.c' object='ldap/servers/slapd/ns_slapd-config.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-config.o `test -f 'ldap/servers/slapd/config.c' || echo '$(srcdir)/'`ldap/servers/slapd/config.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-config.o `test -f 'ldap/servers/slapd/config.c' || echo '$(srcdir)/'`ldap/servers/slapd/config.c - - ldap/servers/slapd/ns_slapd-config.obj: ldap/servers/slapd/config.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-config.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-config.Tpo -c -o ldap/servers/slapd/ns_slapd-config.obj `if test -f 'ldap/servers/slapd/config.c'; then $(CYGPATH_W) 'ldap/servers/slapd/config.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/config.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-config.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-config.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/config.c' object='ldap/servers/slapd/ns_slapd-config.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-config.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-config.Tpo -c -o ldap/servers/slapd/ns_slapd-config.obj `if test -f 'ldap/servers/slapd/config.c'; then $(CYGPATH_W) 'ldap/servers/slapd/config.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/config.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-config.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-config.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/config.c' object='ldap/servers/slapd/ns_slapd-config.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-config.obj `if test -f 'ldap/servers/slapd/config.c'; then $(CYGPATH_W) 'ldap/servers/slapd/config.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/config.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-config.obj `if test -f 'ldap/servers/slapd/config.c'; then $(CYGPATH_W) 'ldap/servers/slapd/config.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/config.c'; fi` - - ldap/servers/slapd/ns_slapd-configdse.o: ldap/servers/slapd/configdse.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-configdse.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-configdse.Tpo -c -o ldap/servers/slapd/ns_slapd-configdse.o `test -f 'ldap/servers/slapd/configdse.c' || echo '$(srcdir)/'`ldap/servers/slapd/configdse.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-configdse.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-configdse.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/configdse.c' object='ldap/servers/slapd/ns_slapd-configdse.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-configdse.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-configdse.Tpo -c -o ldap/servers/slapd/ns_slapd-configdse.o `test -f 'ldap/servers/slapd/configdse.c' || echo '$(srcdir)/'`ldap/servers/slapd/configdse.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-configdse.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-configdse.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/configdse.c' object='ldap/servers/slapd/ns_slapd-configdse.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-configdse.o `test -f 'ldap/servers/slapd/configdse.c' || echo '$(srcdir)/'`ldap/servers/slapd/configdse.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-configdse.o `test -f 'ldap/servers/slapd/configdse.c' || echo '$(srcdir)/'`ldap/servers/slapd/configdse.c - - ldap/servers/slapd/ns_slapd-configdse.obj: ldap/servers/slapd/configdse.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-configdse.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-configdse.Tpo -c -o ldap/servers/slapd/ns_slapd-configdse.obj `if test -f 'ldap/servers/slapd/configdse.c'; then $(CYGPATH_W) 'ldap/servers/slapd/configdse.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/configdse.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-configdse.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-configdse.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/configdse.c' object='ldap/servers/slapd/ns_slapd-configdse.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-configdse.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-configdse.Tpo -c -o ldap/servers/slapd/ns_slapd-configdse.obj `if test -f 'ldap/servers/slapd/configdse.c'; then $(CYGPATH_W) 'ldap/servers/slapd/configdse.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/configdse.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-configdse.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-configdse.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/configdse.c' object='ldap/servers/slapd/ns_slapd-configdse.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-configdse.obj `if test -f 'ldap/servers/slapd/configdse.c'; then $(CYGPATH_W) 'ldap/servers/slapd/configdse.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/configdse.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-configdse.obj `if test -f 'ldap/servers/slapd/configdse.c'; then $(CYGPATH_W) 'ldap/servers/slapd/configdse.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/configdse.c'; fi` - - ldap/servers/slapd/ns_slapd-connection.o: ldap/servers/slapd/connection.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-connection.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-connection.Tpo -c -o ldap/servers/slapd/ns_slapd-connection.o `test -f 'ldap/servers/slapd/connection.c' || echo '$(srcdir)/'`ldap/servers/slapd/connection.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-connection.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-connection.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/connection.c' object='ldap/servers/slapd/ns_slapd-connection.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-connection.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-connection.Tpo -c -o ldap/servers/slapd/ns_slapd-connection.o `test -f 'ldap/servers/slapd/connection.c' || echo '$(srcdir)/'`ldap/servers/slapd/connection.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-connection.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-connection.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/connection.c' object='ldap/servers/slapd/ns_slapd-connection.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-connection.o `test -f 'ldap/servers/slapd/connection.c' || echo '$(srcdir)/'`ldap/servers/slapd/connection.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-connection.o `test -f 'ldap/servers/slapd/connection.c' || echo '$(srcdir)/'`ldap/servers/slapd/connection.c - - ldap/servers/slapd/ns_slapd-connection.obj: ldap/servers/slapd/connection.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-connection.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-connection.Tpo -c -o ldap/servers/slapd/ns_slapd-connection.obj `if test -f 'ldap/servers/slapd/connection.c'; then $(CYGPATH_W) 'ldap/servers/slapd/connection.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/connection.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-connection.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-connection.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/connection.c' object='ldap/servers/slapd/ns_slapd-connection.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-connection.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-connection.Tpo -c -o ldap/servers/slapd/ns_slapd-connection.obj `if test -f 'ldap/servers/slapd/connection.c'; then $(CYGPATH_W) 'ldap/servers/slapd/connection.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/connection.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-connection.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-connection.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/connection.c' object='ldap/servers/slapd/ns_slapd-connection.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-connection.obj `if test -f 'ldap/servers/slapd/connection.c'; then $(CYGPATH_W) 'ldap/servers/slapd/connection.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/connection.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-connection.obj `if test -f 'ldap/servers/slapd/connection.c'; then $(CYGPATH_W) 'ldap/servers/slapd/connection.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/connection.c'; fi` - - ldap/servers/slapd/ns_slapd-conntable.o: ldap/servers/slapd/conntable.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-conntable.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-conntable.Tpo -c -o ldap/servers/slapd/ns_slapd-conntable.o `test -f 'ldap/servers/slapd/conntable.c' || echo '$(srcdir)/'`ldap/servers/slapd/conntable.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-conntable.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-conntable.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/conntable.c' object='ldap/servers/slapd/ns_slapd-conntable.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-conntable.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-conntable.Tpo -c -o ldap/servers/slapd/ns_slapd-conntable.o `test -f 'ldap/servers/slapd/conntable.c' || echo '$(srcdir)/'`ldap/servers/slapd/conntable.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-conntable.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-conntable.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/conntable.c' object='ldap/servers/slapd/ns_slapd-conntable.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-conntable.o `test -f 'ldap/servers/slapd/conntable.c' || echo '$(srcdir)/'`ldap/servers/slapd/conntable.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-conntable.o `test -f 'ldap/servers/slapd/conntable.c' || echo '$(srcdir)/'`ldap/servers/slapd/conntable.c - - ldap/servers/slapd/ns_slapd-conntable.obj: ldap/servers/slapd/conntable.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-conntable.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-conntable.Tpo -c -o ldap/servers/slapd/ns_slapd-conntable.obj `if test -f 'ldap/servers/slapd/conntable.c'; then $(CYGPATH_W) 'ldap/servers/slapd/conntable.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/conntable.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-conntable.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-conntable.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/conntable.c' object='ldap/servers/slapd/ns_slapd-conntable.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-conntable.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-conntable.Tpo -c -o ldap/servers/slapd/ns_slapd-conntable.obj `if test -f 'ldap/servers/slapd/conntable.c'; then $(CYGPATH_W) 'ldap/servers/slapd/conntable.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/conntable.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-conntable.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-conntable.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/conntable.c' object='ldap/servers/slapd/ns_slapd-conntable.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-conntable.obj `if test -f 'ldap/servers/slapd/conntable.c'; then $(CYGPATH_W) 'ldap/servers/slapd/conntable.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/conntable.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-conntable.obj `if test -f 'ldap/servers/slapd/conntable.c'; then $(CYGPATH_W) 'ldap/servers/slapd/conntable.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/conntable.c'; fi` - - ldap/servers/slapd/ns_slapd-daemon.o: ldap/servers/slapd/daemon.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-daemon.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-daemon.Tpo -c -o ldap/servers/slapd/ns_slapd-daemon.o `test -f 'ldap/servers/slapd/daemon.c' || echo '$(srcdir)/'`ldap/servers/slapd/daemon.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-daemon.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-daemon.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/daemon.c' object='ldap/servers/slapd/ns_slapd-daemon.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-daemon.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-daemon.Tpo -c -o ldap/servers/slapd/ns_slapd-daemon.o `test -f 'ldap/servers/slapd/daemon.c' || echo '$(srcdir)/'`ldap/servers/slapd/daemon.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-daemon.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-daemon.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/daemon.c' object='ldap/servers/slapd/ns_slapd-daemon.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-daemon.o `test -f 'ldap/servers/slapd/daemon.c' || echo '$(srcdir)/'`ldap/servers/slapd/daemon.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-daemon.o `test -f 'ldap/servers/slapd/daemon.c' || echo '$(srcdir)/'`ldap/servers/slapd/daemon.c - - ldap/servers/slapd/ns_slapd-daemon.obj: ldap/servers/slapd/daemon.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-daemon.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-daemon.Tpo -c -o ldap/servers/slapd/ns_slapd-daemon.obj `if test -f 'ldap/servers/slapd/daemon.c'; then $(CYGPATH_W) 'ldap/servers/slapd/daemon.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/daemon.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-daemon.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-daemon.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/daemon.c' object='ldap/servers/slapd/ns_slapd-daemon.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-daemon.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-daemon.Tpo -c -o ldap/servers/slapd/ns_slapd-daemon.obj `if test -f 'ldap/servers/slapd/daemon.c'; then $(CYGPATH_W) 'ldap/servers/slapd/daemon.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/daemon.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-daemon.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-daemon.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/daemon.c' object='ldap/servers/slapd/ns_slapd-daemon.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-daemon.obj `if test -f 'ldap/servers/slapd/daemon.c'; then $(CYGPATH_W) 'ldap/servers/slapd/daemon.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/daemon.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-daemon.obj `if test -f 'ldap/servers/slapd/daemon.c'; then $(CYGPATH_W) 'ldap/servers/slapd/daemon.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/daemon.c'; fi` - - ldap/servers/slapd/ns_slapd-detach.o: ldap/servers/slapd/detach.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-detach.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-detach.Tpo -c -o ldap/servers/slapd/ns_slapd-detach.o `test -f 'ldap/servers/slapd/detach.c' || echo '$(srcdir)/'`ldap/servers/slapd/detach.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-detach.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-detach.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/detach.c' object='ldap/servers/slapd/ns_slapd-detach.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-detach.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-detach.Tpo -c -o ldap/servers/slapd/ns_slapd-detach.o `test -f 'ldap/servers/slapd/detach.c' || echo '$(srcdir)/'`ldap/servers/slapd/detach.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-detach.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-detach.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/detach.c' object='ldap/servers/slapd/ns_slapd-detach.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-detach.o `test -f 'ldap/servers/slapd/detach.c' || echo '$(srcdir)/'`ldap/servers/slapd/detach.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-detach.o `test -f 'ldap/servers/slapd/detach.c' || echo '$(srcdir)/'`ldap/servers/slapd/detach.c - - ldap/servers/slapd/ns_slapd-detach.obj: ldap/servers/slapd/detach.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-detach.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-detach.Tpo -c -o ldap/servers/slapd/ns_slapd-detach.obj `if test -f 'ldap/servers/slapd/detach.c'; then $(CYGPATH_W) 'ldap/servers/slapd/detach.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/detach.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-detach.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-detach.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/detach.c' object='ldap/servers/slapd/ns_slapd-detach.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-detach.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-detach.Tpo -c -o ldap/servers/slapd/ns_slapd-detach.obj `if test -f 'ldap/servers/slapd/detach.c'; then $(CYGPATH_W) 'ldap/servers/slapd/detach.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/detach.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-detach.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-detach.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/detach.c' object='ldap/servers/slapd/ns_slapd-detach.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-detach.obj `if test -f 'ldap/servers/slapd/detach.c'; then $(CYGPATH_W) 'ldap/servers/slapd/detach.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/detach.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-detach.obj `if test -f 'ldap/servers/slapd/detach.c'; then $(CYGPATH_W) 'ldap/servers/slapd/detach.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/detach.c'; fi` - - ldap/servers/slapd/ns_slapd-extendop.o: ldap/servers/slapd/extendop.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-extendop.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-extendop.Tpo -c -o ldap/servers/slapd/ns_slapd-extendop.o `test -f 'ldap/servers/slapd/extendop.c' || echo '$(srcdir)/'`ldap/servers/slapd/extendop.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-extendop.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-extendop.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/extendop.c' object='ldap/servers/slapd/ns_slapd-extendop.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-extendop.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-extendop.Tpo -c -o ldap/servers/slapd/ns_slapd-extendop.o `test -f 'ldap/servers/slapd/extendop.c' || echo '$(srcdir)/'`ldap/servers/slapd/extendop.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-extendop.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-extendop.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/extendop.c' object='ldap/servers/slapd/ns_slapd-extendop.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-extendop.o `test -f 'ldap/servers/slapd/extendop.c' || echo '$(srcdir)/'`ldap/servers/slapd/extendop.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-extendop.o `test -f 'ldap/servers/slapd/extendop.c' || echo '$(srcdir)/'`ldap/servers/slapd/extendop.c - - ldap/servers/slapd/ns_slapd-extendop.obj: ldap/servers/slapd/extendop.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-extendop.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-extendop.Tpo -c -o ldap/servers/slapd/ns_slapd-extendop.obj `if test -f 'ldap/servers/slapd/extendop.c'; then $(CYGPATH_W) 'ldap/servers/slapd/extendop.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/extendop.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-extendop.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-extendop.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/extendop.c' object='ldap/servers/slapd/ns_slapd-extendop.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-extendop.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-extendop.Tpo -c -o ldap/servers/slapd/ns_slapd-extendop.obj `if test -f 'ldap/servers/slapd/extendop.c'; then $(CYGPATH_W) 'ldap/servers/slapd/extendop.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/extendop.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-extendop.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-extendop.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/extendop.c' object='ldap/servers/slapd/ns_slapd-extendop.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-extendop.obj `if test -f 'ldap/servers/slapd/extendop.c'; then $(CYGPATH_W) 'ldap/servers/slapd/extendop.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/extendop.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-extendop.obj `if test -f 'ldap/servers/slapd/extendop.c'; then $(CYGPATH_W) 'ldap/servers/slapd/extendop.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/extendop.c'; fi` - - ldap/servers/slapd/ns_slapd-fedse.o: ldap/servers/slapd/fedse.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-fedse.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-fedse.Tpo -c -o ldap/servers/slapd/ns_slapd-fedse.o `test -f 'ldap/servers/slapd/fedse.c' || echo '$(srcdir)/'`ldap/servers/slapd/fedse.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-fedse.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-fedse.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/fedse.c' object='ldap/servers/slapd/ns_slapd-fedse.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-fedse.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-fedse.Tpo -c -o ldap/servers/slapd/ns_slapd-fedse.o `test -f 'ldap/servers/slapd/fedse.c' || echo '$(srcdir)/'`ldap/servers/slapd/fedse.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-fedse.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-fedse.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/fedse.c' object='ldap/servers/slapd/ns_slapd-fedse.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-fedse.o `test -f 'ldap/servers/slapd/fedse.c' || echo '$(srcdir)/'`ldap/servers/slapd/fedse.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-fedse.o `test -f 'ldap/servers/slapd/fedse.c' || echo '$(srcdir)/'`ldap/servers/slapd/fedse.c - - ldap/servers/slapd/ns_slapd-fedse.obj: ldap/servers/slapd/fedse.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-fedse.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-fedse.Tpo -c -o ldap/servers/slapd/ns_slapd-fedse.obj `if test -f 'ldap/servers/slapd/fedse.c'; then $(CYGPATH_W) 'ldap/servers/slapd/fedse.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/fedse.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-fedse.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-fedse.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/fedse.c' object='ldap/servers/slapd/ns_slapd-fedse.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-fedse.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-fedse.Tpo -c -o ldap/servers/slapd/ns_slapd-fedse.obj `if test -f 'ldap/servers/slapd/fedse.c'; then $(CYGPATH_W) 'ldap/servers/slapd/fedse.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/fedse.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-fedse.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-fedse.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/fedse.c' object='ldap/servers/slapd/ns_slapd-fedse.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-fedse.obj `if test -f 'ldap/servers/slapd/fedse.c'; then $(CYGPATH_W) 'ldap/servers/slapd/fedse.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/fedse.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-fedse.obj `if test -f 'ldap/servers/slapd/fedse.c'; then $(CYGPATH_W) 'ldap/servers/slapd/fedse.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/fedse.c'; fi` - - ldap/servers/slapd/ns_slapd-fileio.o: ldap/servers/slapd/fileio.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-fileio.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-fileio.Tpo -c -o ldap/servers/slapd/ns_slapd-fileio.o `test -f 'ldap/servers/slapd/fileio.c' || echo '$(srcdir)/'`ldap/servers/slapd/fileio.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-fileio.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-fileio.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/fileio.c' object='ldap/servers/slapd/ns_slapd-fileio.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-fileio.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-fileio.Tpo -c -o ldap/servers/slapd/ns_slapd-fileio.o `test -f 'ldap/servers/slapd/fileio.c' || echo '$(srcdir)/'`ldap/servers/slapd/fileio.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-fileio.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-fileio.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/fileio.c' object='ldap/servers/slapd/ns_slapd-fileio.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-fileio.o `test -f 'ldap/servers/slapd/fileio.c' || echo '$(srcdir)/'`ldap/servers/slapd/fileio.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-fileio.o `test -f 'ldap/servers/slapd/fileio.c' || echo '$(srcdir)/'`ldap/servers/slapd/fileio.c - - ldap/servers/slapd/ns_slapd-fileio.obj: ldap/servers/slapd/fileio.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-fileio.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-fileio.Tpo -c -o ldap/servers/slapd/ns_slapd-fileio.obj `if test -f 'ldap/servers/slapd/fileio.c'; then $(CYGPATH_W) 'ldap/servers/slapd/fileio.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/fileio.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-fileio.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-fileio.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/fileio.c' object='ldap/servers/slapd/ns_slapd-fileio.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-fileio.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-fileio.Tpo -c -o ldap/servers/slapd/ns_slapd-fileio.obj `if test -f 'ldap/servers/slapd/fileio.c'; then $(CYGPATH_W) 'ldap/servers/slapd/fileio.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/fileio.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-fileio.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-fileio.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/fileio.c' object='ldap/servers/slapd/ns_slapd-fileio.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-fileio.obj `if test -f 'ldap/servers/slapd/fileio.c'; then $(CYGPATH_W) 'ldap/servers/slapd/fileio.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/fileio.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-fileio.obj `if test -f 'ldap/servers/slapd/fileio.c'; then $(CYGPATH_W) 'ldap/servers/slapd/fileio.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/fileio.c'; fi` - - ldap/servers/slapd/ns_slapd-getopt_ext.o: ldap/servers/slapd/getopt_ext.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-getopt_ext.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-getopt_ext.Tpo -c -o ldap/servers/slapd/ns_slapd-getopt_ext.o `test -f 'ldap/servers/slapd/getopt_ext.c' || echo '$(srcdir)/'`ldap/servers/slapd/getopt_ext.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-getopt_ext.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-getopt_ext.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/getopt_ext.c' object='ldap/servers/slapd/ns_slapd-getopt_ext.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-getopt_ext.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-getopt_ext.Tpo -c -o ldap/servers/slapd/ns_slapd-getopt_ext.o `test -f 'ldap/servers/slapd/getopt_ext.c' || echo '$(srcdir)/'`ldap/servers/slapd/getopt_ext.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-getopt_ext.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-getopt_ext.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/getopt_ext.c' object='ldap/servers/slapd/ns_slapd-getopt_ext.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-getopt_ext.o `test -f 'ldap/servers/slapd/getopt_ext.c' || echo '$(srcdir)/'`ldap/servers/slapd/getopt_ext.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-getopt_ext.o `test -f 'ldap/servers/slapd/getopt_ext.c' || echo '$(srcdir)/'`ldap/servers/slapd/getopt_ext.c - - ldap/servers/slapd/ns_slapd-getopt_ext.obj: ldap/servers/slapd/getopt_ext.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-getopt_ext.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-getopt_ext.Tpo -c -o ldap/servers/slapd/ns_slapd-getopt_ext.obj `if test -f 'ldap/servers/slapd/getopt_ext.c'; then $(CYGPATH_W) 'ldap/servers/slapd/getopt_ext.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/getopt_ext.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-getopt_ext.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-getopt_ext.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/getopt_ext.c' object='ldap/servers/slapd/ns_slapd-getopt_ext.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-getopt_ext.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-getopt_ext.Tpo -c -o ldap/servers/slapd/ns_slapd-getopt_ext.obj `if test -f 'ldap/servers/slapd/getopt_ext.c'; then $(CYGPATH_W) 'ldap/servers/slapd/getopt_ext.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/getopt_ext.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-getopt_ext.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-getopt_ext.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/getopt_ext.c' object='ldap/servers/slapd/ns_slapd-getopt_ext.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-getopt_ext.obj `if test -f 'ldap/servers/slapd/getopt_ext.c'; then $(CYGPATH_W) 'ldap/servers/slapd/getopt_ext.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/getopt_ext.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-getopt_ext.obj `if test -f 'ldap/servers/slapd/getopt_ext.c'; then $(CYGPATH_W) 'ldap/servers/slapd/getopt_ext.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/getopt_ext.c'; fi` - - ldap/servers/slapd/ns_slapd-globals.o: ldap/servers/slapd/globals.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-globals.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-globals.Tpo -c -o ldap/servers/slapd/ns_slapd-globals.o `test -f 'ldap/servers/slapd/globals.c' || echo '$(srcdir)/'`ldap/servers/slapd/globals.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-globals.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-globals.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/globals.c' object='ldap/servers/slapd/ns_slapd-globals.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-globals.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-globals.Tpo -c -o ldap/servers/slapd/ns_slapd-globals.o `test -f 'ldap/servers/slapd/globals.c' || echo '$(srcdir)/'`ldap/servers/slapd/globals.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-globals.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-globals.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/globals.c' object='ldap/servers/slapd/ns_slapd-globals.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-globals.o `test -f 'ldap/servers/slapd/globals.c' || echo '$(srcdir)/'`ldap/servers/slapd/globals.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-globals.o `test -f 'ldap/servers/slapd/globals.c' || echo '$(srcdir)/'`ldap/servers/slapd/globals.c - - ldap/servers/slapd/ns_slapd-globals.obj: ldap/servers/slapd/globals.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-globals.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-globals.Tpo -c -o ldap/servers/slapd/ns_slapd-globals.obj `if test -f 'ldap/servers/slapd/globals.c'; then $(CYGPATH_W) 'ldap/servers/slapd/globals.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/globals.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-globals.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-globals.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/globals.c' object='ldap/servers/slapd/ns_slapd-globals.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-globals.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-globals.Tpo -c -o ldap/servers/slapd/ns_slapd-globals.obj `if test -f 'ldap/servers/slapd/globals.c'; then $(CYGPATH_W) 'ldap/servers/slapd/globals.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/globals.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-globals.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-globals.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/globals.c' object='ldap/servers/slapd/ns_slapd-globals.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-globals.obj `if test -f 'ldap/servers/slapd/globals.c'; then $(CYGPATH_W) 'ldap/servers/slapd/globals.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/globals.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-globals.obj `if test -f 'ldap/servers/slapd/globals.c'; then $(CYGPATH_W) 'ldap/servers/slapd/globals.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/globals.c'; fi` - - ldap/servers/slapd/ns_slapd-house.o: ldap/servers/slapd/house.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-house.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-house.Tpo -c -o ldap/servers/slapd/ns_slapd-house.o `test -f 'ldap/servers/slapd/house.c' || echo '$(srcdir)/'`ldap/servers/slapd/house.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-house.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-house.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/house.c' object='ldap/servers/slapd/ns_slapd-house.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-house.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-house.Tpo -c -o ldap/servers/slapd/ns_slapd-house.o `test -f 'ldap/servers/slapd/house.c' || echo '$(srcdir)/'`ldap/servers/slapd/house.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-house.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-house.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/house.c' object='ldap/servers/slapd/ns_slapd-house.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-house.o `test -f 'ldap/servers/slapd/house.c' || echo '$(srcdir)/'`ldap/servers/slapd/house.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-house.o `test -f 'ldap/servers/slapd/house.c' || echo '$(srcdir)/'`ldap/servers/slapd/house.c - - ldap/servers/slapd/ns_slapd-house.obj: ldap/servers/slapd/house.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-house.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-house.Tpo -c -o ldap/servers/slapd/ns_slapd-house.obj `if test -f 'ldap/servers/slapd/house.c'; then $(CYGPATH_W) 'ldap/servers/slapd/house.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/house.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-house.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-house.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/house.c' object='ldap/servers/slapd/ns_slapd-house.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-house.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-house.Tpo -c -o ldap/servers/slapd/ns_slapd-house.obj `if test -f 'ldap/servers/slapd/house.c'; then $(CYGPATH_W) 'ldap/servers/slapd/house.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/house.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-house.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-house.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/house.c' object='ldap/servers/slapd/ns_slapd-house.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-house.obj `if test -f 'ldap/servers/slapd/house.c'; then $(CYGPATH_W) 'ldap/servers/slapd/house.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/house.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-house.obj `if test -f 'ldap/servers/slapd/house.c'; then $(CYGPATH_W) 'ldap/servers/slapd/house.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/house.c'; fi` - - ldap/servers/slapd/ns_slapd-init.o: ldap/servers/slapd/init.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-init.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-init.Tpo -c -o ldap/servers/slapd/ns_slapd-init.o `test -f 'ldap/servers/slapd/init.c' || echo '$(srcdir)/'`ldap/servers/slapd/init.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-init.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-init.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/init.c' object='ldap/servers/slapd/ns_slapd-init.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-init.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-init.Tpo -c -o ldap/servers/slapd/ns_slapd-init.o `test -f 'ldap/servers/slapd/init.c' || echo '$(srcdir)/'`ldap/servers/slapd/init.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-init.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-init.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/init.c' object='ldap/servers/slapd/ns_slapd-init.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-init.o `test -f 'ldap/servers/slapd/init.c' || echo '$(srcdir)/'`ldap/servers/slapd/init.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-init.o `test -f 'ldap/servers/slapd/init.c' || echo '$(srcdir)/'`ldap/servers/slapd/init.c - - ldap/servers/slapd/ns_slapd-init.obj: ldap/servers/slapd/init.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-init.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-init.Tpo -c -o ldap/servers/slapd/ns_slapd-init.obj `if test -f 'ldap/servers/slapd/init.c'; then $(CYGPATH_W) 'ldap/servers/slapd/init.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/init.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-init.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-init.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/init.c' object='ldap/servers/slapd/ns_slapd-init.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-init.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-init.Tpo -c -o ldap/servers/slapd/ns_slapd-init.obj `if test -f 'ldap/servers/slapd/init.c'; then $(CYGPATH_W) 'ldap/servers/slapd/init.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/init.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-init.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-init.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/init.c' object='ldap/servers/slapd/ns_slapd-init.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-init.obj `if test -f 'ldap/servers/slapd/init.c'; then $(CYGPATH_W) 'ldap/servers/slapd/init.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/init.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-init.obj `if test -f 'ldap/servers/slapd/init.c'; then $(CYGPATH_W) 'ldap/servers/slapd/init.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/init.c'; fi` - - ldap/servers/slapd/ns_slapd-main.o: ldap/servers/slapd/main.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-main.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-main.Tpo -c -o ldap/servers/slapd/ns_slapd-main.o `test -f 'ldap/servers/slapd/main.c' || echo '$(srcdir)/'`ldap/servers/slapd/main.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-main.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-main.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/main.c' object='ldap/servers/slapd/ns_slapd-main.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-main.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-main.Tpo -c -o ldap/servers/slapd/ns_slapd-main.o `test -f 'ldap/servers/slapd/main.c' || echo '$(srcdir)/'`ldap/servers/slapd/main.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-main.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-main.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/main.c' object='ldap/servers/slapd/ns_slapd-main.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-main.o `test -f 'ldap/servers/slapd/main.c' || echo '$(srcdir)/'`ldap/servers/slapd/main.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-main.o `test -f 'ldap/servers/slapd/main.c' || echo '$(srcdir)/'`ldap/servers/slapd/main.c - - ldap/servers/slapd/ns_slapd-main.obj: ldap/servers/slapd/main.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-main.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-main.Tpo -c -o ldap/servers/slapd/ns_slapd-main.obj `if test -f 'ldap/servers/slapd/main.c'; then $(CYGPATH_W) 'ldap/servers/slapd/main.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/main.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-main.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-main.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/main.c' object='ldap/servers/slapd/ns_slapd-main.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-main.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-main.Tpo -c -o ldap/servers/slapd/ns_slapd-main.obj `if test -f 'ldap/servers/slapd/main.c'; then $(CYGPATH_W) 'ldap/servers/slapd/main.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/main.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-main.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-main.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/main.c' object='ldap/servers/slapd/ns_slapd-main.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-main.obj `if test -f 'ldap/servers/slapd/main.c'; then $(CYGPATH_W) 'ldap/servers/slapd/main.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/main.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-main.obj `if test -f 'ldap/servers/slapd/main.c'; then $(CYGPATH_W) 'ldap/servers/slapd/main.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/main.c'; fi` - - ldap/servers/slapd/ns_slapd-monitor.o: ldap/servers/slapd/monitor.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-monitor.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-monitor.Tpo -c -o ldap/servers/slapd/ns_slapd-monitor.o `test -f 'ldap/servers/slapd/monitor.c' || echo '$(srcdir)/'`ldap/servers/slapd/monitor.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-monitor.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-monitor.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/monitor.c' object='ldap/servers/slapd/ns_slapd-monitor.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-monitor.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-monitor.Tpo -c -o ldap/servers/slapd/ns_slapd-monitor.o `test -f 'ldap/servers/slapd/monitor.c' || echo '$(srcdir)/'`ldap/servers/slapd/monitor.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-monitor.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-monitor.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/monitor.c' object='ldap/servers/slapd/ns_slapd-monitor.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-monitor.o `test -f 'ldap/servers/slapd/monitor.c' || echo '$(srcdir)/'`ldap/servers/slapd/monitor.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-monitor.o `test -f 'ldap/servers/slapd/monitor.c' || echo '$(srcdir)/'`ldap/servers/slapd/monitor.c - - ldap/servers/slapd/ns_slapd-monitor.obj: ldap/servers/slapd/monitor.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-monitor.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-monitor.Tpo -c -o ldap/servers/slapd/ns_slapd-monitor.obj `if test -f 'ldap/servers/slapd/monitor.c'; then $(CYGPATH_W) 'ldap/servers/slapd/monitor.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/monitor.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-monitor.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-monitor.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/monitor.c' object='ldap/servers/slapd/ns_slapd-monitor.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-monitor.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-monitor.Tpo -c -o ldap/servers/slapd/ns_slapd-monitor.obj `if test -f 'ldap/servers/slapd/monitor.c'; then $(CYGPATH_W) 'ldap/servers/slapd/monitor.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/monitor.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-monitor.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-monitor.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/monitor.c' object='ldap/servers/slapd/ns_slapd-monitor.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-monitor.obj `if test -f 'ldap/servers/slapd/monitor.c'; then $(CYGPATH_W) 'ldap/servers/slapd/monitor.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/monitor.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-monitor.obj `if test -f 'ldap/servers/slapd/monitor.c'; then $(CYGPATH_W) 'ldap/servers/slapd/monitor.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/monitor.c'; fi` - - ldap/servers/slapd/ns_slapd-passwd_extop.o: ldap/servers/slapd/passwd_extop.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-passwd_extop.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-passwd_extop.Tpo -c -o ldap/servers/slapd/ns_slapd-passwd_extop.o `test -f 'ldap/servers/slapd/passwd_extop.c' || echo '$(srcdir)/'`ldap/servers/slapd/passwd_extop.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-passwd_extop.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-passwd_extop.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/passwd_extop.c' object='ldap/servers/slapd/ns_slapd-passwd_extop.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-passwd_extop.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-passwd_extop.Tpo -c -o ldap/servers/slapd/ns_slapd-passwd_extop.o `test -f 'ldap/servers/slapd/passwd_extop.c' || echo '$(srcdir)/'`ldap/servers/slapd/passwd_extop.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-passwd_extop.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-passwd_extop.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/passwd_extop.c' object='ldap/servers/slapd/ns_slapd-passwd_extop.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-passwd_extop.o `test -f 'ldap/servers/slapd/passwd_extop.c' || echo '$(srcdir)/'`ldap/servers/slapd/passwd_extop.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-passwd_extop.o `test -f 'ldap/servers/slapd/passwd_extop.c' || echo '$(srcdir)/'`ldap/servers/slapd/passwd_extop.c - - ldap/servers/slapd/ns_slapd-passwd_extop.obj: ldap/servers/slapd/passwd_extop.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-passwd_extop.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-passwd_extop.Tpo -c -o ldap/servers/slapd/ns_slapd-passwd_extop.obj `if test -f 'ldap/servers/slapd/passwd_extop.c'; then $(CYGPATH_W) 'ldap/servers/slapd/passwd_extop.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/passwd_extop.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-passwd_extop.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-passwd_extop.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/passwd_extop.c' object='ldap/servers/slapd/ns_slapd-passwd_extop.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-passwd_extop.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-passwd_extop.Tpo -c -o ldap/servers/slapd/ns_slapd-passwd_extop.obj `if test -f 'ldap/servers/slapd/passwd_extop.c'; then $(CYGPATH_W) 'ldap/servers/slapd/passwd_extop.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/passwd_extop.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-passwd_extop.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-passwd_extop.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/passwd_extop.c' object='ldap/servers/slapd/ns_slapd-passwd_extop.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-passwd_extop.obj `if test -f 'ldap/servers/slapd/passwd_extop.c'; then $(CYGPATH_W) 'ldap/servers/slapd/passwd_extop.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/passwd_extop.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-passwd_extop.obj `if test -f 'ldap/servers/slapd/passwd_extop.c'; then $(CYGPATH_W) 'ldap/servers/slapd/passwd_extop.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/passwd_extop.c'; fi` - - ldap/servers/slapd/ns_slapd-psearch.o: ldap/servers/slapd/psearch.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-psearch.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-psearch.Tpo -c -o ldap/servers/slapd/ns_slapd-psearch.o `test -f 'ldap/servers/slapd/psearch.c' || echo '$(srcdir)/'`ldap/servers/slapd/psearch.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-psearch.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-psearch.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/psearch.c' object='ldap/servers/slapd/ns_slapd-psearch.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-psearch.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-psearch.Tpo -c -o ldap/servers/slapd/ns_slapd-psearch.o `test -f 'ldap/servers/slapd/psearch.c' || echo '$(srcdir)/'`ldap/servers/slapd/psearch.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-psearch.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-psearch.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/psearch.c' object='ldap/servers/slapd/ns_slapd-psearch.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-psearch.o `test -f 'ldap/servers/slapd/psearch.c' || echo '$(srcdir)/'`ldap/servers/slapd/psearch.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-psearch.o `test -f 'ldap/servers/slapd/psearch.c' || echo '$(srcdir)/'`ldap/servers/slapd/psearch.c - - ldap/servers/slapd/ns_slapd-psearch.obj: ldap/servers/slapd/psearch.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-psearch.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-psearch.Tpo -c -o ldap/servers/slapd/ns_slapd-psearch.obj `if test -f 'ldap/servers/slapd/psearch.c'; then $(CYGPATH_W) 'ldap/servers/slapd/psearch.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/psearch.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-psearch.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-psearch.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/psearch.c' object='ldap/servers/slapd/ns_slapd-psearch.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-psearch.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-psearch.Tpo -c -o ldap/servers/slapd/ns_slapd-psearch.obj `if test -f 'ldap/servers/slapd/psearch.c'; then $(CYGPATH_W) 'ldap/servers/slapd/psearch.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/psearch.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-psearch.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-psearch.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/psearch.c' object='ldap/servers/slapd/ns_slapd-psearch.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-psearch.obj `if test -f 'ldap/servers/slapd/psearch.c'; then $(CYGPATH_W) 'ldap/servers/slapd/psearch.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/psearch.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-psearch.obj `if test -f 'ldap/servers/slapd/psearch.c'; then $(CYGPATH_W) 'ldap/servers/slapd/psearch.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/psearch.c'; fi` - - ldap/servers/slapd/ns_slapd-pw_mgmt.o: ldap/servers/slapd/pw_mgmt.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-pw_mgmt.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-pw_mgmt.Tpo -c -o ldap/servers/slapd/ns_slapd-pw_mgmt.o `test -f 'ldap/servers/slapd/pw_mgmt.c' || echo '$(srcdir)/'`ldap/servers/slapd/pw_mgmt.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-pw_mgmt.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-pw_mgmt.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/pw_mgmt.c' object='ldap/servers/slapd/ns_slapd-pw_mgmt.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-pw_mgmt.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-pw_mgmt.Tpo -c -o ldap/servers/slapd/ns_slapd-pw_mgmt.o `test -f 'ldap/servers/slapd/pw_mgmt.c' || echo '$(srcdir)/'`ldap/servers/slapd/pw_mgmt.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-pw_mgmt.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-pw_mgmt.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/pw_mgmt.c' object='ldap/servers/slapd/ns_slapd-pw_mgmt.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-pw_mgmt.o `test -f 'ldap/servers/slapd/pw_mgmt.c' || echo '$(srcdir)/'`ldap/servers/slapd/pw_mgmt.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-pw_mgmt.o `test -f 'ldap/servers/slapd/pw_mgmt.c' || echo '$(srcdir)/'`ldap/servers/slapd/pw_mgmt.c - - ldap/servers/slapd/ns_slapd-pw_mgmt.obj: ldap/servers/slapd/pw_mgmt.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-pw_mgmt.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-pw_mgmt.Tpo -c -o ldap/servers/slapd/ns_slapd-pw_mgmt.obj `if test -f 'ldap/servers/slapd/pw_mgmt.c'; then $(CYGPATH_W) 'ldap/servers/slapd/pw_mgmt.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/pw_mgmt.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-pw_mgmt.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-pw_mgmt.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/pw_mgmt.c' object='ldap/servers/slapd/ns_slapd-pw_mgmt.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-pw_mgmt.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-pw_mgmt.Tpo -c -o ldap/servers/slapd/ns_slapd-pw_mgmt.obj `if test -f 'ldap/servers/slapd/pw_mgmt.c'; then $(CYGPATH_W) 'ldap/servers/slapd/pw_mgmt.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/pw_mgmt.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-pw_mgmt.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-pw_mgmt.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/pw_mgmt.c' object='ldap/servers/slapd/ns_slapd-pw_mgmt.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-pw_mgmt.obj `if test -f 'ldap/servers/slapd/pw_mgmt.c'; then $(CYGPATH_W) 'ldap/servers/slapd/pw_mgmt.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/pw_mgmt.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-pw_mgmt.obj `if test -f 'ldap/servers/slapd/pw_mgmt.c'; then $(CYGPATH_W) 'ldap/servers/slapd/pw_mgmt.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/pw_mgmt.c'; fi` - - ldap/servers/slapd/ns_slapd-rootdse.o: ldap/servers/slapd/rootdse.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-rootdse.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-rootdse.Tpo -c -o ldap/servers/slapd/ns_slapd-rootdse.o `test -f 'ldap/servers/slapd/rootdse.c' || echo '$(srcdir)/'`ldap/servers/slapd/rootdse.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-rootdse.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-rootdse.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/rootdse.c' object='ldap/servers/slapd/ns_slapd-rootdse.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-rootdse.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-rootdse.Tpo -c -o ldap/servers/slapd/ns_slapd-rootdse.o `test -f 'ldap/servers/slapd/rootdse.c' || echo '$(srcdir)/'`ldap/servers/slapd/rootdse.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-rootdse.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-rootdse.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/rootdse.c' object='ldap/servers/slapd/ns_slapd-rootdse.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-rootdse.o `test -f 'ldap/servers/slapd/rootdse.c' || echo '$(srcdir)/'`ldap/servers/slapd/rootdse.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-rootdse.o `test -f 'ldap/servers/slapd/rootdse.c' || echo '$(srcdir)/'`ldap/servers/slapd/rootdse.c - - ldap/servers/slapd/ns_slapd-rootdse.obj: ldap/servers/slapd/rootdse.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-rootdse.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-rootdse.Tpo -c -o ldap/servers/slapd/ns_slapd-rootdse.obj `if test -f 'ldap/servers/slapd/rootdse.c'; then $(CYGPATH_W) 'ldap/servers/slapd/rootdse.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/rootdse.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-rootdse.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-rootdse.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/rootdse.c' object='ldap/servers/slapd/ns_slapd-rootdse.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-rootdse.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-rootdse.Tpo -c -o ldap/servers/slapd/ns_slapd-rootdse.obj `if test -f 'ldap/servers/slapd/rootdse.c'; then $(CYGPATH_W) 'ldap/servers/slapd/rootdse.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/rootdse.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-rootdse.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-rootdse.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/rootdse.c' object='ldap/servers/slapd/ns_slapd-rootdse.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-rootdse.obj `if test -f 'ldap/servers/slapd/rootdse.c'; then $(CYGPATH_W) 'ldap/servers/slapd/rootdse.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/rootdse.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-rootdse.obj `if test -f 'ldap/servers/slapd/rootdse.c'; then $(CYGPATH_W) 'ldap/servers/slapd/rootdse.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/rootdse.c'; fi` - - ldap/servers/slapd/ns_slapd-sasl_io.o: ldap/servers/slapd/sasl_io.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-sasl_io.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-sasl_io.Tpo -c -o ldap/servers/slapd/ns_slapd-sasl_io.o `test -f 'ldap/servers/slapd/sasl_io.c' || echo '$(srcdir)/'`ldap/servers/slapd/sasl_io.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-sasl_io.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-sasl_io.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/sasl_io.c' object='ldap/servers/slapd/ns_slapd-sasl_io.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-sasl_io.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-sasl_io.Tpo -c -o ldap/servers/slapd/ns_slapd-sasl_io.o `test -f 'ldap/servers/slapd/sasl_io.c' || echo '$(srcdir)/'`ldap/servers/slapd/sasl_io.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-sasl_io.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-sasl_io.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/sasl_io.c' object='ldap/servers/slapd/ns_slapd-sasl_io.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-sasl_io.o `test -f 'ldap/servers/slapd/sasl_io.c' || echo '$(srcdir)/'`ldap/servers/slapd/sasl_io.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-sasl_io.o `test -f 'ldap/servers/slapd/sasl_io.c' || echo '$(srcdir)/'`ldap/servers/slapd/sasl_io.c - - ldap/servers/slapd/ns_slapd-sasl_io.obj: ldap/servers/slapd/sasl_io.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-sasl_io.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-sasl_io.Tpo -c -o ldap/servers/slapd/ns_slapd-sasl_io.obj `if test -f 'ldap/servers/slapd/sasl_io.c'; then $(CYGPATH_W) 'ldap/servers/slapd/sasl_io.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/sasl_io.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-sasl_io.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-sasl_io.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/sasl_io.c' object='ldap/servers/slapd/ns_slapd-sasl_io.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-sasl_io.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-sasl_io.Tpo -c -o ldap/servers/slapd/ns_slapd-sasl_io.obj `if test -f 'ldap/servers/slapd/sasl_io.c'; then $(CYGPATH_W) 'ldap/servers/slapd/sasl_io.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/sasl_io.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-sasl_io.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-sasl_io.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/sasl_io.c' object='ldap/servers/slapd/ns_slapd-sasl_io.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-sasl_io.obj `if test -f 'ldap/servers/slapd/sasl_io.c'; then $(CYGPATH_W) 'ldap/servers/slapd/sasl_io.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/sasl_io.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-sasl_io.obj `if test -f 'ldap/servers/slapd/sasl_io.c'; then $(CYGPATH_W) 'ldap/servers/slapd/sasl_io.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/sasl_io.c'; fi` - - ldap/servers/slapd/ns_slapd-saslbind.o: ldap/servers/slapd/saslbind.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-saslbind.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-saslbind.Tpo -c -o ldap/servers/slapd/ns_slapd-saslbind.o `test -f 'ldap/servers/slapd/saslbind.c' || echo '$(srcdir)/'`ldap/servers/slapd/saslbind.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-saslbind.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-saslbind.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/saslbind.c' object='ldap/servers/slapd/ns_slapd-saslbind.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-saslbind.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-saslbind.Tpo -c -o ldap/servers/slapd/ns_slapd-saslbind.o `test -f 'ldap/servers/slapd/saslbind.c' || echo '$(srcdir)/'`ldap/servers/slapd/saslbind.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-saslbind.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-saslbind.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/saslbind.c' object='ldap/servers/slapd/ns_slapd-saslbind.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-saslbind.o `test -f 'ldap/servers/slapd/saslbind.c' || echo '$(srcdir)/'`ldap/servers/slapd/saslbind.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-saslbind.o `test -f 'ldap/servers/slapd/saslbind.c' || echo '$(srcdir)/'`ldap/servers/slapd/saslbind.c - - ldap/servers/slapd/ns_slapd-saslbind.obj: ldap/servers/slapd/saslbind.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-saslbind.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-saslbind.Tpo -c -o ldap/servers/slapd/ns_slapd-saslbind.obj `if test -f 'ldap/servers/slapd/saslbind.c'; then $(CYGPATH_W) 'ldap/servers/slapd/saslbind.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/saslbind.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-saslbind.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-saslbind.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/saslbind.c' object='ldap/servers/slapd/ns_slapd-saslbind.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-saslbind.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-saslbind.Tpo -c -o ldap/servers/slapd/ns_slapd-saslbind.obj `if test -f 'ldap/servers/slapd/saslbind.c'; then $(CYGPATH_W) 'ldap/servers/slapd/saslbind.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/saslbind.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-saslbind.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-saslbind.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/saslbind.c' object='ldap/servers/slapd/ns_slapd-saslbind.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-saslbind.obj `if test -f 'ldap/servers/slapd/saslbind.c'; then $(CYGPATH_W) 'ldap/servers/slapd/saslbind.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/saslbind.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-saslbind.obj `if test -f 'ldap/servers/slapd/saslbind.c'; then $(CYGPATH_W) 'ldap/servers/slapd/saslbind.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/saslbind.c'; fi` - - ldap/servers/slapd/ns_slapd-search.o: ldap/servers/slapd/search.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-search.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-search.Tpo -c -o ldap/servers/slapd/ns_slapd-search.o `test -f 'ldap/servers/slapd/search.c' || echo '$(srcdir)/'`ldap/servers/slapd/search.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-search.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-search.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/search.c' object='ldap/servers/slapd/ns_slapd-search.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-search.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-search.Tpo -c -o ldap/servers/slapd/ns_slapd-search.o `test -f 'ldap/servers/slapd/search.c' || echo '$(srcdir)/'`ldap/servers/slapd/search.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-search.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-search.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/search.c' object='ldap/servers/slapd/ns_slapd-search.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-search.o `test -f 'ldap/servers/slapd/search.c' || echo '$(srcdir)/'`ldap/servers/slapd/search.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-search.o `test -f 'ldap/servers/slapd/search.c' || echo '$(srcdir)/'`ldap/servers/slapd/search.c - - ldap/servers/slapd/ns_slapd-search.obj: ldap/servers/slapd/search.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-search.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-search.Tpo -c -o ldap/servers/slapd/ns_slapd-search.obj `if test -f 'ldap/servers/slapd/search.c'; then $(CYGPATH_W) 'ldap/servers/slapd/search.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/search.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-search.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-search.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/search.c' object='ldap/servers/slapd/ns_slapd-search.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-search.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-search.Tpo -c -o ldap/servers/slapd/ns_slapd-search.obj `if test -f 'ldap/servers/slapd/search.c'; then $(CYGPATH_W) 'ldap/servers/slapd/search.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/search.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-search.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-search.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/search.c' object='ldap/servers/slapd/ns_slapd-search.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-search.obj `if test -f 'ldap/servers/slapd/search.c'; then $(CYGPATH_W) 'ldap/servers/slapd/search.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/search.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-search.obj `if test -f 'ldap/servers/slapd/search.c'; then $(CYGPATH_W) 'ldap/servers/slapd/search.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/search.c'; fi` - - ldap/servers/slapd/ns_slapd-start_tls_extop.o: ldap/servers/slapd/start_tls_extop.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-start_tls_extop.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-start_tls_extop.Tpo -c -o ldap/servers/slapd/ns_slapd-start_tls_extop.o `test -f 'ldap/servers/slapd/start_tls_extop.c' || echo '$(srcdir)/'`ldap/servers/slapd/start_tls_extop.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-start_tls_extop.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-start_tls_extop.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/start_tls_extop.c' object='ldap/servers/slapd/ns_slapd-start_tls_extop.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-start_tls_extop.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-start_tls_extop.Tpo -c -o ldap/servers/slapd/ns_slapd-start_tls_extop.o `test -f 'ldap/servers/slapd/start_tls_extop.c' || echo '$(srcdir)/'`ldap/servers/slapd/start_tls_extop.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-start_tls_extop.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-start_tls_extop.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/start_tls_extop.c' object='ldap/servers/slapd/ns_slapd-start_tls_extop.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-start_tls_extop.o `test -f 'ldap/servers/slapd/start_tls_extop.c' || echo '$(srcdir)/'`ldap/servers/slapd/start_tls_extop.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-start_tls_extop.o `test -f 'ldap/servers/slapd/start_tls_extop.c' || echo '$(srcdir)/'`ldap/servers/slapd/start_tls_extop.c - - ldap/servers/slapd/ns_slapd-start_tls_extop.obj: ldap/servers/slapd/start_tls_extop.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-start_tls_extop.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-start_tls_extop.Tpo -c -o ldap/servers/slapd/ns_slapd-start_tls_extop.obj `if test -f 'ldap/servers/slapd/start_tls_extop.c'; then $(CYGPATH_W) 'ldap/servers/slapd/start_tls_extop.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/start_tls_extop.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-start_tls_extop.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-start_tls_extop.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/start_tls_extop.c' object='ldap/servers/slapd/ns_slapd-start_tls_extop.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-start_tls_extop.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-start_tls_extop.Tpo -c -o ldap/servers/slapd/ns_slapd-start_tls_extop.obj `if test -f 'ldap/servers/slapd/start_tls_extop.c'; then $(CYGPATH_W) 'ldap/servers/slapd/start_tls_extop.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/start_tls_extop.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-start_tls_extop.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-start_tls_extop.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/start_tls_extop.c' object='ldap/servers/slapd/ns_slapd-start_tls_extop.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-start_tls_extop.obj `if test -f 'ldap/servers/slapd/start_tls_extop.c'; then $(CYGPATH_W) 'ldap/servers/slapd/start_tls_extop.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/start_tls_extop.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-start_tls_extop.obj `if test -f 'ldap/servers/slapd/start_tls_extop.c'; then $(CYGPATH_W) 'ldap/servers/slapd/start_tls_extop.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/start_tls_extop.c'; fi` - - ldap/servers/slapd/ns_slapd-strdup.o: ldap/servers/slapd/strdup.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-strdup.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-strdup.Tpo -c -o ldap/servers/slapd/ns_slapd-strdup.o `test -f 'ldap/servers/slapd/strdup.c' || echo '$(srcdir)/'`ldap/servers/slapd/strdup.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-strdup.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-strdup.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/strdup.c' object='ldap/servers/slapd/ns_slapd-strdup.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-strdup.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-strdup.Tpo -c -o ldap/servers/slapd/ns_slapd-strdup.o `test -f 'ldap/servers/slapd/strdup.c' || echo '$(srcdir)/'`ldap/servers/slapd/strdup.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-strdup.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-strdup.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/strdup.c' object='ldap/servers/slapd/ns_slapd-strdup.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-strdup.o `test -f 'ldap/servers/slapd/strdup.c' || echo '$(srcdir)/'`ldap/servers/slapd/strdup.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-strdup.o `test -f 'ldap/servers/slapd/strdup.c' || echo '$(srcdir)/'`ldap/servers/slapd/strdup.c - - ldap/servers/slapd/ns_slapd-strdup.obj: ldap/servers/slapd/strdup.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-strdup.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-strdup.Tpo -c -o ldap/servers/slapd/ns_slapd-strdup.obj `if test -f 'ldap/servers/slapd/strdup.c'; then $(CYGPATH_W) 'ldap/servers/slapd/strdup.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/strdup.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-strdup.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-strdup.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/strdup.c' object='ldap/servers/slapd/ns_slapd-strdup.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-strdup.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-strdup.Tpo -c -o ldap/servers/slapd/ns_slapd-strdup.obj `if test -f 'ldap/servers/slapd/strdup.c'; then $(CYGPATH_W) 'ldap/servers/slapd/strdup.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/strdup.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-strdup.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-strdup.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/strdup.c' object='ldap/servers/slapd/ns_slapd-strdup.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-strdup.obj `if test -f 'ldap/servers/slapd/strdup.c'; then $(CYGPATH_W) 'ldap/servers/slapd/strdup.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/strdup.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-strdup.obj `if test -f 'ldap/servers/slapd/strdup.c'; then $(CYGPATH_W) 'ldap/servers/slapd/strdup.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/strdup.c'; fi` - - ldap/servers/slapd/ns_slapd-stubs.o: ldap/servers/slapd/stubs.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-stubs.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-stubs.Tpo -c -o ldap/servers/slapd/ns_slapd-stubs.o `test -f 'ldap/servers/slapd/stubs.c' || echo '$(srcdir)/'`ldap/servers/slapd/stubs.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-stubs.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-stubs.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/stubs.c' object='ldap/servers/slapd/ns_slapd-stubs.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-stubs.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-stubs.Tpo -c -o ldap/servers/slapd/ns_slapd-stubs.o `test -f 'ldap/servers/slapd/stubs.c' || echo '$(srcdir)/'`ldap/servers/slapd/stubs.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-stubs.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-stubs.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/stubs.c' object='ldap/servers/slapd/ns_slapd-stubs.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-stubs.o `test -f 'ldap/servers/slapd/stubs.c' || echo '$(srcdir)/'`ldap/servers/slapd/stubs.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-stubs.o `test -f 'ldap/servers/slapd/stubs.c' || echo '$(srcdir)/'`ldap/servers/slapd/stubs.c - - ldap/servers/slapd/ns_slapd-stubs.obj: ldap/servers/slapd/stubs.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-stubs.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-stubs.Tpo -c -o ldap/servers/slapd/ns_slapd-stubs.obj `if test -f 'ldap/servers/slapd/stubs.c'; then $(CYGPATH_W) 'ldap/servers/slapd/stubs.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/stubs.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-stubs.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-stubs.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/stubs.c' object='ldap/servers/slapd/ns_slapd-stubs.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-stubs.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-stubs.Tpo -c -o ldap/servers/slapd/ns_slapd-stubs.obj `if test -f 'ldap/servers/slapd/stubs.c'; then $(CYGPATH_W) 'ldap/servers/slapd/stubs.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/stubs.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-stubs.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-stubs.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/stubs.c' object='ldap/servers/slapd/ns_slapd-stubs.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-stubs.obj `if test -f 'ldap/servers/slapd/stubs.c'; then $(CYGPATH_W) 'ldap/servers/slapd/stubs.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/stubs.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-stubs.obj `if test -f 'ldap/servers/slapd/stubs.c'; then $(CYGPATH_W) 'ldap/servers/slapd/stubs.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/stubs.c'; fi` - - ldap/servers/slapd/ns_slapd-tempnam.o: ldap/servers/slapd/tempnam.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-tempnam.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-tempnam.Tpo -c -o ldap/servers/slapd/ns_slapd-tempnam.o `test -f 'ldap/servers/slapd/tempnam.c' || echo '$(srcdir)/'`ldap/servers/slapd/tempnam.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-tempnam.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-tempnam.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/tempnam.c' object='ldap/servers/slapd/ns_slapd-tempnam.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-tempnam.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-tempnam.Tpo -c -o ldap/servers/slapd/ns_slapd-tempnam.o `test -f 'ldap/servers/slapd/tempnam.c' || echo '$(srcdir)/'`ldap/servers/slapd/tempnam.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-tempnam.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-tempnam.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/tempnam.c' object='ldap/servers/slapd/ns_slapd-tempnam.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-tempnam.o `test -f 'ldap/servers/slapd/tempnam.c' || echo '$(srcdir)/'`ldap/servers/slapd/tempnam.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-tempnam.o `test -f 'ldap/servers/slapd/tempnam.c' || echo '$(srcdir)/'`ldap/servers/slapd/tempnam.c - - ldap/servers/slapd/ns_slapd-tempnam.obj: ldap/servers/slapd/tempnam.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-tempnam.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-tempnam.Tpo -c -o ldap/servers/slapd/ns_slapd-tempnam.obj `if test -f 'ldap/servers/slapd/tempnam.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tempnam.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tempnam.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-tempnam.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-tempnam.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/tempnam.c' object='ldap/servers/slapd/ns_slapd-tempnam.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-tempnam.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-tempnam.Tpo -c -o ldap/servers/slapd/ns_slapd-tempnam.obj `if test -f 'ldap/servers/slapd/tempnam.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tempnam.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tempnam.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-tempnam.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-tempnam.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/tempnam.c' object='ldap/servers/slapd/ns_slapd-tempnam.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-tempnam.obj `if test -f 'ldap/servers/slapd/tempnam.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tempnam.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tempnam.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-tempnam.obj `if test -f 'ldap/servers/slapd/tempnam.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tempnam.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tempnam.c'; fi` - - ldap/servers/slapd/ns_slapd-unbind.o: ldap/servers/slapd/unbind.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-unbind.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-unbind.Tpo -c -o ldap/servers/slapd/ns_slapd-unbind.o `test -f 'ldap/servers/slapd/unbind.c' || echo '$(srcdir)/'`ldap/servers/slapd/unbind.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-unbind.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-unbind.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/unbind.c' object='ldap/servers/slapd/ns_slapd-unbind.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-unbind.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-unbind.Tpo -c -o ldap/servers/slapd/ns_slapd-unbind.o `test -f 'ldap/servers/slapd/unbind.c' || echo '$(srcdir)/'`ldap/servers/slapd/unbind.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-unbind.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-unbind.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/unbind.c' object='ldap/servers/slapd/ns_slapd-unbind.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-unbind.o `test -f 'ldap/servers/slapd/unbind.c' || echo '$(srcdir)/'`ldap/servers/slapd/unbind.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-unbind.o `test -f 'ldap/servers/slapd/unbind.c' || echo '$(srcdir)/'`ldap/servers/slapd/unbind.c - - ldap/servers/slapd/ns_slapd-unbind.obj: ldap/servers/slapd/unbind.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-unbind.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-unbind.Tpo -c -o ldap/servers/slapd/ns_slapd-unbind.obj `if test -f 'ldap/servers/slapd/unbind.c'; then $(CYGPATH_W) 'ldap/servers/slapd/unbind.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/unbind.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-unbind.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-unbind.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/unbind.c' object='ldap/servers/slapd/ns_slapd-unbind.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-unbind.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-unbind.Tpo -c -o ldap/servers/slapd/ns_slapd-unbind.obj `if test -f 'ldap/servers/slapd/unbind.c'; then $(CYGPATH_W) 'ldap/servers/slapd/unbind.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/unbind.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-unbind.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-unbind.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/unbind.c' object='ldap/servers/slapd/ns_slapd-unbind.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-unbind.obj `if test -f 'ldap/servers/slapd/unbind.c'; then $(CYGPATH_W) 'ldap/servers/slapd/unbind.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/unbind.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-unbind.obj `if test -f 'ldap/servers/slapd/unbind.c'; then $(CYGPATH_W) 'ldap/servers/slapd/unbind.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/unbind.c'; fi` - - ldap/servers/slapd/ns_slapd-getsocketpeer.o: ldap/servers/slapd/getsocketpeer.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-getsocketpeer.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-getsocketpeer.Tpo -c -o ldap/servers/slapd/ns_slapd-getsocketpeer.o `test -f 'ldap/servers/slapd/getsocketpeer.c' || echo '$(srcdir)/'`ldap/servers/slapd/getsocketpeer.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-getsocketpeer.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-getsocketpeer.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/getsocketpeer.c' object='ldap/servers/slapd/ns_slapd-getsocketpeer.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-getsocketpeer.o -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-getsocketpeer.Tpo -c -o ldap/servers/slapd/ns_slapd-getsocketpeer.o `test -f 'ldap/servers/slapd/getsocketpeer.c' || echo '$(srcdir)/'`ldap/servers/slapd/getsocketpeer.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-getsocketpeer.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-getsocketpeer.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/getsocketpeer.c' object='ldap/servers/slapd/ns_slapd-getsocketpeer.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-getsocketpeer.o `test -f 'ldap/servers/slapd/getsocketpeer.c' || echo '$(srcdir)/'`ldap/servers/slapd/getsocketpeer.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-getsocketpeer.o `test -f 'ldap/servers/slapd/getsocketpeer.c' || echo '$(srcdir)/'`ldap/servers/slapd/getsocketpeer.c - - ldap/servers/slapd/ns_slapd-getsocketpeer.obj: ldap/servers/slapd/getsocketpeer.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-getsocketpeer.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-getsocketpeer.Tpo -c -o ldap/servers/slapd/ns_slapd-getsocketpeer.obj `if test -f 'ldap/servers/slapd/getsocketpeer.c'; then $(CYGPATH_W) 'ldap/servers/slapd/getsocketpeer.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/getsocketpeer.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-getsocketpeer.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-getsocketpeer.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/getsocketpeer.c' object='ldap/servers/slapd/ns_slapd-getsocketpeer.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/ns_slapd-getsocketpeer.obj -MD -MP -MF ldap/servers/slapd/$(DEPDIR)/ns_slapd-getsocketpeer.Tpo -c -o ldap/servers/slapd/ns_slapd-getsocketpeer.obj `if test -f 'ldap/servers/slapd/getsocketpeer.c'; then $(CYGPATH_W) 'ldap/servers/slapd/getsocketpeer.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/getsocketpeer.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/$(DEPDIR)/ns_slapd-getsocketpeer.Tpo ldap/servers/slapd/$(DEPDIR)/ns_slapd-getsocketpeer.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/getsocketpeer.c' object='ldap/servers/slapd/ns_slapd-getsocketpeer.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-getsocketpeer.obj `if test -f 'ldap/servers/slapd/getsocketpeer.c'; then $(CYGPATH_W) 'ldap/servers/slapd/getsocketpeer.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/getsocketpeer.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ns_slapd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/ns_slapd-getsocketpeer.obj `if test -f 'ldap/servers/slapd/getsocketpeer.c'; then $(CYGPATH_W) 'ldap/servers/slapd/getsocketpeer.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/getsocketpeer.c'; fi` - - ldap/servers/slapd/tools/pwdhash_bin-pwenc.o: ldap/servers/slapd/tools/pwenc.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pwdhash_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/pwdhash_bin-pwenc.o -MD -MP -MF ldap/servers/slapd/tools/$(DEPDIR)/pwdhash_bin-pwenc.Tpo -c -o ldap/servers/slapd/tools/pwdhash_bin-pwenc.o `test -f 'ldap/servers/slapd/tools/pwenc.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/pwenc.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/tools/$(DEPDIR)/pwdhash_bin-pwenc.Tpo ldap/servers/slapd/tools/$(DEPDIR)/pwdhash_bin-pwenc.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/tools/pwenc.c' object='ldap/servers/slapd/tools/pwdhash_bin-pwenc.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pwdhash_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/pwdhash_bin-pwenc.o -MD -MP -MF ldap/servers/slapd/tools/$(DEPDIR)/pwdhash_bin-pwenc.Tpo -c -o ldap/servers/slapd/tools/pwdhash_bin-pwenc.o `test -f 'ldap/servers/slapd/tools/pwenc.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/pwenc.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/tools/$(DEPDIR)/pwdhash_bin-pwenc.Tpo ldap/servers/slapd/tools/$(DEPDIR)/pwdhash_bin-pwenc.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/tools/pwenc.c' object='ldap/servers/slapd/tools/pwdhash_bin-pwenc.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pwdhash_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/pwdhash_bin-pwenc.o `test -f 'ldap/servers/slapd/tools/pwenc.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/pwenc.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pwdhash_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/pwdhash_bin-pwenc.o `test -f 'ldap/servers/slapd/tools/pwenc.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/pwenc.c - - ldap/servers/slapd/tools/pwdhash_bin-pwenc.obj: ldap/servers/slapd/tools/pwenc.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pwdhash_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/pwdhash_bin-pwenc.obj -MD -MP -MF ldap/servers/slapd/tools/$(DEPDIR)/pwdhash_bin-pwenc.Tpo -c -o ldap/servers/slapd/tools/pwdhash_bin-pwenc.obj `if test -f 'ldap/servers/slapd/tools/pwenc.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/pwenc.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/pwenc.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/tools/$(DEPDIR)/pwdhash_bin-pwenc.Tpo ldap/servers/slapd/tools/$(DEPDIR)/pwdhash_bin-pwenc.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/tools/pwenc.c' object='ldap/servers/slapd/tools/pwdhash_bin-pwenc.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pwdhash_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/pwdhash_bin-pwenc.obj -MD -MP -MF ldap/servers/slapd/tools/$(DEPDIR)/pwdhash_bin-pwenc.Tpo -c -o ldap/servers/slapd/tools/pwdhash_bin-pwenc.obj `if test -f 'ldap/servers/slapd/tools/pwenc.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/pwenc.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/pwenc.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/tools/$(DEPDIR)/pwdhash_bin-pwenc.Tpo ldap/servers/slapd/tools/$(DEPDIR)/pwdhash_bin-pwenc.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/tools/pwenc.c' object='ldap/servers/slapd/tools/pwdhash_bin-pwenc.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pwdhash_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/pwdhash_bin-pwenc.obj `if test -f 'ldap/servers/slapd/tools/pwenc.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/pwenc.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/pwenc.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pwdhash_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/pwdhash_bin-pwenc.obj `if test -f 'ldap/servers/slapd/tools/pwenc.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/pwenc.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/pwenc.c'; fi` - - ldap/servers/slapd/tools/rsearch/rsearch_bin-nametable.o: ldap/servers/slapd/tools/rsearch/nametable.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(rsearch_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/rsearch/rsearch_bin-nametable.o -MD -MP -MF ldap/servers/slapd/tools/rsearch/$(DEPDIR)/rsearch_bin-nametable.Tpo -c -o ldap/servers/slapd/tools/rsearch/rsearch_bin-nametable.o `test -f 'ldap/servers/slapd/tools/rsearch/nametable.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/rsearch/nametable.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/tools/rsearch/$(DEPDIR)/rsearch_bin-nametable.Tpo ldap/servers/slapd/tools/rsearch/$(DEPDIR)/rsearch_bin-nametable.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/tools/rsearch/nametable.c' object='ldap/servers/slapd/tools/rsearch/rsearch_bin-nametable.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(rsearch_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/rsearch/rsearch_bin-nametable.o -MD -MP -MF ldap/servers/slapd/tools/rsearch/$(DEPDIR)/rsearch_bin-nametable.Tpo -c -o ldap/servers/slapd/tools/rsearch/rsearch_bin-nametable.o `test -f 'ldap/servers/slapd/tools/rsearch/nametable.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/rsearch/nametable.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/tools/rsearch/$(DEPDIR)/rsearch_bin-nametable.Tpo ldap/servers/slapd/tools/rsearch/$(DEPDIR)/rsearch_bin-nametable.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/tools/rsearch/nametable.c' object='ldap/servers/slapd/tools/rsearch/rsearch_bin-nametable.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(rsearch_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/rsearch/rsearch_bin-nametable.o `test -f 'ldap/servers/slapd/tools/rsearch/nametable.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/rsearch/nametable.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(rsearch_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/rsearch/rsearch_bin-nametable.o `test -f 'ldap/servers/slapd/tools/rsearch/nametable.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/rsearch/nametable.c - - ldap/servers/slapd/tools/rsearch/rsearch_bin-nametable.obj: ldap/servers/slapd/tools/rsearch/nametable.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(rsearch_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/rsearch/rsearch_bin-nametable.obj -MD -MP -MF ldap/servers/slapd/tools/rsearch/$(DEPDIR)/rsearch_bin-nametable.Tpo -c -o ldap/servers/slapd/tools/rsearch/rsearch_bin-nametable.obj `if test -f 'ldap/servers/slapd/tools/rsearch/nametable.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/rsearch/nametable.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/rsearch/nametable.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/tools/rsearch/$(DEPDIR)/rsearch_bin-nametable.Tpo ldap/servers/slapd/tools/rsearch/$(DEPDIR)/rsearch_bin-nametable.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/tools/rsearch/nametable.c' object='ldap/servers/slapd/tools/rsearch/rsearch_bin-nametable.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(rsearch_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/rsearch/rsearch_bin-nametable.obj -MD -MP -MF ldap/servers/slapd/tools/rsearch/$(DEPDIR)/rsearch_bin-nametable.Tpo -c -o ldap/servers/slapd/tools/rsearch/rsearch_bin-nametable.obj `if test -f 'ldap/servers/slapd/tools/rsearch/nametable.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/rsearch/nametable.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/rsearch/nametable.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/tools/rsearch/$(DEPDIR)/rsearch_bin-nametable.Tpo ldap/servers/slapd/tools/rsearch/$(DEPDIR)/rsearch_bin-nametable.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/tools/rsearch/nametable.c' object='ldap/servers/slapd/tools/rsearch/rsearch_bin-nametable.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(rsearch_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/rsearch/rsearch_bin-nametable.obj `if test -f 'ldap/servers/slapd/tools/rsearch/nametable.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/rsearch/nametable.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/rsearch/nametable.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(rsearch_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/rsearch/rsearch_bin-nametable.obj `if test -f 'ldap/servers/slapd/tools/rsearch/nametable.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/rsearch/nametable.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/rsearch/nametable.c'; fi` - - ldap/servers/slapd/tools/rsearch/rsearch_bin-rsearch.o: ldap/servers/slapd/tools/rsearch/rsearch.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(rsearch_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/rsearch/rsearch_bin-rsearch.o -MD -MP -MF ldap/servers/slapd/tools/rsearch/$(DEPDIR)/rsearch_bin-rsearch.Tpo -c -o ldap/servers/slapd/tools/rsearch/rsearch_bin-rsearch.o `test -f 'ldap/servers/slapd/tools/rsearch/rsearch.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/rsearch/rsearch.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/tools/rsearch/$(DEPDIR)/rsearch_bin-rsearch.Tpo ldap/servers/slapd/tools/rsearch/$(DEPDIR)/rsearch_bin-rsearch.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/tools/rsearch/rsearch.c' object='ldap/servers/slapd/tools/rsearch/rsearch_bin-rsearch.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(rsearch_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/rsearch/rsearch_bin-rsearch.o -MD -MP -MF ldap/servers/slapd/tools/rsearch/$(DEPDIR)/rsearch_bin-rsearch.Tpo -c -o ldap/servers/slapd/tools/rsearch/rsearch_bin-rsearch.o `test -f 'ldap/servers/slapd/tools/rsearch/rsearch.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/rsearch/rsearch.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/tools/rsearch/$(DEPDIR)/rsearch_bin-rsearch.Tpo ldap/servers/slapd/tools/rsearch/$(DEPDIR)/rsearch_bin-rsearch.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/tools/rsearch/rsearch.c' object='ldap/servers/slapd/tools/rsearch/rsearch_bin-rsearch.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(rsearch_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/rsearch/rsearch_bin-rsearch.o `test -f 'ldap/servers/slapd/tools/rsearch/rsearch.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/rsearch/rsearch.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(rsearch_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/rsearch/rsearch_bin-rsearch.o `test -f 'ldap/servers/slapd/tools/rsearch/rsearch.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/rsearch/rsearch.c - - ldap/servers/slapd/tools/rsearch/rsearch_bin-rsearch.obj: ldap/servers/slapd/tools/rsearch/rsearch.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(rsearch_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/rsearch/rsearch_bin-rsearch.obj -MD -MP -MF ldap/servers/slapd/tools/rsearch/$(DEPDIR)/rsearch_bin-rsearch.Tpo -c -o ldap/servers/slapd/tools/rsearch/rsearch_bin-rsearch.obj `if test -f 'ldap/servers/slapd/tools/rsearch/rsearch.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/rsearch/rsearch.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/rsearch/rsearch.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/tools/rsearch/$(DEPDIR)/rsearch_bin-rsearch.Tpo ldap/servers/slapd/tools/rsearch/$(DEPDIR)/rsearch_bin-rsearch.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/tools/rsearch/rsearch.c' object='ldap/servers/slapd/tools/rsearch/rsearch_bin-rsearch.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(rsearch_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/rsearch/rsearch_bin-rsearch.obj -MD -MP -MF ldap/servers/slapd/tools/rsearch/$(DEPDIR)/rsearch_bin-rsearch.Tpo -c -o ldap/servers/slapd/tools/rsearch/rsearch_bin-rsearch.obj `if test -f 'ldap/servers/slapd/tools/rsearch/rsearch.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/rsearch/rsearch.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/rsearch/rsearch.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/tools/rsearch/$(DEPDIR)/rsearch_bin-rsearch.Tpo ldap/servers/slapd/tools/rsearch/$(DEPDIR)/rsearch_bin-rsearch.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/tools/rsearch/rsearch.c' object='ldap/servers/slapd/tools/rsearch/rsearch_bin-rsearch.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(rsearch_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/rsearch/rsearch_bin-rsearch.obj `if test -f 'ldap/servers/slapd/tools/rsearch/rsearch.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/rsearch/rsearch.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/rsearch/rsearch.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(rsearch_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/rsearch/rsearch_bin-rsearch.obj `if test -f 'ldap/servers/slapd/tools/rsearch/rsearch.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/rsearch/rsearch.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/rsearch/rsearch.c'; fi` - - ldap/servers/slapd/tools/rsearch/rsearch_bin-sdattable.o: ldap/servers/slapd/tools/rsearch/sdattable.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(rsearch_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/rsearch/rsearch_bin-sdattable.o -MD -MP -MF ldap/servers/slapd/tools/rsearch/$(DEPDIR)/rsearch_bin-sdattable.Tpo -c -o ldap/servers/slapd/tools/rsearch/rsearch_bin-sdattable.o `test -f 'ldap/servers/slapd/tools/rsearch/sdattable.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/rsearch/sdattable.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/tools/rsearch/$(DEPDIR)/rsearch_bin-sdattable.Tpo ldap/servers/slapd/tools/rsearch/$(DEPDIR)/rsearch_bin-sdattable.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/tools/rsearch/sdattable.c' object='ldap/servers/slapd/tools/rsearch/rsearch_bin-sdattable.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(rsearch_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/rsearch/rsearch_bin-sdattable.o -MD -MP -MF ldap/servers/slapd/tools/rsearch/$(DEPDIR)/rsearch_bin-sdattable.Tpo -c -o ldap/servers/slapd/tools/rsearch/rsearch_bin-sdattable.o `test -f 'ldap/servers/slapd/tools/rsearch/sdattable.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/rsearch/sdattable.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/tools/rsearch/$(DEPDIR)/rsearch_bin-sdattable.Tpo ldap/servers/slapd/tools/rsearch/$(DEPDIR)/rsearch_bin-sdattable.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/tools/rsearch/sdattable.c' object='ldap/servers/slapd/tools/rsearch/rsearch_bin-sdattable.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(rsearch_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/rsearch/rsearch_bin-sdattable.o `test -f 'ldap/servers/slapd/tools/rsearch/sdattable.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/rsearch/sdattable.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(rsearch_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/rsearch/rsearch_bin-sdattable.o `test -f 'ldap/servers/slapd/tools/rsearch/sdattable.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/rsearch/sdattable.c - - ldap/servers/slapd/tools/rsearch/rsearch_bin-sdattable.obj: ldap/servers/slapd/tools/rsearch/sdattable.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(rsearch_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/rsearch/rsearch_bin-sdattable.obj -MD -MP -MF ldap/servers/slapd/tools/rsearch/$(DEPDIR)/rsearch_bin-sdattable.Tpo -c -o ldap/servers/slapd/tools/rsearch/rsearch_bin-sdattable.obj `if test -f 'ldap/servers/slapd/tools/rsearch/sdattable.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/rsearch/sdattable.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/rsearch/sdattable.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/tools/rsearch/$(DEPDIR)/rsearch_bin-sdattable.Tpo ldap/servers/slapd/tools/rsearch/$(DEPDIR)/rsearch_bin-sdattable.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/tools/rsearch/sdattable.c' object='ldap/servers/slapd/tools/rsearch/rsearch_bin-sdattable.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(rsearch_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/rsearch/rsearch_bin-sdattable.obj -MD -MP -MF ldap/servers/slapd/tools/rsearch/$(DEPDIR)/rsearch_bin-sdattable.Tpo -c -o ldap/servers/slapd/tools/rsearch/rsearch_bin-sdattable.obj `if test -f 'ldap/servers/slapd/tools/rsearch/sdattable.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/rsearch/sdattable.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/rsearch/sdattable.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/tools/rsearch/$(DEPDIR)/rsearch_bin-sdattable.Tpo ldap/servers/slapd/tools/rsearch/$(DEPDIR)/rsearch_bin-sdattable.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/tools/rsearch/sdattable.c' object='ldap/servers/slapd/tools/rsearch/rsearch_bin-sdattable.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(rsearch_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/rsearch/rsearch_bin-sdattable.obj `if test -f 'ldap/servers/slapd/tools/rsearch/sdattable.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/rsearch/sdattable.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/rsearch/sdattable.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(rsearch_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/rsearch/rsearch_bin-sdattable.obj `if test -f 'ldap/servers/slapd/tools/rsearch/sdattable.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/rsearch/sdattable.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/rsearch/sdattable.c'; fi` - - ldap/servers/slapd/tools/rsearch/rsearch_bin-searchthread.o: ldap/servers/slapd/tools/rsearch/searchthread.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(rsearch_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/rsearch/rsearch_bin-searchthread.o -MD -MP -MF ldap/servers/slapd/tools/rsearch/$(DEPDIR)/rsearch_bin-searchthread.Tpo -c -o ldap/servers/slapd/tools/rsearch/rsearch_bin-searchthread.o `test -f 'ldap/servers/slapd/tools/rsearch/searchthread.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/rsearch/searchthread.c --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/tools/rsearch/$(DEPDIR)/rsearch_bin-searchthread.Tpo ldap/servers/slapd/tools/rsearch/$(DEPDIR)/rsearch_bin-searchthread.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/tools/rsearch/searchthread.c' object='ldap/servers/slapd/tools/rsearch/rsearch_bin-searchthread.o' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(rsearch_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/rsearch/rsearch_bin-searchthread.o -MD -MP -MF ldap/servers/slapd/tools/rsearch/$(DEPDIR)/rsearch_bin-searchthread.Tpo -c -o ldap/servers/slapd/tools/rsearch/rsearch_bin-searchthread.o `test -f 'ldap/servers/slapd/tools/rsearch/searchthread.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/rsearch/searchthread.c -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/tools/rsearch/$(DEPDIR)/rsearch_bin-searchthread.Tpo ldap/servers/slapd/tools/rsearch/$(DEPDIR)/rsearch_bin-searchthread.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/tools/rsearch/searchthread.c' object='ldap/servers/slapd/tools/rsearch/rsearch_bin-searchthread.o' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(rsearch_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/rsearch/rsearch_bin-searchthread.o `test -f 'ldap/servers/slapd/tools/rsearch/searchthread.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/rsearch/searchthread.c -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(rsearch_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/rsearch/rsearch_bin-searchthread.o `test -f 'ldap/servers/slapd/tools/rsearch/searchthread.c' || echo '$(srcdir)/'`ldap/servers/slapd/tools/rsearch/searchthread.c - - ldap/servers/slapd/tools/rsearch/rsearch_bin-searchthread.obj: ldap/servers/slapd/tools/rsearch/searchthread.c --@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(rsearch_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/rsearch/rsearch_bin-searchthread.obj -MD -MP -MF ldap/servers/slapd/tools/rsearch/$(DEPDIR)/rsearch_bin-searchthread.Tpo -c -o ldap/servers/slapd/tools/rsearch/rsearch_bin-searchthread.obj `if test -f 'ldap/servers/slapd/tools/rsearch/searchthread.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/rsearch/searchthread.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/rsearch/searchthread.c'; fi` --@am__fastdepCC_TRUE@ $(am__mv) ldap/servers/slapd/tools/rsearch/$(DEPDIR)/rsearch_bin-searchthread.Tpo ldap/servers/slapd/tools/rsearch/$(DEPDIR)/rsearch_bin-searchthread.Po --@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldap/servers/slapd/tools/rsearch/searchthread.c' object='ldap/servers/slapd/tools/rsearch/rsearch_bin-searchthread.obj' libtool=no @AMDEPBACKSLASH@ -+@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(rsearch_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ldap/servers/slapd/tools/rsearch/rsearch_bin-searchthread.obj -MD -MP -MF ldap/servers/slapd/tools/rsearch/$(DEPDIR)/rsearch_bin-searchthread.Tpo -c -o ldap/servers/slapd/tools/rsearch/rsearch_bin-searchthread.obj `if test -f 'ldap/servers/slapd/tools/rsearch/searchthread.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/rsearch/searchthread.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/rsearch/searchthread.c'; fi` -+@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) ldap/servers/slapd/tools/rsearch/$(DEPDIR)/rsearch_bin-searchthread.Tpo ldap/servers/slapd/tools/rsearch/$(DEPDIR)/rsearch_bin-searchthread.Po -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ldap/servers/slapd/tools/rsearch/searchthread.c' object='ldap/servers/slapd/tools/rsearch/rsearch_bin-searchthread.obj' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(rsearch_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/rsearch/rsearch_bin-searchthread.obj `if test -f 'ldap/servers/slapd/tools/rsearch/searchthread.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/rsearch/searchthread.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/rsearch/searchthread.c'; fi` -+@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(rsearch_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ldap/servers/slapd/tools/rsearch/rsearch_bin-searchthread.obj `if test -f 'ldap/servers/slapd/tools/rsearch/searchthread.c'; then $(CYGPATH_W) 'ldap/servers/slapd/tools/rsearch/searchthread.c'; else $(CYGPATH_W) '$(srcdir)/ldap/servers/slapd/tools/rsearch/searchthread.c'; fi` - - .cpp.o: --@am__fastdepCXX_TRUE@ depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ -+@am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ - @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ - @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po --@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< -+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< - - .cpp.obj: --@am__fastdepCXX_TRUE@ depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ -+@am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ - @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ - @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po --@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` -+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - - .cpp.lo: --@am__fastdepCXX_TRUE@ depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ -+@am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ - @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ - @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo --@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< -+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< - - lib/libaccess/libns_dshttpd_la-access_plhash.lo: lib/libaccess/access_plhash.cpp --@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/libaccess/libns_dshttpd_la-access_plhash.lo -MD -MP -MF lib/libaccess/$(DEPDIR)/libns_dshttpd_la-access_plhash.Tpo -c -o lib/libaccess/libns_dshttpd_la-access_plhash.lo `test -f 'lib/libaccess/access_plhash.cpp' || echo '$(srcdir)/'`lib/libaccess/access_plhash.cpp --@am__fastdepCXX_TRUE@ $(am__mv) lib/libaccess/$(DEPDIR)/libns_dshttpd_la-access_plhash.Tpo lib/libaccess/$(DEPDIR)/libns_dshttpd_la-access_plhash.Plo --@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='lib/libaccess/access_plhash.cpp' object='lib/libaccess/libns_dshttpd_la-access_plhash.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/libaccess/libns_dshttpd_la-access_plhash.lo -MD -MP -MF lib/libaccess/$(DEPDIR)/libns_dshttpd_la-access_plhash.Tpo -c -o lib/libaccess/libns_dshttpd_la-access_plhash.lo `test -f 'lib/libaccess/access_plhash.cpp' || echo '$(srcdir)/'`lib/libaccess/access_plhash.cpp -+@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) lib/libaccess/$(DEPDIR)/libns_dshttpd_la-access_plhash.Tpo lib/libaccess/$(DEPDIR)/libns_dshttpd_la-access_plhash.Plo -+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='lib/libaccess/access_plhash.cpp' object='lib/libaccess/libns_dshttpd_la-access_plhash.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/libaccess/libns_dshttpd_la-access_plhash.lo `test -f 'lib/libaccess/access_plhash.cpp' || echo '$(srcdir)/'`lib/libaccess/access_plhash.cpp -+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/libaccess/libns_dshttpd_la-access_plhash.lo `test -f 'lib/libaccess/access_plhash.cpp' || echo '$(srcdir)/'`lib/libaccess/access_plhash.cpp - - lib/libaccess/libns_dshttpd_la-acl.tab.lo: lib/libaccess/acl.tab.cpp --@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/libaccess/libns_dshttpd_la-acl.tab.lo -MD -MP -MF lib/libaccess/$(DEPDIR)/libns_dshttpd_la-acl.tab.Tpo -c -o lib/libaccess/libns_dshttpd_la-acl.tab.lo `test -f 'lib/libaccess/acl.tab.cpp' || echo '$(srcdir)/'`lib/libaccess/acl.tab.cpp --@am__fastdepCXX_TRUE@ $(am__mv) lib/libaccess/$(DEPDIR)/libns_dshttpd_la-acl.tab.Tpo lib/libaccess/$(DEPDIR)/libns_dshttpd_la-acl.tab.Plo --@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='lib/libaccess/acl.tab.cpp' object='lib/libaccess/libns_dshttpd_la-acl.tab.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/libaccess/libns_dshttpd_la-acl.tab.lo -MD -MP -MF lib/libaccess/$(DEPDIR)/libns_dshttpd_la-acl.tab.Tpo -c -o lib/libaccess/libns_dshttpd_la-acl.tab.lo `test -f 'lib/libaccess/acl.tab.cpp' || echo '$(srcdir)/'`lib/libaccess/acl.tab.cpp -+@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) lib/libaccess/$(DEPDIR)/libns_dshttpd_la-acl.tab.Tpo lib/libaccess/$(DEPDIR)/libns_dshttpd_la-acl.tab.Plo -+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='lib/libaccess/acl.tab.cpp' object='lib/libaccess/libns_dshttpd_la-acl.tab.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/libaccess/libns_dshttpd_la-acl.tab.lo `test -f 'lib/libaccess/acl.tab.cpp' || echo '$(srcdir)/'`lib/libaccess/acl.tab.cpp -+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/libaccess/libns_dshttpd_la-acl.tab.lo `test -f 'lib/libaccess/acl.tab.cpp' || echo '$(srcdir)/'`lib/libaccess/acl.tab.cpp - - lib/libaccess/libns_dshttpd_la-acl.yy.lo: lib/libaccess/acl.yy.cpp --@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/libaccess/libns_dshttpd_la-acl.yy.lo -MD -MP -MF lib/libaccess/$(DEPDIR)/libns_dshttpd_la-acl.yy.Tpo -c -o lib/libaccess/libns_dshttpd_la-acl.yy.lo `test -f 'lib/libaccess/acl.yy.cpp' || echo '$(srcdir)/'`lib/libaccess/acl.yy.cpp --@am__fastdepCXX_TRUE@ $(am__mv) lib/libaccess/$(DEPDIR)/libns_dshttpd_la-acl.yy.Tpo lib/libaccess/$(DEPDIR)/libns_dshttpd_la-acl.yy.Plo --@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='lib/libaccess/acl.yy.cpp' object='lib/libaccess/libns_dshttpd_la-acl.yy.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/libaccess/libns_dshttpd_la-acl.yy.lo -MD -MP -MF lib/libaccess/$(DEPDIR)/libns_dshttpd_la-acl.yy.Tpo -c -o lib/libaccess/libns_dshttpd_la-acl.yy.lo `test -f 'lib/libaccess/acl.yy.cpp' || echo '$(srcdir)/'`lib/libaccess/acl.yy.cpp -+@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) lib/libaccess/$(DEPDIR)/libns_dshttpd_la-acl.yy.Tpo lib/libaccess/$(DEPDIR)/libns_dshttpd_la-acl.yy.Plo -+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='lib/libaccess/acl.yy.cpp' object='lib/libaccess/libns_dshttpd_la-acl.yy.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/libaccess/libns_dshttpd_la-acl.yy.lo `test -f 'lib/libaccess/acl.yy.cpp' || echo '$(srcdir)/'`lib/libaccess/acl.yy.cpp -+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/libaccess/libns_dshttpd_la-acl.yy.lo `test -f 'lib/libaccess/acl.yy.cpp' || echo '$(srcdir)/'`lib/libaccess/acl.yy.cpp - - lib/libaccess/libns_dshttpd_la-aclcache.lo: lib/libaccess/aclcache.cpp --@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/libaccess/libns_dshttpd_la-aclcache.lo -MD -MP -MF lib/libaccess/$(DEPDIR)/libns_dshttpd_la-aclcache.Tpo -c -o lib/libaccess/libns_dshttpd_la-aclcache.lo `test -f 'lib/libaccess/aclcache.cpp' || echo '$(srcdir)/'`lib/libaccess/aclcache.cpp --@am__fastdepCXX_TRUE@ $(am__mv) lib/libaccess/$(DEPDIR)/libns_dshttpd_la-aclcache.Tpo lib/libaccess/$(DEPDIR)/libns_dshttpd_la-aclcache.Plo --@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='lib/libaccess/aclcache.cpp' object='lib/libaccess/libns_dshttpd_la-aclcache.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/libaccess/libns_dshttpd_la-aclcache.lo -MD -MP -MF lib/libaccess/$(DEPDIR)/libns_dshttpd_la-aclcache.Tpo -c -o lib/libaccess/libns_dshttpd_la-aclcache.lo `test -f 'lib/libaccess/aclcache.cpp' || echo '$(srcdir)/'`lib/libaccess/aclcache.cpp -+@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) lib/libaccess/$(DEPDIR)/libns_dshttpd_la-aclcache.Tpo lib/libaccess/$(DEPDIR)/libns_dshttpd_la-aclcache.Plo -+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='lib/libaccess/aclcache.cpp' object='lib/libaccess/libns_dshttpd_la-aclcache.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/libaccess/libns_dshttpd_la-aclcache.lo `test -f 'lib/libaccess/aclcache.cpp' || echo '$(srcdir)/'`lib/libaccess/aclcache.cpp -+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/libaccess/libns_dshttpd_la-aclcache.lo `test -f 'lib/libaccess/aclcache.cpp' || echo '$(srcdir)/'`lib/libaccess/aclcache.cpp - - lib/libaccess/libns_dshttpd_la-aclerror.lo: lib/libaccess/aclerror.cpp --@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/libaccess/libns_dshttpd_la-aclerror.lo -MD -MP -MF lib/libaccess/$(DEPDIR)/libns_dshttpd_la-aclerror.Tpo -c -o lib/libaccess/libns_dshttpd_la-aclerror.lo `test -f 'lib/libaccess/aclerror.cpp' || echo '$(srcdir)/'`lib/libaccess/aclerror.cpp --@am__fastdepCXX_TRUE@ $(am__mv) lib/libaccess/$(DEPDIR)/libns_dshttpd_la-aclerror.Tpo lib/libaccess/$(DEPDIR)/libns_dshttpd_la-aclerror.Plo --@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='lib/libaccess/aclerror.cpp' object='lib/libaccess/libns_dshttpd_la-aclerror.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/libaccess/libns_dshttpd_la-aclerror.lo -MD -MP -MF lib/libaccess/$(DEPDIR)/libns_dshttpd_la-aclerror.Tpo -c -o lib/libaccess/libns_dshttpd_la-aclerror.lo `test -f 'lib/libaccess/aclerror.cpp' || echo '$(srcdir)/'`lib/libaccess/aclerror.cpp -+@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) lib/libaccess/$(DEPDIR)/libns_dshttpd_la-aclerror.Tpo lib/libaccess/$(DEPDIR)/libns_dshttpd_la-aclerror.Plo -+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='lib/libaccess/aclerror.cpp' object='lib/libaccess/libns_dshttpd_la-aclerror.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/libaccess/libns_dshttpd_la-aclerror.lo `test -f 'lib/libaccess/aclerror.cpp' || echo '$(srcdir)/'`lib/libaccess/aclerror.cpp -+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/libaccess/libns_dshttpd_la-aclerror.lo `test -f 'lib/libaccess/aclerror.cpp' || echo '$(srcdir)/'`lib/libaccess/aclerror.cpp - - lib/libaccess/libns_dshttpd_la-acleval.lo: lib/libaccess/acleval.cpp --@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/libaccess/libns_dshttpd_la-acleval.lo -MD -MP -MF lib/libaccess/$(DEPDIR)/libns_dshttpd_la-acleval.Tpo -c -o lib/libaccess/libns_dshttpd_la-acleval.lo `test -f 'lib/libaccess/acleval.cpp' || echo '$(srcdir)/'`lib/libaccess/acleval.cpp --@am__fastdepCXX_TRUE@ $(am__mv) lib/libaccess/$(DEPDIR)/libns_dshttpd_la-acleval.Tpo lib/libaccess/$(DEPDIR)/libns_dshttpd_la-acleval.Plo --@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='lib/libaccess/acleval.cpp' object='lib/libaccess/libns_dshttpd_la-acleval.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/libaccess/libns_dshttpd_la-acleval.lo -MD -MP -MF lib/libaccess/$(DEPDIR)/libns_dshttpd_la-acleval.Tpo -c -o lib/libaccess/libns_dshttpd_la-acleval.lo `test -f 'lib/libaccess/acleval.cpp' || echo '$(srcdir)/'`lib/libaccess/acleval.cpp -+@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) lib/libaccess/$(DEPDIR)/libns_dshttpd_la-acleval.Tpo lib/libaccess/$(DEPDIR)/libns_dshttpd_la-acleval.Plo -+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='lib/libaccess/acleval.cpp' object='lib/libaccess/libns_dshttpd_la-acleval.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/libaccess/libns_dshttpd_la-acleval.lo `test -f 'lib/libaccess/acleval.cpp' || echo '$(srcdir)/'`lib/libaccess/acleval.cpp -+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/libaccess/libns_dshttpd_la-acleval.lo `test -f 'lib/libaccess/acleval.cpp' || echo '$(srcdir)/'`lib/libaccess/acleval.cpp - - lib/libaccess/libns_dshttpd_la-aclflush.lo: lib/libaccess/aclflush.cpp --@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/libaccess/libns_dshttpd_la-aclflush.lo -MD -MP -MF lib/libaccess/$(DEPDIR)/libns_dshttpd_la-aclflush.Tpo -c -o lib/libaccess/libns_dshttpd_la-aclflush.lo `test -f 'lib/libaccess/aclflush.cpp' || echo '$(srcdir)/'`lib/libaccess/aclflush.cpp --@am__fastdepCXX_TRUE@ $(am__mv) lib/libaccess/$(DEPDIR)/libns_dshttpd_la-aclflush.Tpo lib/libaccess/$(DEPDIR)/libns_dshttpd_la-aclflush.Plo --@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='lib/libaccess/aclflush.cpp' object='lib/libaccess/libns_dshttpd_la-aclflush.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/libaccess/libns_dshttpd_la-aclflush.lo -MD -MP -MF lib/libaccess/$(DEPDIR)/libns_dshttpd_la-aclflush.Tpo -c -o lib/libaccess/libns_dshttpd_la-aclflush.lo `test -f 'lib/libaccess/aclflush.cpp' || echo '$(srcdir)/'`lib/libaccess/aclflush.cpp -+@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) lib/libaccess/$(DEPDIR)/libns_dshttpd_la-aclflush.Tpo lib/libaccess/$(DEPDIR)/libns_dshttpd_la-aclflush.Plo -+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='lib/libaccess/aclflush.cpp' object='lib/libaccess/libns_dshttpd_la-aclflush.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/libaccess/libns_dshttpd_la-aclflush.lo `test -f 'lib/libaccess/aclflush.cpp' || echo '$(srcdir)/'`lib/libaccess/aclflush.cpp -+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/libaccess/libns_dshttpd_la-aclflush.lo `test -f 'lib/libaccess/aclflush.cpp' || echo '$(srcdir)/'`lib/libaccess/aclflush.cpp - - lib/libaccess/libns_dshttpd_la-aclspace.lo: lib/libaccess/aclspace.cpp --@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/libaccess/libns_dshttpd_la-aclspace.lo -MD -MP -MF lib/libaccess/$(DEPDIR)/libns_dshttpd_la-aclspace.Tpo -c -o lib/libaccess/libns_dshttpd_la-aclspace.lo `test -f 'lib/libaccess/aclspace.cpp' || echo '$(srcdir)/'`lib/libaccess/aclspace.cpp --@am__fastdepCXX_TRUE@ $(am__mv) lib/libaccess/$(DEPDIR)/libns_dshttpd_la-aclspace.Tpo lib/libaccess/$(DEPDIR)/libns_dshttpd_la-aclspace.Plo --@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='lib/libaccess/aclspace.cpp' object='lib/libaccess/libns_dshttpd_la-aclspace.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/libaccess/libns_dshttpd_la-aclspace.lo -MD -MP -MF lib/libaccess/$(DEPDIR)/libns_dshttpd_la-aclspace.Tpo -c -o lib/libaccess/libns_dshttpd_la-aclspace.lo `test -f 'lib/libaccess/aclspace.cpp' || echo '$(srcdir)/'`lib/libaccess/aclspace.cpp -+@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) lib/libaccess/$(DEPDIR)/libns_dshttpd_la-aclspace.Tpo lib/libaccess/$(DEPDIR)/libns_dshttpd_la-aclspace.Plo -+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='lib/libaccess/aclspace.cpp' object='lib/libaccess/libns_dshttpd_la-aclspace.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/libaccess/libns_dshttpd_la-aclspace.lo `test -f 'lib/libaccess/aclspace.cpp' || echo '$(srcdir)/'`lib/libaccess/aclspace.cpp -+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/libaccess/libns_dshttpd_la-aclspace.lo `test -f 'lib/libaccess/aclspace.cpp' || echo '$(srcdir)/'`lib/libaccess/aclspace.cpp - - lib/libaccess/libns_dshttpd_la-acltools.lo: lib/libaccess/acltools.cpp --@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/libaccess/libns_dshttpd_la-acltools.lo -MD -MP -MF lib/libaccess/$(DEPDIR)/libns_dshttpd_la-acltools.Tpo -c -o lib/libaccess/libns_dshttpd_la-acltools.lo `test -f 'lib/libaccess/acltools.cpp' || echo '$(srcdir)/'`lib/libaccess/acltools.cpp --@am__fastdepCXX_TRUE@ $(am__mv) lib/libaccess/$(DEPDIR)/libns_dshttpd_la-acltools.Tpo lib/libaccess/$(DEPDIR)/libns_dshttpd_la-acltools.Plo --@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='lib/libaccess/acltools.cpp' object='lib/libaccess/libns_dshttpd_la-acltools.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/libaccess/libns_dshttpd_la-acltools.lo -MD -MP -MF lib/libaccess/$(DEPDIR)/libns_dshttpd_la-acltools.Tpo -c -o lib/libaccess/libns_dshttpd_la-acltools.lo `test -f 'lib/libaccess/acltools.cpp' || echo '$(srcdir)/'`lib/libaccess/acltools.cpp -+@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) lib/libaccess/$(DEPDIR)/libns_dshttpd_la-acltools.Tpo lib/libaccess/$(DEPDIR)/libns_dshttpd_la-acltools.Plo -+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='lib/libaccess/acltools.cpp' object='lib/libaccess/libns_dshttpd_la-acltools.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/libaccess/libns_dshttpd_la-acltools.lo `test -f 'lib/libaccess/acltools.cpp' || echo '$(srcdir)/'`lib/libaccess/acltools.cpp -+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/libaccess/libns_dshttpd_la-acltools.lo `test -f 'lib/libaccess/acltools.cpp' || echo '$(srcdir)/'`lib/libaccess/acltools.cpp - - lib/libaccess/libns_dshttpd_la-aclutil.lo: lib/libaccess/aclutil.cpp --@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/libaccess/libns_dshttpd_la-aclutil.lo -MD -MP -MF lib/libaccess/$(DEPDIR)/libns_dshttpd_la-aclutil.Tpo -c -o lib/libaccess/libns_dshttpd_la-aclutil.lo `test -f 'lib/libaccess/aclutil.cpp' || echo '$(srcdir)/'`lib/libaccess/aclutil.cpp --@am__fastdepCXX_TRUE@ $(am__mv) lib/libaccess/$(DEPDIR)/libns_dshttpd_la-aclutil.Tpo lib/libaccess/$(DEPDIR)/libns_dshttpd_la-aclutil.Plo --@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='lib/libaccess/aclutil.cpp' object='lib/libaccess/libns_dshttpd_la-aclutil.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/libaccess/libns_dshttpd_la-aclutil.lo -MD -MP -MF lib/libaccess/$(DEPDIR)/libns_dshttpd_la-aclutil.Tpo -c -o lib/libaccess/libns_dshttpd_la-aclutil.lo `test -f 'lib/libaccess/aclutil.cpp' || echo '$(srcdir)/'`lib/libaccess/aclutil.cpp -+@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) lib/libaccess/$(DEPDIR)/libns_dshttpd_la-aclutil.Tpo lib/libaccess/$(DEPDIR)/libns_dshttpd_la-aclutil.Plo -+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='lib/libaccess/aclutil.cpp' object='lib/libaccess/libns_dshttpd_la-aclutil.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/libaccess/libns_dshttpd_la-aclutil.lo `test -f 'lib/libaccess/aclutil.cpp' || echo '$(srcdir)/'`lib/libaccess/aclutil.cpp -+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/libaccess/libns_dshttpd_la-aclutil.lo `test -f 'lib/libaccess/aclutil.cpp' || echo '$(srcdir)/'`lib/libaccess/aclutil.cpp - - lib/libaccess/libns_dshttpd_la-authdb.lo: lib/libaccess/authdb.cpp --@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/libaccess/libns_dshttpd_la-authdb.lo -MD -MP -MF lib/libaccess/$(DEPDIR)/libns_dshttpd_la-authdb.Tpo -c -o lib/libaccess/libns_dshttpd_la-authdb.lo `test -f 'lib/libaccess/authdb.cpp' || echo '$(srcdir)/'`lib/libaccess/authdb.cpp --@am__fastdepCXX_TRUE@ $(am__mv) lib/libaccess/$(DEPDIR)/libns_dshttpd_la-authdb.Tpo lib/libaccess/$(DEPDIR)/libns_dshttpd_la-authdb.Plo --@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='lib/libaccess/authdb.cpp' object='lib/libaccess/libns_dshttpd_la-authdb.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/libaccess/libns_dshttpd_la-authdb.lo -MD -MP -MF lib/libaccess/$(DEPDIR)/libns_dshttpd_la-authdb.Tpo -c -o lib/libaccess/libns_dshttpd_la-authdb.lo `test -f 'lib/libaccess/authdb.cpp' || echo '$(srcdir)/'`lib/libaccess/authdb.cpp -+@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) lib/libaccess/$(DEPDIR)/libns_dshttpd_la-authdb.Tpo lib/libaccess/$(DEPDIR)/libns_dshttpd_la-authdb.Plo -+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='lib/libaccess/authdb.cpp' object='lib/libaccess/libns_dshttpd_la-authdb.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/libaccess/libns_dshttpd_la-authdb.lo `test -f 'lib/libaccess/authdb.cpp' || echo '$(srcdir)/'`lib/libaccess/authdb.cpp -+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/libaccess/libns_dshttpd_la-authdb.lo `test -f 'lib/libaccess/authdb.cpp' || echo '$(srcdir)/'`lib/libaccess/authdb.cpp - - lib/libaccess/libns_dshttpd_la-lasdns.lo: lib/libaccess/lasdns.cpp --@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/libaccess/libns_dshttpd_la-lasdns.lo -MD -MP -MF lib/libaccess/$(DEPDIR)/libns_dshttpd_la-lasdns.Tpo -c -o lib/libaccess/libns_dshttpd_la-lasdns.lo `test -f 'lib/libaccess/lasdns.cpp' || echo '$(srcdir)/'`lib/libaccess/lasdns.cpp --@am__fastdepCXX_TRUE@ $(am__mv) lib/libaccess/$(DEPDIR)/libns_dshttpd_la-lasdns.Tpo lib/libaccess/$(DEPDIR)/libns_dshttpd_la-lasdns.Plo --@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='lib/libaccess/lasdns.cpp' object='lib/libaccess/libns_dshttpd_la-lasdns.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/libaccess/libns_dshttpd_la-lasdns.lo -MD -MP -MF lib/libaccess/$(DEPDIR)/libns_dshttpd_la-lasdns.Tpo -c -o lib/libaccess/libns_dshttpd_la-lasdns.lo `test -f 'lib/libaccess/lasdns.cpp' || echo '$(srcdir)/'`lib/libaccess/lasdns.cpp -+@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) lib/libaccess/$(DEPDIR)/libns_dshttpd_la-lasdns.Tpo lib/libaccess/$(DEPDIR)/libns_dshttpd_la-lasdns.Plo -+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='lib/libaccess/lasdns.cpp' object='lib/libaccess/libns_dshttpd_la-lasdns.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/libaccess/libns_dshttpd_la-lasdns.lo `test -f 'lib/libaccess/lasdns.cpp' || echo '$(srcdir)/'`lib/libaccess/lasdns.cpp -+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/libaccess/libns_dshttpd_la-lasdns.lo `test -f 'lib/libaccess/lasdns.cpp' || echo '$(srcdir)/'`lib/libaccess/lasdns.cpp - - lib/libaccess/libns_dshttpd_la-lasgroup.lo: lib/libaccess/lasgroup.cpp --@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/libaccess/libns_dshttpd_la-lasgroup.lo -MD -MP -MF lib/libaccess/$(DEPDIR)/libns_dshttpd_la-lasgroup.Tpo -c -o lib/libaccess/libns_dshttpd_la-lasgroup.lo `test -f 'lib/libaccess/lasgroup.cpp' || echo '$(srcdir)/'`lib/libaccess/lasgroup.cpp --@am__fastdepCXX_TRUE@ $(am__mv) lib/libaccess/$(DEPDIR)/libns_dshttpd_la-lasgroup.Tpo lib/libaccess/$(DEPDIR)/libns_dshttpd_la-lasgroup.Plo --@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='lib/libaccess/lasgroup.cpp' object='lib/libaccess/libns_dshttpd_la-lasgroup.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/libaccess/libns_dshttpd_la-lasgroup.lo -MD -MP -MF lib/libaccess/$(DEPDIR)/libns_dshttpd_la-lasgroup.Tpo -c -o lib/libaccess/libns_dshttpd_la-lasgroup.lo `test -f 'lib/libaccess/lasgroup.cpp' || echo '$(srcdir)/'`lib/libaccess/lasgroup.cpp -+@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) lib/libaccess/$(DEPDIR)/libns_dshttpd_la-lasgroup.Tpo lib/libaccess/$(DEPDIR)/libns_dshttpd_la-lasgroup.Plo -+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='lib/libaccess/lasgroup.cpp' object='lib/libaccess/libns_dshttpd_la-lasgroup.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/libaccess/libns_dshttpd_la-lasgroup.lo `test -f 'lib/libaccess/lasgroup.cpp' || echo '$(srcdir)/'`lib/libaccess/lasgroup.cpp -+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/libaccess/libns_dshttpd_la-lasgroup.lo `test -f 'lib/libaccess/lasgroup.cpp' || echo '$(srcdir)/'`lib/libaccess/lasgroup.cpp - - lib/libaccess/libns_dshttpd_la-lasip.lo: lib/libaccess/lasip.cpp --@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/libaccess/libns_dshttpd_la-lasip.lo -MD -MP -MF lib/libaccess/$(DEPDIR)/libns_dshttpd_la-lasip.Tpo -c -o lib/libaccess/libns_dshttpd_la-lasip.lo `test -f 'lib/libaccess/lasip.cpp' || echo '$(srcdir)/'`lib/libaccess/lasip.cpp --@am__fastdepCXX_TRUE@ $(am__mv) lib/libaccess/$(DEPDIR)/libns_dshttpd_la-lasip.Tpo lib/libaccess/$(DEPDIR)/libns_dshttpd_la-lasip.Plo --@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='lib/libaccess/lasip.cpp' object='lib/libaccess/libns_dshttpd_la-lasip.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/libaccess/libns_dshttpd_la-lasip.lo -MD -MP -MF lib/libaccess/$(DEPDIR)/libns_dshttpd_la-lasip.Tpo -c -o lib/libaccess/libns_dshttpd_la-lasip.lo `test -f 'lib/libaccess/lasip.cpp' || echo '$(srcdir)/'`lib/libaccess/lasip.cpp -+@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) lib/libaccess/$(DEPDIR)/libns_dshttpd_la-lasip.Tpo lib/libaccess/$(DEPDIR)/libns_dshttpd_la-lasip.Plo -+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='lib/libaccess/lasip.cpp' object='lib/libaccess/libns_dshttpd_la-lasip.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/libaccess/libns_dshttpd_la-lasip.lo `test -f 'lib/libaccess/lasip.cpp' || echo '$(srcdir)/'`lib/libaccess/lasip.cpp -+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/libaccess/libns_dshttpd_la-lasip.lo `test -f 'lib/libaccess/lasip.cpp' || echo '$(srcdir)/'`lib/libaccess/lasip.cpp - - lib/libaccess/libns_dshttpd_la-lastod.lo: lib/libaccess/lastod.cpp --@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/libaccess/libns_dshttpd_la-lastod.lo -MD -MP -MF lib/libaccess/$(DEPDIR)/libns_dshttpd_la-lastod.Tpo -c -o lib/libaccess/libns_dshttpd_la-lastod.lo `test -f 'lib/libaccess/lastod.cpp' || echo '$(srcdir)/'`lib/libaccess/lastod.cpp --@am__fastdepCXX_TRUE@ $(am__mv) lib/libaccess/$(DEPDIR)/libns_dshttpd_la-lastod.Tpo lib/libaccess/$(DEPDIR)/libns_dshttpd_la-lastod.Plo --@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='lib/libaccess/lastod.cpp' object='lib/libaccess/libns_dshttpd_la-lastod.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/libaccess/libns_dshttpd_la-lastod.lo -MD -MP -MF lib/libaccess/$(DEPDIR)/libns_dshttpd_la-lastod.Tpo -c -o lib/libaccess/libns_dshttpd_la-lastod.lo `test -f 'lib/libaccess/lastod.cpp' || echo '$(srcdir)/'`lib/libaccess/lastod.cpp -+@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) lib/libaccess/$(DEPDIR)/libns_dshttpd_la-lastod.Tpo lib/libaccess/$(DEPDIR)/libns_dshttpd_la-lastod.Plo -+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='lib/libaccess/lastod.cpp' object='lib/libaccess/libns_dshttpd_la-lastod.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/libaccess/libns_dshttpd_la-lastod.lo `test -f 'lib/libaccess/lastod.cpp' || echo '$(srcdir)/'`lib/libaccess/lastod.cpp -+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/libaccess/libns_dshttpd_la-lastod.lo `test -f 'lib/libaccess/lastod.cpp' || echo '$(srcdir)/'`lib/libaccess/lastod.cpp - - lib/libaccess/libns_dshttpd_la-lasuser.lo: lib/libaccess/lasuser.cpp --@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/libaccess/libns_dshttpd_la-lasuser.lo -MD -MP -MF lib/libaccess/$(DEPDIR)/libns_dshttpd_la-lasuser.Tpo -c -o lib/libaccess/libns_dshttpd_la-lasuser.lo `test -f 'lib/libaccess/lasuser.cpp' || echo '$(srcdir)/'`lib/libaccess/lasuser.cpp --@am__fastdepCXX_TRUE@ $(am__mv) lib/libaccess/$(DEPDIR)/libns_dshttpd_la-lasuser.Tpo lib/libaccess/$(DEPDIR)/libns_dshttpd_la-lasuser.Plo --@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='lib/libaccess/lasuser.cpp' object='lib/libaccess/libns_dshttpd_la-lasuser.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/libaccess/libns_dshttpd_la-lasuser.lo -MD -MP -MF lib/libaccess/$(DEPDIR)/libns_dshttpd_la-lasuser.Tpo -c -o lib/libaccess/libns_dshttpd_la-lasuser.lo `test -f 'lib/libaccess/lasuser.cpp' || echo '$(srcdir)/'`lib/libaccess/lasuser.cpp -+@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) lib/libaccess/$(DEPDIR)/libns_dshttpd_la-lasuser.Tpo lib/libaccess/$(DEPDIR)/libns_dshttpd_la-lasuser.Plo -+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='lib/libaccess/lasuser.cpp' object='lib/libaccess/libns_dshttpd_la-lasuser.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/libaccess/libns_dshttpd_la-lasuser.lo `test -f 'lib/libaccess/lasuser.cpp' || echo '$(srcdir)/'`lib/libaccess/lasuser.cpp -+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/libaccess/libns_dshttpd_la-lasuser.lo `test -f 'lib/libaccess/lasuser.cpp' || echo '$(srcdir)/'`lib/libaccess/lasuser.cpp - - lib/libaccess/libns_dshttpd_la-method.lo: lib/libaccess/method.cpp --@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/libaccess/libns_dshttpd_la-method.lo -MD -MP -MF lib/libaccess/$(DEPDIR)/libns_dshttpd_la-method.Tpo -c -o lib/libaccess/libns_dshttpd_la-method.lo `test -f 'lib/libaccess/method.cpp' || echo '$(srcdir)/'`lib/libaccess/method.cpp --@am__fastdepCXX_TRUE@ $(am__mv) lib/libaccess/$(DEPDIR)/libns_dshttpd_la-method.Tpo lib/libaccess/$(DEPDIR)/libns_dshttpd_la-method.Plo --@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='lib/libaccess/method.cpp' object='lib/libaccess/libns_dshttpd_la-method.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/libaccess/libns_dshttpd_la-method.lo -MD -MP -MF lib/libaccess/$(DEPDIR)/libns_dshttpd_la-method.Tpo -c -o lib/libaccess/libns_dshttpd_la-method.lo `test -f 'lib/libaccess/method.cpp' || echo '$(srcdir)/'`lib/libaccess/method.cpp -+@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) lib/libaccess/$(DEPDIR)/libns_dshttpd_la-method.Tpo lib/libaccess/$(DEPDIR)/libns_dshttpd_la-method.Plo -+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='lib/libaccess/method.cpp' object='lib/libaccess/libns_dshttpd_la-method.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/libaccess/libns_dshttpd_la-method.lo `test -f 'lib/libaccess/method.cpp' || echo '$(srcdir)/'`lib/libaccess/method.cpp -+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/libaccess/libns_dshttpd_la-method.lo `test -f 'lib/libaccess/method.cpp' || echo '$(srcdir)/'`lib/libaccess/method.cpp - - lib/libaccess/libns_dshttpd_la-nseframe.lo: lib/libaccess/nseframe.cpp --@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/libaccess/libns_dshttpd_la-nseframe.lo -MD -MP -MF lib/libaccess/$(DEPDIR)/libns_dshttpd_la-nseframe.Tpo -c -o lib/libaccess/libns_dshttpd_la-nseframe.lo `test -f 'lib/libaccess/nseframe.cpp' || echo '$(srcdir)/'`lib/libaccess/nseframe.cpp --@am__fastdepCXX_TRUE@ $(am__mv) lib/libaccess/$(DEPDIR)/libns_dshttpd_la-nseframe.Tpo lib/libaccess/$(DEPDIR)/libns_dshttpd_la-nseframe.Plo --@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='lib/libaccess/nseframe.cpp' object='lib/libaccess/libns_dshttpd_la-nseframe.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/libaccess/libns_dshttpd_la-nseframe.lo -MD -MP -MF lib/libaccess/$(DEPDIR)/libns_dshttpd_la-nseframe.Tpo -c -o lib/libaccess/libns_dshttpd_la-nseframe.lo `test -f 'lib/libaccess/nseframe.cpp' || echo '$(srcdir)/'`lib/libaccess/nseframe.cpp -+@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) lib/libaccess/$(DEPDIR)/libns_dshttpd_la-nseframe.Tpo lib/libaccess/$(DEPDIR)/libns_dshttpd_la-nseframe.Plo -+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='lib/libaccess/nseframe.cpp' object='lib/libaccess/libns_dshttpd_la-nseframe.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/libaccess/libns_dshttpd_la-nseframe.lo `test -f 'lib/libaccess/nseframe.cpp' || echo '$(srcdir)/'`lib/libaccess/nseframe.cpp -+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/libaccess/libns_dshttpd_la-nseframe.lo `test -f 'lib/libaccess/nseframe.cpp' || echo '$(srcdir)/'`lib/libaccess/nseframe.cpp - - lib/libaccess/libns_dshttpd_la-nsautherr.lo: lib/libaccess/nsautherr.cpp --@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/libaccess/libns_dshttpd_la-nsautherr.lo -MD -MP -MF lib/libaccess/$(DEPDIR)/libns_dshttpd_la-nsautherr.Tpo -c -o lib/libaccess/libns_dshttpd_la-nsautherr.lo `test -f 'lib/libaccess/nsautherr.cpp' || echo '$(srcdir)/'`lib/libaccess/nsautherr.cpp --@am__fastdepCXX_TRUE@ $(am__mv) lib/libaccess/$(DEPDIR)/libns_dshttpd_la-nsautherr.Tpo lib/libaccess/$(DEPDIR)/libns_dshttpd_la-nsautherr.Plo --@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='lib/libaccess/nsautherr.cpp' object='lib/libaccess/libns_dshttpd_la-nsautherr.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/libaccess/libns_dshttpd_la-nsautherr.lo -MD -MP -MF lib/libaccess/$(DEPDIR)/libns_dshttpd_la-nsautherr.Tpo -c -o lib/libaccess/libns_dshttpd_la-nsautherr.lo `test -f 'lib/libaccess/nsautherr.cpp' || echo '$(srcdir)/'`lib/libaccess/nsautherr.cpp -+@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) lib/libaccess/$(DEPDIR)/libns_dshttpd_la-nsautherr.Tpo lib/libaccess/$(DEPDIR)/libns_dshttpd_la-nsautherr.Plo -+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='lib/libaccess/nsautherr.cpp' object='lib/libaccess/libns_dshttpd_la-nsautherr.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/libaccess/libns_dshttpd_la-nsautherr.lo `test -f 'lib/libaccess/nsautherr.cpp' || echo '$(srcdir)/'`lib/libaccess/nsautherr.cpp -+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/libaccess/libns_dshttpd_la-nsautherr.lo `test -f 'lib/libaccess/nsautherr.cpp' || echo '$(srcdir)/'`lib/libaccess/nsautherr.cpp - - lib/libaccess/libns_dshttpd_la-oneeval.lo: lib/libaccess/oneeval.cpp --@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/libaccess/libns_dshttpd_la-oneeval.lo -MD -MP -MF lib/libaccess/$(DEPDIR)/libns_dshttpd_la-oneeval.Tpo -c -o lib/libaccess/libns_dshttpd_la-oneeval.lo `test -f 'lib/libaccess/oneeval.cpp' || echo '$(srcdir)/'`lib/libaccess/oneeval.cpp --@am__fastdepCXX_TRUE@ $(am__mv) lib/libaccess/$(DEPDIR)/libns_dshttpd_la-oneeval.Tpo lib/libaccess/$(DEPDIR)/libns_dshttpd_la-oneeval.Plo --@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='lib/libaccess/oneeval.cpp' object='lib/libaccess/libns_dshttpd_la-oneeval.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/libaccess/libns_dshttpd_la-oneeval.lo -MD -MP -MF lib/libaccess/$(DEPDIR)/libns_dshttpd_la-oneeval.Tpo -c -o lib/libaccess/libns_dshttpd_la-oneeval.lo `test -f 'lib/libaccess/oneeval.cpp' || echo '$(srcdir)/'`lib/libaccess/oneeval.cpp -+@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) lib/libaccess/$(DEPDIR)/libns_dshttpd_la-oneeval.Tpo lib/libaccess/$(DEPDIR)/libns_dshttpd_la-oneeval.Plo -+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='lib/libaccess/oneeval.cpp' object='lib/libaccess/libns_dshttpd_la-oneeval.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/libaccess/libns_dshttpd_la-oneeval.lo `test -f 'lib/libaccess/oneeval.cpp' || echo '$(srcdir)/'`lib/libaccess/oneeval.cpp -+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/libaccess/libns_dshttpd_la-oneeval.lo `test -f 'lib/libaccess/oneeval.cpp' || echo '$(srcdir)/'`lib/libaccess/oneeval.cpp - - lib/libaccess/libns_dshttpd_la-register.lo: lib/libaccess/register.cpp --@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/libaccess/libns_dshttpd_la-register.lo -MD -MP -MF lib/libaccess/$(DEPDIR)/libns_dshttpd_la-register.Tpo -c -o lib/libaccess/libns_dshttpd_la-register.lo `test -f 'lib/libaccess/register.cpp' || echo '$(srcdir)/'`lib/libaccess/register.cpp --@am__fastdepCXX_TRUE@ $(am__mv) lib/libaccess/$(DEPDIR)/libns_dshttpd_la-register.Tpo lib/libaccess/$(DEPDIR)/libns_dshttpd_la-register.Plo --@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='lib/libaccess/register.cpp' object='lib/libaccess/libns_dshttpd_la-register.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/libaccess/libns_dshttpd_la-register.lo -MD -MP -MF lib/libaccess/$(DEPDIR)/libns_dshttpd_la-register.Tpo -c -o lib/libaccess/libns_dshttpd_la-register.lo `test -f 'lib/libaccess/register.cpp' || echo '$(srcdir)/'`lib/libaccess/register.cpp -+@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) lib/libaccess/$(DEPDIR)/libns_dshttpd_la-register.Tpo lib/libaccess/$(DEPDIR)/libns_dshttpd_la-register.Plo -+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='lib/libaccess/register.cpp' object='lib/libaccess/libns_dshttpd_la-register.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/libaccess/libns_dshttpd_la-register.lo `test -f 'lib/libaccess/register.cpp' || echo '$(srcdir)/'`lib/libaccess/register.cpp -+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/libaccess/libns_dshttpd_la-register.lo `test -f 'lib/libaccess/register.cpp' || echo '$(srcdir)/'`lib/libaccess/register.cpp - - lib/libaccess/libns_dshttpd_la-symbols.lo: lib/libaccess/symbols.cpp --@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/libaccess/libns_dshttpd_la-symbols.lo -MD -MP -MF lib/libaccess/$(DEPDIR)/libns_dshttpd_la-symbols.Tpo -c -o lib/libaccess/libns_dshttpd_la-symbols.lo `test -f 'lib/libaccess/symbols.cpp' || echo '$(srcdir)/'`lib/libaccess/symbols.cpp --@am__fastdepCXX_TRUE@ $(am__mv) lib/libaccess/$(DEPDIR)/libns_dshttpd_la-symbols.Tpo lib/libaccess/$(DEPDIR)/libns_dshttpd_la-symbols.Plo --@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='lib/libaccess/symbols.cpp' object='lib/libaccess/libns_dshttpd_la-symbols.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/libaccess/libns_dshttpd_la-symbols.lo -MD -MP -MF lib/libaccess/$(DEPDIR)/libns_dshttpd_la-symbols.Tpo -c -o lib/libaccess/libns_dshttpd_la-symbols.lo `test -f 'lib/libaccess/symbols.cpp' || echo '$(srcdir)/'`lib/libaccess/symbols.cpp -+@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) lib/libaccess/$(DEPDIR)/libns_dshttpd_la-symbols.Tpo lib/libaccess/$(DEPDIR)/libns_dshttpd_la-symbols.Plo -+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='lib/libaccess/symbols.cpp' object='lib/libaccess/libns_dshttpd_la-symbols.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/libaccess/libns_dshttpd_la-symbols.lo `test -f 'lib/libaccess/symbols.cpp' || echo '$(srcdir)/'`lib/libaccess/symbols.cpp -+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/libaccess/libns_dshttpd_la-symbols.lo `test -f 'lib/libaccess/symbols.cpp' || echo '$(srcdir)/'`lib/libaccess/symbols.cpp - - lib/libaccess/libns_dshttpd_la-usi.lo: lib/libaccess/usi.cpp --@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/libaccess/libns_dshttpd_la-usi.lo -MD -MP -MF lib/libaccess/$(DEPDIR)/libns_dshttpd_la-usi.Tpo -c -o lib/libaccess/libns_dshttpd_la-usi.lo `test -f 'lib/libaccess/usi.cpp' || echo '$(srcdir)/'`lib/libaccess/usi.cpp --@am__fastdepCXX_TRUE@ $(am__mv) lib/libaccess/$(DEPDIR)/libns_dshttpd_la-usi.Tpo lib/libaccess/$(DEPDIR)/libns_dshttpd_la-usi.Plo --@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='lib/libaccess/usi.cpp' object='lib/libaccess/libns_dshttpd_la-usi.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/libaccess/libns_dshttpd_la-usi.lo -MD -MP -MF lib/libaccess/$(DEPDIR)/libns_dshttpd_la-usi.Tpo -c -o lib/libaccess/libns_dshttpd_la-usi.lo `test -f 'lib/libaccess/usi.cpp' || echo '$(srcdir)/'`lib/libaccess/usi.cpp -+@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) lib/libaccess/$(DEPDIR)/libns_dshttpd_la-usi.Tpo lib/libaccess/$(DEPDIR)/libns_dshttpd_la-usi.Plo -+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='lib/libaccess/usi.cpp' object='lib/libaccess/libns_dshttpd_la-usi.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/libaccess/libns_dshttpd_la-usi.lo `test -f 'lib/libaccess/usi.cpp' || echo '$(srcdir)/'`lib/libaccess/usi.cpp -+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/libaccess/libns_dshttpd_la-usi.lo `test -f 'lib/libaccess/usi.cpp' || echo '$(srcdir)/'`lib/libaccess/usi.cpp - - lib/libaccess/libns_dshttpd_la-usrcache.lo: lib/libaccess/usrcache.cpp --@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/libaccess/libns_dshttpd_la-usrcache.lo -MD -MP -MF lib/libaccess/$(DEPDIR)/libns_dshttpd_la-usrcache.Tpo -c -o lib/libaccess/libns_dshttpd_la-usrcache.lo `test -f 'lib/libaccess/usrcache.cpp' || echo '$(srcdir)/'`lib/libaccess/usrcache.cpp --@am__fastdepCXX_TRUE@ $(am__mv) lib/libaccess/$(DEPDIR)/libns_dshttpd_la-usrcache.Tpo lib/libaccess/$(DEPDIR)/libns_dshttpd_la-usrcache.Plo --@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='lib/libaccess/usrcache.cpp' object='lib/libaccess/libns_dshttpd_la-usrcache.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/libaccess/libns_dshttpd_la-usrcache.lo -MD -MP -MF lib/libaccess/$(DEPDIR)/libns_dshttpd_la-usrcache.Tpo -c -o lib/libaccess/libns_dshttpd_la-usrcache.lo `test -f 'lib/libaccess/usrcache.cpp' || echo '$(srcdir)/'`lib/libaccess/usrcache.cpp -+@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) lib/libaccess/$(DEPDIR)/libns_dshttpd_la-usrcache.Tpo lib/libaccess/$(DEPDIR)/libns_dshttpd_la-usrcache.Plo -+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='lib/libaccess/usrcache.cpp' object='lib/libaccess/libns_dshttpd_la-usrcache.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/libaccess/libns_dshttpd_la-usrcache.lo `test -f 'lib/libaccess/usrcache.cpp' || echo '$(srcdir)/'`lib/libaccess/usrcache.cpp -+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/libaccess/libns_dshttpd_la-usrcache.lo `test -f 'lib/libaccess/usrcache.cpp' || echo '$(srcdir)/'`lib/libaccess/usrcache.cpp - - lib/base/libns_dshttpd_la-crit.lo: lib/base/crit.cpp --@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/base/libns_dshttpd_la-crit.lo -MD -MP -MF lib/base/$(DEPDIR)/libns_dshttpd_la-crit.Tpo -c -o lib/base/libns_dshttpd_la-crit.lo `test -f 'lib/base/crit.cpp' || echo '$(srcdir)/'`lib/base/crit.cpp --@am__fastdepCXX_TRUE@ $(am__mv) lib/base/$(DEPDIR)/libns_dshttpd_la-crit.Tpo lib/base/$(DEPDIR)/libns_dshttpd_la-crit.Plo --@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='lib/base/crit.cpp' object='lib/base/libns_dshttpd_la-crit.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/base/libns_dshttpd_la-crit.lo -MD -MP -MF lib/base/$(DEPDIR)/libns_dshttpd_la-crit.Tpo -c -o lib/base/libns_dshttpd_la-crit.lo `test -f 'lib/base/crit.cpp' || echo '$(srcdir)/'`lib/base/crit.cpp -+@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) lib/base/$(DEPDIR)/libns_dshttpd_la-crit.Tpo lib/base/$(DEPDIR)/libns_dshttpd_la-crit.Plo -+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='lib/base/crit.cpp' object='lib/base/libns_dshttpd_la-crit.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/base/libns_dshttpd_la-crit.lo `test -f 'lib/base/crit.cpp' || echo '$(srcdir)/'`lib/base/crit.cpp -+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/base/libns_dshttpd_la-crit.lo `test -f 'lib/base/crit.cpp' || echo '$(srcdir)/'`lib/base/crit.cpp - - lib/base/libns_dshttpd_la-dns.lo: lib/base/dns.cpp --@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/base/libns_dshttpd_la-dns.lo -MD -MP -MF lib/base/$(DEPDIR)/libns_dshttpd_la-dns.Tpo -c -o lib/base/libns_dshttpd_la-dns.lo `test -f 'lib/base/dns.cpp' || echo '$(srcdir)/'`lib/base/dns.cpp --@am__fastdepCXX_TRUE@ $(am__mv) lib/base/$(DEPDIR)/libns_dshttpd_la-dns.Tpo lib/base/$(DEPDIR)/libns_dshttpd_la-dns.Plo --@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='lib/base/dns.cpp' object='lib/base/libns_dshttpd_la-dns.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/base/libns_dshttpd_la-dns.lo -MD -MP -MF lib/base/$(DEPDIR)/libns_dshttpd_la-dns.Tpo -c -o lib/base/libns_dshttpd_la-dns.lo `test -f 'lib/base/dns.cpp' || echo '$(srcdir)/'`lib/base/dns.cpp -+@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) lib/base/$(DEPDIR)/libns_dshttpd_la-dns.Tpo lib/base/$(DEPDIR)/libns_dshttpd_la-dns.Plo -+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='lib/base/dns.cpp' object='lib/base/libns_dshttpd_la-dns.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/base/libns_dshttpd_la-dns.lo `test -f 'lib/base/dns.cpp' || echo '$(srcdir)/'`lib/base/dns.cpp -+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/base/libns_dshttpd_la-dns.lo `test -f 'lib/base/dns.cpp' || echo '$(srcdir)/'`lib/base/dns.cpp - - lib/base/libns_dshttpd_la-dnsdmain.lo: lib/base/dnsdmain.cpp --@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/base/libns_dshttpd_la-dnsdmain.lo -MD -MP -MF lib/base/$(DEPDIR)/libns_dshttpd_la-dnsdmain.Tpo -c -o lib/base/libns_dshttpd_la-dnsdmain.lo `test -f 'lib/base/dnsdmain.cpp' || echo '$(srcdir)/'`lib/base/dnsdmain.cpp --@am__fastdepCXX_TRUE@ $(am__mv) lib/base/$(DEPDIR)/libns_dshttpd_la-dnsdmain.Tpo lib/base/$(DEPDIR)/libns_dshttpd_la-dnsdmain.Plo --@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='lib/base/dnsdmain.cpp' object='lib/base/libns_dshttpd_la-dnsdmain.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/base/libns_dshttpd_la-dnsdmain.lo -MD -MP -MF lib/base/$(DEPDIR)/libns_dshttpd_la-dnsdmain.Tpo -c -o lib/base/libns_dshttpd_la-dnsdmain.lo `test -f 'lib/base/dnsdmain.cpp' || echo '$(srcdir)/'`lib/base/dnsdmain.cpp -+@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) lib/base/$(DEPDIR)/libns_dshttpd_la-dnsdmain.Tpo lib/base/$(DEPDIR)/libns_dshttpd_la-dnsdmain.Plo -+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='lib/base/dnsdmain.cpp' object='lib/base/libns_dshttpd_la-dnsdmain.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/base/libns_dshttpd_la-dnsdmain.lo `test -f 'lib/base/dnsdmain.cpp' || echo '$(srcdir)/'`lib/base/dnsdmain.cpp -+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/base/libns_dshttpd_la-dnsdmain.lo `test -f 'lib/base/dnsdmain.cpp' || echo '$(srcdir)/'`lib/base/dnsdmain.cpp - - lib/base/libns_dshttpd_la-ereport.lo: lib/base/ereport.cpp --@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/base/libns_dshttpd_la-ereport.lo -MD -MP -MF lib/base/$(DEPDIR)/libns_dshttpd_la-ereport.Tpo -c -o lib/base/libns_dshttpd_la-ereport.lo `test -f 'lib/base/ereport.cpp' || echo '$(srcdir)/'`lib/base/ereport.cpp --@am__fastdepCXX_TRUE@ $(am__mv) lib/base/$(DEPDIR)/libns_dshttpd_la-ereport.Tpo lib/base/$(DEPDIR)/libns_dshttpd_la-ereport.Plo --@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='lib/base/ereport.cpp' object='lib/base/libns_dshttpd_la-ereport.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/base/libns_dshttpd_la-ereport.lo -MD -MP -MF lib/base/$(DEPDIR)/libns_dshttpd_la-ereport.Tpo -c -o lib/base/libns_dshttpd_la-ereport.lo `test -f 'lib/base/ereport.cpp' || echo '$(srcdir)/'`lib/base/ereport.cpp -+@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) lib/base/$(DEPDIR)/libns_dshttpd_la-ereport.Tpo lib/base/$(DEPDIR)/libns_dshttpd_la-ereport.Plo -+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='lib/base/ereport.cpp' object='lib/base/libns_dshttpd_la-ereport.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/base/libns_dshttpd_la-ereport.lo `test -f 'lib/base/ereport.cpp' || echo '$(srcdir)/'`lib/base/ereport.cpp -+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/base/libns_dshttpd_la-ereport.lo `test -f 'lib/base/ereport.cpp' || echo '$(srcdir)/'`lib/base/ereport.cpp - - lib/base/libns_dshttpd_la-file.lo: lib/base/file.cpp --@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/base/libns_dshttpd_la-file.lo -MD -MP -MF lib/base/$(DEPDIR)/libns_dshttpd_la-file.Tpo -c -o lib/base/libns_dshttpd_la-file.lo `test -f 'lib/base/file.cpp' || echo '$(srcdir)/'`lib/base/file.cpp --@am__fastdepCXX_TRUE@ $(am__mv) lib/base/$(DEPDIR)/libns_dshttpd_la-file.Tpo lib/base/$(DEPDIR)/libns_dshttpd_la-file.Plo --@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='lib/base/file.cpp' object='lib/base/libns_dshttpd_la-file.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/base/libns_dshttpd_la-file.lo -MD -MP -MF lib/base/$(DEPDIR)/libns_dshttpd_la-file.Tpo -c -o lib/base/libns_dshttpd_la-file.lo `test -f 'lib/base/file.cpp' || echo '$(srcdir)/'`lib/base/file.cpp -+@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) lib/base/$(DEPDIR)/libns_dshttpd_la-file.Tpo lib/base/$(DEPDIR)/libns_dshttpd_la-file.Plo -+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='lib/base/file.cpp' object='lib/base/libns_dshttpd_la-file.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/base/libns_dshttpd_la-file.lo `test -f 'lib/base/file.cpp' || echo '$(srcdir)/'`lib/base/file.cpp -+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/base/libns_dshttpd_la-file.lo `test -f 'lib/base/file.cpp' || echo '$(srcdir)/'`lib/base/file.cpp - - lib/base/libns_dshttpd_la-fsmutex.lo: lib/base/fsmutex.cpp --@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/base/libns_dshttpd_la-fsmutex.lo -MD -MP -MF lib/base/$(DEPDIR)/libns_dshttpd_la-fsmutex.Tpo -c -o lib/base/libns_dshttpd_la-fsmutex.lo `test -f 'lib/base/fsmutex.cpp' || echo '$(srcdir)/'`lib/base/fsmutex.cpp --@am__fastdepCXX_TRUE@ $(am__mv) lib/base/$(DEPDIR)/libns_dshttpd_la-fsmutex.Tpo lib/base/$(DEPDIR)/libns_dshttpd_la-fsmutex.Plo --@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='lib/base/fsmutex.cpp' object='lib/base/libns_dshttpd_la-fsmutex.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/base/libns_dshttpd_la-fsmutex.lo -MD -MP -MF lib/base/$(DEPDIR)/libns_dshttpd_la-fsmutex.Tpo -c -o lib/base/libns_dshttpd_la-fsmutex.lo `test -f 'lib/base/fsmutex.cpp' || echo '$(srcdir)/'`lib/base/fsmutex.cpp -+@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) lib/base/$(DEPDIR)/libns_dshttpd_la-fsmutex.Tpo lib/base/$(DEPDIR)/libns_dshttpd_la-fsmutex.Plo -+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='lib/base/fsmutex.cpp' object='lib/base/libns_dshttpd_la-fsmutex.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/base/libns_dshttpd_la-fsmutex.lo `test -f 'lib/base/fsmutex.cpp' || echo '$(srcdir)/'`lib/base/fsmutex.cpp -+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/base/libns_dshttpd_la-fsmutex.lo `test -f 'lib/base/fsmutex.cpp' || echo '$(srcdir)/'`lib/base/fsmutex.cpp - - lib/base/libns_dshttpd_la-net.lo: lib/base/net.cpp --@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/base/libns_dshttpd_la-net.lo -MD -MP -MF lib/base/$(DEPDIR)/libns_dshttpd_la-net.Tpo -c -o lib/base/libns_dshttpd_la-net.lo `test -f 'lib/base/net.cpp' || echo '$(srcdir)/'`lib/base/net.cpp --@am__fastdepCXX_TRUE@ $(am__mv) lib/base/$(DEPDIR)/libns_dshttpd_la-net.Tpo lib/base/$(DEPDIR)/libns_dshttpd_la-net.Plo --@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='lib/base/net.cpp' object='lib/base/libns_dshttpd_la-net.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/base/libns_dshttpd_la-net.lo -MD -MP -MF lib/base/$(DEPDIR)/libns_dshttpd_la-net.Tpo -c -o lib/base/libns_dshttpd_la-net.lo `test -f 'lib/base/net.cpp' || echo '$(srcdir)/'`lib/base/net.cpp -+@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) lib/base/$(DEPDIR)/libns_dshttpd_la-net.Tpo lib/base/$(DEPDIR)/libns_dshttpd_la-net.Plo -+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='lib/base/net.cpp' object='lib/base/libns_dshttpd_la-net.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/base/libns_dshttpd_la-net.lo `test -f 'lib/base/net.cpp' || echo '$(srcdir)/'`lib/base/net.cpp -+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/base/libns_dshttpd_la-net.lo `test -f 'lib/base/net.cpp' || echo '$(srcdir)/'`lib/base/net.cpp - - lib/base/libns_dshttpd_la-plist.lo: lib/base/plist.cpp --@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/base/libns_dshttpd_la-plist.lo -MD -MP -MF lib/base/$(DEPDIR)/libns_dshttpd_la-plist.Tpo -c -o lib/base/libns_dshttpd_la-plist.lo `test -f 'lib/base/plist.cpp' || echo '$(srcdir)/'`lib/base/plist.cpp --@am__fastdepCXX_TRUE@ $(am__mv) lib/base/$(DEPDIR)/libns_dshttpd_la-plist.Tpo lib/base/$(DEPDIR)/libns_dshttpd_la-plist.Plo --@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='lib/base/plist.cpp' object='lib/base/libns_dshttpd_la-plist.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/base/libns_dshttpd_la-plist.lo -MD -MP -MF lib/base/$(DEPDIR)/libns_dshttpd_la-plist.Tpo -c -o lib/base/libns_dshttpd_la-plist.lo `test -f 'lib/base/plist.cpp' || echo '$(srcdir)/'`lib/base/plist.cpp -+@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) lib/base/$(DEPDIR)/libns_dshttpd_la-plist.Tpo lib/base/$(DEPDIR)/libns_dshttpd_la-plist.Plo -+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='lib/base/plist.cpp' object='lib/base/libns_dshttpd_la-plist.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/base/libns_dshttpd_la-plist.lo `test -f 'lib/base/plist.cpp' || echo '$(srcdir)/'`lib/base/plist.cpp -+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/base/libns_dshttpd_la-plist.lo `test -f 'lib/base/plist.cpp' || echo '$(srcdir)/'`lib/base/plist.cpp - - lib/base/libns_dshttpd_la-pool.lo: lib/base/pool.cpp --@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/base/libns_dshttpd_la-pool.lo -MD -MP -MF lib/base/$(DEPDIR)/libns_dshttpd_la-pool.Tpo -c -o lib/base/libns_dshttpd_la-pool.lo `test -f 'lib/base/pool.cpp' || echo '$(srcdir)/'`lib/base/pool.cpp --@am__fastdepCXX_TRUE@ $(am__mv) lib/base/$(DEPDIR)/libns_dshttpd_la-pool.Tpo lib/base/$(DEPDIR)/libns_dshttpd_la-pool.Plo --@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='lib/base/pool.cpp' object='lib/base/libns_dshttpd_la-pool.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/base/libns_dshttpd_la-pool.lo -MD -MP -MF lib/base/$(DEPDIR)/libns_dshttpd_la-pool.Tpo -c -o lib/base/libns_dshttpd_la-pool.lo `test -f 'lib/base/pool.cpp' || echo '$(srcdir)/'`lib/base/pool.cpp -+@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) lib/base/$(DEPDIR)/libns_dshttpd_la-pool.Tpo lib/base/$(DEPDIR)/libns_dshttpd_la-pool.Plo -+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='lib/base/pool.cpp' object='lib/base/libns_dshttpd_la-pool.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/base/libns_dshttpd_la-pool.lo `test -f 'lib/base/pool.cpp' || echo '$(srcdir)/'`lib/base/pool.cpp -+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/base/libns_dshttpd_la-pool.lo `test -f 'lib/base/pool.cpp' || echo '$(srcdir)/'`lib/base/pool.cpp - - lib/base/libns_dshttpd_la-shexp.lo: lib/base/shexp.cpp --@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/base/libns_dshttpd_la-shexp.lo -MD -MP -MF lib/base/$(DEPDIR)/libns_dshttpd_la-shexp.Tpo -c -o lib/base/libns_dshttpd_la-shexp.lo `test -f 'lib/base/shexp.cpp' || echo '$(srcdir)/'`lib/base/shexp.cpp --@am__fastdepCXX_TRUE@ $(am__mv) lib/base/$(DEPDIR)/libns_dshttpd_la-shexp.Tpo lib/base/$(DEPDIR)/libns_dshttpd_la-shexp.Plo --@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='lib/base/shexp.cpp' object='lib/base/libns_dshttpd_la-shexp.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/base/libns_dshttpd_la-shexp.lo -MD -MP -MF lib/base/$(DEPDIR)/libns_dshttpd_la-shexp.Tpo -c -o lib/base/libns_dshttpd_la-shexp.lo `test -f 'lib/base/shexp.cpp' || echo '$(srcdir)/'`lib/base/shexp.cpp -+@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) lib/base/$(DEPDIR)/libns_dshttpd_la-shexp.Tpo lib/base/$(DEPDIR)/libns_dshttpd_la-shexp.Plo -+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='lib/base/shexp.cpp' object='lib/base/libns_dshttpd_la-shexp.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/base/libns_dshttpd_la-shexp.lo `test -f 'lib/base/shexp.cpp' || echo '$(srcdir)/'`lib/base/shexp.cpp -+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/base/libns_dshttpd_la-shexp.lo `test -f 'lib/base/shexp.cpp' || echo '$(srcdir)/'`lib/base/shexp.cpp - - lib/base/libns_dshttpd_la-system.lo: lib/base/system.cpp --@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/base/libns_dshttpd_la-system.lo -MD -MP -MF lib/base/$(DEPDIR)/libns_dshttpd_la-system.Tpo -c -o lib/base/libns_dshttpd_la-system.lo `test -f 'lib/base/system.cpp' || echo '$(srcdir)/'`lib/base/system.cpp --@am__fastdepCXX_TRUE@ $(am__mv) lib/base/$(DEPDIR)/libns_dshttpd_la-system.Tpo lib/base/$(DEPDIR)/libns_dshttpd_la-system.Plo --@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='lib/base/system.cpp' object='lib/base/libns_dshttpd_la-system.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/base/libns_dshttpd_la-system.lo -MD -MP -MF lib/base/$(DEPDIR)/libns_dshttpd_la-system.Tpo -c -o lib/base/libns_dshttpd_la-system.lo `test -f 'lib/base/system.cpp' || echo '$(srcdir)/'`lib/base/system.cpp -+@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) lib/base/$(DEPDIR)/libns_dshttpd_la-system.Tpo lib/base/$(DEPDIR)/libns_dshttpd_la-system.Plo -+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='lib/base/system.cpp' object='lib/base/libns_dshttpd_la-system.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/base/libns_dshttpd_la-system.lo `test -f 'lib/base/system.cpp' || echo '$(srcdir)/'`lib/base/system.cpp -+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/base/libns_dshttpd_la-system.lo `test -f 'lib/base/system.cpp' || echo '$(srcdir)/'`lib/base/system.cpp - - lib/base/libns_dshttpd_la-systhr.lo: lib/base/systhr.cpp --@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/base/libns_dshttpd_la-systhr.lo -MD -MP -MF lib/base/$(DEPDIR)/libns_dshttpd_la-systhr.Tpo -c -o lib/base/libns_dshttpd_la-systhr.lo `test -f 'lib/base/systhr.cpp' || echo '$(srcdir)/'`lib/base/systhr.cpp --@am__fastdepCXX_TRUE@ $(am__mv) lib/base/$(DEPDIR)/libns_dshttpd_la-systhr.Tpo lib/base/$(DEPDIR)/libns_dshttpd_la-systhr.Plo --@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='lib/base/systhr.cpp' object='lib/base/libns_dshttpd_la-systhr.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/base/libns_dshttpd_la-systhr.lo -MD -MP -MF lib/base/$(DEPDIR)/libns_dshttpd_la-systhr.Tpo -c -o lib/base/libns_dshttpd_la-systhr.lo `test -f 'lib/base/systhr.cpp' || echo '$(srcdir)/'`lib/base/systhr.cpp -+@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) lib/base/$(DEPDIR)/libns_dshttpd_la-systhr.Tpo lib/base/$(DEPDIR)/libns_dshttpd_la-systhr.Plo -+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='lib/base/systhr.cpp' object='lib/base/libns_dshttpd_la-systhr.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/base/libns_dshttpd_la-systhr.lo `test -f 'lib/base/systhr.cpp' || echo '$(srcdir)/'`lib/base/systhr.cpp -+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/base/libns_dshttpd_la-systhr.lo `test -f 'lib/base/systhr.cpp' || echo '$(srcdir)/'`lib/base/systhr.cpp - - lib/base/libns_dshttpd_la-util.lo: lib/base/util.cpp --@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/base/libns_dshttpd_la-util.lo -MD -MP -MF lib/base/$(DEPDIR)/libns_dshttpd_la-util.Tpo -c -o lib/base/libns_dshttpd_la-util.lo `test -f 'lib/base/util.cpp' || echo '$(srcdir)/'`lib/base/util.cpp --@am__fastdepCXX_TRUE@ $(am__mv) lib/base/$(DEPDIR)/libns_dshttpd_la-util.Tpo lib/base/$(DEPDIR)/libns_dshttpd_la-util.Plo --@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='lib/base/util.cpp' object='lib/base/libns_dshttpd_la-util.lo' libtool=yes @AMDEPBACKSLASH@ -+@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lib/base/libns_dshttpd_la-util.lo -MD -MP -MF lib/base/$(DEPDIR)/libns_dshttpd_la-util.Tpo -c -o lib/base/libns_dshttpd_la-util.lo `test -f 'lib/base/util.cpp' || echo '$(srcdir)/'`lib/base/util.cpp -+@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) lib/base/$(DEPDIR)/libns_dshttpd_la-util.Tpo lib/base/$(DEPDIR)/libns_dshttpd_la-util.Plo -+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='lib/base/util.cpp' object='lib/base/libns_dshttpd_la-util.lo' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/base/libns_dshttpd_la-util.lo `test -f 'lib/base/util.cpp' || echo '$(srcdir)/'`lib/base/util.cpp -+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lib/base/libns_dshttpd_la-util.lo `test -f 'lib/base/util.cpp' || echo '$(srcdir)/'`lib/base/util.cpp - - mostlyclean-libtool: - -rm -f *.lo -@@ -9649,26 +9824,15 @@ uninstall-serverincHEADERS: - files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(serverincdir)'; $(am__uninstall_files_from_dir) - --ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) -- list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ -- unique=`for i in $$list; do \ -- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ -- done | \ -- $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ -- END { if (nonempty) { for (i in files) print i; }; }'`; \ -- mkid -fID $$unique --tags: TAGS -- --TAGS: $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ -- $(TAGS_FILES) $(LISP) -+ID: $(am__tagged_files) -+ $(am__define_uniq_tagged_files); mkid -fID $$unique -+tags: tags-am -+TAGS: tags -+ -+tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - set x; \ - here=`pwd`; \ -- list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ -- unique=`for i in $$list; do \ -- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ -- done | \ -- $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ -- END { if (nonempty) { for (i in files) print i; }; }'`; \ -+ $(am__define_uniq_tagged_files); \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ -@@ -9680,15 +9844,11 @@ TAGS: $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ - $$unique; \ - fi; \ - fi --ctags: CTAGS --CTAGS: $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ -- $(TAGS_FILES) $(LISP) -- list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ -- unique=`for i in $$list; do \ -- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ -- done | \ -- $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ -- END { if (nonempty) { for (i in files) print i; }; }'`; \ -+ctags: ctags-am -+ -+CTAGS: ctags -+ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) -+ $(am__define_uniq_tagged_files); \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique -@@ -9697,18 +9857,16 @@ GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" -- - cscope: cscope.files - test ! -s cscope.files \ - || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS) -- - clean-cscope: - -rm -f cscope.files -+cscope.files: clean-cscope cscopelist -+cscopelist: cscopelist-am - --cscope.files: clean-cscope cscopelist -- --cscopelist: $(HEADERS) $(SOURCES) $(LISP) -- list='$(SOURCES) $(HEADERS) $(LISP)'; \ -+cscopelist-am: $(am__tagged_files) -+ list='$(am__tagged_files)'; \ - case "$(srcdir)" in \ - [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ - *) sdir=$(subdir)/$(srcdir) ;; \ -@@ -9726,19 +9884,6 @@ distclean-tags: - -rm -f cscope.out cscope.in.out cscope.po.out cscope.files - - distdir: $(DISTFILES) -- @list='$(MANS)'; if test -n "$$list"; then \ -- list=`for p in $$list; do \ -- if test -f $$p; then d=; else d="$(srcdir)/"; fi; \ -- if test -f "$$d$$p"; then echo "$$d$$p"; else :; fi; done`; \ -- if test -n "$$list" && \ -- grep 'ab help2man is required to generate this page' $$list >/dev/null; then \ -- echo "error: found man pages containing the 'missing help2man' replacement text:" >&2; \ -- grep -l 'ab help2man is required to generate this page' $$list | sed 's/^/ /' >&2; \ -- echo " to fix them, install help2man, remove and regenerate the man pages;" >&2; \ -- echo " typically 'make maintainer-clean' will remove them" >&2; \ -- exit 1; \ -- else :; fi; \ -- else :; fi - $(am__remove_distdir) - test -d "$(distdir)" || mkdir "$(distdir)" - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ -@@ -9829,9 +9974,9 @@ distcheck: dist - *.zip*) \ - unzip $(distdir).zip ;;\ - esac -- chmod -R a-w $(distdir); chmod u+w $(distdir) -- mkdir $(distdir)/_build -- mkdir $(distdir)/_inst -+ chmod -R a-w $(distdir) -+ chmod u+w $(distdir) -+ mkdir $(distdir)/_build $(distdir)/_inst - chmod a-w $(distdir) - test -d $(distdir)/_build || exit 0; \ - dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ -@@ -10123,20 +10268,20 @@ uninstall-man: uninstall-man1 uninstall-man8 - - .MAKE: all check install install-am install-strip - --.PHONY: CTAGS GTAGS all all-am am--refresh check check-am clean \ -+.PHONY: CTAGS GTAGS TAGS all all-am am--refresh check check-am clean \ - clean-binPROGRAMS clean-cscope clean-generic clean-libtool \ - clean-local clean-noinstLIBRARIES clean-noinstPROGRAMS \ - clean-sbinPROGRAMS clean-serverLTLIBRARIES \ -- clean-serverpluginLTLIBRARIES cscope cscopelist ctags dist \ -- dist-all dist-bzip2 dist-gzip dist-lzip dist-shar dist-tarZ \ -- dist-xz dist-zip distcheck distclean distclean-compile \ -- distclean-generic distclean-hdr distclean-libtool \ -- distclean-tags distcleancheck distdir distuninstallcheck dvi \ -- dvi-am html html-am info info-am install install-am \ -- install-binPROGRAMS install-binSCRIPTS install-configDATA \ -- install-data install-data-am install-dvi install-dvi-am \ -- install-exec install-exec-am install-html install-html-am \ -- install-infDATA install-info install-info-am \ -+ clean-serverpluginLTLIBRARIES cscope cscopelist-am ctags \ -+ ctags-am dist dist-all dist-bzip2 dist-gzip dist-lzip \ -+ dist-shar dist-tarZ dist-xz dist-zip distcheck distclean \ -+ distclean-compile distclean-generic distclean-hdr \ -+ distclean-libtool distclean-tags distcleancheck distdir \ -+ distuninstallcheck dvi dvi-am html html-am info info-am \ -+ install install-am install-binPROGRAMS install-binSCRIPTS \ -+ install-configDATA install-data install-data-am install-dvi \ -+ install-dvi-am install-exec install-exec-am install-html \ -+ install-html-am install-infDATA install-info install-info-am \ - install-initSCRIPTS install-initconfigDATA install-man \ - install-man1 install-man8 install-mibDATA \ - install-nodist_propertyDATA install-pdf install-pdf-am \ -@@ -10150,7 +10295,7 @@ uninstall-man: uninstall-man1 uninstall-man8 - installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ -- tags uninstall uninstall-am uninstall-binPROGRAMS \ -+ tags tags-am uninstall uninstall-am uninstall-binPROGRAMS \ - uninstall-binSCRIPTS uninstall-configDATA uninstall-infDATA \ - uninstall-initSCRIPTS uninstall-initconfigDATA uninstall-man \ - uninstall-man1 uninstall-man8 uninstall-mibDATA \ -diff --git a/aclocal.m4 b/aclocal.m4 -index 9055418..8136dd1 100644 ---- a/aclocal.m4 -+++ b/aclocal.m4 -@@ -1,6 +1,6 @@ --# generated automatically by aclocal 1.12.2 -*- Autoconf -*- -+# generated automatically by aclocal 1.13.4 -*- Autoconf -*- - --# Copyright (C) 1996-2012 Free Software Foundation, Inc. -+# Copyright (C) 1996-2013 Free Software Foundation, Inc. - - # This file is free software; the Free Software Foundation - # gives unlimited permission to copy and/or distribute it, -@@ -11,6 +11,7 @@ - # even the implied warranty of MERCHANTABILITY or FITNESS FOR A - # PARTICULAR PURPOSE. - -+m4_ifndef([AC_CONFIG_MACRO_DIRS], [m4_defun([_AM_CONFIG_MACRO_DIRS], [])m4_defun([AC_CONFIG_MACRO_DIRS], [_AM_CONFIG_MACRO_DIRS($@)])]) - m4_ifndef([AC_AUTOCONF_VERSION], - [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl - m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.69],, -@@ -219,24 +220,22 @@ m4_popdef([pkg_default]) - m4_popdef([pkg_description]) - ]) dnl PKG_NOARCH_INSTALLDIR - --# Copyright (C) 2002-2012 Free Software Foundation, Inc. -+# Copyright (C) 2002-2013 Free Software Foundation, Inc. - # - # This file is free software; the Free Software Foundation - # gives unlimited permission to copy and/or distribute it, - # with or without modifications, as long as this notice is preserved. - --# serial 8 -- - # AM_AUTOMAKE_VERSION(VERSION) - # ---------------------------- - # Automake X.Y traces this macro to ensure aclocal.m4 has been - # generated from the m4 files accompanying Automake X.Y. - # (This private macro should not be called outside this file.) - AC_DEFUN([AM_AUTOMAKE_VERSION], --[am__api_version='1.12' -+[am__api_version='1.13' - dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to - dnl require some minimum version. Point them to the right macro. --m4_if([$1], [1.12.2], [], -+m4_if([$1], [1.13.4], [], - [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl - ]) - -@@ -252,21 +251,19 @@ m4_define([_AM_AUTOCONF_VERSION], []) - # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. - # This function is AC_REQUIREd by AM_INIT_AUTOMAKE. - AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], --[AM_AUTOMAKE_VERSION([1.12.2])dnl -+[AM_AUTOMAKE_VERSION([1.13.4])dnl - m4_ifndef([AC_AUTOCONF_VERSION], - [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl - _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) - - # Figure out how to run the assembler. -*- Autoconf -*- - --# Copyright (C) 2001-2012 Free Software Foundation, Inc. -+# Copyright (C) 2001-2013 Free Software Foundation, Inc. - # - # This file is free software; the Free Software Foundation - # gives unlimited permission to copy and/or distribute it, - # with or without modifications, as long as this notice is preserved. - --# serial 5 -- - # AM_PROG_AS - # ---------- - AC_DEFUN([AM_PROG_AS], -@@ -281,14 +278,12 @@ _AM_IF_OPTION([no-dependencies],, [_AM_DEPENDENCIES([CCAS])])dnl - - # AM_AUX_DIR_EXPAND -*- Autoconf -*- - --# Copyright (C) 2001-2012 Free Software Foundation, Inc. -+# Copyright (C) 2001-2013 Free Software Foundation, Inc. - # - # This file is free software; the Free Software Foundation - # gives unlimited permission to copy and/or distribute it, - # with or without modifications, as long as this notice is preserved. - --# serial 2 -- - # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets - # $ac_aux_dir to '$srcdir/foo'. In other projects, it is set to - # '$srcdir', '$srcdir/..', or '$srcdir/../..'. -@@ -336,14 +331,12 @@ am_aux_dir=`cd $ac_aux_dir && pwd` - - # AM_CONDITIONAL -*- Autoconf -*- - --# Copyright (C) 1997-2012 Free Software Foundation, Inc. -+# Copyright (C) 1997-2013 Free Software Foundation, Inc. - # - # This file is free software; the Free Software Foundation - # gives unlimited permission to copy and/or distribute it, - # with or without modifications, as long as this notice is preserved. - --# serial 10 -- - # AM_CONDITIONAL(NAME, SHELL-CONDITION) - # ------------------------------------- - # Define a conditional. -@@ -369,13 +362,12 @@ AC_CONFIG_COMMANDS_PRE( - Usually this means the macro was only invoked conditionally.]]) - fi])]) - --# Copyright (C) 1999-2012 Free Software Foundation, Inc. -+# Copyright (C) 1999-2013 Free Software Foundation, Inc. - # - # This file is free software; the Free Software Foundation - # gives unlimited permission to copy and/or distribute it, - # with or without modifications, as long as this notice is preserved. - --# serial 17 - - # There are a few dirty hacks below to avoid letting 'AC_PROG_CC' be - # written in clear, in which case automake, when reading aclocal.m4, -@@ -561,19 +553,18 @@ _AM_SUBST_NOTMAKE([am__nodep])dnl - - # Generate code to set up dependency tracking. -*- Autoconf -*- - --# Copyright (C) 1999-2012 Free Software Foundation, Inc. -+# Copyright (C) 1999-2013 Free Software Foundation, Inc. - # - # This file is free software; the Free Software Foundation - # gives unlimited permission to copy and/or distribute it, - # with or without modifications, as long as this notice is preserved. - --# serial 6 - - # _AM_OUTPUT_DEPENDENCY_COMMANDS - # ------------------------------ - AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], - [{ -- # Autoconf 2.62 quotes --file arguments for eval, but not when files -+ # Older Autoconf quotes --file arguments for eval, but not when files - # are listed without --file. Let's play safe and only enable the eval - # if we detect the quoting. - case $CONFIG_FILES in -@@ -602,7 +593,7 @@ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], - DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` - test -z "$DEPDIR" && continue - am__include=`sed -n 's/^am__include = //p' < "$mf"` -- test -z "am__include" && continue -+ test -z "$am__include" && continue - am__quote=`sed -n 's/^am__quote = //p' < "$mf"` - # Find all dependency output files, they are included files with - # $(DEPDIR) in their names. We invoke sed twice because it is the -@@ -638,14 +629,12 @@ AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], - - # Do all the work for Automake. -*- Autoconf -*- - --# Copyright (C) 1996-2012 Free Software Foundation, Inc. -+# Copyright (C) 1996-2013 Free Software Foundation, Inc. - # - # This file is free software; the Free Software Foundation - # gives unlimited permission to copy and/or distribute it, - # with or without modifications, as long as this notice is preserved. - --# serial 19 -- - # This macro actually does too much. Some checks are only needed if - # your package does certain things. But this isn't really a big deal. - -@@ -661,7 +650,7 @@ AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], - # arguments mandatory, and then we can depend on a new Autoconf - # release and drop the old call support. - AC_DEFUN([AM_INIT_AUTOMAKE], --[AC_PREREQ([2.62])dnl -+[AC_PREREQ([2.65])dnl - dnl Autoconf wants to disallow AM_ names. We explicitly allow - dnl the ones we care about. - m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl -@@ -691,8 +680,7 @@ AC_SUBST([CYGPATH_W]) - dnl Distinguish between old-style and new-style calls. - m4_ifval([$2], - [AC_DIAGNOSE([obsolete], --[$0: two- and three-arguments forms are deprecated. For more info, see: --http://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_INIT_AUTOMAKE-invocation]) -+ [$0: two- and three-arguments forms are deprecated.]) - m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl - AC_SUBST([PACKAGE], [$1])dnl - AC_SUBST([VERSION], [$2])], -@@ -746,18 +734,15 @@ AC_PROVIDE_IFELSE([AC_PROG_OBJC], - [_AM_DEPENDENCIES([OBJC])], - [m4_define([AC_PROG_OBJC], - m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl --dnl Support for Objective C++ was only introduced in Autoconf 2.65, --dnl but we still cater to Autoconf 2.62. --m4_ifdef([AC_PROG_OBJCXX], --[AC_PROVIDE_IFELSE([AC_PROG_OBJCXX], -+AC_PROVIDE_IFELSE([AC_PROG_OBJCXX], - [_AM_DEPENDENCIES([OBJCXX])], - [m4_define([AC_PROG_OBJCXX], -- m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])])dnl -+ m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl - ]) --_AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl --dnl The 'parallel-tests' driver may need to know about EXEEXT, so add the --dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This macro --dnl is hooked onto _AC_COMPILER_EXEEXT early, see below. -+AC_REQUIRE([AM_SILENT_RULES])dnl -+dnl The testsuite driver may need to know about EXEEXT, so add the -+dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This -+dnl macro is hooked onto _AC_COMPILER_EXEEXT early, see below. - AC_CONFIG_COMMANDS_PRE(dnl - [m4_provide_if([_AM_COMPILER_EXEEXT], - [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl -@@ -791,14 +776,12 @@ for _am_header in $config_headers :; do - done - echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) - --# Copyright (C) 2001-2012 Free Software Foundation, Inc. -+# Copyright (C) 2001-2013 Free Software Foundation, Inc. - # - # This file is free software; the Free Software Foundation - # gives unlimited permission to copy and/or distribute it, - # with or without modifications, as long as this notice is preserved. - --# serial 8 -- - # AM_PROG_INSTALL_SH - # ------------------ - # Define $install_sh. -@@ -814,14 +797,12 @@ if test x"${install_sh}" != xset; then - fi - AC_SUBST([install_sh])]) - --# Copyright (C) 2003-2012 Free Software Foundation, Inc. -+# Copyright (C) 2003-2013 Free Software Foundation, Inc. - # - # This file is free software; the Free Software Foundation - # gives unlimited permission to copy and/or distribute it, - # with or without modifications, as long as this notice is preserved. - --# serial 2 -- - # Check whether the underlying file-system supports filenames - # with a leading dot. For instance MS-DOS doesn't. - AC_DEFUN([AM_SET_LEADING_DOT], -@@ -838,14 +819,12 @@ AC_SUBST([am__leading_dot])]) - # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- - # From Jim Meyering - --# Copyright (C) 1996-2012 Free Software Foundation, Inc. -+# Copyright (C) 1996-2013 Free Software Foundation, Inc. - # - # This file is free software; the Free Software Foundation - # gives unlimited permission to copy and/or distribute it, - # with or without modifications, as long as this notice is preserved. - --# serial 7 -- - # AM_MAINTAINER_MODE([DEFAULT-MODE]) - # ---------------------------------- - # Control maintainer-specific portions of Makefiles. -@@ -873,18 +852,14 @@ AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) - ] - ) - --AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) -- - # Check to see how 'make' treats includes. -*- Autoconf -*- - --# Copyright (C) 2001-2012 Free Software Foundation, Inc. -+# Copyright (C) 2001-2013 Free Software Foundation, Inc. - # - # This file is free software; the Free Software Foundation - # gives unlimited permission to copy and/or distribute it, - # with or without modifications, as long as this notice is preserved. - --# serial 5 -- - # AM_MAKE_INCLUDE() - # ----------------- - # Check to see how make treats includes. -@@ -927,14 +902,12 @@ AC_MSG_RESULT([$_am_result]) - rm -f confinc confmf - ]) - --# Copyright (C) 1999-2012 Free Software Foundation, Inc. -+# Copyright (C) 1999-2013 Free Software Foundation, Inc. - # - # This file is free software; the Free Software Foundation - # gives unlimited permission to copy and/or distribute it, - # with or without modifications, as long as this notice is preserved. - --# serial 6 -- - # AM_PROG_CC_C_O - # -------------- - # Like AC_PROG_CC_C_O, but changed for automake. -@@ -963,14 +936,12 @@ m4_define([AC_PROG_CC], - - # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- - --# Copyright (C) 1997-2012 Free Software Foundation, Inc. -+# Copyright (C) 1997-2013 Free Software Foundation, Inc. - # - # This file is free software; the Free Software Foundation - # gives unlimited permission to copy and/or distribute it, - # with or without modifications, as long as this notice is preserved. - --# serial 7 -- - # AM_MISSING_PROG(NAME, PROGRAM) - # ------------------------------ - AC_DEFUN([AM_MISSING_PROG], -@@ -978,11 +949,10 @@ AC_DEFUN([AM_MISSING_PROG], - $1=${$1-"${am_missing_run}$2"} - AC_SUBST($1)]) - -- - # AM_MISSING_HAS_RUN - # ------------------ --# Define MISSING if not defined so far and test if it supports --run. --# If it does, set am_missing_run to use it, otherwise, to nothing. -+# Define MISSING if not defined so far and test if it is modern enough. -+# If it is, set am_missing_run to use it, otherwise, to nothing. - AC_DEFUN([AM_MISSING_HAS_RUN], - [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl - AC_REQUIRE_AUX_FILE([missing])dnl -@@ -995,8 +965,8 @@ if test x"${MISSING+set}" != xset; then - esac - fi - # Use eval to expand $SHELL --if eval "$MISSING --run true"; then -- am_missing_run="$MISSING --run " -+if eval "$MISSING --is-lightweight"; then -+ am_missing_run="$MISSING " - else - am_missing_run= - AC_MSG_WARN(['missing' script is too old or missing]) -@@ -1005,14 +975,12 @@ fi - - # Helper functions for option handling. -*- Autoconf -*- - --# Copyright (C) 2001-2012 Free Software Foundation, Inc. -+# Copyright (C) 2001-2013 Free Software Foundation, Inc. - # - # This file is free software; the Free Software Foundation - # gives unlimited permission to copy and/or distribute it, - # with or without modifications, as long as this notice is preserved. - --# serial 6 -- - # _AM_MANGLE_OPTION(NAME) - # ----------------------- - AC_DEFUN([_AM_MANGLE_OPTION], -@@ -1038,14 +1006,12 @@ AC_DEFUN([_AM_IF_OPTION], - - # Check to make sure that the build environment is sane. -*- Autoconf -*- - --# Copyright (C) 1996-2012 Free Software Foundation, Inc. -+# Copyright (C) 1996-2013 Free Software Foundation, Inc. - # - # This file is free software; the Free Software Foundation - # gives unlimited permission to copy and/or distribute it, - # with or without modifications, as long as this notice is preserved. - --# serial 9 -- - # AM_SANITY_CHECK - # --------------- - AC_DEFUN([AM_SANITY_CHECK], -@@ -1121,13 +1087,71 @@ AC_CONFIG_COMMANDS_PRE( - rm -f conftest.file - ]) - --# Copyright (C) 2001-2012 Free Software Foundation, Inc. -+# Copyright (C) 2009-2013 Free Software Foundation, Inc. - # - # This file is free software; the Free Software Foundation - # gives unlimited permission to copy and/or distribute it, - # with or without modifications, as long as this notice is preserved. - --# serial 2 -+# AM_SILENT_RULES([DEFAULT]) -+# -------------------------- -+# Enable less verbose build rules; with the default set to DEFAULT -+# ("yes" being less verbose, "no" or empty being verbose). -+AC_DEFUN([AM_SILENT_RULES], -+[AC_ARG_ENABLE([silent-rules], [dnl -+AS_HELP_STRING( -+ [--enable-silent-rules], -+ [less verbose build output (undo: "make V=1")]) -+AS_HELP_STRING( -+ [--disable-silent-rules], -+ [verbose build output (undo: "make V=0")])dnl -+]) -+case $enable_silent_rules in @%:@ ((( -+ yes) AM_DEFAULT_VERBOSITY=0;; -+ no) AM_DEFAULT_VERBOSITY=1;; -+ *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);; -+esac -+dnl -+dnl A few 'make' implementations (e.g., NonStop OS and NextStep) -+dnl do not support nested variable expansions. -+dnl See automake bug#9928 and bug#10237. -+am_make=${MAKE-make} -+AC_CACHE_CHECK([whether $am_make supports nested variables], -+ [am_cv_make_support_nested_variables], -+ [if AS_ECHO([['TRUE=$(BAR$(V)) -+BAR0=false -+BAR1=true -+V=1 -+am__doit: -+ @$(TRUE) -+.PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then -+ am_cv_make_support_nested_variables=yes -+else -+ am_cv_make_support_nested_variables=no -+fi]) -+if test $am_cv_make_support_nested_variables = yes; then -+ dnl Using '$V' instead of '$(V)' breaks IRIX make. -+ AM_V='$(V)' -+ AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' -+else -+ AM_V=$AM_DEFAULT_VERBOSITY -+ AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY -+fi -+AC_SUBST([AM_V])dnl -+AM_SUBST_NOTMAKE([AM_V])dnl -+AC_SUBST([AM_DEFAULT_V])dnl -+AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl -+AC_SUBST([AM_DEFAULT_VERBOSITY])dnl -+AM_BACKSLASH='\' -+AC_SUBST([AM_BACKSLASH])dnl -+_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl -+]) -+ -+# Copyright (C) 2001-2013 Free Software Foundation, Inc. -+# -+# This file is free software; the Free Software Foundation -+# gives unlimited permission to copy and/or distribute it, -+# with or without modifications, as long as this notice is preserved. - - # AM_PROG_INSTALL_STRIP - # --------------------- -@@ -1151,14 +1175,12 @@ fi - INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" - AC_SUBST([INSTALL_STRIP_PROGRAM])]) - --# Copyright (C) 2006-2012 Free Software Foundation, Inc. -+# Copyright (C) 2006-2013 Free Software Foundation, Inc. - # - # This file is free software; the Free Software Foundation - # gives unlimited permission to copy and/or distribute it, - # with or without modifications, as long as this notice is preserved. - --# serial 3 -- - # _AM_SUBST_NOTMAKE(VARIABLE) - # --------------------------- - # Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. -@@ -1172,14 +1194,12 @@ AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) - - # Check how to create a tarball. -*- Autoconf -*- - --# Copyright (C) 2004-2012 Free Software Foundation, Inc. -+# Copyright (C) 2004-2013 Free Software Foundation, Inc. - # - # This file is free software; the Free Software Foundation - # gives unlimited permission to copy and/or distribute it, - # with or without modifications, as long as this notice is preserved. - --# serial 3 -- - # _AM_PROG_TAR(FORMAT) - # -------------------- - # Check how to create a tarball in format FORMAT. -@@ -1193,76 +1213,114 @@ AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) - # Substitute a variable $(am__untar) that extract such - # a tarball read from stdin. - # $(am__untar) < result.tar -+# - AC_DEFUN([_AM_PROG_TAR], - [# Always define AMTAR for backward compatibility. Yes, it's still used - # in the wild :-( We should find a proper way to deprecate it ... - AC_SUBST([AMTAR], ['$${TAR-tar}']) --m4_if([$1], [v7], -- [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'], -- [m4_case([$1], [ustar],, [pax],, -- [m4_fatal([Unknown tar format])]) --AC_MSG_CHECKING([how to create a $1 tar archive]) --# Loop over all known methods to create a tar archive until one works. -+ -+# We'll loop over all known methods to create a tar archive until one works. - _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' --_am_tools=${am_cv_prog_tar_$1-$_am_tools} --# Do not fold the above two line into one, because Tru64 sh and --# Solaris sh will not grok spaces in the rhs of '-'. --for _am_tool in $_am_tools --do -- case $_am_tool in -- gnutar) -- for _am_tar in tar gnutar gtar; -- do -- AM_RUN_LOG([$_am_tar --version]) && break -- done -- am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' -- am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' -- am__untar="$_am_tar -xf -" -- ;; -- plaintar) -- # Must skip GNU tar: if it does not support --format= it doesn't create -- # ustar tarball either. -- (tar --version) >/dev/null 2>&1 && continue -- am__tar='tar chf - "$$tardir"' -- am__tar_='tar chf - "$tardir"' -- am__untar='tar xf -' -- ;; -- pax) -- am__tar='pax -L -x $1 -w "$$tardir"' -- am__tar_='pax -L -x $1 -w "$tardir"' -- am__untar='pax -r' -- ;; -- cpio) -- am__tar='find "$$tardir" -print | cpio -o -H $1 -L' -- am__tar_='find "$tardir" -print | cpio -o -H $1 -L' -- am__untar='cpio -i -H $1 -d' -- ;; -- none) -- am__tar=false -- am__tar_=false -- am__untar=false -- ;; -- esac - -- # If the value was cached, stop now. We just wanted to have am__tar -- # and am__untar set. -- test -n "${am_cv_prog_tar_$1}" && break -+m4_if([$1], [v7], -+ [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'], -+ -+ [m4_case([$1], -+ [ustar], -+ [# The POSIX 1988 'ustar' format is defined with fixed-size fields. -+ # There is notably a 21 bits limit for the UID and the GID. In fact, -+ # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343 -+ # and bug#13588). -+ am_max_uid=2097151 # 2^21 - 1 -+ am_max_gid=$am_max_uid -+ # The $UID and $GID variables are not portable, so we need to resort -+ # to the POSIX-mandated id(1) utility. Errors in the 'id' calls -+ # below are definitely unexpected, so allow the users to see them -+ # (that is, avoid stderr redirection). -+ am_uid=`id -u || echo unknown` -+ am_gid=`id -g || echo unknown` -+ AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format]) -+ if test $am_uid -le $am_max_uid; then -+ AC_MSG_RESULT([yes]) -+ else -+ AC_MSG_RESULT([no]) -+ _am_tools=none -+ fi -+ AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format]) -+ if test $am_gid -le $am_max_gid; then -+ AC_MSG_RESULT([yes]) -+ else -+ AC_MSG_RESULT([no]) -+ _am_tools=none -+ fi], -+ -+ [pax], -+ [], -+ -+ [m4_fatal([Unknown tar format])]) -+ -+ AC_MSG_CHECKING([how to create a $1 tar archive]) -+ -+ # Go ahead even if we have the value already cached. We do so because we -+ # need to set the values for the 'am__tar' and 'am__untar' variables. -+ _am_tools=${am_cv_prog_tar_$1-$_am_tools} -+ -+ for _am_tool in $_am_tools; do -+ case $_am_tool in -+ gnutar) -+ for _am_tar in tar gnutar gtar; do -+ AM_RUN_LOG([$_am_tar --version]) && break -+ done -+ am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' -+ am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' -+ am__untar="$_am_tar -xf -" -+ ;; -+ plaintar) -+ # Must skip GNU tar: if it does not support --format= it doesn't create -+ # ustar tarball either. -+ (tar --version) >/dev/null 2>&1 && continue -+ am__tar='tar chf - "$$tardir"' -+ am__tar_='tar chf - "$tardir"' -+ am__untar='tar xf -' -+ ;; -+ pax) -+ am__tar='pax -L -x $1 -w "$$tardir"' -+ am__tar_='pax -L -x $1 -w "$tardir"' -+ am__untar='pax -r' -+ ;; -+ cpio) -+ am__tar='find "$$tardir" -print | cpio -o -H $1 -L' -+ am__tar_='find "$tardir" -print | cpio -o -H $1 -L' -+ am__untar='cpio -i -H $1 -d' -+ ;; -+ none) -+ am__tar=false -+ am__tar_=false -+ am__untar=false -+ ;; -+ esac - -- # tar/untar a dummy directory, and stop if the command works -- rm -rf conftest.dir -- mkdir conftest.dir -- echo GrepMe > conftest.dir/file -- AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) -+ # If the value was cached, stop now. We just wanted to have am__tar -+ # and am__untar set. -+ test -n "${am_cv_prog_tar_$1}" && break -+ -+ # tar/untar a dummy directory, and stop if the command works. -+ rm -rf conftest.dir -+ mkdir conftest.dir -+ echo GrepMe > conftest.dir/file -+ AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) -+ rm -rf conftest.dir -+ if test -s conftest.tar; then -+ AM_RUN_LOG([$am__untar /dev/null 2>&1 && break -+ fi -+ done - rm -rf conftest.dir -- if test -s conftest.tar; then -- AM_RUN_LOG([$am__untar /dev/null 2>&1 && break -- fi --done --rm -rf conftest.dir - --AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) --AC_MSG_RESULT([$am_cv_prog_tar_$1])]) -+ AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) -+ AC_MSG_RESULT([$am_cv_prog_tar_$1])]) -+ - AC_SUBST([am__tar]) - AC_SUBST([am__untar]) - ]) # _AM_PROG_TAR -diff --git a/compile b/compile -index 7b4a9a7..531136b 100755 ---- a/compile -+++ b/compile -@@ -1,9 +1,9 @@ - #! /bin/sh - # Wrapper for compilers which do not understand '-c -o'. - --scriptversion=2012-03-05.13; # UTC -+scriptversion=2012-10-14.11; # UTC - --# Copyright (C) 1999-2012 Free Software Foundation, Inc. -+# Copyright (C) 1999-2013 Free Software Foundation, Inc. - # Written by Tom Tromey . - # - # This program is free software; you can redistribute it and/or modify -@@ -112,6 +112,11 @@ func_cl_dashl () - lib=$dir/$lib.lib - break - fi -+ if test -f "$dir/lib$lib.a"; then -+ found=yes -+ lib=$dir/lib$lib.a -+ break -+ fi - done - IFS=$save_IFS - -diff --git a/config.guess b/config.guess -index c0adba9..b79252d 100755 ---- a/config.guess -+++ b/config.guess -@@ -1,14 +1,12 @@ - #! /bin/sh - # Attempt to guess a canonical system name. --# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, --# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, --# 2011, 2012 Free Software Foundation, Inc. -+# Copyright 1992-2013 Free Software Foundation, Inc. - --timestamp='2012-06-10' -+timestamp='2013-06-10' - - # This file is free software; you can redistribute it and/or modify it - # under the terms of the GNU General Public License as published by --# the Free Software Foundation; either version 2 of the License, or -+# the Free Software Foundation; either version 3 of the License, or - # (at your option) any later version. - # - # This program is distributed in the hope that it will be useful, but -@@ -22,19 +20,17 @@ timestamp='2012-06-10' - # As a special exception to the GNU General Public License, if you - # distribute this file as part of a program that contains a - # configuration script generated by Autoconf, you may include it under --# the same distribution terms that you use for the rest of that program. -- -- --# Originally written by Per Bothner. Please send patches (context --# diff format) to and include a ChangeLog --# entry. -+# the same distribution terms that you use for the rest of that -+# program. This Exception is an additional permission under section 7 -+# of the GNU General Public License, version 3 ("GPLv3"). - # --# This script attempts to guess a canonical system name similar to --# config.sub. If it succeeds, it prints the system name on stdout, and --# exits with 0. Otherwise, it exits with 1. -+# Originally written by Per Bothner. - # - # You can get the latest version of this script from: - # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD -+# -+# Please send patches with a ChangeLog entry to config-patches@gnu.org. -+ - - me=`echo "$0" | sed -e 's,.*/,,'` - -@@ -54,9 +50,7 @@ version="\ - GNU config.guess ($timestamp) - - Originally written by Per Bothner. --Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, --2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 --Free Software Foundation, Inc. -+Copyright 1992-2013 Free Software Foundation, Inc. - - This is free software; see the source for copying conditions. There is NO - warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." -@@ -138,6 +132,27 @@ UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown - UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown - UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown - -+case "${UNAME_SYSTEM}" in -+Linux|GNU|GNU/*) -+ # If the system lacks a compiler, then just pick glibc. -+ # We could probably try harder. -+ LIBC=gnu -+ -+ eval $set_cc_for_build -+ cat <<-EOF > $dummy.c -+ #include -+ #if defined(__UCLIBC__) -+ LIBC=uclibc -+ #elif defined(__dietlibc__) -+ LIBC=dietlibc -+ #else -+ LIBC=gnu -+ #endif -+ EOF -+ eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'` -+ ;; -+esac -+ - # Note: order is significant - the case branches are not exclusive. - - case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in -@@ -200,6 +215,10 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in - # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. - echo "${machine}-${os}${release}" - exit ;; -+ *:Bitrig:*:*) -+ UNAME_MACHINE_ARCH=`arch | sed 's/Bitrig.//'` -+ echo ${UNAME_MACHINE_ARCH}-unknown-bitrig${UNAME_RELEASE} -+ exit ;; - *:OpenBSD:*:*) - UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` - echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} -@@ -302,7 +321,7 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in - arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) - echo arm-acorn-riscix${UNAME_RELEASE} - exit ;; -- arm:riscos:*:*|arm:RISCOS:*:*) -+ arm*:riscos:*:*|arm*:RISCOS:*:*) - echo arm-unknown-riscos - exit ;; - SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) -@@ -801,6 +820,9 @@ EOF - i*:CYGWIN*:*) - echo ${UNAME_MACHINE}-pc-cygwin - exit ;; -+ *:MINGW64*:*) -+ echo ${UNAME_MACHINE}-pc-mingw64 -+ exit ;; - *:MINGW*:*) - echo ${UNAME_MACHINE}-pc-mingw32 - exit ;; -@@ -852,21 +874,21 @@ EOF - exit ;; - *:GNU:*:*) - # the GNU system -- echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` -+ echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-${LIBC}`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` - exit ;; - *:GNU/*:*:*) - # other systems with GNU libc and userland -- echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu -+ echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-${LIBC} - exit ;; - i*86:Minix:*:*) - echo ${UNAME_MACHINE}-pc-minix - exit ;; - aarch64:Linux:*:*) -- echo ${UNAME_MACHINE}-unknown-linux-gnu -+ echo ${UNAME_MACHINE}-unknown-linux-${LIBC} - exit ;; - aarch64_be:Linux:*:*) - UNAME_MACHINE=aarch64_be -- echo ${UNAME_MACHINE}-unknown-linux-gnu -+ echo ${UNAME_MACHINE}-unknown-linux-${LIBC} - exit ;; - alpha:Linux:*:*) - case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in -@@ -879,59 +901,54 @@ EOF - EV68*) UNAME_MACHINE=alphaev68 ;; - esac - objdump --private-headers /bin/sh | grep -q ld.so.1 -- if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi -- echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} -+ if test "$?" = 0 ; then LIBC="gnulibc1" ; fi -+ echo ${UNAME_MACHINE}-unknown-linux-${LIBC} -+ exit ;; -+ arc:Linux:*:* | arceb:Linux:*:*) -+ echo ${UNAME_MACHINE}-unknown-linux-${LIBC} - exit ;; - arm*:Linux:*:*) - eval $set_cc_for_build - if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ - | grep -q __ARM_EABI__ - then -- echo ${UNAME_MACHINE}-unknown-linux-gnu -+ echo ${UNAME_MACHINE}-unknown-linux-${LIBC} - else - if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ - | grep -q __ARM_PCS_VFP - then -- echo ${UNAME_MACHINE}-unknown-linux-gnueabi -+ echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabi - else -- echo ${UNAME_MACHINE}-unknown-linux-gnueabihf -+ echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabihf - fi - fi - exit ;; - avr32*:Linux:*:*) -- echo ${UNAME_MACHINE}-unknown-linux-gnu -+ echo ${UNAME_MACHINE}-unknown-linux-${LIBC} - exit ;; - cris:Linux:*:*) -- echo ${UNAME_MACHINE}-axis-linux-gnu -+ echo ${UNAME_MACHINE}-axis-linux-${LIBC} - exit ;; - crisv32:Linux:*:*) -- echo ${UNAME_MACHINE}-axis-linux-gnu -+ echo ${UNAME_MACHINE}-axis-linux-${LIBC} - exit ;; - frv:Linux:*:*) -- echo ${UNAME_MACHINE}-unknown-linux-gnu -+ echo ${UNAME_MACHINE}-unknown-linux-${LIBC} - exit ;; - hexagon:Linux:*:*) -- echo ${UNAME_MACHINE}-unknown-linux-gnu -+ echo ${UNAME_MACHINE}-unknown-linux-${LIBC} - exit ;; - i*86:Linux:*:*) -- LIBC=gnu -- eval $set_cc_for_build -- sed 's/^ //' << EOF >$dummy.c -- #ifdef __dietlibc__ -- LIBC=dietlibc -- #endif --EOF -- eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'` -- echo "${UNAME_MACHINE}-pc-linux-${LIBC}" -+ echo ${UNAME_MACHINE}-pc-linux-${LIBC} - exit ;; - ia64:Linux:*:*) -- echo ${UNAME_MACHINE}-unknown-linux-gnu -+ echo ${UNAME_MACHINE}-unknown-linux-${LIBC} - exit ;; - m32r*:Linux:*:*) -- echo ${UNAME_MACHINE}-unknown-linux-gnu -+ echo ${UNAME_MACHINE}-unknown-linux-${LIBC} - exit ;; - m68*:Linux:*:*) -- echo ${UNAME_MACHINE}-unknown-linux-gnu -+ echo ${UNAME_MACHINE}-unknown-linux-${LIBC} - exit ;; - mips:Linux:*:* | mips64:Linux:*:*) - eval $set_cc_for_build -@@ -950,54 +967,63 @@ EOF - #endif - EOF - eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` -- test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } -+ test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; } - ;; -+ or1k:Linux:*:*) -+ echo ${UNAME_MACHINE}-unknown-linux-${LIBC} -+ exit ;; - or32:Linux:*:*) -- echo ${UNAME_MACHINE}-unknown-linux-gnu -+ echo ${UNAME_MACHINE}-unknown-linux-${LIBC} - exit ;; - padre:Linux:*:*) -- echo sparc-unknown-linux-gnu -+ echo sparc-unknown-linux-${LIBC} - exit ;; - parisc64:Linux:*:* | hppa64:Linux:*:*) -- echo hppa64-unknown-linux-gnu -+ echo hppa64-unknown-linux-${LIBC} - exit ;; - parisc:Linux:*:* | hppa:Linux:*:*) - # Look for CPU level - case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in -- PA7*) echo hppa1.1-unknown-linux-gnu ;; -- PA8*) echo hppa2.0-unknown-linux-gnu ;; -- *) echo hppa-unknown-linux-gnu ;; -+ PA7*) echo hppa1.1-unknown-linux-${LIBC} ;; -+ PA8*) echo hppa2.0-unknown-linux-${LIBC} ;; -+ *) echo hppa-unknown-linux-${LIBC} ;; - esac - exit ;; - ppc64:Linux:*:*) -- echo powerpc64-unknown-linux-gnu -+ echo powerpc64-unknown-linux-${LIBC} - exit ;; - ppc:Linux:*:*) -- echo powerpc-unknown-linux-gnu -+ echo powerpc-unknown-linux-${LIBC} -+ exit ;; -+ ppc64le:Linux:*:*) -+ echo powerpc64le-unknown-linux-${LIBC} -+ exit ;; -+ ppcle:Linux:*:*) -+ echo powerpcle-unknown-linux-${LIBC} - exit ;; - s390:Linux:*:* | s390x:Linux:*:*) -- echo ${UNAME_MACHINE}-ibm-linux -+ echo ${UNAME_MACHINE}-ibm-linux-${LIBC} - exit ;; - sh64*:Linux:*:*) -- echo ${UNAME_MACHINE}-unknown-linux-gnu -+ echo ${UNAME_MACHINE}-unknown-linux-${LIBC} - exit ;; - sh*:Linux:*:*) -- echo ${UNAME_MACHINE}-unknown-linux-gnu -+ echo ${UNAME_MACHINE}-unknown-linux-${LIBC} - exit ;; - sparc:Linux:*:* | sparc64:Linux:*:*) -- echo ${UNAME_MACHINE}-unknown-linux-gnu -+ echo ${UNAME_MACHINE}-unknown-linux-${LIBC} - exit ;; - tile*:Linux:*:*) -- echo ${UNAME_MACHINE}-unknown-linux-gnu -+ echo ${UNAME_MACHINE}-unknown-linux-${LIBC} - exit ;; - vax:Linux:*:*) -- echo ${UNAME_MACHINE}-dec-linux-gnu -+ echo ${UNAME_MACHINE}-dec-linux-${LIBC} - exit ;; - x86_64:Linux:*:*) -- echo ${UNAME_MACHINE}-unknown-linux-gnu -+ echo ${UNAME_MACHINE}-unknown-linux-${LIBC} - exit ;; - xtensa*:Linux:*:*) -- echo ${UNAME_MACHINE}-unknown-linux-gnu -+ echo ${UNAME_MACHINE}-unknown-linux-${LIBC} - exit ;; - i*86:DYNIX/ptx:4*:*) - # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. -@@ -1201,6 +1227,9 @@ EOF - BePC:Haiku:*:*) # Haiku running on Intel PC compatible. - echo i586-pc-haiku - exit ;; -+ x86_64:Haiku:*:*) -+ echo x86_64-unknown-haiku -+ exit ;; - SX-4:SUPER-UX:*:*) - echo sx4-nec-superux${UNAME_RELEASE} - exit ;; -@@ -1227,19 +1256,21 @@ EOF - exit ;; - *:Darwin:*:*) - UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown -- case $UNAME_PROCESSOR in -- i386) -- eval $set_cc_for_build -- if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then -- if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ -- (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ -- grep IS_64BIT_ARCH >/dev/null -- then -- UNAME_PROCESSOR="x86_64" -- fi -- fi ;; -- unknown) UNAME_PROCESSOR=powerpc ;; -- esac -+ eval $set_cc_for_build -+ if test "$UNAME_PROCESSOR" = unknown ; then -+ UNAME_PROCESSOR=powerpc -+ fi -+ if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then -+ if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ -+ (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ -+ grep IS_64BIT_ARCH >/dev/null -+ then -+ case $UNAME_PROCESSOR in -+ i386) UNAME_PROCESSOR=x86_64 ;; -+ powerpc) UNAME_PROCESSOR=powerpc64 ;; -+ esac -+ fi -+ fi - echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} - exit ;; - *:procnto*:*:* | *:QNX:[0123456789]*:*) -@@ -1330,9 +1361,6 @@ EOF - exit ;; - esac - --#echo '(No uname command or uname output not recognized.)' 1>&2 --#echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2 -- - eval $set_cc_for_build - cat >$dummy.c <. -@@ -26,11 +20,12 @@ timestamp='2012-04-18' - # As a special exception to the GNU General Public License, if you - # distribute this file as part of a program that contains a - # configuration script generated by Autoconf, you may include it under --# the same distribution terms that you use for the rest of that program. -+# the same distribution terms that you use for the rest of that -+# program. This Exception is an additional permission under section 7 -+# of the GNU General Public License, version 3 ("GPLv3"). - - --# Please send patches to . Submit a context --# diff and a properly formatted GNU ChangeLog entry. -+# Please send patches with a ChangeLog entry to config-patches@gnu.org. - # - # Configuration subroutine to validate and canonicalize a configuration type. - # Supply the specified configuration type as an argument. -@@ -73,9 +68,7 @@ Report bugs and patches to ." - version="\ - GNU config.sub ($timestamp) - --Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, --2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 --Free Software Foundation, Inc. -+Copyright 1992-2013 Free Software Foundation, Inc. - - This is free software; see the source for copying conditions. There is NO - warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." -@@ -123,7 +116,7 @@ esac - maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` - case $maybe_os in - nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \ -- linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \ -+ linux-musl* | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \ - knetbsd*-gnu* | netbsd*-gnu* | \ - kopensolaris*-gnu* | \ - storm-chaos* | os2-emx* | rtmk-nova*) -@@ -156,7 +149,7 @@ case $os in - -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ - -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ - -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ -- -apple | -axis | -knuth | -cray | -microblaze) -+ -apple | -axis | -knuth | -cray | -microblaze*) - os= - basic_machine=$1 - ;; -@@ -259,8 +252,10 @@ case $basic_machine in - | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ - | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ - | am33_2.0 \ -- | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \ -- | be32 | be64 \ -+ | arc | arceb \ -+ | arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] \ -+ | avr | avr32 \ -+ | be32 | be64 \ - | bfin \ - | c4x | clipper \ - | d10v | d30v | dlx | dsp16xx \ -@@ -273,7 +268,7 @@ case $basic_machine in - | le32 | le64 \ - | lm32 \ - | m32c | m32r | m32rle | m68000 | m68k | m88k \ -- | maxq | mb | microblaze | mcore | mep | metag \ -+ | maxq | mb | microblaze | microblazeel | mcore | mep | metag \ - | mips | mipsbe | mipseb | mipsel | mipsle \ - | mips16 \ - | mips64 | mips64el \ -@@ -291,16 +286,17 @@ case $basic_machine in - | mipsisa64r2 | mipsisa64r2el \ - | mipsisa64sb1 | mipsisa64sb1el \ - | mipsisa64sr71k | mipsisa64sr71kel \ -+ | mipsr5900 | mipsr5900el \ - | mipstx39 | mipstx39el \ - | mn10200 | mn10300 \ - | moxie \ - | mt \ - | msp430 \ - | nds32 | nds32le | nds32be \ -- | nios | nios2 \ -+ | nios | nios2 | nios2eb | nios2el \ - | ns16k | ns32k \ - | open8 \ -- | or32 \ -+ | or1k | or32 \ - | pdp10 | pdp11 | pj | pjl \ - | powerpc | powerpc64 | powerpc64le | powerpcle \ - | pyramid \ -@@ -370,7 +366,7 @@ case $basic_machine in - | aarch64-* | aarch64_be-* \ - | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ - | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ -- | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ -+ | alphapca5[67]-* | alpha64pca5[67]-* | arc-* | arceb-* \ - | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ - | avr-* | avr32-* \ - | be32-* | be64-* \ -@@ -389,7 +385,8 @@ case $basic_machine in - | lm32-* \ - | m32c-* | m32r-* | m32rle-* \ - | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ -- | m88110-* | m88k-* | maxq-* | mcore-* | metag-* | microblaze-* \ -+ | m88110-* | m88k-* | maxq-* | mcore-* | metag-* \ -+ | microblaze-* | microblazeel-* \ - | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ - | mips16-* \ - | mips64-* | mips64el-* \ -@@ -407,12 +404,13 @@ case $basic_machine in - | mipsisa64r2-* | mipsisa64r2el-* \ - | mipsisa64sb1-* | mipsisa64sb1el-* \ - | mipsisa64sr71k-* | mipsisa64sr71kel-* \ -+ | mipsr5900-* | mipsr5900el-* \ - | mipstx39-* | mipstx39el-* \ - | mmix-* \ - | mt-* \ - | msp430-* \ - | nds32-* | nds32le-* | nds32be-* \ -- | nios-* | nios2-* \ -+ | nios-* | nios2-* | nios2eb-* | nios2el-* \ - | none-* | np1-* | ns16k-* | ns32k-* \ - | open8-* \ - | orion-* \ -@@ -788,9 +786,13 @@ case $basic_machine in - basic_machine=ns32k-utek - os=-sysv - ;; -- microblaze) -+ microblaze*) - basic_machine=microblaze-xilinx - ;; -+ mingw64) -+ basic_machine=x86_64-pc -+ os=-mingw64 -+ ;; - mingw32) - basic_machine=i386-pc - os=-mingw32 -@@ -1004,7 +1006,7 @@ case $basic_machine in - ;; - ppc64) basic_machine=powerpc64-unknown - ;; -- ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` -+ ppc64-* | ppc64p7-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - ppc64le | powerpc64little | ppc64-le | powerpc64-little) - basic_machine=powerpc64le-unknown -@@ -1019,7 +1021,11 @@ case $basic_machine in - basic_machine=i586-unknown - os=-pw32 - ;; -- rdos) -+ rdos | rdos64) -+ basic_machine=x86_64-pc -+ os=-rdos -+ ;; -+ rdos32) - basic_machine=i386-pc - os=-rdos - ;; -@@ -1346,21 +1352,21 @@ case $os in - -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ - | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\ - | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \ -- | -sym* | -kopensolaris* \ -+ | -sym* | -kopensolaris* | -plan9* \ - | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ - | -aos* | -aros* \ - | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ - | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ - | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ -- | -openbsd* | -solidbsd* \ -+ | -bitrig* | -openbsd* | -solidbsd* \ - | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ - | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ - | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ - | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ - | -chorusos* | -chorusrdb* | -cegcc* \ - | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ -- | -mingw32* | -linux-gnu* | -linux-android* \ -- | -linux-newlib* | -linux-uclibc* \ -+ | -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \ -+ | -linux-newlib* | -linux-musl* | -linux-uclibc* \ - | -uxpv* | -beos* | -mpeix* | -udk* \ - | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ - | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ -@@ -1492,9 +1498,6 @@ case $os in - -aros*) - os=-aros - ;; -- -kaos*) -- os=-kaos -- ;; - -zvmoe) - os=-zvmoe - ;; -@@ -1586,6 +1589,9 @@ case $basic_machine in - mips*-*) - os=-elf - ;; -+ or1k-*) -+ os=-elf -+ ;; - or32-*) - os=-coff - ;; -diff --git a/configure b/configure -index c6695db..e52aeec 100755 ---- a/configure -+++ b/configure -@@ -639,6 +639,7 @@ LTLIBOBJS - vendor - capbrand - brand -+localrundir - pcre_libdir - pcre_lib - pcre_inc -@@ -821,6 +822,10 @@ MAINT - MAINTAINER_MODE_FALSE - MAINTAINER_MODE_TRUE - CONSOLE_VERSION -+AM_BACKSLASH -+AM_DEFAULT_VERBOSITY -+AM_DEFAULT_V -+AM_V - am__untar - am__tar - AMTAR -@@ -885,6 +890,7 @@ SHELL' - ac_subst_files='' - ac_user_opts=' - enable_option_checking -+enable_silent_rules - enable_maintainer_mode - enable_dependency_tracking - enable_static -@@ -1584,6 +1590,8 @@ Optional Features: - --disable-option-checking ignore unrecognized --enable/--with options - --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) - --enable-FEATURE[=ARG] include FEATURE [ARG=yes] -+ --enable-silent-rules less verbose build output (undo: "make V=1") -+ --disable-silent-rules verbose build output (undo: "make V=0") - --enable-maintainer-mode - enable make rules and dependencies not useful (and - sometimes confusing) to the casual installer -@@ -2757,7 +2765,7 @@ cat >>confdefs.h <<_ACEOF - #define DS_PACKAGE_STRING "$PACKAGE_STRING" - _ACEOF - --am__api_version='1.12' -+am__api_version='1.13' - - ac_aux_dir= - for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do -@@ -2970,8 +2978,8 @@ if test x"${MISSING+set}" != xset; then - esac - fi - # Use eval to expand $SHELL --if eval "$MISSING --run true"; then -- am_missing_run="$MISSING --run " -+if eval "$MISSING --is-lightweight"; then -+ am_missing_run="$MISSING " - else - am_missing_run= - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: 'missing' script is too old or missing" >&5 -@@ -3211,6 +3219,45 @@ else - fi - rmdir .tst 2>/dev/null - -+# Check whether --enable-silent-rules was given. -+if test "${enable_silent_rules+set}" = set; then : -+ enableval=$enable_silent_rules; -+fi -+ -+case $enable_silent_rules in # ((( -+ yes) AM_DEFAULT_VERBOSITY=0;; -+ no) AM_DEFAULT_VERBOSITY=1;; -+ *) AM_DEFAULT_VERBOSITY=1;; -+esac -+am_make=${MAKE-make} -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 -+$as_echo_n "checking whether $am_make supports nested variables... " >&6; } -+if ${am_cv_make_support_nested_variables+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if $as_echo 'TRUE=$(BAR$(V)) -+BAR0=false -+BAR1=true -+V=1 -+am__doit: -+ @$(TRUE) -+.PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then -+ am_cv_make_support_nested_variables=yes -+else -+ am_cv_make_support_nested_variables=no -+fi -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5 -+$as_echo "$am_cv_make_support_nested_variables" >&6; } -+if test $am_cv_make_support_nested_variables = yes; then -+ AM_V='$(V)' -+ AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' -+else -+ AM_V=$AM_DEFAULT_VERBOSITY -+ AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY -+fi -+AM_BACKSLASH='\' -+ - if test "`cd $srcdir && pwd`" != "`pwd`"; then - # Use -I$(srcdir) only when $(srcdir) != ., so that make's output - # is not polluted with repeated "-I." -@@ -3264,12 +3311,17 @@ mkdir_p='$(MKDIR_P)' - # in the wild :-( We should find a proper way to deprecate it ... - AMTAR='$${TAR-tar}' - -+ -+# We'll loop over all known methods to create a tar archive until one works. -+_am_tools='gnutar pax cpio none' -+ - am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -' - - - - - -+ - # define these for automake distdir - VERSION=$PACKAGE_VERSION - PACKAGE=$PACKAGE_TARNAME -@@ -17910,6 +17962,7 @@ if test "$with_fhs_opt" = "yes"; then - # package was requested. - sysconfdir='/etc/opt' - localstatedir='/var/opt' -+ localrundir='/var/opt/run' - # relative to datadir - sampledatadir=/data - # relative to datadir -@@ -17937,6 +17990,7 @@ else - exec_prefix=$prefix - sysconfdir='/etc' - localstatedir='/var' -+ localrundir='/run' - fi - # relative to datadir - sampledatadir=/$PACKAGE_NAME/data -@@ -21200,6 +21254,7 @@ fi - - - -+ - # AC_DEFINE([USE_OLD_UNHASHED], [], [Use old unhashed code]) - - $as_echo "#define LDAP_DEBUG 1" >>confdefs.h -@@ -23017,7 +23072,7 @@ $as_echo "$as_me: executing $ac_file commands" >&6;} - - case $ac_file$ac_mode in - "depfiles":C) test x"$AMDEP_TRUE" != x"" || { -- # Autoconf 2.62 quotes --file arguments for eval, but not when files -+ # Older Autoconf quotes --file arguments for eval, but not when files - # are listed without --file. Let's play safe and only enable the eval - # if we detect the quoting. - case $CONFIG_FILES in -@@ -23068,7 +23123,7 @@ $as_echo X"$mf" | - DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` - test -z "$DEPDIR" && continue - am__include=`sed -n 's/^am__include = //p' < "$mf"` -- test -z "am__include" && continue -+ test -z "$am__include" && continue - am__quote=`sed -n 's/^am__quote = //p' < "$mf"` - # Find all dependency output files, they are included files with - # $(DEPDIR) in their names. We invoke sed twice because it is the -diff --git a/configure.ac b/configure.ac -index c6edbfa..e3ca730 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -241,6 +241,7 @@ if test "$with_fhs_opt" = "yes"; then - # package was requested. - sysconfdir='/etc/opt' - localstatedir='/var/opt' -+ localrundir='/var/opt/run' - # relative to datadir - sampledatadir=/data - # relative to datadir -@@ -270,6 +271,7 @@ else - sysconfdir='/etc' - dnl as opposed to the default /usr/var - localstatedir='/var' -+ localrundir='/run' - fi - # relative to datadir - sampledatadir=/$PACKAGE_NAME/data -@@ -681,6 +683,7 @@ AC_SUBST(netsnmp_link) - AC_SUBST(pcre_inc) - AC_SUBST(pcre_lib) - AC_SUBST(pcre_libdir) -+AC_SUBST(localrundir) - - AC_SUBST(brand) - AC_SUBST(capbrand) -diff --git a/depcomp b/depcomp -index debb6ff..4ebd5b3 100755 ---- a/depcomp -+++ b/depcomp -@@ -1,9 +1,9 @@ - #! /bin/sh - # depcomp - compile a program generating dependencies as side-effects - --scriptversion=2012-03-27.16; # UTC -+scriptversion=2013-05-30.07; # UTC - --# Copyright (C) 1999-2012 Free Software Foundation, Inc. -+# Copyright (C) 1999-2013 Free Software Foundation, Inc. - - # This program is free software; you can redistribute it and/or modify - # it under the terms of the GNU General Public License as published by -@@ -27,9 +27,9 @@ scriptversion=2012-03-27.16; # UTC - - case $1 in - '') -- echo "$0: No command. Try '$0 --help' for more information." 1>&2 -- exit 1; -- ;; -+ echo "$0: No command. Try '$0 --help' for more information." 1>&2 -+ exit 1; -+ ;; - -h | --h*) - cat <<\EOF - Usage: depcomp [--help] [--version] PROGRAM [ARGS] -@@ -56,11 +56,65 @@ EOF - ;; - esac - -+# Get the directory component of the given path, and save it in the -+# global variables '$dir'. Note that this directory component will -+# be either empty or ending with a '/' character. This is deliberate. -+set_dir_from () -+{ -+ case $1 in -+ */*) dir=`echo "$1" | sed -e 's|/[^/]*$|/|'`;; -+ *) dir=;; -+ esac -+} -+ -+# Get the suffix-stripped basename of the given path, and save it the -+# global variable '$base'. -+set_base_from () -+{ -+ base=`echo "$1" | sed -e 's|^.*/||' -e 's/\.[^.]*$//'` -+} -+ -+# If no dependency file was actually created by the compiler invocation, -+# we still have to create a dummy depfile, to avoid errors with the -+# Makefile "include basename.Plo" scheme. -+make_dummy_depfile () -+{ -+ echo "#dummy" > "$depfile" -+} -+ -+# Factor out some common post-processing of the generated depfile. -+# Requires the auxiliary global variable '$tmpdepfile' to be set. -+aix_post_process_depfile () -+{ -+ # If the compiler actually managed to produce a dependency file, -+ # post-process it. -+ if test -f "$tmpdepfile"; then -+ # Each line is of the form 'foo.o: dependency.h'. -+ # Do two passes, one to just change these to -+ # $object: dependency.h -+ # and one to simply output -+ # dependency.h: -+ # which is needed to avoid the deleted-header problem. -+ { sed -e "s,^.*\.[$lower]*:,$object:," < "$tmpdepfile" -+ sed -e "s,^.*\.[$lower]*:[$tab ]*,," -e 's,$,:,' < "$tmpdepfile" -+ } > "$depfile" -+ rm -f "$tmpdepfile" -+ else -+ make_dummy_depfile -+ fi -+} -+ - # A tabulation character. - tab=' ' - # A newline character. - nl=' - ' -+# Character ranges might be problematic outside the C locale. -+# These definitions help. -+upper=ABCDEFGHIJKLMNOPQRSTUVWXYZ -+lower=abcdefghijklmnopqrstuvwxyz -+digits=0123456789 -+alpha=${upper}${lower} - - if test -z "$depmode" || test -z "$source" || test -z "$object"; then - echo "depcomp: Variables source, object and depmode must be set" 1>&2 -@@ -74,6 +128,9 @@ tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`} - - rm -f "$tmpdepfile" - -+# Avoid interferences from the environment. -+gccflag= dashmflag= -+ - # Some modes work just like other modes, but use different flags. We - # parameterize here, but still list the modes in the big case below, - # to make depend.m4 easier to write. Note that we *cannot* use a case -@@ -85,32 +142,32 @@ if test "$depmode" = hp; then - fi - - if test "$depmode" = dashXmstdout; then -- # This is just like dashmstdout with a different argument. -- dashmflag=-xM -- depmode=dashmstdout -+ # This is just like dashmstdout with a different argument. -+ dashmflag=-xM -+ depmode=dashmstdout - fi - - cygpath_u="cygpath -u -f -" - if test "$depmode" = msvcmsys; then -- # This is just like msvisualcpp but w/o cygpath translation. -- # Just convert the backslash-escaped backslashes to single forward -- # slashes to satisfy depend.m4 -- cygpath_u='sed s,\\\\,/,g' -- depmode=msvisualcpp -+ # This is just like msvisualcpp but w/o cygpath translation. -+ # Just convert the backslash-escaped backslashes to single forward -+ # slashes to satisfy depend.m4 -+ cygpath_u='sed s,\\\\,/,g' -+ depmode=msvisualcpp - fi - - if test "$depmode" = msvc7msys; then -- # This is just like msvc7 but w/o cygpath translation. -- # Just convert the backslash-escaped backslashes to single forward -- # slashes to satisfy depend.m4 -- cygpath_u='sed s,\\\\,/,g' -- depmode=msvc7 -+ # This is just like msvc7 but w/o cygpath translation. -+ # Just convert the backslash-escaped backslashes to single forward -+ # slashes to satisfy depend.m4 -+ cygpath_u='sed s,\\\\,/,g' -+ depmode=msvc7 - fi - - if test "$depmode" = xlc; then -- # IBM C/C++ Compilers xlc/xlC can output gcc-like dependency informations. -- gccflag=-qmakedep=gcc,-MF -- depmode=gcc -+ # IBM C/C++ Compilers xlc/xlC can output gcc-like dependency information. -+ gccflag=-qmakedep=gcc,-MF -+ depmode=gcc - fi - - case "$depmode" in -@@ -133,8 +190,7 @@ gcc3) - done - "$@" - stat=$? -- if test $stat -eq 0; then : -- else -+ if test $stat -ne 0; then - rm -f "$tmpdepfile" - exit $stat - fi -@@ -142,13 +198,17 @@ gcc3) - ;; - - gcc) -+## Note that this doesn't just cater to obsosete pre-3.x GCC compilers. -+## but also to in-use compilers like IMB xlc/xlC and the HP C compiler. -+## (see the conditional assignment to $gccflag above). - ## There are various ways to get dependency output from gcc. Here's - ## why we pick this rather obscure method: - ## - Don't want to use -MD because we'd like the dependencies to end - ## up in a subdir. Having to rename by hand is ugly. - ## (We might end up doing this anyway to support other compilers.) - ## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like --## -MM, not -M (despite what the docs say). -+## -MM, not -M (despite what the docs say). Also, it might not be -+## supported by the other compilers which use the 'gcc' depmode. - ## - Using -M directly means running the compiler twice (even worse - ## than renaming). - if test -z "$gccflag"; then -@@ -156,15 +216,14 @@ gcc) - fi - "$@" -Wp,"$gccflag$tmpdepfile" - stat=$? -- if test $stat -eq 0; then : -- else -+ if test $stat -ne 0; then - rm -f "$tmpdepfile" - exit $stat - fi - rm -f "$depfile" - echo "$object : \\" > "$depfile" -- alpha=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz --## The second -e expression handles DOS-style file names with drive letters. -+ # The second -e expression handles DOS-style file names with drive -+ # letters. - sed -e 's/^[^:]*: / /' \ - -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile" - ## This next piece of magic avoids the "deleted header file" problem. -@@ -173,15 +232,15 @@ gcc) - ## typically no way to rebuild the header). We avoid this by adding - ## dummy dependencies for each header file. Too bad gcc doesn't do - ## this for us directly. -- tr ' ' "$nl" < "$tmpdepfile" | - ## Some versions of gcc put a space before the ':'. On the theory - ## that the space means something, we add a space to the output as - ## well. hp depmode also adds that space, but also prefixes the VPATH - ## to the object. Take care to not repeat it in the output. - ## Some versions of the HPUX 10.20 sed can't process this invocation - ## correctly. Breaking it into two sed invocations is a workaround. -- sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \ -- | sed -e 's/$/ :/' >> "$depfile" -+ tr ' ' "$nl" < "$tmpdepfile" \ -+ | sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \ -+ | sed -e 's/$/ :/' >> "$depfile" - rm -f "$tmpdepfile" - ;; - -@@ -199,8 +258,7 @@ sgi) - "$@" -MDupdate "$tmpdepfile" - fi - stat=$? -- if test $stat -eq 0; then : -- else -+ if test $stat -ne 0; then - rm -f "$tmpdepfile" - exit $stat - fi -@@ -208,7 +266,6 @@ sgi) - - if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files - echo "$object : \\" > "$depfile" -- - # Clip off the initial element (the dependent). Don't try to be - # clever and replace this with sed code, as IRIX sed won't handle - # lines with more than a fixed number of characters (4096 in -@@ -216,19 +273,15 @@ sgi) - # the IRIX cc adds comments like '#:fec' to the end of the - # dependency line. - tr ' ' "$nl" < "$tmpdepfile" \ -- | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' | \ -- tr "$nl" ' ' >> "$depfile" -+ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' \ -+ | tr "$nl" ' ' >> "$depfile" - echo >> "$depfile" -- - # The second pass generates a dummy entry for each header file. - tr ' ' "$nl" < "$tmpdepfile" \ -- | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ -- >> "$depfile" -+ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ -+ >> "$depfile" - else -- # The sourcefile does not contain any dependencies, so just -- # store a dummy comment line, to avoid errors with the Makefile -- # "include basename.Plo" scheme. -- echo "#dummy" > "$depfile" -+ make_dummy_depfile - fi - rm -f "$tmpdepfile" - ;; -@@ -246,9 +299,8 @@ aix) - # current directory. Also, the AIX compiler puts '$object:' at the - # start of each line; $object doesn't have directory information. - # Version 6 uses the directory in both cases. -- dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` -- test "x$dir" = "x$object" && dir= -- base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` -+ set_dir_from "$object" -+ set_base_from "$object" - if test "$libtool" = yes; then - tmpdepfile1=$dir$base.u - tmpdepfile2=$base.u -@@ -261,9 +313,7 @@ aix) - "$@" -M - fi - stat=$? -- -- if test $stat -eq 0; then : -- else -+ if test $stat -ne 0; then - rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" - exit $stat - fi -@@ -272,65 +322,113 @@ aix) - do - test -f "$tmpdepfile" && break - done -- if test -f "$tmpdepfile"; then -- # Each line is of the form 'foo.o: dependent.h'. -- # Do two passes, one to just change these to -- # '$object: dependent.h' and one to simply 'dependent.h:'. -- sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" -- sed -e 's,^.*\.[a-z]*:['"$tab"' ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" -- else -- # The sourcefile does not contain any dependencies, so just -- # store a dummy comment line, to avoid errors with the Makefile -- # "include basename.Plo" scheme. -- echo "#dummy" > "$depfile" -+ aix_post_process_depfile -+ ;; -+ -+tcc) -+ # tcc (Tiny C Compiler) understand '-MD -MF file' since version 0.9.26 -+ # FIXME: That version still under development at the moment of writing. -+ # Make that this statement remains true also for stable, released -+ # versions. -+ # It will wrap lines (doesn't matter whether long or short) with a -+ # trailing '\', as in: -+ # -+ # foo.o : \ -+ # foo.c \ -+ # foo.h \ -+ # -+ # It will put a trailing '\' even on the last line, and will use leading -+ # spaces rather than leading tabs (at least since its commit 0394caf7 -+ # "Emit spaces for -MD"). -+ "$@" -MD -MF "$tmpdepfile" -+ stat=$? -+ if test $stat -ne 0; then -+ rm -f "$tmpdepfile" -+ exit $stat - fi -+ rm -f "$depfile" -+ # Each non-empty line is of the form 'foo.o : \' or ' dep.h \'. -+ # We have to change lines of the first kind to '$object: \'. -+ sed -e "s|.*:|$object :|" < "$tmpdepfile" > "$depfile" -+ # And for each line of the second kind, we have to emit a 'dep.h:' -+ # dummy dependency, to avoid the deleted-header problem. -+ sed -n -e 's|^ *\(.*\) *\\$|\1:|p' < "$tmpdepfile" >> "$depfile" - rm -f "$tmpdepfile" - ;; - --icc) -- # Intel's C compiler anf tcc (Tiny C Compiler) understand '-MD -MF file'. -- # However on -- # $CC -MD -MF foo.d -c -o sub/foo.o sub/foo.c -- # ICC 7.0 will fill foo.d with something like -- # foo.o: sub/foo.c -- # foo.o: sub/foo.h -- # which is wrong. We want -- # sub/foo.o: sub/foo.c -- # sub/foo.o: sub/foo.h -- # sub/foo.c: -- # sub/foo.h: -- # ICC 7.1 will output -+## The order of this option in the case statement is important, since the -+## shell code in configure will try each of these formats in the order -+## listed in this file. A plain '-MD' option would be understood by many -+## compilers, so we must ensure this comes after the gcc and icc options. -+pgcc) -+ # Portland's C compiler understands '-MD'. -+ # Will always output deps to 'file.d' where file is the root name of the -+ # source file under compilation, even if file resides in a subdirectory. -+ # The object file name does not affect the name of the '.d' file. -+ # pgcc 10.2 will output - # foo.o: sub/foo.c sub/foo.h -- # and will wrap long lines using '\': -+ # and will wrap long lines using '\' : - # foo.o: sub/foo.c ... \ - # sub/foo.h ... \ - # ... -- # tcc 0.9.26 (FIXME still under development at the moment of writing) -- # will emit a similar output, but also prepend the continuation lines -- # with horizontal tabulation characters. -- "$@" -MD -MF "$tmpdepfile" -- stat=$? -- if test $stat -eq 0; then : -- else -+ set_dir_from "$object" -+ # Use the source, not the object, to determine the base name, since -+ # that's sadly what pgcc will do too. -+ set_base_from "$source" -+ tmpdepfile=$base.d -+ -+ # For projects that build the same source file twice into different object -+ # files, the pgcc approach of using the *source* file root name can cause -+ # problems in parallel builds. Use a locking strategy to avoid stomping on -+ # the same $tmpdepfile. -+ lockdir=$base.d-lock -+ trap " -+ echo '$0: caught signal, cleaning up...' >&2 -+ rmdir '$lockdir' -+ exit 1 -+ " 1 2 13 15 -+ numtries=100 -+ i=$numtries -+ while test $i -gt 0; do -+ # mkdir is a portable test-and-set. -+ if mkdir "$lockdir" 2>/dev/null; then -+ # This process acquired the lock. -+ "$@" -MD -+ stat=$? -+ # Release the lock. -+ rmdir "$lockdir" -+ break -+ else -+ # If the lock is being held by a different process, wait -+ # until the winning process is done or we timeout. -+ while test -d "$lockdir" && test $i -gt 0; do -+ sleep 1 -+ i=`expr $i - 1` -+ done -+ fi -+ i=`expr $i - 1` -+ done -+ trap - 1 2 13 15 -+ if test $i -le 0; then -+ echo "$0: failed to acquire lock after $numtries attempts" >&2 -+ echo "$0: check lockdir '$lockdir'" >&2 -+ exit 1 -+ fi -+ -+ if test $stat -ne 0; then - rm -f "$tmpdepfile" - exit $stat - fi - rm -f "$depfile" -- # Each line is of the form 'foo.o: dependent.h', -- # or 'foo.o: dep1.h dep2.h \', or ' dep3.h dep4.h \'. -+ # Each line is of the form `foo.o: dependent.h', -+ # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'. - # Do two passes, one to just change these to -- # '$object: dependent.h' and one to simply 'dependent.h:'. -- sed -e "s/^[ $tab][ $tab]*/ /" -e "s,^[^:]*:,$object :," \ -- < "$tmpdepfile" > "$depfile" -- sed ' -- s/[ '"$tab"'][ '"$tab"']*/ /g -- s/^ *// -- s/ *\\*$// -- s/^[^:]*: *// -- /^$/d -- /:$/d -- s/$/ :/ -- ' < "$tmpdepfile" >> "$depfile" -+ # `$object: dependent.h' and one to simply `dependent.h:'. -+ sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile" -+ # Some versions of the HPUX 10.20 sed can't process this invocation -+ # correctly. Breaking it into two sed invocations is a workaround. -+ sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" \ -+ | sed -e 's/$/ :/' >> "$depfile" - rm -f "$tmpdepfile" - ;; - -@@ -341,9 +439,8 @@ hp2) - # 'foo.d', which lands next to the object file, wherever that - # happens to be. - # Much of this is similar to the tru64 case; see comments there. -- dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` -- test "x$dir" = "x$object" && dir= -- base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` -+ set_dir_from "$object" -+ set_base_from "$object" - if test "$libtool" = yes; then - tmpdepfile1=$dir$base.d - tmpdepfile2=$dir.libs/$base.d -@@ -354,8 +451,7 @@ hp2) - "$@" +Maked - fi - stat=$? -- if test $stat -eq 0; then : -- else -+ if test $stat -ne 0; then - rm -f "$tmpdepfile1" "$tmpdepfile2" - exit $stat - fi -@@ -365,76 +461,61 @@ hp2) - test -f "$tmpdepfile" && break - done - if test -f "$tmpdepfile"; then -- sed -e "s,^.*\.[a-z]*:,$object:," "$tmpdepfile" > "$depfile" -+ sed -e "s,^.*\.[$lower]*:,$object:," "$tmpdepfile" > "$depfile" - # Add 'dependent.h:' lines. - sed -ne '2,${ -- s/^ *// -- s/ \\*$// -- s/$/:/ -- p -- }' "$tmpdepfile" >> "$depfile" -+ s/^ *// -+ s/ \\*$// -+ s/$/:/ -+ p -+ }' "$tmpdepfile" >> "$depfile" - else -- echo "#dummy" > "$depfile" -+ make_dummy_depfile - fi - rm -f "$tmpdepfile" "$tmpdepfile2" - ;; - - tru64) -- # The Tru64 compiler uses -MD to generate dependencies as a side -- # effect. 'cc -MD -o foo.o ...' puts the dependencies into 'foo.o.d'. -- # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put -- # dependencies in 'foo.d' instead, so we check for that too. -- # Subdirectories are respected. -- dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` -- test "x$dir" = "x$object" && dir= -- base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` -- -- if test "$libtool" = yes; then -- # With Tru64 cc, shared objects can also be used to make a -- # static library. This mechanism is used in libtool 1.4 series to -- # handle both shared and static libraries in a single compilation. -- # With libtool 1.4, dependencies were output in $dir.libs/$base.lo.d. -- # -- # With libtool 1.5 this exception was removed, and libtool now -- # generates 2 separate objects for the 2 libraries. These two -- # compilations output dependencies in $dir.libs/$base.o.d and -- # in $dir$base.o.d. We have to check for both files, because -- # one of the two compilations can be disabled. We should prefer -- # $dir$base.o.d over $dir.libs/$base.o.d because the latter is -- # automatically cleaned when .libs/ is deleted, while ignoring -- # the former would cause a distcleancheck panic. -- tmpdepfile1=$dir.libs/$base.lo.d # libtool 1.4 -- tmpdepfile2=$dir$base.o.d # libtool 1.5 -- tmpdepfile3=$dir.libs/$base.o.d # libtool 1.5 -- tmpdepfile4=$dir.libs/$base.d # Compaq CCC V6.2-504 -- "$@" -Wc,-MD -- else -- tmpdepfile1=$dir$base.o.d -- tmpdepfile2=$dir$base.d -- tmpdepfile3=$dir$base.d -- tmpdepfile4=$dir$base.d -- "$@" -MD -- fi -- -- stat=$? -- if test $stat -eq 0; then : -- else -- rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4" -- exit $stat -- fi -- -- for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4" -- do -- test -f "$tmpdepfile" && break -- done -- if test -f "$tmpdepfile"; then -- sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" -- sed -e 's,^.*\.[a-z]*:['"$tab"' ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" -- else -- echo "#dummy" > "$depfile" -- fi -- rm -f "$tmpdepfile" -- ;; -+ # The Tru64 compiler uses -MD to generate dependencies as a side -+ # effect. 'cc -MD -o foo.o ...' puts the dependencies into 'foo.o.d'. -+ # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put -+ # dependencies in 'foo.d' instead, so we check for that too. -+ # Subdirectories are respected. -+ set_dir_from "$object" -+ set_base_from "$object" -+ -+ if test "$libtool" = yes; then -+ # Libtool generates 2 separate objects for the 2 libraries. These -+ # two compilations output dependencies in $dir.libs/$base.o.d and -+ # in $dir$base.o.d. We have to check for both files, because -+ # one of the two compilations can be disabled. We should prefer -+ # $dir$base.o.d over $dir.libs/$base.o.d because the latter is -+ # automatically cleaned when .libs/ is deleted, while ignoring -+ # the former would cause a distcleancheck panic. -+ tmpdepfile1=$dir$base.o.d # libtool 1.5 -+ tmpdepfile2=$dir.libs/$base.o.d # Likewise. -+ tmpdepfile3=$dir.libs/$base.d # Compaq CCC V6.2-504 -+ "$@" -Wc,-MD -+ else -+ tmpdepfile1=$dir$base.d -+ tmpdepfile2=$dir$base.d -+ tmpdepfile3=$dir$base.d -+ "$@" -MD -+ fi -+ -+ stat=$? -+ if test $stat -ne 0; then -+ rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" -+ exit $stat -+ fi -+ -+ for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" -+ do -+ test -f "$tmpdepfile" && break -+ done -+ # Same post-processing that is required for AIX mode. -+ aix_post_process_depfile -+ ;; - - msvc7) - if test "$libtool" = yes; then -@@ -445,8 +526,7 @@ msvc7) - "$@" $showIncludes > "$tmpdepfile" - stat=$? - grep -v '^Note: including file: ' "$tmpdepfile" -- if test "$stat" = 0; then : -- else -+ if test $stat -ne 0; then - rm -f "$tmpdepfile" - exit $stat - fi -@@ -472,6 +552,7 @@ $ { - G - p - }' >> "$depfile" -+ echo >> "$depfile" # make sure the fragment doesn't end with a backslash - rm -f "$tmpdepfile" - ;; - -@@ -523,13 +604,14 @@ dashmstdout) - # in the target name. This is to cope with DOS-style filenames: - # a dependency such as 'c:/foo/bar' could be seen as target 'c' otherwise. - "$@" $dashmflag | -- sed 's:^['"$tab"' ]*[^:'"$tab"' ][^:][^:]*\:['"$tab"' ]*:'"$object"'\: :' > "$tmpdepfile" -+ sed "s|^[$tab ]*[^:$tab ][^:][^:]*:[$tab ]*|$object: |" > "$tmpdepfile" - rm -f "$depfile" - cat < "$tmpdepfile" > "$depfile" -- tr ' ' "$nl" < "$tmpdepfile" | \ --## Some versions of the HPUX 10.20 sed can't process this invocation --## correctly. Breaking it into two sed invocations is a workaround. -- sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" -+ # Some versions of the HPUX 10.20 sed can't process this sed invocation -+ # correctly. Breaking it into two sed invocations is a workaround. -+ tr ' ' "$nl" < "$tmpdepfile" \ -+ | sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \ -+ | sed -e 's/$/ :/' >> "$depfile" - rm -f "$tmpdepfile" - ;; - -@@ -582,10 +664,12 @@ makedepend) - # makedepend may prepend the VPATH from the source file name to the object. - # No need to regex-escape $object, excess matching of '.' is harmless. - sed "s|^.*\($object *:\)|\1|" "$tmpdepfile" > "$depfile" -- sed '1,2d' "$tmpdepfile" | tr ' ' "$nl" | \ --## Some versions of the HPUX 10.20 sed can't process this invocation --## correctly. Breaking it into two sed invocations is a workaround. -- sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" -+ # Some versions of the HPUX 10.20 sed can't process the last invocation -+ # correctly. Breaking it into two sed invocations is a workaround. -+ sed '1,2d' "$tmpdepfile" \ -+ | tr ' ' "$nl" \ -+ | sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \ -+ | sed -e 's/$/ :/' >> "$depfile" - rm -f "$tmpdepfile" "$tmpdepfile".bak - ;; - -@@ -621,10 +705,10 @@ cpp) - esac - done - -- "$@" -E | -- sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ -- -e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' | -- sed '$ s: \\$::' > "$tmpdepfile" -+ "$@" -E \ -+ | sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ -+ -e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ -+ | sed '$ s: \\$::' > "$tmpdepfile" - rm -f "$depfile" - echo "$object : \\" > "$depfile" - cat < "$tmpdepfile" >> "$depfile" -@@ -656,15 +740,15 @@ msvisualcpp) - shift - ;; - "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") -- set fnord "$@" -- shift -- shift -- ;; -+ set fnord "$@" -+ shift -+ shift -+ ;; - *) -- set fnord "$@" "$arg" -- shift -- shift -- ;; -+ set fnord "$@" "$arg" -+ shift -+ shift -+ ;; - esac - done - "$@" -E 2>/dev/null | -diff --git a/ldap/admin/src/scripts/DSCreate.pm.in b/ldap/admin/src/scripts/DSCreate.pm.in -index be2097a..3957277 100644 ---- a/ldap/admin/src/scripts/DSCreate.pm.in -+++ b/ldap/admin/src/scripts/DSCreate.pm.in -@@ -1036,6 +1036,9 @@ sub updateSelinuxPolicy { - sub updateTmpfilesDotD { - my $inf = shift; - my $dir = "@with_tmpfiles_d@"; -+ my $rundir; -+ my $lockdir; -+ my $parentdir; - - # if tmpfiles.d is not available, do nothing - if ($dir and -d $dir) { -@@ -1073,16 +1076,25 @@ sub updateTmpfilesDotD { - $groupname = "-"; # use default - } - } -- my $parent = dirname($inf->{slapd}->{lock_dir}); - if (!open(DOTDFILE, ">$filename")) { - return ( [ 'error_creating_file', $filename, $! ] ); - } - # Type Path Mode UID GID Age - # d /var/run/user 0755 root root 10d - # we don't use age -- print DOTDFILE "d $inf->{slapd}->{run_dir} 0770 $username $groupname\n"; -- print DOTDFILE "d $parent 0770 $username $groupname\n"; -- print DOTDFILE "d $inf->{slapd}->{lock_dir} 0770 $username $groupname\n"; -+ my $localrundir = set_path_attribute("@localrundir@", $inf->{slapd}->{localstatedir}, $inf->{General}->{prefix}); -+ if( -d "$localrundir"){ -+ $rundir = "$localrundir/@PACKAGE_NAME@"; -+ $lockdir = "$localrundir/lock/@PACKAGE_NAME@/slapd-$inf->{slapd}->{ServerIdentifier}"; -+ $parentdir = "$localrundir/lock/@PACKAGE_NAME@"; -+ } else { -+ $rundir = $inf->{slapd}->{run_dir}; -+ $lockdir = $inf->{slapd}->{lock_dir}; -+ $parentdir = dirname($inf->{slapd}->{lock_dir}); -+ } -+ print DOTDFILE "d $rundir 0770 $username $groupname\n"; -+ print DOTDFILE "d $parentdir 0770 $username $groupname\n"; -+ print DOTDFILE "d $lockdir 0770 $username $groupname\n"; - close DOTDFILE; - } else { - debug(3, "no tmpfiles.d - skipping\n"); -diff --git a/missing b/missing -index 9a55648..cdea514 100755 ---- a/missing -+++ b/missing -@@ -1,10 +1,10 @@ - #! /bin/sh --# Common stub for a few missing GNU programs while installing. -+# Common wrapper for a few potentially missing GNU programs. - --scriptversion=2012-01-06.18; # UTC -+scriptversion=2012-06-26.16; # UTC - --# Copyright (C) 1996-2012 Free Software Foundation, Inc. --# Originally by Fran,cois Pinard , 1996. -+# Copyright (C) 1996-2013 Free Software Foundation, Inc. -+# Originally written by Fran,cois Pinard , 1996. - - # This program is free software; you can redistribute it and/or modify - # it under the terms of the GNU General Public License as published by -@@ -29,61 +29,33 @@ if test $# -eq 0; then - exit 1 - fi - --run=: --sed_output='s/.* --output[ =]\([^ ]*\).*/\1/p' --sed_minuso='s/.* -o \([^ ]*\).*/\1/p' -- --# In the cases where this matters, 'missing' is being run in the --# srcdir already. --if test -f configure.ac; then -- configure_ac=configure.ac --else -- configure_ac=configure.in --fi -+case $1 in - --msg="missing on your system" -+ --is-lightweight) -+ # Used by our autoconf macros to check whether the available missing -+ # script is modern enough. -+ exit 0 -+ ;; - --case $1 in ----run) -- # Try to run requested program, and just exit if it succeeds. -- run= -- shift -- "$@" && exit 0 -- # Exit code 63 means version mismatch. This often happens -- # when the user try to use an ancient version of a tool on -- # a file that requires a minimum version. In this case we -- # we should proceed has if the program had been absent, or -- # if --run hadn't been passed. -- if test $? = 63; then -- run=: -- msg="probably too old" -- fi -- ;; -+ --run) -+ # Back-compat with the calling convention used by older automake. -+ shift -+ ;; - - -h|--h|--he|--hel|--help) - echo "\ - $0 [OPTION]... PROGRAM [ARGUMENT]... - --Handle 'PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an --error status if there is no known handling for PROGRAM. -+Run 'PROGRAM [ARGUMENT]...', returning a proper advice when this fails due -+to PROGRAM being missing or too old. - - Options: - -h, --help display this help and exit - -v, --version output version information and exit -- --run try to run the given command, and emulate it if it fails - - Supported PROGRAM values: -- aclocal touch file 'aclocal.m4' -- autoconf touch file 'configure' -- autoheader touch file 'config.h.in' -- autom4te touch the output file, or create a stub one -- automake touch all 'Makefile.in' files -- bison create 'y.tab.[ch]', if possible, from existing .[ch] -- flex create 'lex.yy.c', if possible, from existing .c -- help2man touch the output file -- lex create 'lex.yy.c', if possible, from existing .c -- makeinfo touch the output file -- yacc create 'y.tab.[ch]', if possible, from existing .[ch] -+ aclocal autoconf autoheader autom4te automake makeinfo -+ bison yacc flex lex help2man - - Version suffixes to PROGRAM as well as the prefixes 'gnu-', 'gnu', and - 'g' are ignored when checking the name. -@@ -98,228 +70,141 @@ Send bug reports to ." - ;; - - -*) -- echo 1>&2 "$0: Unknown '$1' option" -+ echo 1>&2 "$0: unknown '$1' option" - echo 1>&2 "Try '$0 --help' for more information" - exit 1 - ;; - - esac - --# normalize program name to check for. --program=`echo "$1" | sed ' -- s/^gnu-//; t -- s/^gnu//; t -- s/^g//; t'` -- --# Now exit if we have it, but it failed. Also exit now if we --# don't have it and --version was passed (most likely to detect --# the program). This is about non-GNU programs, so use $1 not --# $program. --case $1 in -- lex*|yacc*) -- # Not GNU programs, they don't have --version. -- ;; -- -- *) -- if test -z "$run" && ($1 --version) > /dev/null 2>&1; then -- # We have it, but it failed. -- exit 1 -- elif test "x$2" = "x--version" || test "x$2" = "x--help"; then -- # Could not run --version or --help. This is probably someone -- # running '$TOOL --version' or '$TOOL --help' to check whether -- # $TOOL exists and not knowing $TOOL uses missing. -- exit 1 -- fi -- ;; --esac -- --# If it does not exist, or fails to run (possibly an outdated version), --# try to emulate it. --case $program in -- aclocal*) -- echo 1>&2 "\ --WARNING: '$1' is $msg. You should only need it if -- you modified 'acinclude.m4' or '${configure_ac}'. You might want -- to install the Automake and Perl packages. Grab them from -- any GNU archive site." -- touch aclocal.m4 -- ;; -- -- autoconf*) -- echo 1>&2 "\ --WARNING: '$1' is $msg. You should only need it if -- you modified '${configure_ac}'. You might want to install the -- Autoconf and GNU m4 packages. Grab them from any GNU -- archive site." -- touch configure -- ;; -- -- autoheader*) -- echo 1>&2 "\ --WARNING: '$1' is $msg. You should only need it if -- you modified 'acconfig.h' or '${configure_ac}'. You might want -- to install the Autoconf and GNU m4 packages. Grab them -- from any GNU archive site." -- files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}` -- test -z "$files" && files="config.h" -- touch_files= -- for f in $files; do -- case $f in -- *:*) touch_files="$touch_files "`echo "$f" | -- sed -e 's/^[^:]*://' -e 's/:.*//'`;; -- *) touch_files="$touch_files $f.in";; -- esac -- done -- touch $touch_files -- ;; -- -- automake*) -- echo 1>&2 "\ --WARNING: '$1' is $msg. You should only need it if -- you modified 'Makefile.am', 'acinclude.m4' or '${configure_ac}'. -- You might want to install the Automake and Perl packages. -- Grab them from any GNU archive site." -- find . -type f -name Makefile.am -print | -- sed 's/\.am$/.in/' | -- while read f; do touch "$f"; done -- ;; -- -- autom4te*) -- echo 1>&2 "\ --WARNING: '$1' is needed, but is $msg. -- You might have modified some files without having the -- proper tools for further handling them. -- You can get '$1' as part of Autoconf from any GNU -- archive site." -- -- file=`echo "$*" | sed -n "$sed_output"` -- test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` -- if test -f "$file"; then -- touch $file -- else -- test -z "$file" || exec >$file -- echo "#! /bin/sh" -- echo "# Created by GNU Automake missing as a replacement of" -- echo "# $ $@" -- echo "exit 0" -- chmod +x $file -- exit 1 -- fi -- ;; -- -- bison*|yacc*) -- echo 1>&2 "\ --WARNING: '$1' $msg. You should only need it if -- you modified a '.y' file. You may need the Bison package -- in order for those modifications to take effect. You can get -- Bison from any GNU archive site." -- rm -f y.tab.c y.tab.h -- if test $# -ne 1; then -- eval LASTARG=\${$#} -- case $LASTARG in -- *.y) -- SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'` -- if test -f "$SRCFILE"; then -- cp "$SRCFILE" y.tab.c -- fi -- SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'` -- if test -f "$SRCFILE"; then -- cp "$SRCFILE" y.tab.h -- fi -- ;; -- esac -- fi -- if test ! -f y.tab.h; then -- echo >y.tab.h -- fi -- if test ! -f y.tab.c; then -- echo 'main() { return 0; }' >y.tab.c -- fi -- ;; -- -- lex*|flex*) -- echo 1>&2 "\ --WARNING: '$1' is $msg. You should only need it if -- you modified a '.l' file. You may need the Flex package -- in order for those modifications to take effect. You can get -- Flex from any GNU archive site." -- rm -f lex.yy.c -- if test $# -ne 1; then -- eval LASTARG=\${$#} -- case $LASTARG in -- *.l) -- SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'` -- if test -f "$SRCFILE"; then -- cp "$SRCFILE" lex.yy.c -- fi -- ;; -- esac -- fi -- if test ! -f lex.yy.c; then -- echo 'main() { return 0; }' >lex.yy.c -- fi -- ;; -- -- help2man*) -- echo 1>&2 "\ --WARNING: '$1' is $msg. You should only need it if -- you modified a dependency of a manual page. You may need the -- Help2man package in order for those modifications to take -- effect. You can get Help2man from any GNU archive site." -- -- file=`echo "$*" | sed -n "$sed_output"` -- test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` -- if test -f "$file"; then -- touch $file -- else -- test -z "$file" || exec >$file -- echo ".ab help2man is required to generate this page" -- exit $? -- fi -- ;; -- -- makeinfo*) -- echo 1>&2 "\ --WARNING: '$1' is $msg. You should only need it if -- you modified a '.texi' or '.texinfo' file, or any other file -- indirectly affecting the aspect of the manual. The spurious -- call might also be the consequence of using a buggy 'make' (AIX, -- DU, IRIX). You might want to install the Texinfo package or -- the GNU make package. Grab either from any GNU archive site." -- # The file to touch is that specified with -o ... -- file=`echo "$*" | sed -n "$sed_output"` -- test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` -- if test -z "$file"; then -- # ... or it is the one specified with @setfilename ... -- infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'` -- file=`sed -n ' -- /^@setfilename/{ -- s/.* \([^ ]*\) *$/\1/ -- p -- q -- }' $infile` -- # ... or it is derived from the source name (dir/f.texi becomes f.info) -- test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info -- fi -- # If the file does not exist, the user really needs makeinfo; -- # let's fail without touching anything. -- test -f $file || exit 1 -- touch $file -- ;; -+# Run the given program, remember its exit status. -+"$@"; st=$? -+ -+# If it succeeded, we are done. -+test $st -eq 0 && exit 0 -+ -+# Also exit now if we it failed (or wasn't found), and '--version' was -+# passed; such an option is passed most likely to detect whether the -+# program is present and works. -+case $2 in --version|--help) exit $st;; esac -+ -+# Exit code 63 means version mismatch. This often happens when the user -+# tries to use an ancient version of a tool on a file that requires a -+# minimum version. -+if test $st -eq 63; then -+ msg="probably too old" -+elif test $st -eq 127; then -+ # Program was missing. -+ msg="missing on your system" -+else -+ # Program was found and executed, but failed. Give up. -+ exit $st -+fi - -- *) -- echo 1>&2 "\ --WARNING: '$1' is needed, and is $msg. -- You might have modified some files without having the -- proper tools for further handling them. Check the 'README' file, -- it often tells you about the needed prerequisites for installing -- this package. You may also peek at any GNU archive site, in case -- some other package would contain this missing '$1' program." -- exit 1 -+perl_URL=http://www.perl.org/ -+flex_URL=http://flex.sourceforge.net/ -+gnu_software_URL=http://www.gnu.org/software -+ -+program_details () -+{ -+ case $1 in -+ aclocal|automake) -+ echo "The '$1' program is part of the GNU Automake package:" -+ echo "<$gnu_software_URL/automake>" -+ echo "It also requires GNU Autoconf, GNU m4 and Perl in order to run:" -+ echo "<$gnu_software_URL/autoconf>" -+ echo "<$gnu_software_URL/m4/>" -+ echo "<$perl_URL>" -+ ;; -+ autoconf|autom4te|autoheader) -+ echo "The '$1' program is part of the GNU Autoconf package:" -+ echo "<$gnu_software_URL/autoconf/>" -+ echo "It also requires GNU m4 and Perl in order to run:" -+ echo "<$gnu_software_URL/m4/>" -+ echo "<$perl_URL>" -+ ;; -+ esac -+} -+ -+give_advice () -+{ -+ # Normalize program name to check for. -+ normalized_program=`echo "$1" | sed ' -+ s/^gnu-//; t -+ s/^gnu//; t -+ s/^g//; t'` -+ -+ printf '%s\n' "'$1' is $msg." -+ -+ configure_deps="'configure.ac' or m4 files included by 'configure.ac'" -+ case $normalized_program in -+ autoconf*) -+ echo "You should only need it if you modified 'configure.ac'," -+ echo "or m4 files included by it." -+ program_details 'autoconf' -+ ;; -+ autoheader*) -+ echo "You should only need it if you modified 'acconfig.h' or" -+ echo "$configure_deps." -+ program_details 'autoheader' -+ ;; -+ automake*) -+ echo "You should only need it if you modified 'Makefile.am' or" -+ echo "$configure_deps." -+ program_details 'automake' -+ ;; -+ aclocal*) -+ echo "You should only need it if you modified 'acinclude.m4' or" -+ echo "$configure_deps." -+ program_details 'aclocal' -+ ;; -+ autom4te*) -+ echo "You might have modified some maintainer files that require" -+ echo "the 'automa4te' program to be rebuilt." -+ program_details 'autom4te' -+ ;; -+ bison*|yacc*) -+ echo "You should only need it if you modified a '.y' file." -+ echo "You may want to install the GNU Bison package:" -+ echo "<$gnu_software_URL/bison/>" -+ ;; -+ lex*|flex*) -+ echo "You should only need it if you modified a '.l' file." -+ echo "You may want to install the Fast Lexical Analyzer package:" -+ echo "<$flex_URL>" -+ ;; -+ help2man*) -+ echo "You should only need it if you modified a dependency" \ -+ "of a man page." -+ echo "You may want to install the GNU Help2man package:" -+ echo "<$gnu_software_URL/help2man/>" - ;; --esac -- --exit 0 -+ makeinfo*) -+ echo "You should only need it if you modified a '.texi' file, or" -+ echo "any other file indirectly affecting the aspect of the manual." -+ echo "You might want to install the Texinfo package:" -+ echo "<$gnu_software_URL/texinfo/>" -+ echo "The spurious makeinfo call might also be the consequence of" -+ echo "using a buggy 'make' (AIX, DU, IRIX), in which case you might" -+ echo "want to install GNU make:" -+ echo "<$gnu_software_URL/make/>" -+ ;; -+ *) -+ echo "You might have modified some files without having the proper" -+ echo "tools for further handling them. Check the 'README' file, it" -+ echo "often tells you about the needed prerequisites for installing" -+ echo "this package. You may also peek at any GNU archive site, in" -+ echo "case some other package contains this missing '$1' program." -+ ;; -+ esac -+} -+ -+give_advice "$1" | sed -e '1s/^/WARNING: /' \ -+ -e '2,$s/^/ /' >&2 -+ -+# Propagate the correct exit status (expected to be 127 for a program -+# not found, 63 for a program that failed due to version mismatch). -+exit $st - - # Local variables: - # eval: (add-hook 'write-file-hooks 'time-stamp) --- -1.7.1 - diff --git a/SOURCES/0017-Ticket-47892-Fix-remaining-compiler-warnings.patch b/SOURCES/0017-Ticket-47892-Fix-remaining-compiler-warnings.patch new file mode 100644 index 0000000..2e95b09 --- /dev/null +++ b/SOURCES/0017-Ticket-47892-Fix-remaining-compiler-warnings.patch @@ -0,0 +1,57 @@ +From f8bdd437a0ab09315bfcb980ea590d4463f15189 Mon Sep 17 00:00:00 2001 +From: Mark Reynolds +Date: Tue, 7 Oct 2014 15:38:34 -0400 +Subject: [PATCH 17/21] Ticket 47892 - Fix remaining compiler warnings + +Description: Fix the remaining compiler warnings from ds/lib/base/system.cpp + +https://fedorahosted.org/389/ticket/47892 + +Reviewed by: nhosoi(Thanks!) + +(cherry picked from commit 5f3aaa2872d69c5900eaf52d7e9fc2f1bcea475e) +(cherry picked from commit 0f29b5e920088ab4d32f5afdc7dcb076a88c5eae) +--- + lib/base/system.cpp | 8 ++++---- + 1 file changed, 4 insertions(+), 4 deletions(-) + +diff --git a/lib/base/system.cpp b/lib/base/system.cpp +index 287d5a8..c4cbfd0 100644 +--- a/lib/base/system.cpp ++++ b/lib/base/system.cpp +@@ -201,7 +201,7 @@ NSAPI_PUBLIC void *system_realloc_perm(void *ptr, int size) + return ptr; + } + } else { +- ereport(LOG_WARN, "realloc: attempt to realloc to smaller size"); ++ ereport(LOG_WARN, const_cast("realloc: attempt to realloc to smaller size")); + return realloc(ptr, size); + } + +@@ -228,20 +228,20 @@ NSAPI_PUBLIC void system_free_perm(void *ptr) + cptr += sizeof(int); + for (index=0; index("free: corrupt memory (prebounds overwrite)")); + break; + } + + cptr += DEBUG_MARGIN + *length; + for (index=0; index("free: corrupt memory (prebounds overwrite)")); + break; + } + + memset(baseptr, DEBUG_FREE_CHAR, *length + 2*DEBUG_MARGIN+sizeof(int)); + } else { +- ereport(LOG_CATASTROPHE, "free: freeing unallocated memory"); ++ ereport(LOG_CATASTROPHE, const_cast("free: freeing unallocated memory")); + } + free(baseptr); + #else +-- +1.9.3 + diff --git a/SOURCES/0018-Ticket-47523-Set-up-replcation-agreement-before-init.patch b/SOURCES/0018-Ticket-47523-Set-up-replcation-agreement-before-init.patch deleted file mode 100644 index b28abc1..0000000 --- a/SOURCES/0018-Ticket-47523-Set-up-replcation-agreement-before-init.patch +++ /dev/null @@ -1,193 +0,0 @@ -From 2648c806841f09fe2ff130691b4a605feef7eb9b Mon Sep 17 00:00:00 2001 -From: Noriko Hosoi -Date: Thu, 26 Sep 2013 09:18:11 -0700 -Subject: [PATCH 18/28] Ticket #47523 - Set up replcation/agreement before initializing the sub suffix, the sub suffix is not found by ldapsearch - -Bug description: If a replication is configured against a backend -before initializing the backend with a suffix entry, an RUV entry -is inserted first with the entryid 1. The RUV entry's entryrdn is -added to the entryrdn index with a suffix entry which is a parent -entry of the RUV entry having a temporary entryid 0, which was to -be replaced with the real entryid when the real suffix entry is -added. But the replacement code was not executed. - -Fix description: When a real suffix is added to the entryrdn index, -it returns DB_KEYEXIST, which used to be ignored by resetting 0 -(== SUCCESS). This patch returns DB_KEYEXIST to the caller and let -_entryrdn_insert_key use the info to replace the temporary entryid -with the real one. The error code is ignored by the other callers. - -https://fedorahosted.org/389/ticket/47523 - -Reviewed by nkinder (Thanks!). -(cherry picked from commit e6eab21920a0374eb356da3d1f041312c6857ecd) -(cherry picked from commit 6b35dc7b04da023cc14045cc6dd1f5e304cf265f) ---- - ldap/servers/slapd/back-ldbm/ldbm_entryrdn.c | 39 ++++++++++++++------------ - 1 files changed, 21 insertions(+), 18 deletions(-) - -diff --git a/ldap/servers/slapd/back-ldbm/ldbm_entryrdn.c b/ldap/servers/slapd/back-ldbm/ldbm_entryrdn.c -index 22940cc..d381166 100644 ---- a/ldap/servers/slapd/back-ldbm/ldbm_entryrdn.c -+++ b/ldap/servers/slapd/back-ldbm/ldbm_entryrdn.c -@@ -748,7 +748,7 @@ entryrdn_rename_subtree(backend *be, - renamedata.data = (void *)newelem; - renamedata.flags = DB_DBT_USERMEM; - rc = _entryrdn_put_data(cursor, &key, &renamedata, RDN_INDEX_SELF, db_txn); -- if (rc) { -+ if (rc && (DB_KEYEXIST != rc)) { /* failed && ignore already exists */ - slapi_log_error(ENTRYRDN_LOGLEVEL(rc), ENTRYRDN_TAG, - "entryrdn_rename_subtree: Adding %s failed; " - "%s(%d)\n", keybuf, dblayer_strerror(rc), rc); -@@ -769,7 +769,7 @@ entryrdn_rename_subtree(backend *be, - renamedata.flags = DB_DBT_USERMEM; - rc = _entryrdn_put_data(cursor, &key, - &renamedata, RDN_INDEX_CHILD, db_txn); -- if (rc) { -+ if (rc && (DB_KEYEXIST != rc)) { /* failed && ignore already exists */ - goto bail; - } - } -@@ -814,7 +814,7 @@ entryrdn_rename_subtree(backend *be, - renamedata.data = (void *)newsupelem; - } - rc = _entryrdn_put_data(cursor, &key, &renamedata, RDN_INDEX_PARENT, db_txn); -- if (rc) { -+ if (rc && (DB_KEYEXIST != rc)) { /* failed && ignore already exists */ - slapi_log_error(ENTRYRDN_LOGLEVEL(rc), ENTRYRDN_TAG, - "entryrdn_rename_subtree: Adding " - "%s failed; %s(%d)\n", -@@ -849,7 +849,7 @@ entryrdn_rename_subtree(backend *be, - renamedata.data = (void *)newelem; - renamedata.flags = DB_DBT_USERMEM; - rc = _entryrdn_put_data(cursor, &key, &renamedata, RDN_INDEX_SELF, db_txn); -- if (rc) { -+ if (rc && (DB_KEYEXIST != rc)) { /* failed && ignore already exists */ - slapi_log_error(ENTRYRDN_LOGLEVEL(rc), ENTRYRDN_TAG, - "entryrdn_rename_subtree: Adding %s failed; " - "%s(%d)\n", keybuf, dblayer_strerror(rc), rc); -@@ -902,7 +902,7 @@ entryrdn_rename_subtree(backend *be, - renamedata.flags = DB_DBT_USERMEM; - } - rc = _entryrdn_put_data(cursor, &key, &renamedata, RDN_INDEX_CHILD, db_txn); -- if (rc) { -+ if (rc && (DB_KEYEXIST != rc)) { /* failed && ignore already exists */ - goto bail; - } - } -@@ -1955,12 +1955,11 @@ _entryrdn_put_data(DBC *cursor, DBT *key, DBT *data, char type, DB_TXN *db_txn) - rc = cursor->c_put(cursor, key, data, DB_NODUPDATA); - if (rc) { - if (DB_KEYEXIST == rc) { -- /* this is okay */ -+ /* this is okay, but need to return DB_KEYEXIST to caller */ - slapi_log_error(SLAPI_LOG_BACKLDBM, ENTRYRDN_TAG, - "_entryrdn_put_data: The same key (%s) and the " - "data exists in index\n", - (char *)key->data); -- rc = 0; - break; - } else { - char *keyword = NULL; -@@ -2109,7 +2108,7 @@ _entryrdn_insert_key_elems(backend *be, - /* adding RDN to the child key */ - rc = _entryrdn_put_data(cursor, key, &adddata, RDN_INDEX_CHILD, db_txn); - keybuf = key->data; -- if (rc) { /* failed */ -+ if (rc && (DB_KEYEXIST != rc)) { /* failed && ignore already exists */ - goto bail; - } - -@@ -2125,7 +2124,7 @@ _entryrdn_insert_key_elems(backend *be, - key->flags = DB_DBT_USERMEM; - - rc = _entryrdn_put_data(cursor, key, &adddata, RDN_INDEX_SELF, db_txn); -- if (rc) { /* failed */ -+ if (rc && (DB_KEYEXIST != rc)) { /* failed && ignore already exists */ - goto bail; - } - -@@ -2145,6 +2144,9 @@ _entryrdn_insert_key_elems(backend *be, - adddata.flags = DB_DBT_USERMEM; - /* adding RDN to the self key */ - rc = _entryrdn_put_data(cursor, key, &adddata, RDN_INDEX_PARENT, db_txn); -+ if (DB_KEYEXIST == rc) { /* failed && ignore already exists */ -+ rc = 0; -+ } - /* Succeeded or failed, it's done. */ - bail: - slapi_ch_free_string(&keybuf); -@@ -2268,7 +2270,7 @@ _entryrdn_replace_suffix_id(DBC *cursor, DBT *key, DBT *adddata, - /* Add it back */ - rc = _entryrdn_put_data(cursor, &realkey, &moddata, - RDN_INDEX_CHILD, db_txn); -- if (rc) { -+ if (rc && (DB_KEYEXIST != rc)) { /* failed && ignore already exists */ - goto bail0; - } - if (curr_childnum + 1 == childnum) { -@@ -2531,7 +2533,7 @@ _entryrdn_insert_key(backend *be, - slapi_ch_free_string(&dn); - goto bail; - } -- elem = _entryrdn_new_rdn_elem(be, 0 /*fake id*/, tmpsrdn, &len); -+ elem = _entryrdn_new_rdn_elem(be, TMPID, tmpsrdn, &len); - if (NULL == elem) { - char *dn = NULL; - slapi_rdn_get_dn(tmpsrdn, &dn); -@@ -2551,12 +2553,13 @@ _entryrdn_insert_key(backend *be, - rc = _entryrdn_get_elem(cursor, &key, &data, nrdn, &elem); - if (rc) { - const char *myrdn = slapi_rdn_get_nrdn(srdn); -- const char *ep = NULL; -+ const char **ep = NULL; - int isexception = 0; - /* Check the RDN is in the exception list */ -- for (ep = *rdn_exceptions; ep && *ep; ep++) { -- if (!strcmp(ep, myrdn)) { -+ for (ep = rdn_exceptions; ep && *ep; ep++) { -+ if (!strcmp(*ep, myrdn)) { - isexception = 1; -+ break; - } - } - -@@ -2636,7 +2639,7 @@ _entryrdn_insert_key(backend *be, - goto bail; - } - } -- elem = _entryrdn_new_rdn_elem(be, 0 /*fake id*/, tmpsrdn, &len); -+ elem = _entryrdn_new_rdn_elem(be, TMPID, tmpsrdn, &len); - if (NULL == elem) { - char *dn = NULL; - slapi_rdn_get_dn(tmpsrdn, &dn); -@@ -2891,7 +2894,7 @@ _entryrdn_delete_key(backend *be, - slapi_ch_free_string(&dn); - goto bail; - } -- elem = _entryrdn_new_rdn_elem(be, 0 /*fake id*/, tmpsrdn, &len); -+ elem = _entryrdn_new_rdn_elem(be, TMPID, tmpsrdn, &len); - if (NULL == elem) { - char *dn = NULL; - slapi_rdn_get_dn(tmpsrdn, &dn); -@@ -3134,7 +3137,7 @@ _entryrdn_index_read(backend *be, - slapi_ch_free_string(&dn); - goto bail; - } -- *elem = _entryrdn_new_rdn_elem(be, 0 /*fake id*/, tmpsrdn, &len); -+ *elem = _entryrdn_new_rdn_elem(be, TMPID, tmpsrdn, &len); - if (NULL == *elem) { - char *dn = NULL; - slapi_rdn_get_dn(tmpsrdn, &dn); -@@ -3212,7 +3215,7 @@ _entryrdn_index_read(backend *be, - goto bail; - } - } -- tmpelem = _entryrdn_new_rdn_elem(be, 0 /*fake id*/, tmpsrdn, &len); -+ tmpelem = _entryrdn_new_rdn_elem(be, TMPID, tmpsrdn, &len); - if (NULL == tmpelem) { - char *dn = NULL; - slapi_rdn_get_dn(tmpsrdn, &dn); --- -1.7.1 - diff --git a/SOURCES/0018-Ticket-47919-ldbm_back_modify-SLAPI_PLUGIN_BE_PRE_MO.patch b/SOURCES/0018-Ticket-47919-ldbm_back_modify-SLAPI_PLUGIN_BE_PRE_MO.patch new file mode 100644 index 0000000..a56c01d --- /dev/null +++ b/SOURCES/0018-Ticket-47919-ldbm_back_modify-SLAPI_PLUGIN_BE_PRE_MO.patch @@ -0,0 +1,46 @@ +From 6e09835b2b5b221f285f1bd6d61978d0a77843bd Mon Sep 17 00:00:00 2001 +From: Noriko Hosoi +Date: Tue, 7 Oct 2014 12:12:28 -0700 +Subject: [PATCH 18/21] Ticket #47919 - ldbm_back_modify + SLAPI_PLUGIN_BE_PRE_MODIFY_FN does not return even if one of the preop + plugins fails. + +Bug Description: In ldbm_back_modify, if one of the be_preop plugins +called at SLAPI_PLUGIN_BE_PRE_MODIFY_FN fail, ldbm_back_modify does +not return there but go to the real modify operation. + +Fix Description: If an error is returned from be_preop plugins in +ldbm_back_modify, it returns the error there and does not proceed +the modify operation. + +https://fedorahosted.org/389/ticket/47919 + +Reviewed by mreynolds@redhat.com (Thank you, Mark!!) + +(cherry picked from commit cb173814ec579fafbfef515738c16a986a9749cd) +(cherry picked from commit 17294432e95bdb30c6816cefa7be5035df818a43) +--- + ldap/servers/slapd/back-ldbm/ldbm_modify.c | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/ldap/servers/slapd/back-ldbm/ldbm_modify.c b/ldap/servers/slapd/back-ldbm/ldbm_modify.c +index 529bd32..d15b050 100644 +--- a/ldap/servers/slapd/back-ldbm/ldbm_modify.c ++++ b/ldap/servers/slapd/back-ldbm/ldbm_modify.c +@@ -641,11 +641,11 @@ ldbm_back_modify( Slapi_PBlock *pb ) + if (SLAPI_PLUGIN_NOOP == opreturn) { + not_an_error = 1; + rc = opreturn = LDAP_SUCCESS; +- goto error_return; + } else if (!opreturn) { +- opreturn = -1; ++ opreturn = SLAPI_PLUGIN_FAILURE; + slapi_pblock_set(pb, SLAPI_PLUGIN_OPRETURN, &opreturn); + } ++ goto error_return; + } + /* The Plugin may have messed about with some of the PBlock parameters... ie. mods */ + slapi_pblock_get( pb, SLAPI_MODIFY_MODS, &mods ); +-- +1.9.3 + diff --git a/SOURCES/0019-Ticket-47534-RUV-tombstone-search-with-scope-one-doe.patch b/SOURCES/0019-Ticket-47534-RUV-tombstone-search-with-scope-one-doe.patch deleted file mode 100644 index 9abc434..0000000 --- a/SOURCES/0019-Ticket-47534-RUV-tombstone-search-with-scope-one-doe.patch +++ /dev/null @@ -1,41 +0,0 @@ -From debd7eeaa129d176c14e6e9d45a9c302c0b508a7 Mon Sep 17 00:00:00 2001 -From: Noriko Hosoi -Date: Fri, 27 Sep 2013 11:23:42 -0700 -Subject: [PATCH 19/28] Ticket #47534 - RUV tombstone search with scope "one" doesn`t work - -Bug description: slapi_sdn_scope_test_ext examines the given dn -satisfies the scope against the base dn. Onelevel case for the -tombstone DN ignores the nsuniqueid leaf rdn before checking the -scope which should not be done for the RUV tombstone. - -Fix description: This patch correctly handles the RUV tombstone -as an exception. - -https://fedorahosted.org/389/ticket/47534 - -Reviewed by rmeggins (Thanks, Rich!) -(cherry picked from commit fbece32d94515bc1ca3889c3d7c0691bbeec3ab0) -(cherry picked from commit a8795a928511321f3b46461680cfbf8314edc982) ---- - ldap/servers/slapd/dn.c | 5 ++++- - 1 files changed, 4 insertions(+), 1 deletions(-) - -diff --git a/ldap/servers/slapd/dn.c b/ldap/servers/slapd/dn.c -index 9ed8091..9530b84 100644 ---- a/ldap/servers/slapd/dn.c -+++ b/ldap/servers/slapd/dn.c -@@ -2645,7 +2645,10 @@ slapi_sdn_scope_test_ext( const Slapi_DN *dn, const Slapi_DN *base, int scope, i - } - break; - case LDAP_SCOPE_ONELEVEL: -- if (flags & SLAPI_ENTRY_FLAG_TOMBSTONE) { -+#define RUVRDN SLAPI_ATTR_UNIQUEID "=" RUV_STORAGE_ENTRY_UNIQUEID "," -+ if ((flags & SLAPI_ENTRY_FLAG_TOMBSTONE) && -+ (strncmp(slapi_sdn_get_ndn(dn), RUVRDN, sizeof(RUVRDN) - 1))) { -+ /* tombstones except RUV tombstone */ - Slapi_DN parent; - slapi_sdn_init(&parent); - slapi_sdn_get_parent(dn, &parent); --- -1.7.1 - diff --git a/SOURCES/0019-Ticket-47920-Encoding-of-SearchResultEntry-is-missin.patch b/SOURCES/0019-Ticket-47920-Encoding-of-SearchResultEntry-is-missin.patch new file mode 100644 index 0000000..94eb5ff --- /dev/null +++ b/SOURCES/0019-Ticket-47920-Encoding-of-SearchResultEntry-is-missin.patch @@ -0,0 +1,308 @@ +From 5d034162124f8d92c4ad3ea205b0e60be81c5c4f Mon Sep 17 00:00:00 2001 +From: "Thierry bordaz (tbordaz)" +Date: Thu, 9 Oct 2014 14:31:11 +0200 +Subject: [PATCH 19/21] Ticket 47920: Encoding of SearchResultEntry is missing + tag + +Bug Description: + The encoding of the PreReadControl,PostReadControl does not + contain the tag (LDAP_RES_SEARCH_ENTRY = constructed+application). + + The server should return SearchResultEntry (http://tools.ietf.org/html/rfc4527 3.1 & 3.2) + That is + SearchResultEntry ::= [APPLICATION 4] SEQUENCE { + objectName LDAPDN, + attributes PartialAttributeList } +Fix Description: + Add the tag to the ber encoding + +https://fedorahosted.org/389/ticket/47920 + +Reviewed by: Noriko (thanks !) + +Platforms tested: F17 + +Flag Day: no + +Doc impact: no + +(cherry picked from commit 90939dc9c965ea1cb88b88eec0cb735ab97ae551) +--- + dirsrvtests/tickets/ticket47920_test.py | 251 ++++++++++++++++++++++++++++++++ + ldap/servers/slapd/result.c | 2 +- + 2 files changed, 252 insertions(+), 1 deletion(-) + create mode 100644 dirsrvtests/tickets/ticket47920_test.py + +diff --git a/dirsrvtests/tickets/ticket47920_test.py b/dirsrvtests/tickets/ticket47920_test.py +new file mode 100644 +index 0000000..1e04626 +--- /dev/null ++++ b/dirsrvtests/tickets/ticket47920_test.py +@@ -0,0 +1,251 @@ ++import os ++import sys ++import time ++import ldap ++import logging ++import socket ++import time ++import logging ++import pytest ++import re ++from lib389 import DirSrv, Entry, tools ++from lib389.tools import DirSrvTools ++from lib389._constants import * ++from lib389.properties import * ++from constants import * ++from ldap.controls.readentry import PreReadControl,PostReadControl ++ ++ ++SCOPE_IN_CN = 'in' ++SCOPE_OUT_CN = 'out' ++SCOPE_IN_DN = 'cn=%s,%s' % (SCOPE_IN_CN, SUFFIX) ++SCOPE_OUT_DN = 'cn=%s,%s' % (SCOPE_OUT_CN, SUFFIX) ++ ++PROVISIONING_CN = "provisioning" ++PROVISIONING_DN = "cn=%s,%s" % (PROVISIONING_CN, SCOPE_IN_DN) ++ ++ ++ ++ ++ACTIVE_CN = "accounts" ++STAGE_CN = "staged users" ++DELETE_CN = "deleted users" ++ACTIVE_DN = "cn=%s,%s" % (ACTIVE_CN, SCOPE_IN_DN) ++STAGE_DN = "cn=%s,%s" % (STAGE_CN, PROVISIONING_DN) ++DELETE_DN = "cn=%s,%s" % (DELETE_CN, PROVISIONING_DN) ++ ++STAGE_USER_CN = "stage guy" ++STAGE_USER_DN = "cn=%s,%s" % (STAGE_USER_CN, STAGE_DN) ++ ++ACTIVE_USER_CN = "active guy" ++ACTIVE_USER_DN = "cn=%s,%s" % (ACTIVE_USER_CN, ACTIVE_DN) ++ ++OUT_USER_CN = "out guy" ++OUT_USER_DN = "cn=%s,%s" % (OUT_USER_CN, SCOPE_OUT_DN) ++ ++STAGE_GROUP_CN = "stage group" ++STAGE_GROUP_DN = "cn=%s,%s" % (STAGE_GROUP_CN, STAGE_DN) ++ ++ACTIVE_GROUP_CN = "active group" ++ACTIVE_GROUP_DN = "cn=%s,%s" % (ACTIVE_GROUP_CN, ACTIVE_DN) ++ ++OUT_GROUP_CN = "out group" ++OUT_GROUP_DN = "cn=%s,%s" % (OUT_GROUP_CN, SCOPE_OUT_DN) ++ ++INDIRECT_ACTIVE_GROUP_CN = "indirect active group" ++INDIRECT_ACTIVE_GROUP_DN = "cn=%s,%s" % (INDIRECT_ACTIVE_GROUP_CN, ACTIVE_DN) ++ ++INITIAL_DESC="inital description" ++FINAL_DESC ="final description" ++ ++ ++ ++log = logging.getLogger(__name__) ++ ++installation_prefix = None ++ ++ ++class TopologyStandalone(object): ++ def __init__(self, standalone): ++ standalone.open() ++ self.standalone = standalone ++ ++ ++ ++@pytest.fixture(scope="module") ++def topology(request): ++ ''' ++ This fixture is used to standalone topology for the 'module'. ++ At the beginning, It may exists a standalone instance. ++ It may also exists a backup for the standalone instance. ++ ++ Principle: ++ If standalone instance exists: ++ restart it ++ If backup of standalone exists: ++ create/rebind to standalone ++ ++ restore standalone instance from backup ++ else: ++ Cleanup everything ++ remove instance ++ remove backup ++ Create instance ++ Create backup ++ ''' ++ global installation_prefix ++ ++ if installation_prefix: ++ args_instance[SER_DEPLOYED_DIR] = installation_prefix ++ ++ standalone = DirSrv(verbose=False) ++ ++ # Args for the standalone instance ++ args_instance[SER_HOST] = HOST_STANDALONE ++ args_instance[SER_PORT] = PORT_STANDALONE ++ args_instance[SER_SERVERID_PROP] = SERVERID_STANDALONE ++ args_standalone = args_instance.copy() ++ standalone.allocate(args_standalone) ++ ++ # Get the status of the backups ++ backup_standalone = standalone.checkBackupFS() ++ ++ # Get the status of the instance and restart it if it exists ++ instance_standalone = standalone.exists() ++ if instance_standalone: ++ # assuming the instance is already stopped, just wait 5 sec max ++ standalone.stop(timeout=5) ++ standalone.start(timeout=10) ++ ++ if backup_standalone: ++ # The backup exist, assuming it is correct ++ # we just re-init the instance with it ++ if not instance_standalone: ++ standalone.create() ++ # Used to retrieve configuration information (dbdir, confdir...) ++ standalone.open() ++ ++ # restore standalone instance from backup ++ standalone.stop(timeout=10) ++ standalone.restoreFS(backup_standalone) ++ standalone.start(timeout=10) ++ ++ else: ++ # We should be here only in two conditions ++ # - This is the first time a test involve standalone instance ++ # - Something weird happened (instance/backup destroyed) ++ # so we discard everything and recreate all ++ ++ # Remove the backup. So even if we have a specific backup file ++ # (e.g backup_standalone) we clear backup that an instance may have created ++ if backup_standalone: ++ standalone.clearBackupFS() ++ ++ # Remove the instance ++ if instance_standalone: ++ standalone.delete() ++ ++ # Create the instance ++ standalone.create() ++ ++ # Used to retrieve configuration information (dbdir, confdir...) ++ standalone.open() ++ ++ # Time to create the backups ++ standalone.stop(timeout=10) ++ standalone.backupfile = standalone.backupFS() ++ standalone.start(timeout=10) ++ ++ # clear the tmp directory ++ standalone.clearTmpDir(__file__) ++ ++ # ++ # Here we have standalone instance up and running ++ # Either coming from a backup recovery ++ # or from a fresh (re)init ++ # Time to return the topology ++ return TopologyStandalone(standalone) ++ ++def _header(topology, label): ++ topology.standalone.log.info("\n\n###############################################") ++ topology.standalone.log.info("#######") ++ topology.standalone.log.info("####### %s" % label) ++ topology.standalone.log.info("#######") ++ topology.standalone.log.info("###############################################") ++ ++def _add_user(topology, type='active'): ++ if type == 'active': ++ topology.standalone.add_s(Entry((ACTIVE_USER_DN, { ++ 'objectclass': "top person inetuser".split(), ++ 'sn': ACTIVE_USER_CN, ++ 'cn': ACTIVE_USER_CN, ++ 'description': INITIAL_DESC}))) ++ elif type == 'stage': ++ topology.standalone.add_s(Entry((STAGE_USER_DN, { ++ 'objectclass': "top person inetuser".split(), ++ 'sn': STAGE_USER_CN, ++ 'cn': STAGE_USER_CN}))) ++ else: ++ topology.standalone.add_s(Entry((OUT_USER_DN, { ++ 'objectclass': "top person inetuser".split(), ++ 'sn': OUT_USER_CN, ++ 'cn': OUT_USER_CN}))) ++ ++def test_ticket47920_init(topology): ++ topology.standalone.add_s(Entry((SCOPE_IN_DN, { ++ 'objectclass': "top nscontainer".split(), ++ 'cn': SCOPE_IN_DN}))) ++ topology.standalone.add_s(Entry((ACTIVE_DN, { ++ 'objectclass': "top nscontainer".split(), ++ 'cn': ACTIVE_CN}))) ++ ++ # add users ++ _add_user(topology, 'active') ++ ++ ++def test_ticket47920_mod_readentry_ctrl(topology): ++ _header(topology, 'MOD: with a readentry control') ++ ++ topology.standalone.log.info("Check the initial value of the entry") ++ ent = topology.standalone.getEntry(ACTIVE_USER_DN, ldap.SCOPE_BASE, "(objectclass=*)", ['description']) ++ assert ent.hasAttr('description') ++ assert ent.getValue('description') == INITIAL_DESC ++ ++ pr = PostReadControl(criticality=True,attrList=['cn', 'description']) ++ _,_,_,resp_ctrls = topology.standalone.modify_ext_s(ACTIVE_USER_DN, [(ldap.MOD_REPLACE, 'description', [FINAL_DESC])], serverctrls= [pr]) ++ ++ assert resp_ctrls[0].dn == ACTIVE_USER_DN ++ assert resp_ctrls[0].entry.has_key('description') ++ assert resp_ctrls[0].entry.has_key('cn') ++ print resp_ctrls[0].entry['description'] ++ ++ ent = topology.standalone.getEntry(ACTIVE_USER_DN, ldap.SCOPE_BASE, "(objectclass=*)", ['description']) ++ assert ent.hasAttr('description') ++ assert ent.getValue('description') == FINAL_DESC ++ ++def test_ticket47920_final(topology): ++ topology.standalone.stop(timeout=10) ++ ++ ++ ++def run_isolated(): ++ ''' ++ run_isolated is used to run these test cases independently of a test scheduler (xunit, py.test..) ++ To run isolated without py.test, you need to ++ - edit this file and comment '@pytest.fixture' line before 'topology' function. ++ - set the installation prefix ++ - run this program ++ ''' ++ global installation_prefix ++ installation_prefix = None ++ ++ topo = topology(True) ++ test_ticket47920_init(topo) ++ ++ test_ticket47920_mod_readentry_ctrl(topo) ++ ++ test_ticket47920_final(topo) ++ ++if __name__ == '__main__': ++ run_isolated() ++ +diff --git a/ldap/servers/slapd/result.c b/ldap/servers/slapd/result.c +index fa1788c..92573d5 100644 +--- a/ldap/servers/slapd/result.c ++++ b/ldap/servers/slapd/result.c +@@ -2176,7 +2176,7 @@ encode_read_entry (Slapi_PBlock *pb, Slapi_Entry *e, char **attrs, int alluserat + } + + /* Start the ber encoding with the DN */ +- rc = ber_printf( ber, "{s{", slapi_entry_get_dn_const(e) ); ++ rc = ber_printf( ber, "t{s{", LDAP_RES_SEARCH_ENTRY, slapi_entry_get_dn_const(e) ); + if ( rc == -1 ) { + rc = -1; + goto cleanup; +-- +1.9.3 + diff --git a/SOURCES/0020-Ticket-47513-Refine-the-check-for-localrundir.patch b/SOURCES/0020-Ticket-47513-Refine-the-check-for-localrundir.patch deleted file mode 100644 index 3d3c979..0000000 --- a/SOURCES/0020-Ticket-47513-Refine-the-check-for-localrundir.patch +++ /dev/null @@ -1,57 +0,0 @@ -From bb542f7825922e9494d90c9279601d43442ba761 Mon Sep 17 00:00:00 2001 -From: Mark Reynolds -Date: Mon, 30 Sep 2013 12:11:34 -0400 -Subject: [PATCH 20/28] Ticket 47513 - Refine the check for @localrundir@ - -Bug Description: if @localrundir@ is not set, then the wrong value is used for tmpfiles.d - -Fix Description: Improve the checking/setting of the localrundir. set_path_attribute() is not - the correct subroutine to call as it can incorrectly add the prefix again - if @localrundir@ is not set. Created new function to just add the prefix - - only if @localrundir@ is set. - -https://fedorahosted.org/389/ticket/47513 - -Reviewed by: richm(Thanks!) -(cherry picked from commit 9e38a3be20c87141221b52ce992a713cba9eae3b) -(cherry picked from commit bb1fc9688887a4b2ba6020bab0f4b9ecbfb7c576) ---- - ldap/admin/src/scripts/DSCreate.pm.in | 15 +++++++++++++-- - 1 files changed, 13 insertions(+), 2 deletions(-) - -diff --git a/ldap/admin/src/scripts/DSCreate.pm.in b/ldap/admin/src/scripts/DSCreate.pm.in -index 3957277..fb834df 100644 ---- a/ldap/admin/src/scripts/DSCreate.pm.in -+++ b/ldap/admin/src/scripts/DSCreate.pm.in -@@ -799,6 +799,17 @@ sub set_path_attribute { - } - } - -+sub set_localrundir { -+ my $val = shift; -+ my $prefix = shift; -+ -+ if ($val) { -+ return "$prefix" . "$val"; -+ } else { -+ return ""; -+ } -+} -+ - sub setDefaults { - my $inf = shift; - # set default values -@@ -1082,8 +1093,8 @@ sub updateTmpfilesDotD { - # Type Path Mode UID GID Age - # d /var/run/user 0755 root root 10d - # we don't use age -- my $localrundir = set_path_attribute("@localrundir@", $inf->{slapd}->{localstatedir}, $inf->{General}->{prefix}); -- if( -d "$localrundir"){ -+ my $localrundir = set_localrundir("@localrundir@", $inf->{General}->{prefix}); -+ if( $localrundir != "" && -d "$localrundir"){ - $rundir = "$localrundir/@PACKAGE_NAME@"; - $lockdir = "$localrundir/lock/@PACKAGE_NAME@/slapd-$inf->{slapd}->{ServerIdentifier}"; - $parentdir = "$localrundir/lock/@PACKAGE_NAME@"; --- -1.7.1 - diff --git a/SOURCES/0020-Ticket-47897-Need-to-move-slapi_pblock_set-pb-SLAPI_.patch b/SOURCES/0020-Ticket-47897-Need-to-move-slapi_pblock_set-pb-SLAPI_.patch new file mode 100644 index 0000000..e090b64 --- /dev/null +++ b/SOURCES/0020-Ticket-47897-Need-to-move-slapi_pblock_set-pb-SLAPI_.patch @@ -0,0 +1,88 @@ +From afe5e1ac7306fd5024dcb6550dce3b0c722cbe31 Mon Sep 17 00:00:00 2001 +From: Noriko Hosoi +Date: Wed, 8 Oct 2014 10:38:02 -0700 +Subject: [PATCH 20/21] Ticket #47897 - Need to move slapi_pblock_set(pb, + SLAPI_MODRDN_EXISTING_ENTRY, original_entry->ep_entry) prior to + original_entry overwritten + +Bug Description: In the DEADLOCK retry code in ldbm_back_modrdn, +SLAPI_MODRDN_EXISTING_ENTRY in pblock is reset with the new entry +to be renamed. The location of the setting entry was inappropriate, +thus instead of the entry, but its backup is set in pblock. + +Fix Description: Moving the slapi_pblock_set(SLAPI_MODRDN_EXISTING_ +ENTRY) to the correct position. + +Plus, in the DEADLOCK retry code, original_entry is duplicated and +used for the next loop. The source of the duplication has to be +the clean entry before updated in the backend code, but in ldbm_add, +ldbm_modify, and ldbm_modrdn, the current entry was duplicated and +set to the original entry, which could have been updated in the +previous loop. This patch fixes it, as well. + +https://fedorahosted.org/389/ticket/47897 + +Reviewed by tbordaz@redhat.com (Thank you, Theirry!!) + +(cherry picked from commit 2aabb017bd4eec6d30bf00486eb027f59129cf74) +(cherry picked from commit 2393a48021944230f5ebcf5363c0095b1c4679ab) +--- + ldap/servers/slapd/back-ldbm/ldbm_add.c | 2 +- + ldap/servers/slapd/back-ldbm/ldbm_modify.c | 2 +- + ldap/servers/slapd/back-ldbm/ldbm_modrdn.c | 4 ++-- + 3 files changed, 4 insertions(+), 4 deletions(-) + +diff --git a/ldap/servers/slapd/back-ldbm/ldbm_add.c b/ldap/servers/slapd/back-ldbm/ldbm_add.c +index b74154a..75cb0dc 100644 +--- a/ldap/servers/slapd/back-ldbm/ldbm_add.c ++++ b/ldap/servers/slapd/back-ldbm/ldbm_add.c +@@ -225,7 +225,7 @@ ldbm_back_add( Slapi_PBlock *pb ) + slapi_pblock_set(pb, SLAPI_TXN, parent_txn); + /* must duplicate addingentry before returning it to cache, + * which could free the entry. */ +- if ( (tmpentry = backentry_dup( addingentry )) == NULL ) { ++ if ((tmpentry = backentry_dup(originalentry?originalentry:addingentry)) == NULL) { + ldap_result_code= LDAP_OPERATIONS_ERROR; + goto error_return; + } +diff --git a/ldap/servers/slapd/back-ldbm/ldbm_modify.c b/ldap/servers/slapd/back-ldbm/ldbm_modify.c +index d15b050..b9f754d 100644 +--- a/ldap/servers/slapd/back-ldbm/ldbm_modify.c ++++ b/ldap/servers/slapd/back-ldbm/ldbm_modify.c +@@ -521,7 +521,7 @@ ldbm_back_modify( Slapi_PBlock *pb ) + if (ec) { + /* must duplicate ec before returning it to cache, + * which could free the entry. */ +- if ( (tmpentry = backentry_dup( ec )) == NULL ) { ++ if ((tmpentry = backentry_dup(original_entry?original_entry:ec)) == NULL) { + ldap_result_code= LDAP_OPERATIONS_ERROR; + goto error_return; + } +diff --git a/ldap/servers/slapd/back-ldbm/ldbm_modrdn.c b/ldap/servers/slapd/back-ldbm/ldbm_modrdn.c +index 7bcbcee..6a4982c 100644 +--- a/ldap/servers/slapd/back-ldbm/ldbm_modrdn.c ++++ b/ldap/servers/slapd/back-ldbm/ldbm_modrdn.c +@@ -275,7 +275,7 @@ ldbm_back_modrdn( Slapi_PBlock *pb ) + orig_dn_newsuperiordn = slapi_sdn_dup(orig_dn_newsuperiordn); + /* must duplicate ec before returning it to cache, + * which could free the entry. */ +- if ( (tmpentry = backentry_dup( ec )) == NULL ) { ++ if ((tmpentry = backentry_dup(original_entry?original_entry:ec)) == NULL) { + ldap_result_code= LDAP_OPERATIONS_ERROR; + goto error_return; + } +@@ -295,10 +295,10 @@ ldbm_back_modrdn( Slapi_PBlock *pb ) + slapi_entry_free(ent); + slapi_pblock_set( pb, SLAPI_MODRDN_EXISTING_ENTRY, NULL ); + } ++ slapi_pblock_set( pb, SLAPI_MODRDN_EXISTING_ENTRY, original_entry->ep_entry ); + ec = original_entry; + original_entry = tmpentry; + tmpentry = NULL; +- slapi_pblock_set( pb, SLAPI_MODRDN_EXISTING_ENTRY, original_entry->ep_entry ); + free_modrdn_existing_entry = 0; /* owned by original_entry now */ + if (!cache_is_in_cache(&inst->inst_cache, ec)) { + /* Put the resetted entry 'ec' into the cache again. */ +-- +1.9.3 + diff --git a/SOURCES/0021-Ticket-47513-Set-localrundir-outside-of-the-with-fhs.patch b/SOURCES/0021-Ticket-47513-Set-localrundir-outside-of-the-with-fhs.patch deleted file mode 100644 index 22b757a..0000000 --- a/SOURCES/0021-Ticket-47513-Set-localrundir-outside-of-the-with-fhs.patch +++ /dev/null @@ -1,47 +0,0 @@ -From 6bf72c587d25132f8b3e9985a7d27f071163e015 Mon Sep 17 00:00:00 2001 -From: Mark Reynolds -Date: Mon, 30 Sep 2013 12:41:58 -0400 -Subject: [PATCH 21/28] Ticket 47513 - Set localrundir outside of the "with-fhs" block - -Description: Previously if you built 389 without --with-fhs, localrundir would - not be set. Set localrundir above the with-fhs section, and then - only reset as needed. - -https://fedorahosted.org/389/ticket/47531 - -Reviewed by: rmeggins(Thanks!) -(cherry picked from commit a78fa58cce3c3ba67ac3ade40430e55bf431a45e) ---- - configure | 2 ++ - configure.ac | 2 ++ - 2 files changed, 4 insertions(+), 0 deletions(-) - -diff --git a/configure b/configure -index e52aeec..064e319 100755 ---- a/configure -+++ b/configure -@@ -17952,6 +17952,8 @@ if test "$with_fhs" = "yes" -a "$with_fhs_opt" = "yes"; then - fi - - -+localrundir='/run' -+ - # installation paths - by default, we store everything - # under the prefix. The with-fhs option will use /usr, - # /etc, and /var. The with-fhs-opt option will use the -diff --git a/configure.ac b/configure.ac -index e3ca730..2376b34 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -231,6 +231,8 @@ AC_PREFIX_DEFAULT([/opt/$PACKAGE_NAME]) - - m4_include(m4/fhs.m4) - -+localrundir='/run' -+ - # installation paths - by default, we store everything - # under the prefix. The with-fhs option will use /usr, - # /etc, and /var. The with-fhs-opt option will use the --- -1.7.1 - diff --git a/SOURCES/0021-Ticket-47922-dynamically-added-macro-aci-is-not-eval.patch b/SOURCES/0021-Ticket-47922-dynamically-added-macro-aci-is-not-eval.patch new file mode 100644 index 0000000..6cbf850 --- /dev/null +++ b/SOURCES/0021-Ticket-47922-dynamically-added-macro-aci-is-not-eval.patch @@ -0,0 +1,80 @@ +From 0a1e9e51568d5caea0b97d79773dbc9f5a900ab3 Mon Sep 17 00:00:00 2001 +From: Noriko Hosoi +Date: Fri, 10 Oct 2014 11:50:13 -0700 +Subject: [PATCH 21/21] Ticket #47922 - dynamically added macro aci is not + evaluated on the fly + +Bug Description: When macro aci is dynamically added and if the aci's +macro target dn is not normalized, the following operation that requires +the aci could fail with Insufficient access since matching the target dn +and the macro target dn fails since the code expects normalized macro +target dn. + +Fix Description: Before setting the macro target dn, process the dn by +slapi_create_dn_string_case. + +https://fedorahosted.org/389/ticket/47922 + +Reviewed by lkrispen@redhat.com and rmeggins@redhat.com (Thank you, Ludwig and Rich!!) + +(cherry picked from commit 07c1bc25508a9c1e71dd8e717fd4ce455ddfeff0) +(cherry picked from commit c6b397c8466fd0859c5404c946a82f240564076e) +--- + ldap/servers/plugins/acl/aclparse.c | 19 +++++++++++++------ + ldap/servers/plugins/acl/aclutil.c | 2 +- + 2 files changed, 14 insertions(+), 7 deletions(-) + +diff --git a/ldap/servers/plugins/acl/aclparse.c b/ldap/servers/plugins/acl/aclparse.c +index ea64fa7..be86c8b 100644 +--- a/ldap/servers/plugins/acl/aclparse.c ++++ b/ldap/servers/plugins/acl/aclparse.c +@@ -1849,9 +1849,9 @@ static int + acl_check_for_target_macro( aci_t *aci_item, char *value) + { + +- char *str = NULL; ++ char *str = NULL; + +- str = strstr(value, ACL_TARGET_MACRO_DN_KEY /* ($dn) */); ++ str = PL_strcasestr(value, ACL_TARGET_MACRO_DN_KEY /* ($dn) */); + + if (str != NULL) { + char *p0 = NULL, *p1 = NULL; +@@ -1871,10 +1871,17 @@ acl_check_for_target_macro( aci_t *aci_item, char *value) + aci_item->aci_type &= ~ACI_TARGET_DN; + aci_item->aci_type |= ACI_TARGET_MACRO_DN; + aci_item->aci_macro = (aciMacro *)slapi_ch_malloc(sizeof(aciMacro)); +- aci_item->aci_macro->match_this = slapi_ch_strdup(value); +- aci_item->aci_macro->macro_ptr = strstr( aci_item->aci_macro->match_this, +- ACL_TARGET_MACRO_DN_KEY); +- return(1); ++ /* Macro dn needs to normalize. E.g., "ou=Groups, ($dN), dn=example,dn=com" */ ++ aci_item->aci_macro->match_this = slapi_create_dn_string_case("%s", value); ++ if (NULL == aci_item->aci_macro->match_this) { ++ slapi_log_error(SLAPI_LOG_FATAL, plugin_name, ++ "acl_check_for_target_macro: Error: Invalid macro target dn: \"%s\"\n", value); ++ aci_item->aci_type &= ~ACI_TARGET_MACRO_DN; ++ slapi_ch_free((void **)&aci_item->aci_macro); ++ return -1; ++ } ++ aci_item->aci_macro->macro_ptr = PL_strcasestr(aci_item->aci_macro->match_this, ACL_TARGET_MACRO_DN_KEY); ++ return(1); + } + + return(0); +diff --git a/ldap/servers/plugins/acl/aclutil.c b/ldap/servers/plugins/acl/aclutil.c +index e865a95..0720dae 100644 +--- a/ldap/servers/plugins/acl/aclutil.c ++++ b/ldap/servers/plugins/acl/aclutil.c +@@ -785,7 +785,7 @@ acl_match_macro_in_target( const char *ndn, char * match_this, + macro_prefix = slapi_ch_strdup(match_this); + + /* we know it's got a $(dn) */ +- tmp_ptr = strstr(macro_prefix, ACL_TARGET_MACRO_DN_KEY); ++ tmp_ptr = PL_strcasestr(macro_prefix, ACL_TARGET_MACRO_DN_KEY); + if (!tmp_ptr) { + LDAPDebug(LDAP_DEBUG_ACL,"acl_match_macro_in_target: " + "Target macro DN key \"%s\" not found in \"%s\".\n", +-- +1.9.3 + diff --git a/SOURCES/0022-Ticket-47354-Indexed-search-are-logged-with-notes-U-.patch b/SOURCES/0022-Ticket-47354-Indexed-search-are-logged-with-notes-U-.patch deleted file mode 100644 index d76e1a0..0000000 --- a/SOURCES/0022-Ticket-47354-Indexed-search-are-logged-with-notes-U-.patch +++ /dev/null @@ -1,425 +0,0 @@ -From 6a4c0e191049414d1ef11da03befd1601fecca51 Mon Sep 17 00:00:00 2001 -From: Thierry bordaz (tbordaz) -Date: Fri, 17 May 2013 11:48:08 +0200 -Subject: [PATCH 22/28] Ticket 47354 - Indexed search are logged with 'notes=U' in the access logs - -Bug Description: - In the access log, the flag "notes=U" is present to warn the customer that the provided filter contains not - indexed components. This flag is set independently of the fact that all entries of the database will be - evaluated against the filter. So it can not be used to determine if all the entries have been scanned. - Evaluated all entries is usually a performance hit for large database containing millions of entries. - -Fix Description: - The fix consist to introduce a new flag 'notes=A' at the top level (ldbm_back_search) only when the candidate - list is ALLID and all entries will be scanned. - The fix also contains the update of logconv.pl to take into account this change. - -https://fedorahosted.org/389/ticket/47354 - -Reviewed by: Rich Megginson and Mark Reynolds (thanks to you !) - -Platforms tested: Fedora 17 - -Flag Day: no - -Doc impact: no -(cherry picked from commit f2b5a975c2268b6e99bf27b45a7380d295807d81) -(cherry picked from commit 15c77ad6e757625cd8a57bb5cde5e8d697bf5b25) ---- - ldap/admin/src/logconv.pl | 221 ++++++++++++++++++++++------ - ldap/servers/slapd/back-ldbm/ldbm_search.c | 6 +- - ldap/servers/slapd/result.c | 3 +- - ldap/servers/slapd/slapi-plugin.h | 1 + - 4 files changed, 187 insertions(+), 44 deletions(-) - -diff --git a/ldap/admin/src/logconv.pl b/ldap/admin/src/logconv.pl -index 77088ff..8ae72da 100755 ---- a/ldap/admin/src/logconv.pl -+++ b/ldap/admin/src/logconv.pl -@@ -157,8 +157,10 @@ print "\nCommand: logconv.pl @ARGV\n\n"; - - $rootDNBindCount = 0; - $anonymousBindCount = 0; --$unindexedSrchCount = 0; --$vlvNotesCount= 0; -+$unindexedSrchCountNotesA = 0; -+$unindexedSrchCountNotesU = 0; -+$vlvNotesACount= 0; -+$vlvNotesUCount= 0; - $srchCount = 0; - $fdTaken = 0; - $fdReturned = 0; -@@ -254,11 +256,16 @@ $UNBIND_CONN = "$dataLocation/unbindconn.logconv"; - $UNBIND_OP = "$dataLocation/unbindop.logconv"; - $EXT_CONN = "$dataLocation/extconn.logconv"; - $EXT_OP = "$dataLocation/extop.logconv"; --$NOTES_ETIME = "$dataLocation/notesetime.logconv"; --$NOTES_CONN = "$dataLocation/notesconn.logconv"; --$NOTES_OP = "$dataLocation/notesop.logconv"; --$NOTES_TIME = "$dataLocation/notestime.logconv"; --$NOTES_NENTRIES = "$dataLocation/notesnentries.logconv"; -+$NOTES_A_ETIME = "$dataLocation/notesAetime.logconv"; -+$NOTES_A_CONN = "$dataLocation/notesAconn.logconv"; -+$NOTES_A_OP = "$dataLocation/notesAop.logconv"; -+$NOTES_A_TIME = "$dataLocation/notesAtime.logconv"; -+$NOTES_A_NENTRIES = "$dataLocation/notesAnentries.logconv"; -+$NOTES_U_ETIME = "$dataLocation/notesUetime.logconv"; -+$NOTES_U_CONN = "$dataLocation/notesUconn.logconv"; -+$NOTES_U_OP = "$dataLocation/notesUop.logconv"; -+$NOTES_U_TIME = "$dataLocation/notesUtime.logconv"; -+$NOTES_U_NENTRIES = "$dataLocation/notesUnentries.logconv"; - $BADPWDCONN = "$dataLocation/badpwdconn.logconv"; - $BADPWDOP = "$dataLocation/badpwdop.logconv"; - $BADPWDIP = "$dataLocation/badpwdip.logconv"; -@@ -641,20 +648,22 @@ print "Abandoned Requests: $abandonCount\n"; - print "Smart Referrals Received: $referralCount\n"; - print "\n"; - print "VLV Operations: $vlvCount\n"; --print "VLV Unindexed Searches: $vlvNotesCount\n"; -+print "VLV Unindexed Searches: $vlvNotesACount\n"; -+print "VLV Unindexed Components: $vlvNotesUCount\n"; - print "SORT Operations: $vlvSortCount\n"; - print "\n"; - print "Entire Search Base Queries: $objectclassTopCount\n"; - print "Paged Searches: $pagedSearchCount\n"; --print "Unindexed Searches: $unindexedSrchCount\n"; -+print "Unindexed Searches: $unindexedSrchCountNotesA\n"; -+print "Unindexed Components: $unindexedSrchCountNotesU\n"; - if ($verb eq "yes" || $usage =~ /u/){ -- if ($unindexedSrchCount > 0){ -+ if ($unindexedSrchCountNotesA > 0){ - %conn_hash = getHashFromFile($CONN_HASH); -- @notesConn = getArrayFromFile($NOTES_CONN); -- @notesOp = getArrayFromFile($NOTES_OP); -- @notesEtime = getArrayFromFile($NOTES_ETIME); -- @notesTime = getArrayFromFile($NOTES_TIME); -- @notesNentries = getArrayFromFile($NOTES_NENTRIES); -+ @notesConn = getArrayFromFile($NOTES_A_CONN); -+ @notesOp = getArrayFromFile($NOTES_A_OP); -+ @notesEtime = getArrayFromFile($NOTES_A_ETIME); -+ @notesTime = getArrayFromFile($NOTES_A_TIME); -+ @notesNentries = getArrayFromFile($NOTES_A_NENTRIES); - getInfoArraysFromFile($BASEINFO); - @base_val = @fileArray1; - @base_conn = @fileArray2; -@@ -720,6 +729,78 @@ if ($verb eq "yes" || $usage =~ /u/){ - undef @scope_conn; - undef @scope_op; - } -+ if ($unindexedSrchCountNotesU > 0){ -+ %conn_hash = getHashFromFile($CONN_HASH); -+ @notesConn = getArrayFromFile($NOTES_U_CONN); -+ @notesOp = getArrayFromFile($NOTES_U_OP); -+ @notesEtime = getArrayFromFile($NOTES_U_ETIME); -+ @notesTime = getArrayFromFile($NOTES_U_TIME); -+ @notesNentries = getArrayFromFile($NOTES_U_NENTRIES); -+ getInfoArraysFromFile($BASEINFO); -+ @base_val = @fileArray1; -+ @base_conn = @fileArray2; -+ @base_op = @fileArray3; -+ getInfoArraysFromFile($SCOPEINFO); -+ @scope_val = @fileArray1; -+ @scope_conn = @fileArray2; -+ @scope_op = @fileArray3; -+ getInfoArraysFromFile($FILTERINFO); -+ @filter_val = @fileArray1; -+ @filter_conn = @fileArray2; -+ @filter_op = @fileArray3; -+ -+ $notesCount = "1"; -+ for ($n = 0; $n <= $#notesEtime; $n++){ -+ @alreadyseenDN = (); -+ if($conn_hash{$notesConn[$n]} eq ""){ -+ $unindexedIp = "?"; -+ } else { -+ $unindexedIp = $conn_hash{$notesConn[$n]}; -+ } -+ print "\n Unindexed Components #".$notesCount."\n"; $notesCount++; -+ print " - Date/Time: $notesTime[$n]\n"; -+ print " - Connection Number: $notesConn[$n]\n"; -+ print " - Operation Number: $notesOp[$n]\n"; -+ print " - Etime: $notesEtime[$n]\n"; -+ print " - Nentries: $notesNentries[$n]\n"; -+ print " - IP Address: $unindexedIp\n"; -+ -+ for ($nnn = 0; $nnn < $baseCount; $nnn++){ -+ if ($notesConn[$n] eq $base_conn[$nnn] && $notesOp[$n] eq $base_op[$nnn]){ -+ print " - Search Base: $base_val[$nnn]\n"; -+ last; -+ } -+ } -+ for ($nnn = 0; $nnn < $scopeCount; $nnn++){ -+ if ($notesConn[$n] eq $scope_conn[$nnn] && $notesOp[$n] eq $scope_op[$nnn]){ -+ print " - Search Scope: $scope_val[$nnn]\n"; -+ last; -+ } -+ } -+ for ($nnn = 0; $nnn < $filterCount; $nnn++){ -+ if ($notesConn[$n] eq $filter_conn[$nnn] && $notesOp[$n] eq $filter_op[$nnn]){ -+ print " - Search Filter: $filter_val[$nnn]\n"; -+ last; -+ } -+ } -+ } -+ undef %conn_hash; -+ undef @notesConn; -+ undef @notesOp; -+ undef @notesEtime; -+ undef @notesTime; -+ undef @notesNentries; -+ undef @notesIp; -+ undef @filter_val; -+ undef @filter_conn; -+ undef @filter_op; -+ undef @base_val; -+ undef @base_conn; -+ undef @base_op; -+ undef @scope_val; -+ undef @scope_conn; -+ undef @scope_op; -+ } - } # end of unindexed search report - - print "\n"; -@@ -1276,10 +1357,14 @@ if ($usage =~ /j/i || $verb eq "yes"){ - %conncount = getCounterHashFromFile($CONNCOUNT); - print "\n----- Recommendations -----\n"; - $recCount = "1"; -- if ($unindexedSrchCount > 0){ -+ if ($unindexedSrchCountNotesA > 0){ - print "\n $recCount. You have unindexed searches, this can be caused from a search on an unindexed attribute, or your returned results exceeded the allidsthreshold. Unindexed searches are not recommended. To refuse unindexed searches, switch \'nsslapd-require-index\' to \'on\' under your database entry (e.g. cn=UserRoot,cn=ldbm database,cn=plugins,cn=config).\n"; - $recCount++; - } -+ if ($unindexedSrchCountNotesU > 0){ -+ print "\n $recCount. You have unindexed components, this can be caused from a search on an unindexed attribute, or your returned results exceeded the allidsthreshold. Unindexed components are not recommended. To refuse unindexed searches, switch \'nsslapd-require-index\' to \'on\' under your database entry (e.g. cn=UserRoot,cn=ldbm database,cn=plugins,cn=config).\n"; -+ $recCount++; -+ } - if ($conncount{"T1"} > 0){ - print "\n $recCount. You have some connections that are are being closed by the idletimeout setting. You may want to increase the idletimeout if it is set low.\n"; - $recCount++; -@@ -1773,36 +1858,71 @@ sub parseLineNormal - if (m/ RESULT err=/ && m/ notes=P/){ - $pagedSearchCount++; - } -+ if (m/ notes=A/){ -+ if ($_ =~ /conn= *([0-9]+)/i){ -+ $con = $1; -+ if ($_ =~ /op= *([0-9]+)/i){ $op = $1;} -+ } -+ for ($i=0; $i <= $vlvCount;$i++){ -+ if ($vlvconn[$i] eq $con && $vlvop[$i] eq $op){ $vlvNotesACount++; $isVlvNotes="1";} -+ } -+ if($isVlvNotes == 0){ -+ # We don't want to record vlv unindexed searches for our regular "bad" -+ # unindexed search stat, as VLV unindexed searches aren't that bad -+ $unindexedSrchCountNotesA++; -+ if($reportStats){ inc_stats('notesA',$s_stats,$m_stats); } -+ } -+ if ($usage =~ /u/ || $verb eq "yes"){ -+ if ($isVlvNnotes == 0 ){ -+ if ($_ =~ /etime= *([0-9.]+)/i ){ -+ writeFile($NOTES_A_ETIME, $1); -+ } -+ if ($_ =~ /conn= *([0-9]+)/i){ -+ writeFile($NOTES_A_CONN, $1); -+ } -+ if ($_ =~ /op= *([0-9]+)/i){ -+ writeFile($NOTES_A_OP, $1); -+ } -+ if ($_ =~ / *([0-9a-z:\/]+)/i){ -+ writeFile($NOTES_A_TIME, $1); -+ } -+ if ($_ =~ /nentries= *([0-9]+)/i ){ -+ writeFile($NOTES_A_NENTRIES, $1); -+ } -+ } -+ } -+ $isVlvNotes = 0; -+ } - if (m/ notes=U/){ - if ($_ =~ /conn= *([0-9]+)/i){ - $con = $1; - if ($_ =~ /op= *([0-9]+)/i){ $op = $1;} - } - for ($i=0; $i <= $vlvCount;$i++){ -- if ($vlvconn[$i] eq $con && $vlvop[$i] eq $op){ $vlvNotesCount++; $isVlvNotes="1";} -+ if ($vlvconn[$i] eq $con && $vlvop[$i] eq $op){ $vlvNotesUCount++; $isVlvNotes="1";} - } - if($isVlvNotes == 0){ - # We don't want to record vlv unindexed searches for our regular "bad" - # unindexed search stat, as VLV unindexed searches aren't that bad -- $unindexedSrchCount++; -- if($reportStats){ inc_stats('notesu',$s_stats,$m_stats); } -+ $unindexedSrchCountNotesU++; -+ if($reportStats){ inc_stats('notesU',$s_stats,$m_stats); } - } - if ($usage =~ /u/ || $verb eq "yes"){ - if ($isVlvNnotes == 0 ){ - if ($_ =~ /etime= *([0-9.]+)/i ){ -- writeFile($NOTES_ETIME, $1); -+ writeFile($NOTES_U_ETIME, $1); - } - if ($_ =~ /conn= *([0-9]+)/i){ -- writeFile($NOTES_CONN, $1); -+ writeFile($NOTES_U_CONN, $1); - } - if ($_ =~ /op= *([0-9]+)/i){ -- writeFile($NOTES_OP, $1); -+ writeFile($NOTES_U_OP, $1); - } - if ($_ =~ / *([0-9a-z:\/]+)/i){ -- writeFile($NOTES_TIME, $1); -+ writeFile($NOTES_U_TIME, $1); - } - if ($_ =~ /nentries= *([0-9]+)/i ){ -- writeFile($NOTES_NENTRIES, $1); -+ writeFile($NOTES_U_NENTRIES, $1); - } - } - } -@@ -2196,7 +2316,8 @@ reset_stats_block - $stats->{'bind'}=0; - $stats->{'anonbind'}=0; - $stats->{'unbind'}=0; -- $stats->{'notesu'}=0; -+ $stats->{'notesA'}=0; -+ $stats->{'notesU'}=0; - $stats->{'etime'}=0; - return; - } -@@ -2242,13 +2363,14 @@ print_stats_block - $stats->{'bind'}, - $stats->{'anonbind'}, - $stats->{'unbind'}, -- $stats->{'notesu'}, -+ $stats->{'notesA'}, -+ $stats->{'notesU'}, - $stats->{'etime'}), - "\n" ); - } else { - $stats->{'fh'}->print( - "Time,time_t,Results,Search,Add,Mod,Modrdn,Moddn,Compare,Delete,Abandon,". -- "Connections,SSL Conns,Bind,Anon Bind,Unbind,Unindexed,ElapsedTime\n" -+ "Connections,SSL Conns,Bind,Anon Bind,Unbind,Unindexed search,Unindexed component,ElapsedTime\n" - ); - } - } -@@ -2415,11 +2537,16 @@ openDataFiles - open($UNBIND_OP, ">$UNBIND_OP") or do { openFailed($!, $UNBIND_OP) }; - open($EXT_CONN, ">$EXT_CONN") or do { openFailed($!, $EXT_CONN) }; - open($EXT_OP, ">$EXT_OP") or do { openFailed($!, $EXT_OP) }; -- open($NOTES_ETIME, ">$NOTES_ETIME") or do { openFailed($!, $NOTES_ETIME) }; -- open($NOTES_CONN, ">$NOTES_CONN") or do { openFailed($!, $NOTES_CONN) }; -- open($NOTES_OP, ">$NOTES_OP") or do { openFailed($!, $NOTES_OP) }; -- open($NOTES_TIME, ">$NOTES_TIME") or do { openFailed($!, $NOTES_TIME) }; -- open($NOTES_NENTRIES, ">$NOTES_NENTRIES") or do { openFailed($!, $NOTES_NENTRIES) }; -+ open($NOTES_A_ETIME, ">$NOTES_A_ETIME") or do { openFailed($!, $NOTES_A_ETIME) }; -+ open($NOTES_A_CONN, ">$NOTES_A_CONN") or do { openFailed($!, $NOTES_A_CONN) }; -+ open($NOTES_A_OP, ">$NOTES_A_OP") or do { openFailed($!, $NOTES_A_OP) }; -+ open($NOTES_A_TIME, ">$NOTES_A_TIME") or do { openFailed($!, $NOTES_A_TIME) }; -+ open($NOTES_A_NENTRIES, ">$NOTES_A_NENTRIES") or do { openFailed($!, $NOTES_A_NENTRIES) }; -+ open($NOTES_U_ETIME, ">$NOTES_U_ETIME") or do { openFailed($!, $NOTES_U_ETIME) }; -+ open($NOTES_U_CONN, ">$NOTES_U_CONN") or do { openFailed($!, $NOTES_U_CONN) }; -+ open($NOTES_U_OP, ">$NOTES_U_OP") or do { openFailed($!, $NOTES_U_OP) }; -+ open($NOTES_U_TIME, ">$NOTES_U_TIME") or do { openFailed($!, $NOTES_U_TIME) }; -+ open($NOTES_U_NENTRIES, ">$NOTES_U_NENTRIES") or do { openFailed($!, $NOTES_U_NENTRIES) }; - open($BADPWDCONN, ">$BADPWDCONN") or do { openFailed($!, $BADPWDCONN) }; - open($BADPWDOP, ">$BADPWDOP") or do { openFailed($!, $BADPWDOP) }; - open($BADPWDIP, ">$BADPWDIP") or do { openFailed($!, $NADPWDIP) }; -@@ -2473,11 +2600,16 @@ closeDataFiles - close $UNBIND_OP; - close $EXT_CONN; - close $EXT_OP; -- close $NOTES_ETIME; -- close $NOTES_CONN; -- close $NOTES_OP; -- close $NOTES_TIME; -- close $NOTES_NENTRIES; -+ close $NOTES_A_ETIME; -+ close $NOTES_A_CONN; -+ close $NOTES_A_OP; -+ close $NOTES_A_TIME; -+ close $NOTES_A_NENTRIES; -+ close $NOTES_U_ETIME; -+ close $NOTES_U_CONN; -+ close $NOTES_U_OP; -+ close $NOTES_U_TIME; -+ close $NOTES_U_NENTRIES; - close $BADPWDCONN; - close $BADPWDOP; - close $BADPWDIP; -@@ -2531,11 +2663,16 @@ removeDataFiles - unlink $UNBIND_OP; - unlink $EXT_CONN; - unlink $EXT_OP; -- unlink $NOTES_ETIME; -- unlink $NOTES_CONN; -- unlink $NOTES_OP; -- unlink $NOTES_TIME; -- unlink $NOTES_NENTRIES; -+ unlink $NOTES_A_ETIME; -+ unlink $NOTES_A_CONN; -+ unlink $NOTES_A_OP; -+ unlink $NOTES_A_TIME; -+ unlink $NOTES_A_NENTRIES; -+ unlink $NOTES_U_ETIME; -+ unlink $NOTES_U_CONN; -+ unlink $NOTES_U_OP; -+ unlink $NOTES_U_TIME; -+ unlink $NOTES_U_NENTRIES; - unlink $BADPWDCONN; - unlink $BADPWDOP; - unlink $BADPWDIP; -diff --git a/ldap/servers/slapd/back-ldbm/ldbm_search.c b/ldap/servers/slapd/back-ldbm/ldbm_search.c -index 4b789a2..f70388f 100644 ---- a/ldap/servers/slapd/back-ldbm/ldbm_search.c -+++ b/ldap/servers/slapd/back-ldbm/ldbm_search.c -@@ -869,7 +869,7 @@ ldbm_back_search( Slapi_PBlock *pb ) - * to record that fact. - */ - if ( NULL != candidates && ALLIDS( candidates )) { -- unsigned int opnote = SLAPI_OP_NOTE_UNINDEXED; -+ unsigned int opnote; - int ri = 0; - int pr_idx = -1; - -@@ -892,6 +892,10 @@ ldbm_back_search( Slapi_PBlock *pb ) - } - } - -+ slapi_pblock_get( pb, SLAPI_OPERATION_NOTES, &opnote ); -+ opnote |= SLAPI_OP_NOTE_FULL_UNINDEXED; /* the full filter leads to an unindexed search */ -+ opnote &= ~SLAPI_OP_NOTE_UNINDEXED; /* this note is useless because FULL_UNINDEXED includes UNINDEXED */ -+ slapi_pblock_set( pb, SLAPI_OPERATION_NOTES, NULL ); - slapi_pblock_set( pb, SLAPI_OPERATION_NOTES, &opnote ); - slapi_pblock_get( pb, SLAPI_PAGED_RESULTS_INDEX, &pr_idx ); - pagedresults_set_unindexed( pb->pb_conn, pb->pb_op, pr_idx ); -diff --git a/ldap/servers/slapd/result.c b/ldap/servers/slapd/result.c -index 925be53..bdbfd77 100644 ---- a/ldap/servers/slapd/result.c -+++ b/ldap/servers/slapd/result.c -@@ -1617,7 +1617,8 @@ struct slapi_note_map { - - static struct slapi_note_map notemap[] = { - { SLAPI_OP_NOTE_UNINDEXED, "U" }, -- { SLAPI_OP_NOTE_SIMPLEPAGED, "P" } -+ { SLAPI_OP_NOTE_SIMPLEPAGED, "P" }, -+ { SLAPI_OP_NOTE_FULL_UNINDEXED, "A" } - }; - - #define SLAPI_NOTEMAP_COUNT ( sizeof(notemap) / sizeof(struct slapi_note_map)) -diff --git a/ldap/servers/slapd/slapi-plugin.h b/ldap/servers/slapd/slapi-plugin.h -index bbad2a6..2f2152b 100644 ---- a/ldap/servers/slapd/slapi-plugin.h -+++ b/ldap/servers/slapd/slapi-plugin.h -@@ -6751,6 +6751,7 @@ typedef struct slapi_plugindesc { - #define SLAPI_OPERATION_NOTES 57 - #define SLAPI_OP_NOTE_UNINDEXED 0x01 - #define SLAPI_OP_NOTE_SIMPLEPAGED 0x02 -+#define SLAPI_OP_NOTE_FULL_UNINDEXED 0x04 - - /* Allows controls to be passed before operation object is created */ - #define SLAPI_CONTROLS_ARG 58 --- -1.7.1 - diff --git a/SOURCES/0022-Ticket-47928-Disable-SSL-v3-by-default.patch b/SOURCES/0022-Ticket-47928-Disable-SSL-v3-by-default.patch new file mode 100644 index 0000000..6a13d5a --- /dev/null +++ b/SOURCES/0022-Ticket-47928-Disable-SSL-v3-by-default.patch @@ -0,0 +1,741 @@ +From 09f4f3932881ce97722480ef4f2196ed35a49ab3 Mon Sep 17 00:00:00 2001 +From: Noriko Hosoi +Date: Wed, 22 Oct 2014 14:43:26 -0700 +Subject: [PATCH] Ticket #47928 - Disable SSL v3, by default. + +Description: +There are 2 ways to specify the SSL version in in cn=encryption,cn=config. + . existing method (SSL version info) + nsSSL3: on|off + nsTLS1: on|off + . new method (SSL version range) + sslVersionMin: + sslVersionMax: + where takes "SSL3", "TLS1.0" through "TLS1.2". + +If no SSL version info nor range are set in cn=encryption,cn=config, + nsSSL3: off + nsTLS1: on + sslVersionMin is TLS1.1 + sslVersionMax is TLS1.2 + +If SSL version info and range have conflicts, a tighter setting is +chosen. For instance, the case of sslVersionMin: TLS1.1; nsTLS1: off; +nsSSL3: on, the range setting is respected. + nsSSL3: off + nsTLS1: on + sslVersionMin is TLS1.1 + sslVersionMax is TLS1.2 +"SSL alert: Configured range: min: TLS1.1, max: TLS1.2; but nsSSL3 is on +and nsTLS1 is off. Respect the configured range." is logged in the error +log. + +When cn=encryption,cn=config is searched, the SSL version info as well +as the range are retrieved from the settings in ssl.c and returned. +E.g., +dn: cn=encryption,cn=config +nsSSl2: off +nsSSL3: off +nsTLS1: on +sslVersionMin: TLS1.1 +sslVersionMax: TLS1.2 + +https://fedorahosted.org/389/ticket/47928 + +Reviewed by rmeggins@redhat.com (Thank you, Rich!!) + +(cherry picked from commit c1ecd8b659a0b8f7d84f8157cb69810c85ee26e4) +(cherry picked from commit 524d127f14d3bb666d8ac11a277c4ef60693045f) +--- + ldap/servers/slapd/fedse.c | 43 +++++- + ldap/servers/slapd/ssl.c | 360 ++++++++++++++++++++++++++++----------------- + 2 files changed, 266 insertions(+), 137 deletions(-) + +diff --git a/ldap/servers/slapd/fedse.c b/ldap/servers/slapd/fedse.c +index 1f455e5..87f45a1 100644 +--- a/ldap/servers/slapd/fedse.c ++++ b/ldap/servers/slapd/fedse.c +@@ -77,6 +77,8 @@ + + extern char ** getSupportedCiphers(); + extern char ** getEnabledCiphers(); ++extern int getSSLVersionInfo(int *ssl2, int *ssl3, int *tls1); ++extern int getSSLVersionRange(char **min, char **max); + + /* Note: These DNs are no need to be normalized */ + static const char *internal_entries[] = +@@ -108,8 +110,7 @@ static const char *internal_entries[] = + "cn:encryption\n" + "nsSSLSessionTimeout:0\n" + "nsSSLClientAuth:allowed\n" +- "nsSSL2:off\n" +- "nsSSL3:off\n", ++ "sslVersionMin:tls1.1\n", + + "dn:cn=monitor\n" + "objectclass:top\n" +@@ -1688,15 +1689,38 @@ dont_allow_that(Slapi_PBlock *pb, Slapi_Entry* entryBefore, Slapi_Entry* e, int + return SLAPI_DSE_CALLBACK_ERROR; + } + ++static void ++setEntrySSLVersion(Slapi_Entry *entry, char *sslversion, char *newval) ++{ ++ char *v = slapi_entry_attr_get_charptr(entry, sslversion); ++ ++ if (v) { ++ if (PL_strcasecmp(v, newval)) { /* did not match */ ++ struct berval bv; ++ struct berval *bvals[2]; ++ bvals[0] = &bv; ++ bvals[1] = NULL; ++ bv.bv_val = newval; ++ bv.bv_len = strlen(bv.bv_val); ++ slapi_entry_attr_replace(entry, sslversion, bvals ); ++ } ++ slapi_ch_free_string(&v); ++ } else { ++ slapi_entry_attr_set_charptr(entry, sslversion, newval); ++ } ++} ++ + /*This function takes care of the search on the attribute nssslsupportedciphers in cn=encryption,cn=config" entry. This would get the list of supported ciphers from the table in ssl.c and always return that value */ + int + search_encryption( Slapi_PBlock *pb, Slapi_Entry *entry, Slapi_Entry *entryAfter, int *returncode, char *returntext, void *arg) + { +- + struct berval *vals[2]; + struct berval val; + char ** cipherList = getSupportedCiphers(); /*Get the string array of supported ciphers here */ + char ** enabledCipherList = getEnabledCiphers(); /*Get the string array of enabled ciphers here */ ++ int ssl2, ssl3, tls1; ++ char *sslVersionMin = NULL; ++ char *sslVersionMax = NULL; + vals[0] = &val; + vals[1] = NULL; + +@@ -1720,6 +1744,19 @@ search_encryption( Slapi_PBlock *pb, Slapi_Entry *entry, Slapi_Entry *entryAfter + enabledCipherList++; + } + ++ if (!getSSLVersionInfo(&ssl2, &ssl3, &tls1)) { /* 0 if the version info is initialized */ ++ setEntrySSLVersion(entry, "nsSSL2", ssl2?"on":"off"); ++ setEntrySSLVersion(entry, "nsSSL3", ssl3?"on":"off"); ++ setEntrySSLVersion(entry, "nsTLS1", tls1?"on":"off"); ++ } ++ ++ if (!getSSLVersionRange(&sslVersionMin, &sslVersionMax)) { /* 0 if the range is initialized or supported */ ++ setEntrySSLVersion(entry, "sslVersionMin", sslVersionMin); ++ setEntrySSLVersion(entry, "sslVersionMax", sslVersionMax); ++ } ++ slapi_ch_free_string(&sslVersionMin); ++ slapi_ch_free_string(&sslVersionMax); ++ + return SLAPI_DSE_CALLBACK_OK; + } + +diff --git a/ldap/servers/slapd/ssl.c b/ldap/servers/slapd/ssl.c +index 5f9916b..26ef251 100644 +--- a/ldap/servers/slapd/ssl.c ++++ b/ldap/servers/slapd/ssl.c +@@ -81,17 +81,25 @@ + #endif + + #if NSS_VMAJOR * 100 + NSS_VMINOR >= 315 ++/* TLS1.2 is defined in RFC5246. */ + #define NSS_TLS12 1 + #elif NSS_VMAJOR * 100 + NSS_VMINOR >= 314 ++/* TLS1.1 is defined in RFC4346. */ + #define NSS_TLS11 1 + #else ++/* ++ * TLS1.0 is defined in RFC2246. ++ * Close to SSL 3.0. ++ */ + #define NSS_TLS10 1 + #endif + + extern char* slapd_SSL3ciphers; + extern symbol_t supported_ciphers[]; + #if !defined(NSS_TLS10) /* NSS_TLS11 or newer */ +-static SSLVersionRange enabledNSSVersions; ++static SSLVersionRange enabledNSSVersions; ++static SSLVersionRange slapdNSSVersions; ++static char *getNSSVersion_str(PRUint16 vnum); + #endif + + /* dongle_file_name is set in slapd_nss_init when we set the path for the +@@ -238,6 +246,20 @@ static lookup_cipher _lookup_cipher[] = { + {NULL, NULL} + }; + ++/* Supported SSL versions */ ++/* nsSSL2: on -- we don't allow this any more. */ ++PRBool enableSSL2 = PR_FALSE; ++/* ++ * nsSSL3: on -- disable SSLv3 by default. ++ * Corresonding to SSL_LIBRARY_VERSION_3_0 and SSL_LIBRARY_VERSION_TLS_1_0 ++ */ ++PRBool enableSSL3 = PR_FALSE; ++/* ++ * nsTLS1: on -- enable TLS1 by default. ++ * Corresonding to SSL_LIBRARY_VERSION_TLS_1_1 and greater. ++ */ ++PRBool enableTLS1 = PR_TRUE; ++ + static void + slapd_SSL_report(int degree, char *fmt, va_list args) + { +@@ -372,6 +394,36 @@ cipher_check_fips(int idx, char ***suplist, char ***unsuplist) + return rc; + } + ++int ++getSSLVersionInfo(int *ssl2, int *ssl3, int *tls1) ++{ ++ if (!slapd_ssl_listener_is_initialized()) { ++ return -1; ++ } ++ *ssl2 = enableSSL2; ++ *ssl3 = enableSSL3; ++ *tls1 = enableTLS1; ++ return 0; ++} ++ ++int ++getSSLVersionRange(char **min, char **max) ++{ ++ if (!slapd_ssl_listener_is_initialized()) { ++ return -1; ++ } ++ if ((NULL == min) || (NULL == max)) { ++ return -1; ++ } ++#if defined(NSS_TLS10) ++ return -1; /* not supported */ ++#else /* NSS_TLS11 or newer */ ++ *min = slapi_ch_strdup(getNSSVersion_str(slapdNSSVersions.min)); ++ *max = slapi_ch_strdup(getNSSVersion_str(slapdNSSVersions.max)); ++ return 0; ++#endif ++} ++ + static void + _conf_init_ciphers() + { +@@ -834,89 +886,132 @@ getNSSVersion_str(PRUint16 vnum) + return vstr; + } + +-/* restrict SSLVersionRange with the existing SSL config params (nsSSL3, nsTLS1) */ ++#define SSLVGreater(x, y) (((x) > (y)) ? (x) : (y)) ++ ++/* ++ * Check the SSLVersionRange and the old style config params (nsSSL3, nsTLS1) . ++ * If there are conflicts, choose the secure setting. ++ */ + static void +-restrict_SSLVersionRange(SSLVersionRange *sslversion, PRBool enableSSL3, PRBool enableTLS1) ++restrict_SSLVersionRange(void) + { +- int rc = 0; ++ if (slapdNSSVersions.min > slapdNSSVersions.max) { ++ slapd_SSL_warn("Invalid configured SSL range: min: %s, max: %s; " ++ "Resetting the max to the supported max SSL version: %s.", ++ getNSSVersion_str(slapdNSSVersions.min), ++ getNSSVersion_str(slapdNSSVersions.max), ++ getNSSVersion_str(enabledNSSVersions.max)); ++ slapdNSSVersions.max = enabledNSSVersions.max; ++ } + if (enableSSL3) { ++ slapd_SSL_warn("Found unsecure configuration: nsSSL3: on; " ++ "We strongly recommend to disable nsSSL3 in %s.", configDN); + if (enableTLS1) { +- /* no restriction */ +- ; ++ if (slapdNSSVersions.min > SSL_LIBRARY_VERSION_TLS_1_0) { ++ slapd_SSL_warn("Configured range: min: %s, max: %s; " ++ "but both nsSSL3 and nsTLS1 are on. " ++ "Respect the supported range.", ++ getNSSVersion_str(slapdNSSVersions.min), ++ getNSSVersion_str(slapdNSSVersions.max)); ++ enableSSL3 = PR_FALSE; ++ } ++ if (slapdNSSVersions.max < SSL_LIBRARY_VERSION_TLS_1_1) { ++ slapd_SSL_warn("Configured range: min: %s, max: %s; " ++ "but both nsSSL3 and nsTLS1 are on. " ++ "Resetting the max to the supported max SSL version: %s.", ++ getNSSVersion_str(slapdNSSVersions.min), ++ getNSSVersion_str(slapdNSSVersions.max), ++ getNSSVersion_str(enabledNSSVersions.max)); ++ slapdNSSVersions.max = enabledNSSVersions.max; ++ } + } else { +- if (enabledNSSVersions.min > SSL_LIBRARY_VERSION_3_0) { +- slapd_SSL_warn("Security Initialization: " +- "Supported range: min: %s, max: %s; " +- "but the SSL configuration of the server disables nsTLS1. " +- "Ignoring nsTLS1: off\n", ++ /* nsTLS1 is explicitly set to off. */ ++ if (enabledNSSVersions.min > SSL_LIBRARY_VERSION_TLS_1_0) { ++ slapd_SSL_warn("Supported range: min: %s, max: %s; " ++ "but nsSSL3 is on and nsTLS1 is off. " ++ "Respect the supported range.", + getNSSVersion_str(enabledNSSVersions.min), + getNSSVersion_str(enabledNSSVersions.max)); +- rc = 1; +- } else if (sslversion->min > SSL_LIBRARY_VERSION_3_0) { +- slapd_SSL_warn("Security Initialization: " +- "Configured range: min: %s, max: %s; " +- "but the SSL configuration of the server disables nsTLS1. " +- "Ignoring nsTLS1: off\n", +- getNSSVersion_str(sslversion->min), +- getNSSVersion_str(sslversion->max)); +- rc = 1; +- } else if (sslversion->max < SSL_LIBRARY_VERSION_3_0) { +- slapd_SSL_warn("Security Initialization: " +- "Configured range: min: %s, max: %s; " +- "but the SSL configuration of the server enabled nsSSL3. " +- "Ignoring max: %s\n", +- getNSSVersion_str(sslversion->min), +- getNSSVersion_str(sslversion->max), +- getNSSVersion_str(sslversion->max)); +- sslversion->min = SSL_LIBRARY_VERSION_3_0; /* don't enable SSL2 */ +- sslversion->max = SSL_LIBRARY_VERSION_3_0; +- rc = 1; ++ slapdNSSVersions.min = SSLVGreater(slapdNSSVersions.min, enabledNSSVersions.min); ++ enableSSL3 = PR_FALSE; ++ enableTLS1 = PR_TRUE; ++ } else if (slapdNSSVersions.min > SSL_LIBRARY_VERSION_TLS_1_0) { ++ slapd_SSL_warn("Configured range: min: %s, max: %s; " ++ "but nsSSL3 is on and nsTLS1 is off. " ++ "Respect the configured range.", ++ getNSSVersion_str(slapdNSSVersions.min), ++ getNSSVersion_str(slapdNSSVersions.max)); ++ enableSSL3 = PR_FALSE; ++ enableTLS1 = PR_TRUE; ++ } else if (slapdNSSVersions.max < SSL_LIBRARY_VERSION_TLS_1_1) { ++ slapd_SSL_warn("Too low configured range: min: %s, max: %s; " ++ "Resetting the range to: min: %s, max: %s.", ++ getNSSVersion_str(slapdNSSVersions.min), ++ getNSSVersion_str(slapdNSSVersions.max), ++ getNSSVersion_str(SSL_LIBRARY_VERSION_TLS_1_0), ++ getNSSVersion_str(SSL_LIBRARY_VERSION_TLS_1_0)); ++ slapdNSSVersions.min = SSL_LIBRARY_VERSION_TLS_1_0; ++ slapdNSSVersions.max = SSL_LIBRARY_VERSION_TLS_1_0; + } else { +- sslversion->min = SSL_LIBRARY_VERSION_3_0; /* don't enable SSL2 */ +- sslversion->max = SSL_LIBRARY_VERSION_3_0; ++ /* ++ * slapdNSSVersions.min <= SSL_LIBRARY_VERSION_TLS_1_0 && ++ * slapdNSSVersions.max >= SSL_LIBRARY_VERSION_TLS_1_1 ++ */ ++ slapd_SSL_warn("Configured range: min: %s, max: %s; " ++ "but nsSSL3 is on and nsTLS1 is off. " ++ "Respect the configured range.", ++ getNSSVersion_str(slapdNSSVersions.min), ++ getNSSVersion_str(slapdNSSVersions.max)); ++ enableTLS1 = PR_TRUE; + } + } + } else { + if (enableTLS1) { +- if (enabledNSSVersions.max < SSL_LIBRARY_VERSION_TLS_1_0) { +- slapd_SSL_warn("Security Initialization: " +- "Supported range: min: %s, max: %s; " +- "but the SSL configuration of the server disables nsSSL3. ", +- "Ignoring nsSSL3: off\n", ++ if (enabledNSSVersions.max < SSL_LIBRARY_VERSION_TLS_1_1) { ++ /* TLS1 is on, but TLS1 is not supported by NSS. */ ++ slapd_SSL_warn("Supported range: min: %s, max: %s; " ++ "Setting the version range based upon the supported range.", + getNSSVersion_str(enabledNSSVersions.min), + getNSSVersion_str(enabledNSSVersions.max)); +- sslversion->min = SSL_LIBRARY_VERSION_3_0; /* don't enable SSL2 */ +- sslversion->max = SSL_LIBRARY_VERSION_3_0; +- rc = 1; +- } else if (sslversion->max < SSL_LIBRARY_VERSION_TLS_1_0) { +- slapd_SSL_warn("Security Initialization: " +- "Configured range: min: %s, max: %s; " +- "but the SSL configuration of the server disables nsSSL3. " +- "Ignoring nsSSL3: off\n", +- getNSSVersion_str(sslversion->min), +- getNSSVersion_str(sslversion->max)); +- sslversion->min = SSL_LIBRARY_VERSION_3_0; /* don't enable SSL2 */ +- sslversion->max = SSL_LIBRARY_VERSION_3_0; +- rc = 1; +- } else if (sslversion->min < SSL_LIBRARY_VERSION_TLS_1_0) { +- sslversion->min = SSL_LIBRARY_VERSION_TLS_1_0; ++ slapdNSSVersions.max = enabledNSSVersions.max; ++ slapdNSSVersions.min = enabledNSSVersions.min; ++ enableSSL3 = PR_TRUE; ++ enableTLS1 = PR_FALSE; ++ } else if ((slapdNSSVersions.max < SSL_LIBRARY_VERSION_TLS_1_1) || ++ (slapdNSSVersions.min < SSL_LIBRARY_VERSION_TLS_1_1)) { ++ slapdNSSVersions.max = enabledNSSVersions.max; ++ slapdNSSVersions.min = SSLVGreater(SSL_LIBRARY_VERSION_TLS_1_1, enabledNSSVersions.min); ++ slapd_SSL_warn("Default SSL Version settings; " ++ "Configuring the version range as min: %s, max: %s; ", ++ getNSSVersion_str(slapdNSSVersions.min), ++ getNSSVersion_str(slapdNSSVersions.max)); ++ } else { ++ /* ++ * slapdNSSVersions.min >= SSL_LIBRARY_VERSION_TLS_1_1 && ++ * slapdNSSVersions.max >= SSL_LIBRARY_VERSION_TLS_1_1 ++ */ ++ ; + } + } else { +- slapd_SSL_warn("Security Initialization: " +- "Supported range: min: %s, max: %s; " +- "but the SSL configuration of the server disables nsSSL3 and nsTLS1. " +- "Ignoring nsSSL3: off and nsTLS1: off\n", +- getNSSVersion_str(enabledNSSVersions.min), +- getNSSVersion_str(enabledNSSVersions.max)); +- rc = 1; ++ slapd_SSL_warn("Supported range: min: %s, max: %s; " ++ "Respect the configured range.", ++ getNSSVersion_str(enabledNSSVersions.min), ++ getNSSVersion_str(enabledNSSVersions.max)); ++ /* nsTLS1 is explicitly set to off. */ ++ if (slapdNSSVersions.min > SSL_LIBRARY_VERSION_TLS_1_0) { ++ enableTLS1 = PR_TRUE; ++ } else if (slapdNSSVersions.max < SSL_LIBRARY_VERSION_TLS_1_1) { ++ enableSSL3 = PR_TRUE; ++ } else { ++ /* ++ * slapdNSSVersions.min <= SSL_LIBRARY_VERSION_TLS_1_0 && ++ * slapdNSSVersions.max >= SSL_LIBRARY_VERSION_TLS_1_1 ++ */ ++ enableSSL3 = PR_TRUE; ++ enableTLS1 = PR_TRUE; ++ } + } + } +- if (0 == rc) { +- slapi_log_error(SLAPI_LOG_FATAL, "SSL Initialization", +- "SSL version range: min: %s, max: %s\n", +- getNSSVersion_str(sslversion->min), +- getNSSVersion_str(sslversion->max)); +- } + } + #endif + +@@ -949,7 +1044,7 @@ slapd_nss_init(int init_ssl, int config_available) + SSL_VersionRangeGetSupported(ssl_variant_stream, &enabledNSSVersions); + + slapi_log_error(SLAPI_LOG_CONFIG, "SSL Initialization", +- "supported range: min: %s, max: %s\n", ++ "supported range by NSS: min: %s, max: %s\n", + getNSSVersion_str(enabledNSSVersions.min), + getNSSVersion_str(enabledNSSVersions.max)); + #endif +@@ -1120,11 +1215,9 @@ slapd_ssl_init() + PRErrorCode errorCode; + char ** family_list; + char *val = NULL; +- char cipher_string[1024]; + int rv = 0; + PK11SlotInfo *slot; + Slapi_Entry *entry = NULL; +- int allowweakcipher = CIPHER_SET_DEFAULTWEAKCIPHER; + + /* Get general information */ + +@@ -1162,23 +1255,6 @@ slapd_ssl_init() + freeConfigEntry( &entry ); + return -1; + } +- +- val = slapi_entry_attr_get_charptr(entry, "allowWeakCipher"); +- if (val) { +- if (!PL_strcasecmp(val, "off") || !PL_strcasecmp(val, "false") || +- !PL_strcmp(val, "0") || !PL_strcasecmp(val, "no")) { +- allowweakcipher = CIPHER_SET_DISALLOWWEAKCIPHER; +- } else if (!PL_strcasecmp(val, "on") || !PL_strcasecmp(val, "true") || +- !PL_strcmp(val, "1") || !PL_strcasecmp(val, "yes")) { +- allowweakcipher = CIPHER_SET_ALLOWWEAKCIPHER; +- } else { +- slapd_SSL_warn("The value of allowWeakCipher \"%s\" in " +- "cn=encryption,cn=config is invalid. " +- "Ignoring it and set it to default.", val); +- } +- } +- slapi_ch_free((void **) &val); +- + if ((family_list = getChildren(configDN))) { + char **family; + char *token; +@@ -1252,22 +1328,6 @@ slapd_ssl_init() + /* ugaston- Cipher preferences must be set before any sslSocket is created + * for such sockets to take preferences into account. + */ +- +- /* Step Three.5: Set SSL cipher preferences */ +- *cipher_string = 0; +- if(ciphers && (*ciphers) && PL_strcmp(ciphers, "blank")) +- PL_strncpyz(cipher_string, ciphers, sizeof(cipher_string)); +- slapi_ch_free((void **) &ciphers); +- +- if ( NULL != (val = _conf_setciphers(cipher_string, allowweakcipher)) ) { +- errorCode = PR_GetError(); +- slapd_SSL_warn("Security Initialization: Failed to set SSL cipher " +- "preference information: %s (" SLAPI_COMPONENT_NAME_NSPR " error %d - %s)", +- val, errorCode, slapd_pr_strerror(errorCode)); +- rv = 3; +- slapi_ch_free((void **) &val); +- } +- + freeConfigEntry( &entry ); + + /* Introduce a way of knowing whether slapd_ssl_init has +@@ -1308,7 +1368,7 @@ set_NSS_version(char *val, PRUint16 *rval, int ismin) + if (enabledNSSVersions.min > SSL_LIBRARY_VERSION_2) { + slapd_SSL_warn("Security Initialization: The value of sslVersionMin " + "\"%s\" is lower than the supported version; " +- "the default value \"%s\" is used.\n", ++ "the default value \"%s\" is used.", + val, getNSSVersion_str(enabledNSSVersions.min)); + (*rval) = enabledNSSVersions.min; + } else { +@@ -1319,7 +1379,7 @@ set_NSS_version(char *val, PRUint16 *rval, int ismin) + /* never happens */ + slapd_SSL_warn("Security Initialization: The value of sslVersionMax " + "\"%s\" is higher than the supported version; " +- "the default value \"%s\" is used.\n", ++ "the default value \"%s\" is used.", + val, getNSSVersion_str(enabledNSSVersions.max)); + (*rval) = enabledNSSVersions.max; + } else { +@@ -1331,7 +1391,7 @@ set_NSS_version(char *val, PRUint16 *rval, int ismin) + if (enabledNSSVersions.min > SSL_LIBRARY_VERSION_3_0) { + slapd_SSL_warn("Security Initialization: The value of sslVersionMin " + "\"%s\" is lower than the supported version; " +- "the default value \"%s\" is used.\n", ++ "the default value \"%s\" is used.", + val, getNSSVersion_str(enabledNSSVersions.min)); + (*rval) = enabledNSSVersions.min; + } else { +@@ -1342,7 +1402,7 @@ set_NSS_version(char *val, PRUint16 *rval, int ismin) + /* never happens */ + slapd_SSL_warn("Security Initialization: The value of sslVersionMax " + "\"%s\" is higher than the supported version; " +- "the default value \"%s\" is used.\n", ++ "the default value \"%s\" is used.", + val, getNSSVersion_str(enabledNSSVersions.max)); + (*rval) = enabledNSSVersions.max; + } else { +@@ -1352,12 +1412,12 @@ set_NSS_version(char *val, PRUint16 *rval, int ismin) + } else { + if (ismin) { + slapd_SSL_warn("Security Initialization: The value of sslVersionMin " +- "\"%s\" is invalid; the default value \"%s\" is used.\n", ++ "\"%s\" is invalid; the default value \"%s\" is used.", + val, getNSSVersion_str(enabledNSSVersions.min)); + (*rval) = enabledNSSVersions.min; + } else { + slapd_SSL_warn("Security Initialization: The value of sslVersionMax " +- "\"%s\" is invalid; the default value \"%s\" is used.\n", ++ "\"%s\" is invalid; the default value \"%s\" is used.", + val, getNSSVersion_str(enabledNSSVersions.max)); + (*rval) = enabledNSSVersions.max; + } +@@ -1371,7 +1431,7 @@ set_NSS_version(char *val, PRUint16 *rval, int ismin) + if (enabledNSSVersions.min > SSL_LIBRARY_VERSION_TLS_1_0) { + slapd_SSL_warn("Security Initialization: The value of sslVersionMin " + "\"%s\" is lower than the supported version; " +- "the default value \"%s\" is used.\n", ++ "the default value \"%s\" is used.", + val, getNSSVersion_str(enabledNSSVersions.min)); + (*rval) = enabledNSSVersions.min; + } else { +@@ -1382,7 +1442,7 @@ set_NSS_version(char *val, PRUint16 *rval, int ismin) + /* never happens */ + slapd_SSL_warn("Security Initialization: The value of sslVersionMax " + "\"%s\" is higher than the supported version; " +- "the default value \"%s\" is used.\n", ++ "the default value \"%s\" is used.", + val, getNSSVersion_str(enabledNSSVersions.max)); + (*rval) = enabledNSSVersions.max; + } else { +@@ -1394,7 +1454,7 @@ set_NSS_version(char *val, PRUint16 *rval, int ismin) + if (enabledNSSVersions.min > SSL_LIBRARY_VERSION_TLS_1_1) { + slapd_SSL_warn("Security Initialization: The value of sslVersionMin " + "\"%s\" is lower than the supported version; " +- "the default value \"%s\" is used.\n", ++ "the default value \"%s\" is used.", + val, getNSSVersion_str(enabledNSSVersions.min)); + (*rval) = enabledNSSVersions.min; + } else { +@@ -1405,7 +1465,7 @@ set_NSS_version(char *val, PRUint16 *rval, int ismin) + /* never happens */ + slapd_SSL_warn("Security Initialization: The value of sslVersionMax " + "\"%s\" is higher than the supported version; " +- "the default value \"%s\" is used.\n", ++ "the default value \"%s\" is used.", + val, getNSSVersion_str(enabledNSSVersions.max)); + (*rval) = enabledNSSVersions.max; + } else { +@@ -1418,7 +1478,7 @@ set_NSS_version(char *val, PRUint16 *rval, int ismin) + if (enabledNSSVersions.min > SSL_LIBRARY_VERSION_TLS_1_2) { + slapd_SSL_warn("Security Initialization: The value of sslVersionMin " + "\"%s\" is lower than the supported version; " +- "the default value \"%s\" is used.\n", ++ "the default value \"%s\" is used.", + val, getNSSVersion_str(enabledNSSVersions.min)); + (*rval) = enabledNSSVersions.min; + } else { +@@ -1429,7 +1489,7 @@ set_NSS_version(char *val, PRUint16 *rval, int ismin) + /* never happens */ + slapd_SSL_warn("Security Initialization: The value of sslVersionMax " + "\"%s\" is higher than the supported version; " +- "the default value \"%s\" is used.\n", ++ "the default value \"%s\" is used.", + val, getNSSVersion_str(enabledNSSVersions.max)); + (*rval) = enabledNSSVersions.max; + } else { +@@ -1441,13 +1501,13 @@ set_NSS_version(char *val, PRUint16 *rval, int ismin) + if (ismin) { + slapd_SSL_warn("Security Initialization: The value of sslVersionMin " + "\"%s\" is out of the range of the supported version; " +- "the default value \"%s\" is used.\n", ++ "the default value \"%s\" is used.", + val, getNSSVersion_str(enabledNSSVersions.min)); + (*rval) = enabledNSSVersions.min; + } else { + slapd_SSL_warn("Security Initialization: The value of sslVersionMax " + "\"%s\" is out of the range of the supported version; " +- "the default value \"%s\" is used.\n", ++ "the default value \"%s\" is used.", + val, getNSSVersion_str(enabledNSSVersions.min)); + (*rval) = enabledNSSVersions.max; + } +@@ -1455,12 +1515,12 @@ set_NSS_version(char *val, PRUint16 *rval, int ismin) + } else { + if (ismin) { + slapd_SSL_warn("Security Initialization: The value of sslVersionMin " +- "\"%s\" is invalid; the default value \"%s\" is used.\n", ++ "\"%s\" is invalid; the default value \"%s\" is used.", + val, getNSSVersion_str(enabledNSSVersions.min)); + (*rval) = enabledNSSVersions.min; + } else { + slapd_SSL_warn("Security Initialization: The value of sslVersionMax " +- "\"%s\" is invalid; the default value \"%s\" is used.\n", ++ "\"%s\" is invalid; the default value \"%s\" is used.", + val, getNSSVersion_str(enabledNSSVersions.min)); + (*rval) = enabledNSSVersions.max; + } +@@ -1490,14 +1550,13 @@ slapd_ssl_init2(PRFileDesc **fd, int startTLS) + int slapd_SSLclientAuth; + char* tmpDir; + Slapi_Entry *e = NULL; +- PRBool enableSSL2 = PR_FALSE; +- PRBool enableSSL3 = PR_TRUE; +- PRBool enableTLS1 = PR_TRUE; + PRBool fipsMode = PR_FALSE; + #if !defined(NSS_TLS10) /* NSS_TLS11 or newer */ + PRUint16 NSSVersionMin = enabledNSSVersions.min; + PRUint16 NSSVersionMax = enabledNSSVersions.max; + #endif ++ char cipher_string[1024]; ++ int allowweakcipher = CIPHER_SET_DEFAULTWEAKCIPHER; + + /* turn off the PKCS11 pin interactive mode */ + #ifndef _WIN32 +@@ -1839,6 +1898,8 @@ slapd_ssl_init2(PRFileDesc **fd, int startTLS) + } else { + enableTLS1 = slapi_entry_attr_get_bool( e, "nsTLS1" ); + } ++ } else if (enabledNSSVersions.max > SSL_LIBRARY_VERSION_TLS_1_0) { ++ enableTLS1 = PR_TRUE; /* If available, enable TLS1 */ + } + slapi_ch_free_string( &val ); + #if !defined(NSS_TLS10) /* NSS_TLS11 or newer */ +@@ -1853,14 +1914,12 @@ slapd_ssl_init2(PRFileDesc **fd, int startTLS) + } + slapi_ch_free_string( &val ); + if (NSSVersionMin > NSSVersionMax) { +- slapd_SSL_warn("Security Initialization: The min value of NSS version range " +- "\"%s\" is greater than the max value \"%s\"; " +- "the default range \"%s\" - \"%s\" is used.\n", ++ slapd_SSL_warn("The min value of NSS version range \"%s\" is greater than the max value \"%s\".", + getNSSVersion_str(NSSVersionMin), +- getNSSVersion_str(NSSVersionMax), +- getNSSVersion_str(enabledNSSVersions.min), ++ getNSSVersion_str(NSSVersionMax)); ++ slapd_SSL_warn("Reset the max \"%s\" to supported max \"%s\".", ++ getNSSVersion_str(NSSVersionMax), + getNSSVersion_str(enabledNSSVersions.max)); +- NSSVersionMin = enabledNSSVersions.min; + NSSVersionMax = enabledNSSVersions.max; + } + #endif +@@ -1868,18 +1927,21 @@ slapd_ssl_init2(PRFileDesc **fd, int startTLS) + #if !defined(NSS_TLS10) /* NSS_TLS11 or newer */ + if (NSSVersionMin > 0) { + /* Use new NSS API SSL_VersionRangeSet (NSS3.14 or newer) */ +- SSLVersionRange myNSSVersions; +- myNSSVersions.min = NSSVersionMin; +- myNSSVersions.max = NSSVersionMax; +- restrict_SSLVersionRange(&myNSSVersions, enableSSL3, enableTLS1); +- sslStatus = SSL_VersionRangeSet(pr_sock, &myNSSVersions); ++ slapdNSSVersions.min = NSSVersionMin; ++ slapdNSSVersions.max = NSSVersionMax; ++ restrict_SSLVersionRange(); ++ slapi_log_error(SLAPI_LOG_FATAL, "SSL Initialization", ++ "Configured SSL version range: min: %s, max: %s\n", ++ getNSSVersion_str(slapdNSSVersions.min), ++ getNSSVersion_str(slapdNSSVersions.max)); ++ sslStatus = SSL_VersionRangeSet(pr_sock, &slapdNSSVersions); + if (sslStatus == SECSuccess) { + /* Set the restricted value to the cn=encryption entry */ + } else { + slapd_SSL_error("SSL Initialization 2: " + "Failed to set SSL range: min: %s, max: %s\n", +- getNSSVersion_str(myNSSVersions.min), +- getNSSVersion_str(myNSSVersions.max)); ++ getNSSVersion_str(slapdNSSVersions.min), ++ getNSSVersion_str(slapdNSSVersions.max)); + } + } else { + #endif +@@ -1904,6 +1966,36 @@ slapd_ssl_init2(PRFileDesc **fd, int startTLS) + #if !defined(NSS_TLS10) /* NSS_TLS11 or newer */ + } + #endif ++ val = slapi_entry_attr_get_charptr(e, "allowWeakCipher"); ++ if (val) { ++ if (!PL_strcasecmp(val, "off") || !PL_strcasecmp(val, "false") || ++ !PL_strcmp(val, "0") || !PL_strcasecmp(val, "no")) { ++ allowweakcipher = CIPHER_SET_DISALLOWWEAKCIPHER; ++ } else if (!PL_strcasecmp(val, "on") || !PL_strcasecmp(val, "true") || ++ !PL_strcmp(val, "1") || !PL_strcasecmp(val, "yes")) { ++ allowweakcipher = CIPHER_SET_ALLOWWEAKCIPHER; ++ } else { ++ slapd_SSL_warn("The value of allowWeakCipher \"%s\" in %s is invalid.", ++ "Ignoring it and set it to default.", val, configDN); ++ } ++ } ++ slapi_ch_free((void **) &val); ++ ++ /* Set SSL cipher preferences */ ++ *cipher_string = 0; ++ if(ciphers && (*ciphers) && PL_strcmp(ciphers, "blank")) ++ PL_strncpyz(cipher_string, ciphers, sizeof(cipher_string)); ++ slapi_ch_free((void **) &ciphers); ++ ++ if ( NULL != (val = _conf_setciphers(cipher_string, allowweakcipher)) ) { ++ errorCode = PR_GetError(); ++ slapd_SSL_warn("Security Initialization: Failed to set SSL cipher " ++ "preference information: %s (" SLAPI_COMPONENT_NAME_NSPR " error %d - %s)", ++ val, errorCode, slapd_pr_strerror(errorCode)); ++ rv = 3; ++ slapi_ch_free((void **) &val); ++ } ++ + freeConfigEntry( &e ); + + if(( slapd_SSLclientAuth = config_get_SSLclientAuth()) != SLAPD_SSLCLIENTAUTH_OFF ) { +-- +1.9.3 + diff --git a/SOURCES/0023-Ticket-47387-improve-logconv.pl-performance-with-lar.patch b/SOURCES/0023-Ticket-47387-improve-logconv.pl-performance-with-lar.patch deleted file mode 100644 index c65d531..0000000 --- a/SOURCES/0023-Ticket-47387-improve-logconv.pl-performance-with-lar.patch +++ /dev/null @@ -1,2651 +0,0 @@ -From d3d8ec37e369edb8605a2c535f4ce4192c4e5514 Mon Sep 17 00:00:00 2001 -From: Rich Megginson -Date: Mon, 10 Jun 2013 20:04:20 -0600 -Subject: [PATCH 23/28] Ticket #47387 - improve logconv.pl performance with large access logs - -https://fedorahosted.org/389/ticket/47387 -Reviewed by: mreynolds (Thanks!) -Branch: master -Fix Description: The primary fix is to use tied hashes and arrays backed by -DB_File database files. Hashes use DB_HASH and arrays use DB_RECNO. These -fixes cut down the time by a factor of 10 or more, and considerably reduce -the size of the disk files. There is still room for optimization as given -by the Devel::NYTProf package, but this should at least give us acceptable -performance. -I also did some perl "linting" - running with use warnings and use strict - -which revealed a lot of code which was cleaned up. -Platforms tested: RHEL6 x86_64 -Flag Day: no -Doc impact: no -(cherry picked from commit 8e35cc8b418bc46fbeb28f4378d24f9c2cab0353) ---- - ldap/admin/src/logconv.pl | 1648 ++++++++++++++++++--------------------------- - 1 files changed, 664 insertions(+), 984 deletions(-) - -diff --git a/ldap/admin/src/logconv.pl b/ldap/admin/src/logconv.pl -index 8ae72da..b628d03 100755 ---- a/ldap/admin/src/logconv.pl -+++ b/ldap/admin/src/logconv.pl -@@ -43,9 +43,14 @@ - # - # Check for usage - # -+use strict; -+use warnings; -+use warnings 'untie'; - use Time::Local; - use IO::File; - use Getopt::Long; -+use DB_File; -+use sigtrap qw(die normal-signals); - - Getopt::Long::Configure ("bundling"); - Getopt::Long::Configure ("permute"); -@@ -60,19 +65,43 @@ if ($#ARGV < 0){; - # # - ####################################### - --$file_count = 0; --$arg_count = 0; --$logversion = "7.0"; --$sizeCount = "20"; --$startFlag = 0; --$startTime = 0; --$endFlag = 0; --$endTime = 0; --$reportStats = ""; --$dataLocation = "/tmp"; --$startTLSoid = "1.3.6.1.4.1.1466.20037"; --$s_stats = new_stats_block( ); --$m_stats = new_stats_block( ); -+my $file_count = 0; -+my $arg_count = 0; -+my $logversion = "7.0"; -+my $sizeCount = "20"; -+my $startFlag = 0; -+my $startTime = 0; -+my $endFlag = 0; -+my $endTime = 0; -+my $reportStats = ""; -+my $dataLocation = "/tmp"; -+my $startTLSoid = "1.3.6.1.4.1.1466.20037"; -+my $s_stats = new_stats_block( ); -+my $m_stats = new_stats_block( ); -+my $verb = "no"; -+my @excludeIP; -+my $xi = 0; -+my $bindReportDN; -+my $usage = ""; -+my @latency; -+my @openConnection; -+my @errorCode; -+my @errtext; -+my @errornum; -+my @errornum2; -+my $ds6x = "false"; -+my $connCodeCount = 0; -+my %connList; -+my %bindReport; -+my @vlvconn; -+my @vlvop; -+my @start_time_of_connection; -+my @end_time_of_connection; -+my @fds; -+my $fdds = 0; -+my $reportBinds = "no"; -+my $rootDN = ""; -+my $needCleanup = 0; - - GetOptions( - 'd|rootDN=s' => \$rootDN, -@@ -129,6 +158,7 @@ if($rootDN eq ""){ - # - # get the logs - # -+my @files = (); - while($arg_count <= $#ARGV){ - $files[$file_count] = $ARGV[$arg_count]; - $file_count++; -@@ -155,127 +185,93 @@ if ($sizeCount eq "all"){$sizeCount = "100000";} - print "\nAccess Log Analyzer $logversion\n"; - print "\nCommand: logconv.pl @ARGV\n\n"; - --$rootDNBindCount = 0; --$anonymousBindCount = 0; --$unindexedSrchCountNotesA = 0; --$unindexedSrchCountNotesU = 0; --$vlvNotesACount= 0; --$vlvNotesUCount= 0; --$srchCount = 0; --$fdTaken = 0; --$fdReturned = 0; --$highestFdTaken = 0; --$unbindCount = 0; --$cmpCount = 0; --$modCount = 0; --$delCount = 0; --$addCount = 0; --$modrdnCount = 0; --$abandonCount = 0; --$extopCount = 0; --$vlvCount = 0; --$errorCount = 0; --$proxiedAuthCount = 0; --$serverRestartCount = 0; --$resourceUnavailCount = 0; --$brokenPipeCount = 0; --$v2BindCount = 0; --$v3BindCount = 0; --$vlvSortCount = 0; --$connResetByPeerCount = 0; --$isVlvNotes = 0; --$successCount = 0; --$sslCount = 0; --$sslClientBindCount = 0; --$sslClientFailedCount = 0; --$objectclassTopCount= 0; --$pagedSearchCount = 0; --$bindCount = 0; --$filterCount = 0; --$baseCount = 0; --$scopeCount = 0; --$allOps = 0; --$allResults = 0; --$badPwdCount = 0; --$saslBindCount = 0; --$internalOpCount = 0; --$entryOpCount = 0; --$referralCount = 0; --$anyAttrs = 0; --$persistentSrchCount = 0; --$maxBerSizeCount = 0; --$connectionCount = 0; --$timerange = 0; --$simConnection = 0; --$maxsimConnection = 0; --$firstFile = 1; --$elapsedDays = 0; --$logCount = 0; --$startTLSCount = 0; --$ldapiCount = 0; --$autobindCount = 0; --$limit = 25000; # number of lines processed to trigger output -- --# hash files --$ATTR = "$dataLocation/attr.logconv"; --$RC = "$dataLocation/rc.logconv"; --$SRC = "$dataLocation/src.logconv"; --$RSRC = "$dataLocation/rsrc.logconv"; --$EXCOUNT = "$dataLocation/excount.logconv"; --$CONN_HASH = "$dataLocation/conn_hash.logconv"; --$IP_HASH = "$dataLocation/ip_hash.logconv"; --$CONNCOUNT = "$dataLocation/conncount.logconv"; --$NENTRIES = "$dataLocation/nentries.logconv"; --$FILTER = "$dataLocation/filter.logconv"; --$BASE = "$dataLocation/base.logconv"; --$DS6XBADPWD = "$dataLocation/ds6xbadpwd.logconv"; --$SASLMECH = "$dataLocation/saslmech.logconv"; --$BINDLIST = "$dataLocation/bindlist.logconv"; --$ETIME = "$dataLocation/etime.logconv"; --$OID = "$dataLocation/oid.logconv"; -- --# array files --$SRCH_CONN = "$dataLocation/srchconn.logconv"; --$SRCH_OP = "$dataLocation/srchop.logconv"; --$DEL_CONN = "$dataLocation/delconn.logconv"; --$DEL_OP = "$dataLocation/delop.logconv"; --$MOD_CONN = "$dataLocation/modconn.logconv"; --$MOD_OP = "$dataLocation/modop.logconv"; --$ADD_CONN = "$dataLocation/addconn.logconv"; --$ADD_OP = "$dataLocation/addop.logconv"; --$MODRDN_CONN = "$dataLocation/modrdnconn.logconv"; --$MODRDN_OP = "$dataLocation/modrdnop.logconv"; --$CMP_CONN = "$dataLocation/cmpconn.logconv"; --$CMP_OP = "$dataLocation/cmpop.logconv"; --$TARGET_CONN = "$dataLocation/targetconn.logconv"; --$TARGET_OP = "$dataLocation/targetop.logconv"; --$MSGID = "$dataLocation/msgid.logconv"; --$BIND_CONN = "$dataLocation/bindconn.logconv"; --$BIND_OP = "$dataLocation/bindop.logconv"; --$UNBIND_CONN = "$dataLocation/unbindconn.logconv"; --$UNBIND_OP = "$dataLocation/unbindop.logconv"; --$EXT_CONN = "$dataLocation/extconn.logconv"; --$EXT_OP = "$dataLocation/extop.logconv"; --$NOTES_A_ETIME = "$dataLocation/notesAetime.logconv"; --$NOTES_A_CONN = "$dataLocation/notesAconn.logconv"; --$NOTES_A_OP = "$dataLocation/notesAop.logconv"; --$NOTES_A_TIME = "$dataLocation/notesAtime.logconv"; --$NOTES_A_NENTRIES = "$dataLocation/notesAnentries.logconv"; --$NOTES_U_ETIME = "$dataLocation/notesUetime.logconv"; --$NOTES_U_CONN = "$dataLocation/notesUconn.logconv"; --$NOTES_U_OP = "$dataLocation/notesUop.logconv"; --$NOTES_U_TIME = "$dataLocation/notesUtime.logconv"; --$NOTES_U_NENTRIES = "$dataLocation/notesUnentries.logconv"; --$BADPWDCONN = "$dataLocation/badpwdconn.logconv"; --$BADPWDOP = "$dataLocation/badpwdop.logconv"; --$BADPWDIP = "$dataLocation/badpwdip.logconv"; -- --# info files --$BINDINFO = "$dataLocation/bindinfo.logconv"; --$BASEINFO = "$dataLocation/baseinfo.logconv"; --$FILTERINFO = "$dataLocation/filterinfo.logconv"; --$SCOPEINFO = "$dataLocation/scopeinfo.logconv"; -- -+my $rootDNBindCount = 0; -+my $anonymousBindCount = 0; -+my $unindexedSrchCountNotesA = 0; -+my $unindexedSrchCountNotesU = 0; -+my $vlvNotesACount= 0; -+my $vlvNotesUCount= 0; -+my $srchCount = 0; -+my $fdTaken = 0; -+my $fdReturned = 0; -+my $highestFdTaken = 0; -+my $unbindCount = 0; -+my $cmpCount = 0; -+my $modCount = 0; -+my $delCount = 0; -+my $addCount = 0; -+my $modrdnCount = 0; -+my $abandonCount = 0; -+my $extopCount = 0; -+my $vlvCount = 0; -+my $errorCount = 0; -+my $proxiedAuthCount = 0; -+my $serverRestartCount = 0; -+my $resourceUnavailCount = 0; -+my $brokenPipeCount = 0; -+my $v2BindCount = 0; -+my $v3BindCount = 0; -+my $vlvSortCount = 0; -+my $connResetByPeerCount = 0; -+my $isVlvNotes = 0; -+my $successCount = 0; -+my $sslCount = 0; -+my $sslClientBindCount = 0; -+my $sslClientFailedCount = 0; -+my $objectclassTopCount= 0; -+my $pagedSearchCount = 0; -+my $bindCount = 0; -+my $filterCount = 0; -+my $baseCount = 0; -+my $scopeCount = 0; -+my $allOps = 0; -+my $allResults = 0; -+my $badPwdCount = 0; -+my $saslBindCount = 0; -+my $internalOpCount = 0; -+my $entryOpCount = 0; -+my $referralCount = 0; -+my $anyAttrs = 0; -+my $persistentSrchCount = 0; -+my $maxBerSizeCount = 0; -+my $connectionCount = 0; -+my $timerange = 0; -+my $simConnection = 0; -+my $maxsimConnection = 0; -+my $firstFile = 1; -+my $elapsedDays = 0; -+my $logCount = 0; -+my $startTLSCount = 0; -+my $ldapiCount = 0; -+my $autobindCount = 0; -+my $limit = 25000; # number of lines processed to trigger output -+ -+my @removefiles = (); -+ -+my @conncodes = qw(A1 B1 B4 T1 T2 B2 B3 R1 P1 P2 U1); -+my %conn = (); -+map {$conn{$_} = $_} @conncodes; -+ -+# hash db-backed hashes -+my @hashnames = qw(attr rc src rsrc excount conn_hash ip_hash conncount nentries -+ filter base ds6xbadpwd saslmech bindlist etime oid); -+# need per connection code ip address counts - so use a hash table -+# for each connection code - key is ip, val is count -+push @hashnames, @conncodes; -+my $hashes = openHashFiles($dataLocation, @hashnames); -+ -+# recno db-backed arrays/lists -+my @arraynames = qw(srchconn srchop delconn delop modconn modop addconn addop modrdnconn modrdnop -+ cmpconn cmpop targetconn targetop msgid bindconn bindop binddn unbindconn unbindop -+ extconn extop notesAetime notesAconn notesAop notesAtime notesAnentries -+ notesUetime notesUconn notesUop notesUtime notesUnentries badpwdconn -+ badpwdop badpwdip baseval baseconn baseop scopeval scopeconn scopeop -+ filterval filterconn filterop); -+my $arrays = openArrayFiles($dataLocation, @arraynames); -+ -+$needCleanup = 1; -+ -+my @err; - $err[0] = "Successful Operations\n"; - $err[1] = "Operations Error(s)\n"; - $err[2] = "Protocal Errors\n"; -@@ -338,19 +334,7 @@ $err[95] = "More Results To Return\n"; - $err[96] = "Client Loop\n"; - $err[97] = "Referral Limit Exceeded\n"; - -- --$conn{"A1"} = "A1"; --$conn{"B1"} = "B1"; --$conn{"B4"} = "B4"; --$conn{"T1"} = "T1"; --$conn{"T2"} = "T2"; --$conn{"B2"} = "B2"; --$conn{"B3"} = "B3"; --$conn{"R1"} = "R1"; --$conn{"P1"} = "P1"; --$conn{"P2"} = "P2"; --$conn{"U1"} = "U1"; -- -+my %connmsg; - $connmsg{"A1"} = "Client Aborted Connections"; - $connmsg{"B1"} = "Bad Ber Tag Encountered"; - $connmsg{"B4"} = "Server failed to flush data (response) back to Client"; -@@ -363,7 +347,7 @@ $connmsg{"P1"} = "Plugin"; - $connmsg{"P2"} = "Poll"; - $connmsg{"U1"} = "Cleanly Closed Connections"; - --%monthname = ( -+my %monthname = ( - "Jan" => 0, - "Feb" => 1, - "Mar" => 2, -@@ -379,7 +363,17 @@ $connmsg{"U1"} = "Cleanly Closed Connections"; - - ); - --openDataFiles(); -+my $linesProcessed; -+my $lineBlockCount; -+my $cursize = 0; -+sub statusreport { -+ if ($lineBlockCount > $limit) { -+ my $curpos = tell(LOG); -+ my $percent = $curpos/$cursize*100.0; -+ print sprintf "%10d Lines Processed %12d of %12d bytes (%.3f%%)\n",--$linesProcessed,$curpos,$cursize,$percent; -+ $lineBlockCount = 0; -+ } -+} - - ########################################## - # # -@@ -394,6 +388,7 @@ print "Processing $file_count Access Log(s)...\n\n"; - #print "Filename\t\t\t Total Lines\n"; - #print "--------------------------------------------------\n"; - -+my $skipFirstFile = 0; - if ($file_count > 1 && $files[0] =~ /\/access$/){ - $files[$file_count] = $files[0]; - $file_count++; -@@ -401,25 +396,30 @@ if ($file_count > 1 && $files[0] =~ /\/access$/){ - } - $logCount = $file_count; - --for ($count=0; $count < $file_count; $count++){ -+my $logline; -+my $totalLineCount = 0; -+ -+for (my $count=0; $count < $file_count; $count++){ - # we moved access to the end of the list, so if its the first file skip it - if($file_count > 1 && $count == 0 && $skipFirstFile == 1){ - next; - } -- $logsize = `wc -l $files[$count]`; -- $logsize =~ /([0-9]+)/; - $linesProcessed = 0; $lineBlockCount = 0; - $logCount--; -+ my $logCountStr; - if($logCount < 10 ){ - # add a zero for formatting purposes - $logCountStr = "0" . $logCount; - } else { - $logCountStr = $logCount; - } -- print sprintf "[%s] %-30s\tlines: %7s\n",$logCountStr, $files[$count], $1; -+ my ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$atime,$mtime,$ctime,$blksize,$blocks); -+ ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$cursize, -+ $atime,$mtime,$ctime,$blksize,$blocks) = stat($files[$count]); -+ print sprintf "[%s] %-30s\tsize (bytes): %12s\n",$logCountStr, $files[$count], $cursize; - - open(LOG,"$files[$count]") or do { openFailed($!, $files[$count]) }; -- $firstline = "yes"; -+ my $firstline = "yes"; - while(){ - unless ($endFlag) { - if ($firstline eq "yes"){ -@@ -442,7 +442,7 @@ for ($count=0; $count < $file_count; $count++){ - print_stats_block( $s_stats ); - print_stats_block( $m_stats ); - $totalLineCount = $totalLineCount + $linesProcessed; -- if($linesProcessed => $limit){print sprintf " %10s Lines Processed\n\n",--$linesProcessed;} -+ statusreport(); - } - - print "\n\nTotal Log Lines Analysed: " . ($totalLineCount - 1) . "\n"; -@@ -457,9 +457,11 @@ $allOps = $srchCount + $modCount + $addCount + $cmpCount + $delCount + $modrdnCo - - # if we are using startTime & endTime then we need to clean it up for our processing - -+my $start; - if($startTime){ - if ($start =~ / *([0-9a-z:\/]+)/i){$start=$1;} - } -+my $end; - if($endTime){ - if ($end =~ / *([0-9a-z:\/]+)/i){$end =$1;} - } -@@ -468,8 +470,10 @@ if($endTime){ - # Get the start time in seconds - # - --$logStart = $start; -- -+my $logStart = $start; -+my $logDate; -+my @dateComps; -+my ($timeMonth, $timeDay, $timeYear, $dateTotal); - if ($logStart =~ / *([0-9A-Z\/]+)/i ){ - $logDate = $1; - @dateComps = split /\//, $logDate; -@@ -481,6 +485,9 @@ if ($logStart =~ / *([0-9A-Z\/]+)/i ){ - $dateTotal = $timeMonth + $timeDay + $timeYear; - } - -+my $logTime; -+my @timeComps; -+my ($timeHour, $timeMinute, $timeSecond, $timeTotal); - if ($logStart =~ / *(:[0-9:]+)/i ){ - $logTime = $1; - @timeComps = split /:/, $logTime; -@@ -491,14 +498,14 @@ if ($logStart =~ / *(:[0-9:]+)/i ){ - $timeTotal = $timeHour + $timeMinute + $timeSecond; - } - --$startTotal = $timeTotal + $dateTotal; -+my $startTotal = $timeTotal + $dateTotal; - - # - # Get the end time in seconds - # - --$logEnd = $end; -- -+my $logEnd = $end; -+my ($endDay, $endMonth, $endYear, $endTotal); - if ($logEnd =~ / *([0-9A-Z\/]+)/i ){ - $logDate = $1; - @dateComps = split /\//, $logDate; -@@ -506,10 +513,11 @@ if ($logEnd =~ / *([0-9A-Z\/]+)/i ){ - $endDay = $dateComps[0] *3600 * 24; - $endMonth = 1 + $monthname{$dateComps[1]}; - $endMonth = $endMonth * 3600 * 24 * 30; -- $endYear = $endTotal + $dateComps[2] *365 * 3600 * 24 ; -+ $endYear = $dateComps[2] *365 * 3600 * 24 ; - $dateTotal = $endDay + $endMonth + $endYear; - } - -+my ($endHour, $endMinute, $endSecond); - if ($logEnd =~ / *(:[0-9:]+)/i ){ - $logTime = $1; - @timeComps = split /:/, $logTime; -@@ -525,8 +533,8 @@ $endTotal = $timeTotal + $dateTotal; - # - # Tally the numbers - # --$totalTimeInSecs = $endTotal - $startTotal; --$remainingTimeInSecs = $totalTimeInSecs; -+my $totalTimeInSecs = $endTotal - $startTotal; -+my $remainingTimeInSecs = $totalTimeInSecs; - - # - # Calculate the elapsed time -@@ -540,33 +548,21 @@ while(($remainingTimeInSecs - 86400) > 0){ - } - - # hours -+my $elapsedHours = 0; - while(($remainingTimeInSecs - 3600) > 0){ - $elapsedHours++; - $remainingTimeInSecs = $remainingTimeInSecs - 3600; - } - - # minutes -+my $elapsedMinutes = 0; - while($remainingTimeInSecs - 60 > 0){ - $elapsedMinutes++; - $remainingTimeInSecs = $remainingTimeInSecs - 60; - } - - # seconds --$elapsedSeconds = $remainingTimeInSecs; -- --# Initialize empty values --if($elapsedHours eq ""){ -- $elapsedHours = "0"; --} --if($elapsedMinutes eq ""){ -- $elapsedMinutes = "0"; --} --if($elapsedSeconds eq ""){ -- $elapsedSeconds = "0"; --} -- --&closeDataFiles(); -- -+my $elapsedSeconds = $remainingTimeInSecs; - - ##################################### - # # -@@ -605,20 +601,21 @@ print " - LDAPI Connections: $ldapiCount\n"; - print "Peak Concurrent Connections: $maxsimConnection\n"; - print "Total Operations: $allOps\n"; - print "Total Results: $allResults\n"; -+my ($perf, $tmp); - if ($allOps ne "0"){ -- print sprintf "Overall Performance: %.1f%\n\n" , ($perf = ($tmp = ($allResults / $allOps)*100) > 100 ? 100.0 : $tmp) ; -+ print sprintf "Overall Performance: %.1f%%\n\n" , ($perf = ($tmp = ($allResults / $allOps)*100) > 100 ? 100.0 : $tmp) ; - } - else { - print "Overall Performance: No Operations to evaluate\n\n"; - } - --$searchStat = sprintf "(%.2f/sec) (%.2f/min)\n",($srchCount / $totalTimeInSecs), $srchCount / ($totalTimeInSecs/60); --$modStat = sprintf "(%.2f/sec) (%.2f/min)\n",$modCount / $totalTimeInSecs, $modCount/($totalTimeInSecs/60); --$addStat = sprintf "(%.2f/sec) (%.2f/min)\n",$addCount/$totalTimeInSecs, $addCount/($totalTimeInSecs/60); --$deleteStat = sprintf "(%.2f/sec) (%.2f/min)\n",$delCount/$totalTimeInSecs, $delCount/($totalTimeInSecs/60); --$modrdnStat = sprintf "(%.2f/sec) (%.2f/min)\n",$modrdnCount/$totalTimeInSecs, $modrdnCount/($totalTimeInSecs/60); --$compareStat = sprintf "(%.2f/sec) (%.2f/min)\n",$cmpCount/$totalTimeInSecs, $cmpCount/($totalTimeInSecs/60); --$bindCountStat = sprintf "(%.2f/sec) (%.2f/min)\n",$bindCount/$totalTimeInSecs, $bindCount/($totalTimeInSecs/60); -+my $searchStat = sprintf "(%.2f/sec) (%.2f/min)\n",($srchCount / $totalTimeInSecs), $srchCount / ($totalTimeInSecs/60); -+my $modStat = sprintf "(%.2f/sec) (%.2f/min)\n",$modCount / $totalTimeInSecs, $modCount/($totalTimeInSecs/60); -+my $addStat = sprintf "(%.2f/sec) (%.2f/min)\n",$addCount/$totalTimeInSecs, $addCount/($totalTimeInSecs/60); -+my $deleteStat = sprintf "(%.2f/sec) (%.2f/min)\n",$delCount/$totalTimeInSecs, $delCount/($totalTimeInSecs/60); -+my $modrdnStat = sprintf "(%.2f/sec) (%.2f/min)\n",$modrdnCount/$totalTimeInSecs, $modrdnCount/($totalTimeInSecs/60); -+my $compareStat = sprintf "(%.2f/sec) (%.2f/min)\n",$cmpCount/$totalTimeInSecs, $cmpCount/($totalTimeInSecs/60); -+my $bindCountStat = sprintf "(%.2f/sec) (%.2f/min)\n",$bindCount/$totalTimeInSecs, $bindCount/($totalTimeInSecs/60); - - format STDOUT = - Searches: @<<<<<<<<<<<< @<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< -@@ -658,148 +655,110 @@ print "Unindexed Searches: $unindexedSrchCountNotesA\n"; - print "Unindexed Components: $unindexedSrchCountNotesU\n"; - if ($verb eq "yes" || $usage =~ /u/){ - if ($unindexedSrchCountNotesA > 0){ -- %conn_hash = getHashFromFile($CONN_HASH); -- @notesConn = getArrayFromFile($NOTES_A_CONN); -- @notesOp = getArrayFromFile($NOTES_A_OP); -- @notesEtime = getArrayFromFile($NOTES_A_ETIME); -- @notesTime = getArrayFromFile($NOTES_A_TIME); -- @notesNentries = getArrayFromFile($NOTES_A_NENTRIES); -- getInfoArraysFromFile($BASEINFO); -- @base_val = @fileArray1; -- @base_conn = @fileArray2; -- @base_op = @fileArray3; -- getInfoArraysFromFile($SCOPEINFO); -- @scope_val = @fileArray1; -- @scope_conn = @fileArray2; -- @scope_op = @fileArray3; -- getInfoArraysFromFile($FILTERINFO); -- @filter_val = @fileArray1; -- @filter_conn = @fileArray2; -- @filter_op = @fileArray3; -- -- $notesCount = "1"; -- for ($n = 0; $n <= $#notesEtime; $n++){ -- @alreadyseenDN = (); -- if($conn_hash{$notesConn[$n]} eq ""){ -+ my $conn_hash = $hashes->{conn_hash}; -+ my $notesConn = $arrays->{notesAconn}; -+ my $notesOp = $arrays->{notesAop}; -+ my $notesEtime = $arrays->{notesAetime}; -+ my $notesTime = $arrays->{notesAtime}; -+ my $notesNentries = $arrays->{notesAnentries}; -+ my $base_val = $arrays->{baseval}; -+ my $base_conn = $arrays->{baseconn}; -+ my $base_op = $arrays->{baseop}; -+ my $scope_val = $arrays->{scopeval}; -+ my $scope_conn = $arrays->{scopeconn}; -+ my $scope_op = $arrays->{scopeop}; -+ my $filter_val = $arrays->{filterval}; -+ my $filter_conn = $arrays->{filterconn}; -+ my $filter_op = $arrays->{filterop}; -+ -+ my $notesCount = "1"; -+ my $unindexedIp; -+ for (my $n = 0; $n <= scalar(@{$notesEtime}); $n++){ -+ if($conn_hash->{$notesConn->[$n]} eq ""){ - $unindexedIp = "?"; - } else { -- $unindexedIp = $conn_hash{$notesConn[$n]}; -+ $unindexedIp = $conn_hash->{$notesConn->[$n]}; - } - print "\n Unindexed Search #".$notesCount."\n"; $notesCount++; -- print " - Date/Time: $notesTime[$n]\n"; -- print " - Connection Number: $notesConn[$n]\n"; -- print " - Operation Number: $notesOp[$n]\n"; -- print " - Etime: $notesEtime[$n]\n"; -- print " - Nentries: $notesNentries[$n]\n"; -+ print " - Date/Time: $notesTime->[$n]\n"; -+ print " - Connection Number: $notesConn->[$n]\n"; -+ print " - Operation Number: $notesOp->[$n]\n"; -+ print " - Etime: $notesEtime->[$n]\n"; -+ print " - Nentries: $notesNentries->[$n]\n"; - print " - IP Address: $unindexedIp\n"; - -- for ($nnn = 0; $nnn < $baseCount; $nnn++){ -- if ($notesConn[$n] eq $base_conn[$nnn] && $notesOp[$n] eq $base_op[$nnn]){ -- print " - Search Base: $base_val[$nnn]\n"; -+ for (my $nnn = 0; $nnn < $baseCount; $nnn++){ -+ if ($notesConn->[$n] eq $base_conn->[$nnn] && $notesOp->[$n] eq $base_op->[$nnn]){ -+ print " - Search Base: $base_val->[$nnn]\n"; - last; - } - } -- for ($nnn = 0; $nnn < $scopeCount; $nnn++){ -- if ($notesConn[$n] eq $scope_conn[$nnn] && $notesOp[$n] eq $scope_op[$nnn]){ -- print " - Search Scope: $scope_val[$nnn]\n"; -+ for (my $nnn = 0; $nnn < $scopeCount; $nnn++){ -+ if ($notesConn->[$n] eq $scope_conn->[$nnn] && $notesOp->[$n] eq $scope_op->[$nnn]){ -+ print " - Search Scope: $scope_val->[$nnn]\n"; - last; - } - } -- for ($nnn = 0; $nnn < $filterCount; $nnn++){ -- if ($notesConn[$n] eq $filter_conn[$nnn] && $notesOp[$n] eq $filter_op[$nnn]){ -- print " - Search Filter: $filter_val[$nnn]\n"; -+ for (my $nnn = 0; $nnn < $filterCount; $nnn++){ -+ if ($notesConn->[$n] eq $filter_conn->[$nnn] && $notesOp->[$n] eq $filter_op->[$nnn]){ -+ print " - Search Filter: $filter_val->[$nnn]\n"; - last; - } - } - } -- undef %conn_hash; -- undef @notesConn; -- undef @notesOp; -- undef @notesEtime; -- undef @notesTime; -- undef @notesNentries; -- undef @notesIp; -- undef @filter_val; -- undef @filter_conn; -- undef @filter_op; -- undef @base_val; -- undef @base_conn; -- undef @base_op; -- undef @scope_val; -- undef @scope_conn; -- undef @scope_op; - } - if ($unindexedSrchCountNotesU > 0){ -- %conn_hash = getHashFromFile($CONN_HASH); -- @notesConn = getArrayFromFile($NOTES_U_CONN); -- @notesOp = getArrayFromFile($NOTES_U_OP); -- @notesEtime = getArrayFromFile($NOTES_U_ETIME); -- @notesTime = getArrayFromFile($NOTES_U_TIME); -- @notesNentries = getArrayFromFile($NOTES_U_NENTRIES); -- getInfoArraysFromFile($BASEINFO); -- @base_val = @fileArray1; -- @base_conn = @fileArray2; -- @base_op = @fileArray3; -- getInfoArraysFromFile($SCOPEINFO); -- @scope_val = @fileArray1; -- @scope_conn = @fileArray2; -- @scope_op = @fileArray3; -- getInfoArraysFromFile($FILTERINFO); -- @filter_val = @fileArray1; -- @filter_conn = @fileArray2; -- @filter_op = @fileArray3; -- -- $notesCount = "1"; -- for ($n = 0; $n <= $#notesEtime; $n++){ -- @alreadyseenDN = (); -- if($conn_hash{$notesConn[$n]} eq ""){ -+ my $conn_hash = $hashes->{conn_hash}; -+ my $notesConn = $arrays->{notesUconn}; -+ my $notesOp = $arrays->{notesUop}; -+ my $notesEtime = $arrays->{notesUetime}; -+ my $notesTime = $arrays->{notesUtime}; -+ my $notesNentries = $arrays->{notesUnentries}; -+ my $base_val = $arrays->{baseval}; -+ my $base_conn = $arrays->{baseconn}; -+ my $base_op = $arrays->{baseop}; -+ my $scope_val = $arrays->{scopeval}; -+ my $scope_conn = $arrays->{scopeconn}; -+ my $scope_op = $arrays->{scopeop}; -+ my $filter_val = $arrays->{filterval}; -+ my $filter_conn = $arrays->{filterconn}; -+ my $filter_op = $arrays->{filterop}; -+ -+ my $notesCount = "1"; -+ my $unindexedIp; -+ for (my $n = 0; $n <= scalar(@{$notesEtime}); $n++){ -+ if($conn_hash->{$notesConn->[$n]} eq ""){ - $unindexedIp = "?"; - } else { -- $unindexedIp = $conn_hash{$notesConn[$n]}; -+ $unindexedIp = $conn_hash->{$notesConn->[$n]}; - } - print "\n Unindexed Components #".$notesCount."\n"; $notesCount++; -- print " - Date/Time: $notesTime[$n]\n"; -- print " - Connection Number: $notesConn[$n]\n"; -- print " - Operation Number: $notesOp[$n]\n"; -- print " - Etime: $notesEtime[$n]\n"; -- print " - Nentries: $notesNentries[$n]\n"; -+ print " - Date/Time: $notesTime->[$n]\n"; -+ print " - Connection Number: $notesConn->[$n]\n"; -+ print " - Operation Number: $notesOp->[$n]\n"; -+ print " - Etime: $notesEtime->[$n]\n"; -+ print " - Nentries: $notesNentries->[$n]\n"; - print " - IP Address: $unindexedIp\n"; - -- for ($nnn = 0; $nnn < $baseCount; $nnn++){ -- if ($notesConn[$n] eq $base_conn[$nnn] && $notesOp[$n] eq $base_op[$nnn]){ -- print " - Search Base: $base_val[$nnn]\n"; -+ for (my $nnn = 0; $nnn < $baseCount; $nnn++){ -+ if ($notesConn->[$n] eq $base_conn->[$nnn] && $notesOp->[$n] eq $base_op->[$nnn]){ -+ print " - Search Base: $base_val->[$nnn]\n"; - last; - } - } -- for ($nnn = 0; $nnn < $scopeCount; $nnn++){ -- if ($notesConn[$n] eq $scope_conn[$nnn] && $notesOp[$n] eq $scope_op[$nnn]){ -- print " - Search Scope: $scope_val[$nnn]\n"; -+ for (my $nnn = 0; $nnn < $scopeCount; $nnn++){ -+ if ($notesConn->[$n] eq $scope_conn->[$nnn] && $notesOp->[$n] eq $scope_op->[$nnn]){ -+ print " - Search Scope: $scope_val->[$nnn]\n"; - last; - } - } -- for ($nnn = 0; $nnn < $filterCount; $nnn++){ -- if ($notesConn[$n] eq $filter_conn[$nnn] && $notesOp[$n] eq $filter_op[$nnn]){ -- print " - Search Filter: $filter_val[$nnn]\n"; -+ for (my $nnn = 0; $nnn < $filterCount; $nnn++){ -+ if ($notesConn->[$n] eq $filter_conn->[$nnn] && $notesOp->[$n] eq $filter_op->[$nnn]){ -+ print " - Search Filter: $filter_val->[$nnn]\n"; - last; - } - } - } -- undef %conn_hash; -- undef @notesConn; -- undef @notesOp; -- undef @notesEtime; -- undef @notesTime; -- undef @notesNentries; -- undef @notesIp; -- undef @filter_val; -- undef @filter_conn; -- undef @filter_op; -- undef @base_val; -- undef @base_conn; -- undef @base_op; -- undef @scope_val; -- undef @scope_conn; -- undef @scope_op; - } - } # end of unindexed search report - -@@ -809,10 +768,12 @@ print "FDs Returned: $fdReturned\n"; - print "Highest FD Taken: $highestFdTaken\n\n"; - print "Broken Pipes: $brokenPipeCount\n"; - if ($brokenPipeCount > 0){ -- foreach $key (sort { $rc{$b} <=> $rc{$a} } keys %rc) { -- if ($rc{$key} > 0){ -+ my $rc = $hashes->{rc}; -+ my @etext; -+ foreach my $key (sort { $rc->{$b} <=> $rc->{$a} } keys %{$rc}) { -+ if ($rc->{$key} > 0){ - if ($conn{$key} eq ""){$conn{$key} = "**Unknown**";} -- push @etext, sprintf " - %-4s (%2s) %-40s\n",$rc{$key},$conn{$key},$connmsg{$key -+ push @etext, sprintf " - %-4s (%2s) %-40s\n",$rc->{$key},$conn{$key},$connmsg{$key - }; - } - } -@@ -822,10 +783,12 @@ if ($brokenPipeCount > 0){ - - print "Connections Reset By Peer: $connResetByPeerCount\n"; - if ($connResetByPeerCount > 0){ -- foreach $key (sort { $src{$b} <=> $src{$a} } keys %src) { -- if ($src{$key} > 0){ -+ my $src = $hashes->{src}; -+ my @retext; -+ foreach my $key (sort { $src->{$b} <=> $src->{$a} } keys %{$src}) { -+ if ($src->{$key} > 0){ - if ($conn{$key} eq ""){$conn{$key} = "**Unknown**";} -- push @retext, sprintf " - %-4s (%2s) %-40s\n",$src{$key},$conn{$key},$connmsg{$key -+ push @retext, sprintf " - %-4s (%2s) %-40s\n",$src->{$key},$conn{$key},$connmsg{$key - }; - } - } -@@ -835,10 +798,12 @@ if ($connResetByPeerCount > 0){ - - print "Resource Unavailable: $resourceUnavailCount\n"; - if ($resourceUnavailCount > 0){ -- foreach $key (sort { $rsrc{$b} <=> $rsrc{$a} } keys %rsrc) { -- if ($rsrc{$key} > 0){ -+ my $rsrc = $hashes->{rsrc}; -+ my @rtext; -+ foreach my $key (sort { $rsrc->{$b} <=> $rsrc->{$a} } keys %{$rsrc}) { -+ if ($rsrc->{$key} > 0){ - if ($conn{$key} eq ""){$conn{$key} = "**Resource Issue**";} -- push @rtext, sprintf " - %-4s (%2s) %-40s\n",$rsrc{$key},$conn{$key},$connmsg{$key}; -+ push @rtext, sprintf " - %-4s (%2s) %-40s\n",$rsrc->{$key},$conn{$key},$connmsg{$key}; - } - } - print @rtext; -@@ -854,14 +819,15 @@ print " - SSL Client Binds: $sslClientBindCount\n"; - print " - Failed SSL Client Binds: $sslClientFailedCount\n"; - print " - SASL Binds: $saslBindCount\n"; - if ($saslBindCount > 0){ -- foreach $saslb ( sort {$saslmech{$b} <=> $saslmech{$a} } (keys %saslmech) ){ -- printf " %-4s %-12s\n",$saslmech{$saslb}, $saslb; -- } -+ my $saslmech = $hashes->{saslmech}; -+ foreach my $saslb ( sort {$saslmech->{$b} <=> $saslmech->{$a} } (keys %{$saslmech}) ){ -+ printf " %-4s %-12s\n",$saslmech->{$saslb}, $saslb; -+ } - } - - print " - Directory Manager Binds: $rootDNBindCount\n"; - print " - Anonymous Binds: $anonymousBindCount\n"; --$otherBindCount = $bindCount -($rootDNBindCount + $anonymousBindCount); -+my $otherBindCount = $bindCount -($rootDNBindCount + $anonymousBindCount); - print " - Other Binds: $otherBindCount\n\n"; - - ########################################################################## -@@ -879,8 +845,10 @@ if ($verb eq "yes" || $usage =~ /y/){ - print " (in seconds)\t\t<=1\t2\t3\t4-5\t6-10\t11-15\t>15\n"; - print " --------------------------------------------------------------------------\n"; - print " (# of connections)\t"; -- for ($i=0; $i <=$#latency; $i++) { -- print "$latency[$i]\t"; -+ for (my $i=0; $i <=$#latency; $i++) { -+ if (defined($latency[$i])) { -+ print "$latency[$i]\t"; -+ } - } - } - -@@ -891,9 +859,9 @@ if ($verb eq "yes" || $usage =~ /y/){ - ################################### - - if ($verb eq "yes" || $usage =~ /p/){ -- if ($openConnection[0] ne ""){ -+ if (@openConnection > 0){ - print "\n\n----- Current Open Connection IDs ----- \n\n"; -- for ($i=0; $i <= $#openConnection ; $i++) { -+ for (my $i=0; $i <= $#openConnection ; $i++) { - if ($openConnection[$i]) { - print "Conn Number: $i (" . getIPfromConn($i) . ")\n"; - } -@@ -910,17 +878,16 @@ if ($verb eq "yes" || $usage =~ /p/){ - if ($usage =~ /e/i || $verb eq "yes"){ - print "\n\n----- Errors -----\n"; - -- %er = sort( {$b <=> $a} %er); -- for ($i = 0; $i<98; $i++){ -- if ($err[$i] ne "" && $errorCode[$i] >0) { -+ for (my $i = 0; $i<98; $i++){ -+ if (defined($err[$i]) && $err[$i] ne "" && defined($errorCode[$i]) && $errorCode[$i] >0) { - push @errtext, sprintf "%-8s %12s %-25s","err=$i",$errorCode[$i],$err[$i]; - } - } - -- for ($i = 0; $i < $#errtext; $i++){ -- for ($ii = 0; $ii < $#errtext; $ii++){ -- $yy="0"; -- $zz="0"; -+ for (my $i = 0; $i < $#errtext; $i++){ -+ for (my $ii = 0; $ii < $#errtext; $ii++){ -+ my $yy="0"; -+ my $zz="0"; - while ($errtext[$ii] =~ /(\w+)\s/g){ - $errornum[$yy]="$1"; - $yy++; -@@ -936,7 +903,7 @@ if ($usage =~ /e/i || $verb eq "yes"){ - } - } - } -- for ($i = 0; $i <= $#errtext; $i++){ -+ for (my $i = 0; $i <= $#errtext; $i++){ - $errtext[$i] =~ s/\n//g; - print "\n" . $errtext[$i]; - } -@@ -953,51 +920,44 @@ if ($verb eq "yes" || $usage =~ /f/ ){ - print "\n\n----- Top $sizeCount Failed Logins ------\n\n"; - - if ($ds6x eq "true"){ -- %ds6xbadpwd = getCounterHashFromFile($DS6XBADPWD); -- $ds6loop = 0; -- foreach $ds6bp (sort { $ds6xbadpwd{$b} <=> $ds6xbadpwd{$a} } keys %ds6xbadpwd) { -- if ($eloop > $sizeCount){ last; } -- printf "%-4s %-40s\n", $ds6xbadpwd{$ds6bp}, $ds6bp; -+ my $ds6xbadpwd = $hashes->{ds6xbadpwd}; -+ my $ds6loop = 0; -+ foreach my $ds6bp (sort { $ds6xbadpwd->{$b} <=> $ds6xbadpwd->{$a} } keys %{$ds6xbadpwd}) { -+ if ($ds6loop > $sizeCount){ last; } -+ printf "%-4s %-40s\n", $ds6xbadpwd->{$ds6bp}, $ds6bp; - $ds6loop++; - } -- undef %ds6xbadpwd; - } else { -- getInfoArraysFromFile($BINDINFO); -- @bindVal = @fileArray1; -- @bindConn = @fileArray2; -- @bindOp = @fileArray3; -- @badPasswordConn = getArrayFromFile($BADPWDCONN); -- @badPasswordOp = getArrayFromFile($BADPWDOP); -- @badPasswordIp = getArrayFromFile($BADPWDIP); -- for ($ii =0 ; $ii < $badPwdCount; $ii++){ -- for ($i = 0; $i < $bindCount; $i++){ -- if ($badPasswordConn[$ii] eq $bindConn[$i] && $badPasswordOp[$ii] eq $bindOp[$i] ){ -- $badPassword{ "$bindVal[$i]" } = $badPassword{ "$bindVal[$i]" } + 1; -+ my $bindVal = $arrays->{binddn}; -+ my $bindConn = $arrays->{bindconn}; -+ my $bindOp = $arrays->{bindop}; -+ my $badPasswordConn = $arrays->{badpwdconn}; -+ my $badPasswordOp = $arrays->{badpwdop}; -+ my $badPasswordIp = $arrays->{badpwdip}; -+ my %badPassword = (); -+ for (my $ii =0 ; $ii < $badPwdCount; $ii++){ -+ for (my $i = 0; $i < $bindCount; $i++){ -+ if ($badPasswordConn->[$ii] eq $bindConn->[$i] && $badPasswordOp->[$ii] eq $bindOp->[$i] ){ -+ $badPassword{ $bindVal->[$i] }++; - } - } - } - # sort the new hash of $badPassword{} -- $bpTotal = 0; -- $bpCount = 0; -- foreach $badpw (sort {$badPassword{$b} <=> $badPassword{$a} } keys %badPassword){ -+ my $bpTotal = 0; -+ my $bpCount = 0; -+ foreach my $badpw (sort {$badPassword{$b} <=> $badPassword{$a} } keys %badPassword){ - if ($bpCount > $sizeCount){ last;} - $bpCount++; - $bpTotal = $bpTotal + $badPassword{"$badpw"}; - printf "%-4s %-40s\n", $badPassword{"$badpw"}, $badpw; - } - print "\nFrom the IP address(s) :\n\n"; -- for ($i=0; $i<$badPwdCount; $i++) { -- print "\t\t$badPasswordIp[$i]\n"; -+ for (my $i=0; $i<$badPwdCount; $i++) { -+ print "\t\t$badPasswordIp->[$i]\n"; - } - if ($bpTotal > $badPwdCount){ - print "\n** Warning : Wrongly reported failed login attempts : ". ($bpTotal - $badPwdCount) . "\n"; - } -- undef @bindVal; -- undef @bindConn; -- undef @bindOp; -- undef @badPasswordConn; -- undef @badPasswordOp; -- undef @badPasswordIp; - } # this ends the if $ds6x = true - } - } -@@ -1012,15 +972,14 @@ if ($verb eq "yes" || $usage =~ /f/ ){ - if ($connCodeCount > 0){ - if ($usage =~ /c/i || $verb eq "yes"){ - print "\n\n----- Total Connection Codes -----\n\n"; -- %conncount = &getCounterHashFromFile($CONNCOUNT); -- -- foreach $key (sort { $conncount{$b} <=> $conncount{$a} } keys %conncount) { -- if ($conncount{$key} > 0){ -- push @conntext, sprintf "%-4s %6s %-40s\n",$key,$conncount{$key},$connmsg{ $key }; -+ my $conncount = $hashes->{conncount}; -+ my @conntext; -+ foreach my $key (sort { $conncount->{$b} <=> $conncount->{$a} } keys %{$conncount}) { -+ if ($conncount->{$key} > 0){ -+ push @conntext, sprintf "%-4s %6s %-40s\n",$key,$conncount->{$key},$connmsg{ $key }; - } - } - print @conntext; -- undef %conncount; - } - } - -@@ -1031,35 +990,36 @@ if ($connCodeCount > 0){ - ######################################## - - if ($usage =~ /i/i || $verb eq "yes"){ -- %ip_hash = getTwoDimHashFromFile($IP_HASH); -- %exCount = getCounterHashFromFile($EXCOUNT); -- @ipkeys = keys %ip_hash; -- @exxCount = keys %exCount; -- $ip_count = ($#ipkeys + 1)-($#exxCount + 1); -+ my $ip_hash = $hashes->{ip_hash}; -+ my $exCount = $hashes->{excount}; -+ my @ipkeys = keys %{$ip_hash}; -+ my @exxCount = keys %${exCount}; -+ my $ip_count = ($#ipkeys + 1)-($#exxCount + 1); -+ my $ccount = 0; - if ($ip_count > 0){ - print "\n\n----- Top $sizeCount Clients -----\n\n"; - print "Number of Clients: $ip_count\n\n"; -- foreach $key (sort { $ip_hash{$b}{"count"} <=> $ip_hash{$a}{"count"} } keys %ip_hash) { -- $exc = "no"; -+ foreach my $key (sort { $ip_hash->{$b} <=> $ip_hash->{$a} } @ipkeys) { -+ my $exc = "no"; - if ($ccount > $sizeCount){ last;} - $ccount++; -- for ($xxx =0; $xxx <= $#excludeIP; $xxx++){ -+ for (my $xxx =0; $xxx < $#excludeIP; $xxx++){ - if ($excludeIP[$xxx] eq $key){$exc = "yes";} - } - if ($exc ne "yes"){ -- if ($ip_hash{ $key }{"count"} eq ""){$ip_hash{ $key }{"count"} = "?";} -+ if ($ip_hash->{ $key } eq ""){$ip_hash->{ $key } = "?";} - printf "[%s] Client: %s\n",$ccount, $key; -- printf "%10s - Connections\n", $ip_hash{ $key }{"count"}; -- foreach $code (sort { $ip_hash{ $key }{$b} <=> $ip_hash{ $key }{$a} } keys %{$ip_hash{ $key }}) { -+ printf "%10s - Connections\n", $ip_hash->{ $key }; -+ my %counts; -+ map { $counts{$_} = $hashes->{$_}->{$key} if (defined($hashes->{$_}->{$key})) } @conncodes; -+ foreach my $code (sort { $counts{$b} <=> $counts{$a} } keys %counts) { - if ($code eq 'count' ) { next; } -- printf "%10s - %s (%s)\n", $ip_hash{ $key }{ $code }, $code, $connmsg{ $code }; -+ printf "%10s - %s (%s)\n", $counts{ $code }, $code, $connmsg{ $code }; - } - print "\n"; - } - } - } -- undef %exCount; -- undef %ip_hash; - } - - ################################### -@@ -1069,21 +1029,22 @@ if ($usage =~ /i/i || $verb eq "yes"){ - ################################### - - if ($usage =~ /b/i || $verb eq "yes"){ -- %bindlist = getCounterHashFromFile($BINDLIST); -- @bindkeys = keys %bindlist; -- $bind_count = $#bindkeys + 1; -+ my $bindlist = $hashes->{bindlist}; -+ my @bindkeys = keys %{$bindlist}; -+ my $bind_count = $#bindkeys + 1; - if ($bind_count > 0){ - print "\n\n----- Top $sizeCount Bind DN's -----\n\n"; - print "Number of Unique Bind DN's: $bind_count\n\n"; -- $bindcount = 0; -- foreach $dn (sort { $bindlist{$b} <=> $bindlist{$a} } keys %bindlist) { -- if ($bindcount < $sizeCount){ -- printf "%-8s %-40s\n", $bindlist{ $dn },$dn; -- } -+ my $bindcount = 0; -+ foreach my $dn (sort { $bindlist->{$b} <=> $bindlist->{$a} } @bindkeys) { -+ if ($bindcount < $sizeCount){ -+ printf "%-8s %-40s\n", $bindlist->{ $dn },$dn; -+ } else { -+ last; -+ } - $bindcount++; - } - } -- undef %bindlist; - } - - ######################################### -@@ -1093,21 +1054,22 @@ if ($usage =~ /b/i || $verb eq "yes"){ - ######################################### - - if ($usage =~ /a/i || $verb eq "yes"){ -- %base = getCounterHashFromFile($BASE); -- @basekeys = keys %base; -- $base_count = $#basekeys + 1; -+ my $base = $hashes->{base}; -+ my @basekeys = keys %{$base}; -+ my $base_count = $#basekeys + 1; - if ($base_count > 0){ - print "\n\n----- Top $sizeCount Search Bases -----\n\n"; - print "Number of Unique Search Bases: $base_count\n\n"; -- $basecount = 0; -- foreach $bas (sort { $base{$b} <=> $base{$a} } keys %base) { -+ my $basecount = 0; -+ foreach my $bas (sort { $base->{$b} <=> $base->{$a} } @basekeys) { - if ($basecount < $sizeCount){ -- printf "%-8s %-40s\n", $base{ $bas },$bas; -- } -+ printf "%-8s %-40s\n", $base->{ $bas },$bas; -+ } else { -+ last; -+ } - $basecount++; - } - } -- undef %base; - } - - ######################################### -@@ -1117,21 +1079,22 @@ if ($usage =~ /a/i || $verb eq "yes"){ - ######################################### - - if ($usage =~ /l/ || $verb eq "yes"){ -- %filter = getCounterHashFromFile($FILTER); -- @filterkeys = keys %filter; -- $filter_count = $#filterkeys + 1; -+ my $filter = $hashes->{filter}; -+ my @filterkeys = keys %{$filter}; -+ my $filter_count = $#filterkeys + 1; - if ($filter_count > 0){ - print "\n\n----- Top $sizeCount Search Filters -----\n"; - print "\nNumber of Unique Search Filters: $filter_count\n\n"; -- $filtercount = 0; -- foreach $filt (sort { $filter{$b} <=> $filter{$a} } keys %filter){ -+ my $filtercount = 0; -+ foreach my $filt (sort { $filter->{$b} <=> $filter->{$a} } @filterkeys){ - if ($filtercount < $sizeCount){ -- printf "%-8s %-40s\n", $filter{$filt}, $filt; -- } -+ printf "%-8s %-40s\n", $filter->{$filt}, $filt; -+ } else { -+ last; -+ } - $filtercount++; - } - } -- undef %filter; - } - - ######################################### -@@ -1140,20 +1103,23 @@ if ($usage =~ /l/ || $verb eq "yes"){ - # # - ######################################### - -+my $first; - if ($usage =~ /t/i || $verb eq "yes"){ -- %etime = getCounterHashFromFile($ETIME); -+ my $etime = $hashes->{etime}; -+ my @ekeys = keys %{$etime}; - # - # print most often etimes - # - print "\n\n----- Top $sizeCount Most Frequent etimes -----\n\n"; -- $eloop = 0; -- foreach $et (sort { $etime{$b} <=> $etime{$a} } keys %etime) { -+ my $eloop = 0; -+ my $retime = 0; -+ foreach my $et (sort { $etime->{$b} <=> $etime->{$a} } @ekeys) { - if ($eloop == $sizeCount) { last; } - if ($retime ne "2"){ - $first = $et; - $retime = "2"; - } -- printf "%-8s %-12s\n", $etime{ $et }, "etime=$et"; -+ printf "%-8s %-12s\n", $etime->{ $et }, "etime=$et"; - $eloop++; - } - # -@@ -1161,12 +1127,11 @@ if ($usage =~ /t/i || $verb eq "yes"){ - # - print "\n\n----- Top $sizeCount Longest etimes -----\n\n"; - $eloop = 0; -- foreach $et (sort { $b <=> $a } (keys %etime)) { -+ foreach my $et (sort { $b <=> $a } @ekeys) { - if ($eloop == $sizeCount) { last; } -- printf "%-12s %-10s\n","etime=$et",$etime{ $et }; -+ printf "%-12s %-10s\n","etime=$et",$etime->{ $et }; - $eloop++; - } -- undef %etime; - } - - ####################################### -@@ -1177,23 +1142,23 @@ if ($usage =~ /t/i || $verb eq "yes"){ - - - if ($usage =~ /n/i || $verb eq "yes"){ -- %nentries = getCounterHashFromFile($NENTRIES); -+ my $nentries = $hashes->{nentries}; -+ my @nkeys = keys %{$nentries}; - print "\n\n----- Top $sizeCount Largest nentries -----\n\n"; -- $eloop = 0; -- foreach $nentry (sort { $b <=> $a } (keys %nentries)){ -+ my $eloop = 0; -+ foreach my $nentry (sort { $b <=> $a } @nkeys){ - if ($eloop == $sizeCount) { last; } -- printf "%-18s %12s\n","nentries=$nentry", $nentries{ $nentry }; -+ printf "%-18s %12s\n","nentries=$nentry", $nentries->{ $nentry }; - $eloop++; - } - print "\n\n----- Top $sizeCount Most returned nentries -----\n\n"; - $eloop = 0; -- foreach $nentry (sort { $nentries{$b} <=> $nentries{$a} } (keys %nentries)){ -+ foreach my $nentry (sort { $nentries->{$b} <=> $nentries->{$a} } @nkeys){ - if ($eloop == $sizeCount) { last; } -- printf "%-12s %-14s\n", $nentries{ $nentry }, "nentries=$nentry"; -+ printf "%-12s %-14s\n", $nentries->{ $nentry }, "nentries=$nentry"; - $eloop++; - } - print "\n"; -- undef %nentries; - } - - ########################################## -@@ -1204,9 +1169,10 @@ if ($usage =~ /n/i || $verb eq "yes"){ - - if ($usage =~ /x/i || $verb eq "yes"){ - if ($extopCount > 0){ -- %oid = getCounterHashFromFile($OID); -+ my $oid = $hashes->{oid}; - print "\n\n----- Extended Operations -----\n\n"; -- foreach $oids (sort { $oid{$b} <=> $oid{$a} } (keys %oid) ){ -+ foreach my $oids (sort { $oid->{$b} <=> $oid->{$a} } (keys %{$oid}) ){ -+ my $oidmessage; - if ($oids eq "2.16.840.1.113730.3.5.1"){ $oidmessage = "Transaction Request"} #depreciated? - elsif ($oids eq "2.16.840.1.113730.3.5.2"){ $oidmessage = "Transaction Response"} #depreciated? - elsif ($oids eq "2.16.840.1.113730.3.5.3"){ $oidmessage = "Start Replication Request (incremental update)"} -@@ -1236,9 +1202,8 @@ if ($usage =~ /x/i || $verb eq "yes"){ - elsif ($oids eq "1.3.6.1.4.1.4203.1.11.1"){ $oidmessage = "Password Modify"} - elsif ($oids eq "2.16.840.1.113730.3.4.20"){ $oidmessage = "MTN Control Use One Backend"} - else {$oidmessage = "Other"} -- printf "%-6s %-23s %-60s\n", $oid{ $oids }, $oids, $oidmessage; -+ printf "%-6s %-23s %-60s\n", $oid->{ $oids }, $oids, $oidmessage; - } -- undef %oid; - } - } - -@@ -1250,15 +1215,14 @@ if ($usage =~ /x/i || $verb eq "yes"){ - - if ($usage =~ /r/i || $verb eq "yes"){ - if ($anyAttrs > 0){ -- %attr = getCounterHashFromFile($ATTR); -+ my $attr = $hashes->{attr}; - print "\n\n----- Top $sizeCount Most Requested Attributes -----\n\n"; -- $eloop = 0; -- foreach $mostAttr (sort { $attr{$b} <=> $attr{$a} } (keys %attr) ){ -+ my $eloop = 0; -+ foreach my $mostAttr (sort { $attr->{$b} <=> $attr->{$a} } (keys %{$attr}) ){ - if ($eloop eq $sizeCount){ last; } -- printf "%-10s %-19s\n", $attr{$mostAttr}, $mostAttr; -+ printf "%-10s %-19s\n", $attr->{$mostAttr}, $mostAttr; - $eloop++; - } -- undef %attr; - } - } - -@@ -1269,77 +1233,59 @@ if ($usage =~ /r/i || $verb eq "yes"){ - ############################# - - if ($usage =~ /g/i || $verb eq "yes"){ -- $abandonTotal = $srchCount + $delCount + $modCount + $addCount + $modrdnCount + $bindCount + $extopCount + $cmpCount; -+ my $abandonTotal = $srchCount + $delCount + $modCount + $addCount + $modrdnCount + $bindCount + $extopCount + $cmpCount; - if ($verb eq "yes" && $abandonCount > 0 && $abandonTotal > 0){ -- %conn_hash = getHashFromFile($CONN_HASH); -- @srchConn = getArrayFromFile($SRCH_CONN); -- @srchOp = getArrayFromFile($SRCH_OP); -- @delConn = getArrayFromFile($DEL_CONN); -- @delOp = getArrayFromFile($DEL_OP); -- @targetConn = getArrayFromFile($TARGET_CONN); -- @targetOp = getArrayFromFile($TARGET_OP); -- @msgid = getArrayFromFile($MSGID); -- @addConn = getArrayFromFile($ADD_CONN); -- @addOp = getArrayFromFile($ADD_OP); -- @modConn = getArrayFromFile($MOD_CONN); -- @modOp = getArrayFromFile($MOD_OP); -- @cmpConn = getArrayFromFile($CMP_CONN); -- @cmpOp = getArrayFromFile($CMP_OP); -- @modrdnConn = getArrayFromFile($MODRDN_CONN); -- @modrdnOp = getArrayFromFile($MODRDN_OP); -- @bindConn = getArrayFromFile($BIND_CONN); -- @bindOp = getArrayFromFile($BIND_OP); -- @unbindConn = getArrayFromFile($UNBIND_CONN); -- @unbindOp = getArrayFromFile($UNBIND_OP); -- @extConn = getArrayFromFile($EXT_CONN); -- @extOp = getArrayFromFile($EXT_OP); -+ my $conn_hash = $hashes->{conn_hash}; - - print "\n\n----- Abandon Request Stats -----\n\n"; - -- for ($g = 0; $g < $abandonCount; $g++){ -- for ($sc = 0; $sc < $srchCount; $sc++){ -- if ($srchConn[$sc] eq $targetConn[$g] && $srchOp[$sc] eq $targetOp[$g] ){ -- print " - SRCH conn=$targetConn[$g] op=$targetOp[$g] msgid=$msgid[$g] client=$conn_hash{$targetConn[$g]}\n"; -+ for (my $g = 0; $g < $abandonCount; $g++){ -+ my $conn = $arrays->{targetconn}->[$g]; -+ my $op = $arrays->{targetop}->[$g]; -+ my $msgid = $arrays->{msgid}->[$g]; -+ for (my $sc = 0; $sc < $srchCount; $sc++){ -+ if ($arrays->{srchconn}->[$sc] eq $conn && $arrays->{srchop}->[$sc] eq $op ){ -+ print " - SRCH conn=$conn op=$op msgid=$msgid client=$conn_hash->{$conn}\n"; - } - } -- for ($dc = 0; $dc < $delCount; $dc++){ -- if ($delConn[$dc] eq $targetConn[$g] && $delOp[$dc] eq $targetOp[$g]){ -- print " - DEL conn=$targetConn[$g] op=$targetOp[$g] msgid=$msgid[$g] client=$conn_hash{$targetConn[$g]}\n"; -+ for (my $dc = 0; $dc < $delCount; $dc++){ -+ if ($arrays->{delconn}->[$dc] eq $conn && $arrays->{delop}->[$dc] eq $op){ -+ print " - DEL conn=$conn op=$op msgid=$msgid client=$conn_hash->{$conn}\n"; - } - } -- for ($adc = 0; $adc < $addCount; $adc++){ -- if ($addConn[$adc] eq $targetConn[$g] && $addOp[$adc] eq $targetOp[$g]){ -- print " - ADD conn=$targetConn[$g] op=$targetOp[$g] msgid=$msgid[$g] client=$conn_hash{$targetConn[$g]}\n"; -+ for (my $adc = 0; $adc < $addCount; $adc++){ -+ if ($arrays->{addconn}->[$adc] eq $conn && $arrays->{addop}->[$adc] eq $op){ -+ print " - ADD conn=$conn op=$op msgid=$msgid client=$conn_hash->{$conn}\n"; - } - } -- for ($mc = 0; $mc < $modCount; $mc++){ -- if ($modConn[$mc] eq $targetConn[$g] && $modOp[$mc] eq $targetOp[$g]){ -- print " - MOD conn=$targetConn[$g] op=$targetOp[$g] msgid=$msgid[$g] client=$conn_hash{$targetConn[$g]}\n"; -+ for (my $mc = 0; $mc < $modCount; $mc++){ -+ if ($arrays->{modconn}->[$mc] eq $conn && $arrays->{modop}->[$mc] eq $op){ -+ print " - MOD conn=$conn op=$op msgid=$msgid client=$conn_hash->{$conn}\n"; - } - } -- for ($cc = 0; $cc < $cmpCount; $cc++){ -- if ($cmpConn[$mdc] eq $targetConn[$g] && $cmpOp[$mdc] eq $targetOp[$g]){ -- print " - CMP conn=$targetConn[$g] op=$targetOp[$g] msgid=$msgid[$g] client=$conn_hash{$targetConn[$g]}\n"; -+ for (my $cc = 0; $cc < $cmpCount; $cc++){ -+ if ($arrays->{cmpconn}->[$cc] eq $conn && $arrays->{cmpop}->[$cc] eq $op){ -+ print " - CMP conn=$conn op=$op msgid=$msgid client=$conn_hash->{$conn}\n"; - } - } -- for ($mdc = 0; $mdc < $modrdnCount; $mdc++){ -- if ($modrdnConn[$mdc] eq $targetConn[$g] && $modrdnOp[$mdc] eq $targetOp[$g]){ -- print " - MODRDN conn=$targetConn[$g] op=$targetOp[$g] msgid=$msgid[$g] client=$conn_hash{$targetConn[$g]}\n"; -+ for (my $mdc = 0; $mdc < $modrdnCount; $mdc++){ -+ if ($arrays->{modrdnconn}->[$mdc] eq $conn && $arrays->{modrdnop}->[$mdc] eq $op){ -+ print " - MODRDN conn=$conn op=$op msgid=$msgid client=$conn_hash->{$conn}\n"; - } - } -- for ($bcb = 0; $bcb < $bindCount; $bcb++){ -- if ($bindConn[$bcb] eq $targetConn[$g] && $bindOp[$bcb] eq $targetOp[$g]){ -- print " - BIND conn=$targetConn[$g] op=$targetOp[$g] msgid=$msgid[$g] client=$conn_hash{$targetConn[$g]}\n"; -+ for (my $bcb = 0; $bcb < $bindCount; $bcb++){ -+ if ($arrays->{bindconn}->[$bcb] eq $conn && $arrays->{bindop}->[$bcb] eq $op){ -+ print " - BIND conn=$conn op=$op msgid=$msgid client=$conn_hash->{$conn}\n"; - } - } -- for ($ubc = 0; $ubc < $unbindCount; $ubc++){ -- if ($unbindConn[$ubc] eq $targetConn[$g] && $unbindOp[$ubc] eq $targetOp[$g]){ -- print " - UNBIND conn=$targetConn[$g] op=$targetOp[$g] msgid=$msgid[$g] client=$conn_hash{$targetConn[$g]}\n"; -+ for (my $ubc = 0; $ubc < $unbindCount; $ubc++){ -+ if ($arrays->{unbindconn}->[$ubc] eq $conn && $arrays->{unbindop}->[$ubc] eq $op){ -+ print " - UNBIND conn=$conn op=$op msgid=$msgid client=$conn_hash->{$conn}\n"; - } - } -- for ($ec = 0; $ec < $extopCount; $ec++){ -- if ($extConn[$ec] eq $targetConn[$g] && $extOp[$ec] eq $targetOp[$g]){ -- print " - EXT conn=$targetConn[$g] op=$targetOp[$g] msgid=$msgid[$g] client=$conn_hash{$targetConn[$g]}\n"; -+ for (my $ec = 0; $ec < $extopCount; $ec++){ -+ if ($arrays->{extconn}->[$ec] eq $conn && $arrays->{extop}->[$ec] eq $op){ -+ print " - EXT conn=$conn op=$op msgid=$msgid client=$conn_hash->{$conn}\n"; - } - } - } -@@ -1354,9 +1300,9 @@ print "\n"; - ####################################### - - if ($usage =~ /j/i || $verb eq "yes"){ -- %conncount = getCounterHashFromFile($CONNCOUNT); -+ my $conncount = $hashes->{conncount}; - print "\n----- Recommendations -----\n"; -- $recCount = "1"; -+ my $recCount = "1"; - if ($unindexedSrchCountNotesA > 0){ - print "\n $recCount. You have unindexed searches, this can be caused from a search on an unindexed attribute, or your returned results exceeded the allidsthreshold. Unindexed searches are not recommended. To refuse unindexed searches, switch \'nsslapd-require-index\' to \'on\' under your database entry (e.g. cn=UserRoot,cn=ldbm database,cn=plugins,cn=config).\n"; - $recCount++; -@@ -1365,11 +1311,11 @@ if ($usage =~ /j/i || $verb eq "yes"){ - print "\n $recCount. You have unindexed components, this can be caused from a search on an unindexed attribute, or your returned results exceeded the allidsthreshold. Unindexed components are not recommended. To refuse unindexed searches, switch \'nsslapd-require-index\' to \'on\' under your database entry (e.g. cn=UserRoot,cn=ldbm database,cn=plugins,cn=config).\n"; - $recCount++; - } -- if ($conncount{"T1"} > 0){ -+ if (defined($conncount->{"T1"}) and $conncount->{"T1"} > 0){ - print "\n $recCount. You have some connections that are are being closed by the idletimeout setting. You may want to increase the idletimeout if it is set low.\n"; - $recCount++; - } -- if ($conncount{"T2"} > 0){ -+ if (defined($conncount->{"T2"}) and $conncount->{"T2"} > 0){ - print "\n $recCount. You have some coonections that are being closed by the ioblocktimeout setting. You may want to increase the ioblocktimeout.\n"; - $recCount++; - } -@@ -1391,7 +1337,7 @@ if ($usage =~ /j/i || $verb eq "yes"){ - print "\n $recCount. You have more unsuccessful operations than successful operations. You should investigate this difference.\n"; - $recCount++; - } -- if ($conncount{"U1"} < ($connCodeCount - $conncount{"U1"})){ -+ if (defined($conncount->{"U1"}) and $conncount->{"U1"} < ($connCodeCount - $conncount->{"U1"})){ - print "\n $recCount. You have more abnormal connection codes than cleanly closed connections. You may want to investigate this difference.\n"; - $recCount++; - } -@@ -1407,7 +1353,6 @@ if ($usage =~ /j/i || $verb eq "yes"){ - print "\nNone.\n"; - } - print "\n"; -- undef %conncount; - } - - # -@@ -1499,11 +1444,9 @@ parseLineBind { - $linesProcessed++; - $lineBlockCount++; - local $_ = $logline; -+ my $ip; - -- if ($lineBlockCount >= $limit){ -- print STDERR sprintf" %10s Lines Processed\n",$linesProcessed; -- $lineBlockCount="0"; -- } -+ statusreport(); - - # skip blank lines - return if $_ =~ /^\s/; -@@ -1531,7 +1474,8 @@ parseLineBind { - } - } - if ($_ =~ /connection from *([0-9A-Fa-f\.\:]+)/i ) { -- for ($excl =0; $excl <= $#excludeIP; $excl++){ -+ my $skip = "yes"; -+ for (my $excl =0; $excl < $#excludeIP; $excl++){ - if ($excludeIP[$excl] eq $1){ - $skip = "yes"; - last; -@@ -1547,6 +1491,7 @@ parseLineBind { - return; - } - if (/ BIND/ && $_ =~ /dn=\"(.*)\" method/i ){ -+ my $dn; - if ($1 eq ""){ - $dn = "Anonymous"; - } else { -@@ -1599,30 +1544,36 @@ parseLineBind { - sub - processOpForBindReport - { -- $op = @_[0]; -- $data = @_[1]; -+ my $op = shift; -+ my $data = shift; - - if ($data =~ /conn= *([0-9]+)/i) { -- foreach $dn (keys %bindReport){ -+ foreach my $dn (keys %bindReport){ - if ($bindReport{$dn}{"conn"} =~ / $1 /){ -- $bindDN = $dn; -- $bindReport{$bindDN}{$op}++; -+ $bindReport{$dn}{$op}++; - return; - } - } - } - } - -+my ($last_tm, $lastzone, $last_min, $gmtime, $tzoff); - sub parseLineNormal - { - local $_ = $logline; -+ my $ip; -+ my $tmpp; -+ my $exc = "no"; -+ my $connID; -+ my $con; -+ my $op; -+ $linesProcessed++; -+ $lineBlockCount++; - - # lines starting blank are restart - return if $_ =~ /^\s/; - -- $linesProcessed++; -- $lineBlockCount++; -- if ($lineBlockCount >= $limit){ print STDERR sprintf" %10s Lines Processed\n",$linesProcessed; $lineBlockCount="0";} -+ statusreport(); - - # gather/process the timestamp - if($firstFile == 1 && $_ =~ /^\[/){ -@@ -1648,30 +1599,30 @@ sub parseLineNormal - } - - # Additional performance stats -- ($time, $tzone) = split (' ', $_); -- if ($reportStats && $time ne $last_tm) -+ my ($time, $tzone) = split (' ', $_); -+ if (($reportStats or ($verb eq "yes") || ($usage =~ /y/)) && (!defined($last_tm) or ($time ne $last_tm))) - { - $last_tm = $time; - $time =~ s/\[//; - $tzone =~ s/\].*//; - -- if($tzone ne $lastzone) -+ if(!defined($lastzone) or $tzone ne $lastzone) - { - # tz offset change - $lastzone=$tzone; -- ($sign,$hr,$min) = $tzone =~ m/(.)(\d\d)(\d\d)/; -+ my ($sign,$hr,$min) = $tzone =~ m/(.)(\d\d)(\d\d)/; - $tzoff = $hr*3600 + $min*60; - $tzoff *= -1 - if $sign eq '-'; - # to be subtracted from converted values. - } -- ($date, $hr, $min, $sec) = split (':', $time); -- ($day, $mon, $yr) = split ('/', $date); -- $newmin = timegm(0, $min, $hr, $day, $monthname{$mon}, $yr) - $tzoff; -+ my ($date, $hr, $min, $sec) = split (':', $time); -+ my ($day, $mon, $yr) = split ('/', $date); -+ my $newmin = timegm(0, $min, $hr, $day, $monthname{$mon}, $yr) - $tzoff; - $gmtime = $newmin + $sec; - print_stats_block( $s_stats ); - reset_stats_block( $s_stats, $gmtime, $time.' '.$tzone ); -- if ($newmin != $last_min) -+ if (!defined($last_min) or $newmin != $last_min) - { - print_stats_block( $m_stats ); - $time =~ s/\d\d$/00/; -@@ -1689,58 +1640,57 @@ sub parseLineNormal - if($reportStats){ inc_stats('srch',$s_stats,$m_stats); } - if ($_ =~ / attrs=\"(.*)\"/i){ - $anyAttrs++; -- $attrs = $1 . " "; -- while ($attrs =~ /(\S+)\s/g){ -- writeFile($ATTR, $1); -- } -- } -+ my $attr = $hashes->{attr}; -+ map { $attr->{$_}++ } split /\s/, $1; -+ } - if (/ attrs=ALL/){ -- writeFile($ATTR, "All Attributes"); -+ my $attr = $hashes->{attr}; -+ $attr->{"All Attributes"}++; - $anyAttrs++; - } -- if ($verb eq "yes"){ -- if ($_ =~ /conn= *([0-9]+)/i){ writeFile($SRCH_CONN, $1);} -- if ($_ =~ /op= *([0-9]+)/i){ writeFile($SRCH_OP, $1);} -+ if ($verb eq "yes"){ -+ if ($_ =~ /conn= *([0-9]+)/i){ push @{$arrays->{srchconn}}, $1;} -+ if ($_ =~ /op= *([0-9]+)/i){ push @{$arrays->{srchop}}, $1;} - } - } - if (m/ DEL/){ - $delCount++; - if($reportStats){ inc_stats('del',$s_stats,$m_stats); } - if ($verb eq "yes"){ -- if ($_ =~ /conn= *([0-9]+)/i){ writeFile($DEL_CONN, $1);} -- if ($_ =~ /op= *([0-9]+)/i){ writeFile($DEL_OP, $1);} -+ if ($_ =~ /conn= *([0-9]+)/i){ push @{$arrays->{delconn}}, $1;} -+ if ($_ =~ /op= *([0-9]+)/i){ push @{$arrays->{delop}}, $1;} - } - } - if (m/ MOD dn=/){ - $modCount++; - if($reportStats){ inc_stats('mod',$s_stats,$m_stats); } - if ($verb eq "yes"){ -- if ($_ =~ /conn= *([0-9]+)/i){ writeFile($MOD_CONN, $1);} -- if ($_ =~ /op= *([0-9]+)/i){ writeFile($MOD_OP, $1); } -+ if ($_ =~ /conn= *([0-9]+)/i){ push @{$arrays->{modconn}}, $1;} -+ if ($_ =~ /op= *([0-9]+)/i){ push @{$arrays->{modop}}, $1; } - } - } - if (m/ ADD/){ - $addCount++; - if($reportStats){ inc_stats('add',$s_stats,$m_stats); } - if ($verb eq "yes"){ -- if ($_ =~ /conn= *([0-9]+)/i){ writeFile($ADD_CONN, $1); } -- if ($_ =~ /op= *([0-9]+)/i){ writeFile($ADD_OP, $1); } -+ if ($_ =~ /conn= *([0-9]+)/i){ push @{$arrays->{addconn}}, $1; } -+ if ($_ =~ /op= *([0-9]+)/i){ push @{$arrays->{addop}}, $1; } - } - } - if (m/ MODRDN/){ - $modrdnCount++; - if($reportStats){ inc_stats('modrdn',$s_stats,$m_stats); } - if ($verb eq "yes"){ -- if ($_ =~ /conn= *([0-9]+)/i){ writeFile($MODRDN_CONN, $1); } -- if ($_ =~ /op= *([0-9]+)/i){ writeFile($MODRDN_OP, $1); } -+ if ($_ =~ /conn= *([0-9]+)/i){ push @{$arrays->{modrdnconn}}, $1; } -+ if ($_ =~ /op= *([0-9]+)/i){ push @{$arrays->{modrdnop}}, $1; } - } - } - if (m/ CMP dn=/){ - $cmpCount++; - if($reportStats){ inc_stats('cmp',$s_stats,$m_stats); } - if ($verb eq "yes" || $usage =~ /g/i){ -- if ($_ =~ /conn= *([0-9]+)/i){ writeFile($CMP_CONN, $1);} -- if ($_ =~ /op= *([0-9]+)/i){ writeFile($CMP_OP, $1);} -+ if ($_ =~ /conn= *([0-9]+)/i){ push @{$arrays->{cmpconn}}, $1;} -+ if ($_ =~ /op= *([0-9]+)/i){ push @{$arrays->{cmpop}}, $1;} - } - } - if (m/ ABANDON /){ -@@ -1748,9 +1698,9 @@ sub parseLineNormal - if($reportStats){ inc_stats('abandon',$s_stats,$m_stats); } - $allResults++; - if ($_ =~ /targetop= *([0-9a-zA-Z]+)/i ){ -- writeFile($TARGET_OP, $1); -- if ($_ =~ /conn= *([0-9]+)/i){ writeFile($TARGET_CONN, $1); } -- if ($_ =~ /msgid= *([0-9]+)/i){ writeFile($MSGID, $1);} -+ push @{$arrays->{targetop}}, $1; -+ if ($_ =~ /conn= *([0-9]+)/i){ push @{$arrays->{targetconn}}, $1; } -+ if ($_ =~ /msgid= *([0-9]+)/i){ push @{$arrays->{msgid}}, $1; } - } - } - if (m/ VLV /){ -@@ -1774,20 +1724,19 @@ sub parseLineNormal - if ($1 ne ""){ - $tmpp = $1; - $tmpp =~ tr/A-Z/a-z/; -- writeFile($BINDLIST, $tmpp); -+ $hashes->{bindlist}->{$tmpp}++; - if($1 eq $rootDN){ - $rootDNBindCount++; - } - } else { - $anonymousBindCount++; -- writeFile($BINDLIST, "Anonymous Binds"); -+ $hashes->{bindlist}->{"Anonymous Binds"}++; - inc_stats('anonbind',$s_stats,$m_stats); - } - } - if (m/ connection from/){ -- $exc = "no"; - if ($_ =~ /connection from *([0-9A-Fa-f\.\:]+)/i ){ -- for ($xxx =0; $xxx <= $#excludeIP; $xxx++){ -+ for (my $xxx =0; $xxx < $#excludeIP; $xxx++){ - if ($excludeIP[$xxx] eq $1){$exc = "yes";} - } - if ($exc ne "yes"){ -@@ -1801,11 +1750,13 @@ sub parseLineNormal - } - ($connID) = $_ =~ /conn=(\d*)\s/; - $openConnection[$connID]++; -- ($time, $tzone) = split (' ', $_); -- ($date, $hr, $min, $sec) = split (':', $time); -- ($day, $mon, $yr) = split ('/', $date); -- $day =~ s/\[//; -- $start_time_of_connection[$connID] = timegm($sec, $min, $hours, $day, $monthname{$mon}, $yr); -+ if ($reportStats or ($verb eq "yes") || ($usage =~ /y/)) { -+ my ($time, $tzone) = split (' ', $_); -+ my ($date, $hr, $min, $sec) = split (':', $time); -+ my ($day, $mon, $yr) = split ('/', $date); -+ $day =~ s/\[//; -+ $start_time_of_connection[$connID] = timegm($sec, $min, $hr, $day, $monthname{$mon}, $yr); -+ } - } - if (m/ SSL client bound as /){$sslClientBindCount++;} - if (m/ SSL failed to map client certificate to LDAP DN/){$sslClientFailedCount++;} -@@ -1816,16 +1767,22 @@ sub parseLineNormal - - ($connID) = $_ =~ /conn=(\d*)\s/; - $openConnection[$connID]--; -- $end_time_of_connection[$connID] = $gmtime; -- $diff = $end_time_of_connection[$connID] - $start_time_of_connection[$connID]; -- $start_time_of_connection[$connID] = $end_time_of_connection[$connID] = 0; -- if ($diff <= 1) { $latency[0]++;} -- if ($diff == 2) { $latency[1]++;} -- if ($diff == 3) { $latency[2]++;} -- if ($diff >= 4 && $diff <=5 ) { $latency[3]++;} -- if ($diff >= 6 && $diff <=10 ) { $latency[4]++;} -- if ($diff >= 11 && $diff <=15 ) { $latency[5]++;} -- if ($diff >= 16) { $latency[6] ++;} -+ if ($reportStats or ($verb eq "yes") || ($usage =~ /y/)) { -+ # if we didn't see the start time of this connection -+ # i.e. due to truncation or log rotation -+ # then just set to 0 -+ my $stoc = $start_time_of_connection[$connID] || 0; -+ $end_time_of_connection[$connID] = $gmtime || 0; -+ my $diff = $end_time_of_connection[$connID] - $stoc; -+ $start_time_of_connection[$connID] = $end_time_of_connection[$connID] = 0; -+ if ($diff <= 1) { $latency[0]++;} -+ if ($diff == 2) { $latency[1]++;} -+ if ($diff == 3) { $latency[2]++;} -+ if ($diff >= 4 && $diff <=5 ) { $latency[3]++;} -+ if ($diff >= 6 && $diff <=10 ) { $latency[4]++;} -+ if ($diff >= 11 && $diff <=15 ) { $latency[5]++;} -+ if ($diff >= 16) { $latency[6] ++;} -+ } - } - if (m/ BIND/ && $_ =~ /dn=\"(.*)\" method/i ){ - if($reportStats){ inc_stats('bind',$s_stats,$m_stats); } -@@ -1834,25 +1791,26 @@ sub parseLineNormal - if($1 eq $rootDN){$rootDNBindCount++;} - $tmpp = $1; - $tmpp =~ tr/A-Z/a-z/; -- writeFile($BINDLIST, $tmpp); -- $bindVal = $tmpp; -- if ($_ =~ /conn= *([0-9]+)/i) { $bindConn = $1; writeFile($BIND_CONN, $1);} -- if ($_ =~ /op= *([0-9]+)/i) { $bindOp = $1; writeFile($BIND_OP, $1);} -+ $hashes->{bindlist}->{$tmpp}++; -+ if ($_ =~ /conn= *([0-9]+)/i) { push @{$arrays->{bindconn}}, $1;} -+ if ($_ =~ /op= *([0-9]+)/i) { push @{$arrays->{bindop}}, $1;} - if($usage =~ /f/ || $verb eq "yes"){ -- # only need this for the failed bind report -- writeFile($BINDINFO, "$bindVal ,, $bindConn ,, $bindOp"); -+ push @{$arrays->{binddn}}, $tmpp; - } - } else { - $anonymousBindCount++; -- writeFile($BINDLIST, "Anonymous Binds"); -+ $hashes->{bindlist}->{"Anonymous Binds"}++; -+ if ($_ =~ /conn= *([0-9]+)/i) { push @{$arrays->{bindconn}}, $1;} -+ if ($_ =~ /op= *([0-9]+)/i) { push @{$arrays->{bindop}}, $1;} -+ push @{$arrays->{binddn}}, ""; - inc_stats('anonbind',$s_stats,$m_stats); - } - } - if (m/ UNBIND/){ - $unbindCount++; - if ($verb eq "yes"){ -- if ($_ =~ /conn= *([0-9]+)/i){ writeFile($UNBIND_CONN, $1); } -- if ($_ =~ /op= *([0-9]+)/i){ writeFile($UNBIND_OP, $1); } -+ if ($_ =~ /conn= *([0-9]+)/i){ push @{$arrays->{unbindconn}}, $1; } -+ if ($_ =~ /op= *([0-9]+)/i){ push @{$arrays->{unbindop}}, $1; } - } - } - if (m/ RESULT err=/ && m/ notes=P/){ -@@ -1863,7 +1821,7 @@ sub parseLineNormal - $con = $1; - if ($_ =~ /op= *([0-9]+)/i){ $op = $1;} - } -- for ($i=0; $i <= $vlvCount;$i++){ -+ for (my $i=0; $i <= $vlvCount;$i++){ - if ($vlvconn[$i] eq $con && $vlvop[$i] eq $op){ $vlvNotesACount++; $isVlvNotes="1";} - } - if($isVlvNotes == 0){ -@@ -1873,22 +1831,12 @@ sub parseLineNormal - if($reportStats){ inc_stats('notesA',$s_stats,$m_stats); } - } - if ($usage =~ /u/ || $verb eq "yes"){ -- if ($isVlvNnotes == 0 ){ -- if ($_ =~ /etime= *([0-9.]+)/i ){ -- writeFile($NOTES_A_ETIME, $1); -- } -- if ($_ =~ /conn= *([0-9]+)/i){ -- writeFile($NOTES_A_CONN, $1); -- } -- if ($_ =~ /op= *([0-9]+)/i){ -- writeFile($NOTES_A_OP, $1); -- } -- if ($_ =~ / *([0-9a-z:\/]+)/i){ -- writeFile($NOTES_A_TIME, $1); -- } -- if ($_ =~ /nentries= *([0-9]+)/i ){ -- writeFile($NOTES_A_NENTRIES, $1); -- } -+ if ($isVlvNotes == 0 ){ -+ if ($_ =~ /etime= *([0-9.]+)/i ){ push @{$arrays->{notesAetime}}, $1; } -+ if ($_ =~ /conn= *([0-9]+)/i){ push @{$arrays->{notesAconn}}, $1; } -+ if ($_ =~ /op= *([0-9]+)/i){ push @{$arrays->{notesAop}}, $1; } -+ if ($_ =~ / *([0-9a-z:\/]+)/i){ push @{$arrays->{notesAtime}}, $1; } -+ if ($_ =~ /nentries= *([0-9]+)/i ){ push @{$arrays->{notesAnentries}}, $1; } - } - } - $isVlvNotes = 0; -@@ -1898,7 +1846,7 @@ sub parseLineNormal - $con = $1; - if ($_ =~ /op= *([0-9]+)/i){ $op = $1;} - } -- for ($i=0; $i <= $vlvCount;$i++){ -+ for (my $i=0; $i <= $vlvCount;$i++){ - if ($vlvconn[$i] eq $con && $vlvop[$i] eq $op){ $vlvNotesUCount++; $isVlvNotes="1";} - } - if($isVlvNotes == 0){ -@@ -1908,85 +1856,75 @@ sub parseLineNormal - if($reportStats){ inc_stats('notesU',$s_stats,$m_stats); } - } - if ($usage =~ /u/ || $verb eq "yes"){ -- if ($isVlvNnotes == 0 ){ -- if ($_ =~ /etime= *([0-9.]+)/i ){ -- writeFile($NOTES_U_ETIME, $1); -- } -- if ($_ =~ /conn= *([0-9]+)/i){ -- writeFile($NOTES_U_CONN, $1); -- } -- if ($_ =~ /op= *([0-9]+)/i){ -- writeFile($NOTES_U_OP, $1); -- } -- if ($_ =~ / *([0-9a-z:\/]+)/i){ -- writeFile($NOTES_U_TIME, $1); -- } -- if ($_ =~ /nentries= *([0-9]+)/i ){ -- writeFile($NOTES_U_NENTRIES, $1); -- } -+ if ($isVlvNotes == 0 ){ -+ if ($_ =~ /etime= *([0-9.]+)/i ){ push @{$arrays->{notesUetime}}, $1; } -+ if ($_ =~ /conn= *([0-9]+)/i){ push @{$arrays->{notesUconn}}, $1; } -+ if ($_ =~ /op= *([0-9]+)/i){ push @{$arrays->{notesUop}}, $1; } -+ if ($_ =~ / *([0-9a-z:\/]+)/i){ push @{$arrays->{notesUtime}}, $1; } -+ if ($_ =~ /nentries= *([0-9]+)/i ){ push @{$arrays->{notesUnentries}}, $1; } - } - } - $isVlvNotes = 0; - } - if (m/ closed error 32/){ - $brokenPipeCount++; -- if (m/- T1/){ writeFile($RC,"T1"); } -- elsif (m/- T2/){ writeFile($RC,"T2"); } -- elsif (m/- A1/){ writeFile($RC,"A1"); } -- elsif (m/- B1/){ writeFile($RC,"B1"); } -- elsif (m/- B4/){ writeFile($RC,"B4"); } -- elsif (m/- B2/){ writeFile($RC,"B2"); } -- elsif (m/- B3/){ writeFile($RC,"B3"); } -- elsif (m/- R1/){ writeFile($RC,"R1"); } -- elsif (m/- P1/){ writeFile($RC,"P1"); } -- elsif (m/- P1/){ writeFile($RC,"P2"); } -- elsif (m/- U1/){ writeFile($RC,"U1"); } -- else { writeFile($RC,"other"); } -+ if (m/- T1/){ $hashes->{rc}->{"T1"}++; } -+ elsif (m/- T2/){ $hashes->{rc}->{"T2"}++; } -+ elsif (m/- A1/){ $hashes->{rc}->{"A1"}++; } -+ elsif (m/- B1/){ $hashes->{rc}->{"B1"}++; } -+ elsif (m/- B4/){ $hashes->{rc}->{"B4"}++; } -+ elsif (m/- B2/){ $hashes->{rc}->{"B2"}++; } -+ elsif (m/- B3/){ $hashes->{rc}->{"B3"}++; } -+ elsif (m/- R1/){ $hashes->{rc}->{"R1"}++; } -+ elsif (m/- P1/){ $hashes->{rc}->{"P1"}++; } -+ elsif (m/- P1/){ $hashes->{rc}->{"P2"}++; } -+ elsif (m/- U1/){ $hashes->{rc}->{"U1"}++; } -+ else { $hashes->{rc}->{"other"}++; } - } - if (m/ closed error 131/ || m/ closed error -5961/){ - $connResetByPeerCount++; -- if (m/- T1/){ writeFile($SRC,"T1"); } -- elsif (m/- T2/){ writeFile($SRC,"T2"); } -- elsif (m/- A1/){ writeFile($SRC,"A1"); } -- elsif (m/- B1/){ writeFile($SRC,"B1"); } -- elsif (m/- B4/){ writeFile($SRC,"B4"); } -- elsif (m/- B2/){ writeFile($SRC,"B2"); } -- elsif (m/- B3/){ writeFile($SRC,"B3"); } -- elsif (m/- R1/){ writeFile($SRC,"R1"); } -- elsif (m/- P1/){ writeFile($SRC,"P1"); } -- elsif (m/- P1/){ writeFile($SRC,"P2"); } -- elsif (m/- U1/){ writeFile($SRC,"U1"); } -- else { writeFile($SRC,"other"); } -+ if (m/- T1/){ $hashes->{src}->{"T1"}++; } -+ elsif (m/- T2/){ $hashes->{src}->{"T2"}++; } -+ elsif (m/- A1/){ $hashes->{src}->{"A1"}++; } -+ elsif (m/- B1/){ $hashes->{src}->{"B1"}++; } -+ elsif (m/- B4/){ $hashes->{src}->{"B4"}++; } -+ elsif (m/- B2/){ $hashes->{src}->{"B2"}++; } -+ elsif (m/- B3/){ $hashes->{src}->{"B3"}++; } -+ elsif (m/- R1/){ $hashes->{src}->{"R1"}++; } -+ elsif (m/- P1/){ $hashes->{src}->{"P1"}++; } -+ elsif (m/- P1/){ $hashes->{src}->{"P2"}++; } -+ elsif (m/- U1/){ $hashes->{src}->{"U1"}++; } -+ else { $hashes->{src}->{"other"}++; } - } - if (m/ closed error 11/){ - $resourceUnavailCount++; -- if (m/- T1/){ writeFile($RSRC,"T1"); } -- elsif (m/- T2/){ writeFile($RSRC,"T2"); } -- elsif (m/- A1/){ writeFile($RSRC,"A1"); } -- elsif (m/- B1/){ writeFile($RSRC,"B1"); } -- elsif (m/- B4/){ writeFile($RSRC,"B4"); } -- elsif (m/- B2/){ writeFile($RSRC,"B2"); } -- elsif (m/- B3/){ writeFile($RSRC,"B3"); } -- elsif (m/- R1/){ writeFile($RSRC,"R1"); } -- elsif (m/- P1/){ writeFile($RSRC,"P1"); } -- elsif (m/- P1/){ writeFile($RSRC,"P2"); } -- elsif (m/- U1/){ writeFile($RSRC,"U1"); } -- else { writeFile($RSRC,"other"); } -+ if (m/- T1/){ $hashes->{rsrc}->{"T1"}++; } -+ elsif (m/- T2/){ $hashes->{rsrc}->{"T2"}++; } -+ elsif (m/- A1/){ $hashes->{rsrc}->{"A1"}++; } -+ elsif (m/- B1/){ $hashes->{rsrc}->{"B1"}++; } -+ elsif (m/- B4/){ $hashes->{rsrc}->{"B4"}++; } -+ elsif (m/- B2/){ $hashes->{rsrc}->{"B2"}++; } -+ elsif (m/- B3/){ $hashes->{rsrc}->{"B3"}++; } -+ elsif (m/- R1/){ $hashes->{rsrc}->{"R1"}++; } -+ elsif (m/- P1/){ $hashes->{rsrc}->{"P1"}++; } -+ elsif (m/- P1/){ $hashes->{rsrc}->{"P2"}++; } -+ elsif (m/- U1/){ $hashes->{rsrc}->{"U1"}++; } -+ else { $hashes->{rsrc}->{"other"}++; } - } - if ($usage =~ /g/ || $usage =~ /c/ || $usage =~ /i/ || $verb eq "yes"){ - $exc = "no"; - if ($_ =~ /connection from *([0-9A-fa-f\.\:]+)/i ) { -- for ($xxx = 0; $xxx <= $#excludeIP; $xxx++){ -+ for (my $xxx = 0; $xxx < $#excludeIP; $xxx++){ - if ($1 eq $excludeIP[$xxx]){ - $exc = "yes"; -- writeFile($EXCOUNT,$1); -+ $hashes->{excount}->{$1}++; - } - } - $ip = $1; -- writeFile($IP_HASH, "$ip count"); -+ $hashes->{ip_hash}->{$ip}++; - if ($_ =~ /conn= *([0-9]+)/i ){ - if ($exc ne "yes"){ -- writeFile($CONN_HASH, "$1 $ip"); -+ $hashes->{conn_hash}->{$1} = $ip; - } - } - } -@@ -1995,12 +1933,12 @@ sub parseLineNormal - $exc = "no"; - $ip = getIPfromConn($1); - if ($ip eq ""){$ip = "Unknown_Host";} -- for ($xxx = 0; $xxx <= $#excludeIP; $xxx++){ -+ for (my $xxx = 0; $xxx < $#excludeIP; $xxx++){ - if ($ip eq $excludeIP[$xxx]){$exc = "yes";} - } - if ($exc ne "yes"){ -- writeFile($IP_HASH, "$ip A1"); -- writeFile($CONNCOUNT, "A1"); -+ $hashes->{A1}->{$ip}++; -+ $hashes->{conncount}->{"A1"}++; - $connCodeCount++; - } - } -@@ -2010,12 +1948,12 @@ sub parseLineNormal - $exc = "no"; - $ip = getIPfromConn($1); - if ($ip eq ""){$ip = "Unknown_Host";} -- for ($xxx = 0; $xxx <= $#excludeIP; $xxx++){ -+ for (my $xxx = 0; $xxx < $#excludeIP; $xxx++){ - if ($ip eq $excludeIP[$xxx]){$exc = "yes";} - } - if ($exc ne "yes"){ -- writeFile($IP_HASH, "$ip B1"); -- writeFile($CONNCOUNT, "B1"); -+ $hashes->{B1}->{$ip}++; -+ $hashes->{conncount}->{"B1"}++; - $connCodeCount++; - } - } -@@ -2025,12 +1963,12 @@ sub parseLineNormal - $exc = "no"; - $ip = getIPfromConn($1); - if ($ip eq ""){$ip = "Unknown_Host";} -- for ($xxx = 0; $xxx <= $#excludeIP; $xxx++){ -+ for (my $xxx = 0; $xxx < $#excludeIP; $xxx++){ - if ($ip eq $excludeIP[$xxx]){$exc = "yes";} - } - if ($exc ne "yes"){ -- writeFile($IP_HASH, "$ip B4"); -- writeFile($CONNCOUNT, "B4"); -+ $hashes->{B4}->{$ip}++; -+ $hashes->{conncount}->{"B4"}++; - $connCodeCount++; - } - } -@@ -2040,12 +1978,12 @@ sub parseLineNormal - $exc = "no"; - $ip = getIPfromConn($1); - if ($ip eq ""){$ip = "Unknown_Host";} -- for ($xxx = 0; $xxx <= $#excludeIP; $xxx++){ -+ for (my $xxx = 0; $xxx < $#excludeIP; $xxx++){ - if ($ip eq $excludeIP[$xxx]){$exc = "yes";} - } - if ($exc ne "yes"){ -- writeFile($IP_HASH, "$ip T1"); -- writeFile($CONNCOUNT, "T1"); -+ $hashes->{T1}->{$ip}++; -+ $hashes->{conncount}->{"T1"}++; - $connCodeCount++; - } - } -@@ -2055,12 +1993,12 @@ sub parseLineNormal - $exc = "no"; - $ip = getIPfromConn($1); - if ($ip eq ""){$ip = "Unknown_Host";} -- for ($xxx = 0; $xxx <= $#excludeIP; $xxx++){ -+ for (my $xxx = 0; $xxx < $#excludeIP; $xxx++){ - if ($ip eq $excludeIP[$xxx]){$exc = "yes";} - } - if ($exc ne "yes"){ -- writeFile($IP_HASH, "$ip T2"); -- writeFile($CONNCOUNT, "T2"); -+ $hashes->{T2}->{$ip}++; -+ $hashes->{conncount}->{"T2"}++; - $connCodeCount++; - } - } -@@ -2071,12 +2009,12 @@ sub parseLineNormal - $ip = getIPfromConn($1); - $maxBerSizeCount++; - if ($ip eq ""){$ip = "Unknown_Host";} -- for ($xxx = 0; $xxx <= $#excludeIP; $xxx++){ -+ for (my $xxx = 0; $xxx < $#excludeIP; $xxx++){ - if ($ip eq $excludeIP[$xxx]){$exc = "yes";} - } - if ($exc ne "yes"){ -- writeFile($IP_HASH, "$ip B2"); -- writeFile($CONNCOUNT, "B2"); -+ $hashes->{B2}->{$ip}++; -+ $hashes->{conncount}->{"B2"}++; - $connCodeCount++; - } - } -@@ -2086,12 +2024,12 @@ sub parseLineNormal - $exc = "no"; - $ip = getIPfromConn($1); - if ($ip eq ""){$ip = "Unknown_Host";} -- for ($xxx = 0; $xxx <= $#excludeIP; $xxx++){ -+ for (my $xxx = 0; $xxx < $#excludeIP; $xxx++){ - if ($ip eq $excludeIP[$xxx]){$exc = "yes";} - } - if ($exc ne "yes"){ -- writeFile($IP_HASH, "$ip B3"); -- writeFile($CONNCOUNT, "B3"); -+ $hashes->{B3}->{$ip}++; -+ $hashes->{conncount}->{"B3"}++; - $connCodeCount++; - } - } -@@ -2101,12 +2039,12 @@ sub parseLineNormal - $exc = "no"; - $ip = getIPfromConn($1); - if ($ip eq ""){$ip = "Unknown_Host";} -- for ($xxx = 0; $xxx <= $#excludeIP; $xxx++){ -+ for (my $xxx = 0; $xxx < $#excludeIP; $xxx++){ - if ($ip eq $excludeIP[$xxx]){$exc = "yes";} - } - if ($exc ne "yes"){ -- writeFile($IP_HASH, "$ip R1"); -- writeFile($CONNCOUNT, "R1"); -+ $hashes->{R1}->{$ip}++; -+ $hashes->{conncount}->{"R1"}++; - $connCodeCount++; - } - } -@@ -2116,12 +2054,12 @@ sub parseLineNormal - $exc = "no"; - $ip = getIPfromConn($1); - if ($ip eq ""){$ip = "Unknown_Host";} -- for ($xxx = 0; $xxx <= $#excludeIP; $xxx++){ -+ for (my $xxx = 0; $xxx < $#excludeIP; $xxx++){ - if ($ip eq $excludeIP[$xxx]){$exc = "yes";} - } - if ($exc ne "yes"){ -- writeFile($IP_HASH, "$ip P1"); -- writeFile($CONNCOUNT, "P1"); -+ $hashes->{P1}->{$ip}++; -+ $hashes->{conncount}->{"P1"}++; - $connCodeCount++; - } - } -@@ -2131,12 +2069,12 @@ sub parseLineNormal - $exc = "no"; - $ip = getIPfromConn($1); - if ($ip eq ""){$ip = "Unknown_Host";} -- for ($xxx = 0; $xxx <= $#excludeIP; $xxx++){ -+ for (my $xxx = 0; $xxx < $#excludeIP; $xxx++){ - if ($ip eq $excludeIP[$xxx]){$exc = "yes";} - } - if ($exc ne "yes"){ -- writeFile($IP_HASH, "$ip P2"); -- writeFile($CONNCOUNT, "P2"); -+ $hashes->{P2}->{$ip}++; -+ $hashes->{conncount}->{"P2"}++; - $connCodeCount++; - } - } -@@ -2146,12 +2084,12 @@ sub parseLineNormal - $exc = "no"; - $ip = getIPfromConn($1); - if ($ip eq ""){$ip = "Unknown_Host";} -- for ($xxx = 0; $xxx <= $#excludeIP; $xxx++){ -+ for (my $xxx = 0; $xxx < $#excludeIP; $xxx++){ - if ($ip eq $excludeIP[$xxx]){$exc = "yes";} - } - if ($exc ne "yes"){ -- writeFile($IP_HASH, "$ip U1"); -- writeFile($CONNCOUNT, "U1"); -+ $hashes->{U1}->{$ip}++; -+ $hashes->{conncount}->{"U1"}++; - $connCodeCount++; - } - } -@@ -2162,59 +2100,60 @@ sub parseLineNormal - if ($1 ne "0"){ $errorCount++;} - else { $successCount++;} - } -- if ($_ =~ /etime= *([0-9.]+)/ ) { writeFile($ETIME, $1); inc_stats_val('etime',$1,$s_stats,$m_stats); } -+ if ($_ =~ /etime= *([0-9.]+)/ ) { $hashes->{etime}->{$1}++; inc_stats_val('etime',$1,$s_stats,$m_stats); } - if ($_ =~ / tag=101 / || $_ =~ / tag=111 / || $_ =~ / tag=100 / || $_ =~ / tag=115 /){ -- if ($_ =~ / nentries= *([0-9]+)/i ){ writeFile($NENTRIES, $1); } -+ if ($_ =~ / nentries= *([0-9]+)/i ){ $hashes->{nentries}->{$1}++; } - } - if (m/objectclass=\*/i || m/objectclass=top/i ){ - if (m/ scope=2 /){ $objectclassTopCount++;} - } - if (m/ EXT oid=/){ - $extopCount++; -- if ($_ =~ /oid=\" *([0-9\.]+)/i ){ writeFile($OID,$1); } -+ if ($_ =~ /oid=\" *([0-9\.]+)/i ){ $hashes->{oid}->{$1}++; } - if ($1 && $1 eq $startTLSoid){$startTLSCount++;} - if ($verb eq "yes"){ -- if ($_ =~ /conn= *([0-9]+)/i){ writeFile($EXT_CONN, $1); } -- if ($_ =~ /op= *([0-9]+)/i){ writeFile($EXT_OP, $1); } -+ if ($_ =~ /conn= *([0-9]+)/i){ push @{$arrays->{extconn}}, $1; } -+ if ($_ =~ /op= *([0-9]+)/i){ push @{$arrays->{extop}}, $1; } - } - } -- if ($usage =~ /l/ || $verb eq "yes"){ -+ if (($usage =~ /l/ || $verb eq "yes") and / SRCH /){ -+ my ($filterConn, $filterOp); - if (/ SRCH / && / attrs=/ && $_ =~ /filter=\"(.*)\" /i ){ - $tmpp = $1; - $tmpp =~ tr/A-Z/a-z/; - $tmpp =~ s/\\22/\"/g; -- writeFile($FILTER, $tmpp); -- $filterVal = $tmpp; -+ $hashes->{filter}->{$tmpp}++; - if ($_ =~ /conn= *([0-9]+)/i) { $filterConn = $1; } - if ($_ =~ /op= *([0-9]+)/i) { $filterOp = $1; } - } elsif (/ SRCH / && $_ =~ /filter=\"(.*)\"/i){ - $tmpp = $1; - $tmpp =~ tr/A-Z/a-z/; - $tmpp =~ s/\\22/\"/g; -- writeFile($FILTER, $tmpp); -- $filterVal = $tmpp; -+ $hashes->{filter}->{$tmpp}++; - if ($_ =~ /conn= *([0-9]+)/i) { $filterConn = $1; } - if ($_ =~ /op= *([0-9]+)/i) { $filterOp = $1; } - } - $filterCount++; - if($usage =~ /u/ || $verb eq "yes"){ -- # we noly need this for the unindexed search report -- writeFile($FILTERINFO, "$filterVal ,, $filterConn ,, $filterOp"); -+ # we only need this for the unindexed search report -+ push @{$arrays->{filterval}}, $tmpp; -+ push @{$arrays->{filterconn}}, $filterConn; -+ push @{$arrays->{filterop}}, $filterOp; - } - } - if ($usage =~ /a/ || $verb eq "yes"){ - if (/ SRCH / && $_ =~ /base=\"(.*)\" scope/i ){ -+ my ($baseConn, $baseOp, $scopeVal, $scopeConn, $scopeOp); - if ($1 eq ""){ - $tmpp = "Root DSE"; - } else { - $tmpp = $1; - } - $tmpp =~ tr/A-Z/a-z/; -- writeFile($BASE, $tmpp); -+ $hashes->{base}->{$tmpp}++; - # - # grab the search bases & scope for potential unindexed searches - # -- $baseVal = $tmpp; - if ($_ =~ /scope= *([0-9]+)/i) { - $scopeVal = $1; - } -@@ -2227,9 +2166,13 @@ sub parseLineNormal - $scopeOp = $1; - } - if($usage =~ /u/ || $verb eq "yes"){ -- # we noly need this for the unindexed search report -- writeFile($BASEINFO, "$baseVal ,, $baseConn ,, $baseOp"); -- writeFile($SCOPEINFO, "$scopeVal ,, $scopeConn ,, $scopeOp"); -+ # we only need this for the unindexed search report -+ push @{$arrays->{baseval}}, $tmpp; -+ push @{$arrays->{baseconn}}, $baseConn; -+ push @{$arrays->{baseop}}, $baseOp; -+ push @{$arrays->{scopeval}}, $scopeVal; -+ push @{$arrays->{scopeconn}}, $scopeConn; -+ push @{$arrays->{scopeop}}, $scopeOp; - } - $baseCount++; - $scopeCount++; -@@ -2243,26 +2186,26 @@ sub parseLineNormal - if ($usage =~ /f/ || $verb eq "yes"){ - if (/ err=49 tag=/ && / dn=\"/){ - if ($_ =~ /dn=\"(.*)\"/i ){ -- writeFile($DS6XBADPWD, $1); -+ $hashes->{ds6xbadpwd}->{$1}++; - } - $ds6x = "true"; - $badPwdCount++; - } elsif (/ err=49 tag=/ ){ - if ($_ =~ /conn= *([0-9]+)/i ){ -- writeFile($BADPWDCONN, $1); -+ push @{$arrays->{badpwdconn}}, $1; - $ip = getIPfromConn($1); - $badPwdCount++; - } - if ($_ =~ /op= *([0-9]+)/i ){ -- writeFile($BADPWDOP, $1); -+ push @{$arrays->{badpwdop}}, $1; - } -- writeFile($BADPWDIP, $ip); -+ push @{$arrays->{badpwdip}}, $ip; - } - } - if (/ BIND / && /method=sasl/i){ - $saslBindCount++; -- if ($_ =~ /mech=(.*)/i ){ -- writeFile($SASLMECH, $1); -+ if ($_ =~ /mech=(.*)/i ){ -+ $hashes->{saslmech}->{$1}++; - } - } - if (/ conn=Internal op=-1 / && !/ RESULT err=/){ $internalOpCount++; } -@@ -2414,7 +2357,7 @@ displayBindReport - - print "\nBind Report\n"; - print "====================================================================\n\n"; -- foreach $bindDN (sort { $bindReport{$a} <=> $bindReport{$b} } keys %bindReport) { -+ foreach my $bindDN (sort { $bindReport{$a} <=> $bindReport{$b} } keys %bindReport) { - print("Bind DN: $bindDN\n"); - print("--------------------------------------------------------------------\n"); - print(" Client Addresses:\n\n"); -@@ -2430,11 +2373,11 @@ displayBindReport - sub - printClients - { -- @bindConns = &cleanConns(split(' ', @_[0])); -- $IPcount = "1"; -+ my @bindConns = &cleanConns(split(' ', $_[0])); -+ my $IPcount = "1"; - -- foreach $ip ( keys %connList ){ # Loop over all the IP addresses -- foreach $bc (@bindConns){ # Loop over each bind conn number and compare it -+ foreach my $ip ( keys %connList ){ # Loop over all the IP addresses -+ foreach my $bc (@bindConns){ # Loop over each bind conn number and compare it - if($connList{$ip} =~ / $bc /){ - print(" [$IPcount] $ip\n"); - $IPcount++; -@@ -2447,22 +2390,22 @@ printClients - sub - cleanConns - { -- @dirtyConns = @_; -- $#cleanConns = -1; -- $c = 0; -+ my @dirtyConns = @_; -+ my @retConns = (); -+ my $c = 0; - -- for ($i = 0; $i <=$#dirtyConns; $i++){ -+ for (my $i = 0; $i <=$#dirtyConns; $i++){ - if($dirtyConns[$i] ne ""){ -- $cleanConns[$c++] = $dirtyConns[$i]; -+ $retConns[$c++] = $dirtyConns[$i]; - } - } -- return @cleanConns; -+ return @retConns; - } - - sub - printOpStats - { -- $dn = @_[0]; -+ my $dn = $_[0]; - - if( $bindReport{$dn}{"failedBind"} == 0 ){ - print(" Binds: " . $bindReport{$dn}{"binds"} . "\n"); -@@ -2487,333 +2430,70 @@ printOpStats - sub - openFailed - { -- $open_error = @_[0]; -- $file_name = @_[1]; -- closeDataFiles(); -+ my $open_error = $_[0]; -+ my $file_name = $_[1]; - removeDataFiles(); - die ("Can not open $file_name error ($open_error)"); - } - - sub --openDataFiles -+openHashFiles - { -- # hash files -- open ($ATTR, ">$ATTR") or do { openFailed($!, $ATTR) }; -- open ($RC, ">$RC") or do { openFailed($!, $RC) }; -- open ($SRC, ">$SRC") or do { openFailed($!, $SRC) }; -- open ($RSRC, ">$RSRC") or do { openFailed($!, $RSRC) }; -- open ($EXCOUNT, ">$EXCOUNT") or do { openFailed($!, $EXCOUNT) }; -- open ($CONN_HASH, ">$CONN_HASH") or do { openFailed($!, $CONN_HASH) }; -- open ($IP_HASH, ">$IP_HASH") or do { openFailed($!, $IP_HASH) }; -- open ($CONNCOUNT, ">$CONNCOUNT") or do { openFailed($!, $CONNCOUNT) }; -- open ($NENTRIES, ">$NENTRIES") or do { openFailed($!, $NENTRIES) }; -- open ($FILTER, ">$FILTER") or do { openFailed($!, $FILTER) }; -- open ($BASE, ">$BASE") or do { openFailed($!, $BASE) }; -- open ($DS6XBADPWD, ">$DS6XBADPWD") or do { openFailed($!, $DS6XBADPWD) }; -- open ($SASLMECH, ">$SASLMECH") or do { openFailed($!, $SASLMECH) }; -- open ($BINDLIST, ">$BINDLIST") or do { openFailed($!, $BINDLIST) }; -- open ($ETIME, ">$ETIME") or do { openFailed($!, $ETIME) }; -- open ($OID, ">$OID") or do { openFailed($!, $OID) }; -- -- # array files -- open($SRCH_CONN,">$SRCH_CONN") or do { openFailed($!, $SRCH_CONN) }; -- open($SRCH_OP, ">$SRCH_OP") or do { openFailed($!, $SRCH_OP) }; -- open($DEL_CONN, ">$DEL_CONN") or do { openFailed($!, $DEL_CONN) }; -- open($DEL_OP, ">$DEL_OP") or do { openFailed($!, $DEL_OP) }; -- open($MOD_CONN, ">$MOD_CONN") or do { openFailed($!, $MOD_CONN) }; -- open($MOD_OP, ">$MOD_OP") or do { openFailed($!, $MOD_OP) }; -- open($ADD_CONN, ">$ADD_CONN") or do { openFailed($!, $ADD_CONN) }; -- open($ADD_OP, ">$ADD_OP") or do { openFailed($!, $ADD_OP) }; -- open($MODRDN_CONN, ">$MODRDN_CONN") or do { openFailed($!, $MODRDN_CONN) }; -- open($MODRDN_OP, ">$MODRDN_OP") or do { openFailed($!, $MODRDN_OP) }; -- open($CMP_CONN, ">$CMP_CONN") or do { openFailed($!, $CMP_CONN) }; -- open($CMP_OP,">$CMP_OP") or do { openFailed($!, $CMP_OP) }; -- open($TARGET_CONN, ">$TARGET_CONN") or do { openFailed($!, $TARGET_CONN) }; -- open($TARGET_OP, ">$TARGET_OP") or do { openFailed($!, $TARGET_OP) }; -- open($MSGID, ">$MSGID") or do { openFailed($!, $MSGID) }; -- open($BIND_CONN, ">$BIND_CONN") or do { openFailed($!, $BIND_CONN) }; -- open($BIND_OP, ">$BIND_OP") or do { openFailed($!, $BIND_OP) }; -- open($UNBIND_CONN, ">$UNBIND_CONN") or do { openFailed($!, $UNBIND_CONN) }; -- open($UNBIND_OP, ">$UNBIND_OP") or do { openFailed($!, $UNBIND_OP) }; -- open($EXT_CONN, ">$EXT_CONN") or do { openFailed($!, $EXT_CONN) }; -- open($EXT_OP, ">$EXT_OP") or do { openFailed($!, $EXT_OP) }; -- open($NOTES_A_ETIME, ">$NOTES_A_ETIME") or do { openFailed($!, $NOTES_A_ETIME) }; -- open($NOTES_A_CONN, ">$NOTES_A_CONN") or do { openFailed($!, $NOTES_A_CONN) }; -- open($NOTES_A_OP, ">$NOTES_A_OP") or do { openFailed($!, $NOTES_A_OP) }; -- open($NOTES_A_TIME, ">$NOTES_A_TIME") or do { openFailed($!, $NOTES_A_TIME) }; -- open($NOTES_A_NENTRIES, ">$NOTES_A_NENTRIES") or do { openFailed($!, $NOTES_A_NENTRIES) }; -- open($NOTES_U_ETIME, ">$NOTES_U_ETIME") or do { openFailed($!, $NOTES_U_ETIME) }; -- open($NOTES_U_CONN, ">$NOTES_U_CONN") or do { openFailed($!, $NOTES_U_CONN) }; -- open($NOTES_U_OP, ">$NOTES_U_OP") or do { openFailed($!, $NOTES_U_OP) }; -- open($NOTES_U_TIME, ">$NOTES_U_TIME") or do { openFailed($!, $NOTES_U_TIME) }; -- open($NOTES_U_NENTRIES, ">$NOTES_U_NENTRIES") or do { openFailed($!, $NOTES_U_NENTRIES) }; -- open($BADPWDCONN, ">$BADPWDCONN") or do { openFailed($!, $BADPWDCONN) }; -- open($BADPWDOP, ">$BADPWDOP") or do { openFailed($!, $BADPWDOP) }; -- open($BADPWDIP, ">$BADPWDIP") or do { openFailed($!, $NADPWDIP) }; -- -- # info files -- open($BINDINFO, ">$BINDINFO") or do { openFailed($!, $BINDINFO) }; -- open($BASEINFO, ">$BASEINFO") or do { openFailed($!, $BASEINFO) }; -- open($SCOPEINFO, ">$SCOPEINFO") or do { openFailed($!, $SCOPEINFO) }; -- open($FILTERINFO, ">$FILTERINFO") or do { openFailed($!, $FILTERINFO) }; --} -- --sub --closeDataFiles --{ -- close $ATTR; -- close $RC; -- close $SRC; -- close $RSRC; -- close $EXCOUNT; -- close $CONN_HASH; -- close $IP_HASH; -- close $CONNCOUNT; -- close $NENTRIES; -- close $FILTER; -- close $BASE; -- close $DS6XBADPWD; -- close $SASLMECH; -- close $BINDLIST; -- close $ETIME; -- close $OID; -- -- # array files -- close $SRCH_CONN; -- close $SRCH_OP; -- close $DEL_CONN; -- close $DEL_OP; -- close $MOD_CONN; -- close $MOD_OP; -- close $ADD_CONN; -- close $ADD_OP; -- close $MODRDN_CONN; -- close $MODRDN_OP; -- close $CMP_CONN; -- close $CMP_OP; -- close $TARGET_CONN; -- close $TARGET_OP; -- close $MSGID; -- close $BIND_CONN; -- close $BIND_OP; -- close $UNBIND_CONN; -- close $UNBIND_OP; -- close $EXT_CONN; -- close $EXT_OP; -- close $NOTES_A_ETIME; -- close $NOTES_A_CONN; -- close $NOTES_A_OP; -- close $NOTES_A_TIME; -- close $NOTES_A_NENTRIES; -- close $NOTES_U_ETIME; -- close $NOTES_U_CONN; -- close $NOTES_U_OP; -- close $NOTES_U_TIME; -- close $NOTES_U_NENTRIES; -- close $BADPWDCONN; -- close $BADPWDOP; -- close $BADPWDIP; -- -- # info files -- close $BINDINFO; -- close $BASEINFO; -- close $SCOPEINFO; -- close $FILTERINFO; --} -- --sub --removeDataFiles --{ -- unlink $ATTR; -- unlink $RC; -- unlink $SRC; -- unlink $RSRC; -- unlink $EXCOUNT; -- unlink $CONN_HASH; -- unlink $IP_HASH; -- unlink $CONNCOUNT; -- unlink $NENTRIES; -- unlink $FILTER; -- unlink $BASE; -- unlink $DS6XBADPWD; -- unlink $SASLMECH; -- unlink $BINDLIST; -- unlink $ETIME; -- unlink $OID; -- -- # array files -- unlink $SRCH_CONN; -- unlink $SRCH_OP; -- unlink $DEL_CONN; -- unlink $DEL_OP; -- unlink $MOD_CONN; -- unlink $MOD_OP; -- unlink $ADD_CONN; -- unlink $ADD_OP; -- unlink $MODRDN_CONN; -- unlink $MODRDN_OP; -- unlink $CMP_CONN; -- unlink $CMP_OP; -- unlink $TARGET_CONN; -- unlink $TARGET_OP; -- unlink $MSGID; -- unlink $BIND_CONN; -- unlink $BIND_OP; -- unlink $UNBIND_CONN; -- unlink $UNBIND_OP; -- unlink $EXT_CONN; -- unlink $EXT_OP; -- unlink $NOTES_A_ETIME; -- unlink $NOTES_A_CONN; -- unlink $NOTES_A_OP; -- unlink $NOTES_A_TIME; -- unlink $NOTES_A_NENTRIES; -- unlink $NOTES_U_ETIME; -- unlink $NOTES_U_CONN; -- unlink $NOTES_U_OP; -- unlink $NOTES_U_TIME; -- unlink $NOTES_U_NENTRIES; -- unlink $BADPWDCONN; -- unlink $BADPWDOP; -- unlink $BADPWDIP; -- -- # info files -- unlink $BINDINFO; -- unlink $BASEINFO; -- unlink $SCOPEINFO; -- unlink $FILTERINFO; --} -- --sub --getIPfromConn --{ -- $connip = @_[0]; -- $retval = ""; -- -- close $CONN_HASH; # we can not read the file is its already open -- open(CONN,"$CONN_HASH") or do { openFailed($!, $CONN_HASH) }; -- while (){ -- if($_ =~ /$connip (.*)/){ -- $retval = $1; -- last; -- } -+ my $dir = shift; -+ my %hashes = (); -+ for my $hn (@_) { -+ my %h = (); # using my in inner loop will create brand new hash every time through for tie -+ my $fn = "$dir/$hn.logconv.db"; -+ push @removefiles, $fn; -+ tie %h, "DB_File", $fn, O_CREAT|O_RDWR, 0600, $DB_HASH or do { openFailed($!, $fn) }; -+ $hashes{$hn} = \%h; - } -- close CONN; -- #reopen file for writing(append) -- open($CONN_HASH,">>$CONN_HASH") or do { openFailed($!, $CONN_HASH) }; -- -- return $retval; --} -- --sub --writeFile --{ -- $file = @_[0]; -- $text = @_[1] . "\n"; -- -- print $file $text; -+ return \%hashes; - } - --# This hash file stores one value per line - sub --getCounterHashFromFile -+openArrayFiles - { -- $file = @_[0]; -- my %hash = (); -- -- open(FILE,"$file") or do { openFailed($!, $file) }; -- while(){ -- chomp; -- $hash{$_}++; -+ my $dir = shift; -+ my %arrays = (); -+ for my $an (@_) { -+ my @ary = (); # using my in inner loop will create brand new array every time through for tie -+ my $fn = "$dir/$an.logconv.db"; -+ push @removefiles, $fn; -+ tie @ary, "DB_File", $fn, O_CREAT|O_RDWR, 0600, $DB_RECNO or do { openFailed($!, $fn) }; -+ $arrays{$an} = \@ary; - } -- close FILE; -- -- return %hash; -+ return \%arrays; - } - --# this hash file stores two values per line (2 dimension hash) - sub --getTwoDimHashFromFile -+removeDataFiles - { -- $file = @_[0]; -- my %hash = (); -+ if (!$needCleanup) { return ; } - -- open(FILE,"$file") or do { openFailed($!, $file) }; -- while(){ -- @parts = split (' ', $_); -- chomp(@parts); -- $hash{$parts[0]}{$parts[1]}++; -+ for my $h (keys %{$hashes}) { -+ untie %{$hashes->{$h}}; - } -- close FILE; -- -- return %hash; --} -- --# this hash file stores two values per line (1 dimension hash) --sub --getHashFromFile --{ -- $file = @_[0]; -- my %hash = (); -- @parts = (); -- -- open(FILE,"$file") or do { openFailed($!, $file ) }; -- while(){ -- @parts = split (' ',$_); -- chomp(@parts); -- $hash{$parts[0]} = $parts[1]; -+ for my $a (keys %{$arrays}) { -+ untie @{$arrays->{$a}}; - } -- close FILE; -- -- return %hash; --} -- --# Return array of values from the file --sub --getArrayFromFile --{ -- my @arry; -- $file = @_[0]; -- $array_count = 0; -- -- open(FILE,"$file") or do { openFailed($!, $file) }; -- while(){ -- chomp; -- $arry[$array_count] = $_; -- $array_count++; -+ for my $file (@removefiles) { -+ unlink $file; - } -- close FILE; -- -- return @arry; -+ $needCleanup = 0; - } - --# build the three array -+END { print "Cleaning up temp files . . .\n"; removeDataFiles(); print "Done\n"; } -+ - sub --getInfoArraysFromFile -+getIPfromConn - { -- $file = @_[0]; -- $array_count = 0; -- @parts = (); -- -- open(FILE,"<$file") or do { openFailed($!, $file) }; -- while(){ -- @parts = split (' ,, ',$_); -- chomp(@parts); -- if($#parts > 0){ -- $fileArray1[$array_count] = $parts[0]; -- $fileArray2[$array_count] = $parts[1]; -- $fileArray3[$array_count] = $parts[2]; -- $array_count++; -- } -- } -- close FILE; -+ my $connid = shift; -+ return $hashes->{conn_hash}->{$connid}; - } - -- -- - ####################################### - # # - # The End # - # # - ####################################### -- --- -1.7.1 - diff --git a/SOURCES/0023-Ticket-47928-CI-test-added-test-cases-for-ticket-479.patch b/SOURCES/0023-Ticket-47928-CI-test-added-test-cases-for-ticket-479.patch new file mode 100644 index 0000000..1d3b1e0 --- /dev/null +++ b/SOURCES/0023-Ticket-47928-CI-test-added-test-cases-for-ticket-479.patch @@ -0,0 +1,229 @@ +From 8a412f7c540ac2925ad33ee633e60bf7e55e929c Mon Sep 17 00:00:00 2001 +From: Noriko Hosoi +Date: Wed, 22 Oct 2014 17:11:17 -0700 +Subject: [PATCH 23/28] Ticket 47928 - CI test: added test cases for ticket + 47928 + +Description: +test_ticket47928_run_0 - Test Case 13 - No SSL version config parameters +test_ticket47928_run_1 - Test Case 14 - No nsSSL3, nsTLS1; sslVersionMin > sslVersionMax +test_ticket47928_run_2 - Test Case 15 - nsSSL3: on; sslVersionMin: TLS1.1; sslVersionMax: TLS1.2 +test_ticket47928_run_3 - Test Case 16 - nsSSL3: on; nsTLS1: off; sslVersionMin: TLS1.1; sslVersionMax: TLS1.2 + +(cherry picked from commit 958be1271ab440a15649046e7927b44b57a4e19a) +Signed-off-by: Noriko Hosoi +--- + dirsrvtests/tickets/ticket47838_test.py | 165 +++++++++++++++++++++++++++++++- + 1 file changed, 161 insertions(+), 4 deletions(-) + +diff --git a/dirsrvtests/tickets/ticket47838_test.py b/dirsrvtests/tickets/ticket47838_test.py +index c98c36e..50a4b50 100644 +--- a/dirsrvtests/tickets/ticket47838_test.py ++++ b/dirsrvtests/tickets/ticket47838_test.py +@@ -201,7 +201,8 @@ def test_ticket47838_init(topology): + + log.info("\n######################### enable SSL in the directory server with all ciphers ######################\n") + topology.standalone.simple_bind_s(DN_DM, PASSWORD) +- topology.standalone.modify_s(ENCRYPTION_DN, [(ldap.MOD_REPLACE, 'nsSSL3', 'on'), ++ topology.standalone.modify_s(ENCRYPTION_DN, [(ldap.MOD_REPLACE, 'nsSSL3', 'off'), ++ (ldap.MOD_REPLACE, 'nsTLS1', 'on'), + (ldap.MOD_REPLACE, 'nsSSLClientAuth', 'allowed'), + (ldap.MOD_REPLACE, 'allowWeakCipher', 'on'), + (ldap.MOD_REPLACE, 'nsSSL3Ciphers', '+all')]) +@@ -645,19 +646,171 @@ def test_ticket47838_run_11(topology): + + comp_nsSSLEnableCipherCount(topology, 0) + ++def test_ticket47928_run_0(topology): ++ """ ++ No SSL version config parameters. ++ Check SSL3 (TLS1.0) is off. ++ """ ++ _header(topology, 'Test Case 13 - No SSL version config parameters') ++ ++ topology.standalone.simple_bind_s(DN_DM, PASSWORD) ++ # add them once and remove them ++ topology.standalone.modify_s(ENCRYPTION_DN, [(ldap.MOD_REPLACE, 'nsSSL3', 'off'), ++ (ldap.MOD_REPLACE, 'nsTLS1', 'on'), ++ (ldap.MOD_REPLACE, 'sslVersionMin', 'TLS1.1'), ++ (ldap.MOD_REPLACE, 'sslVersionMax', 'TLS1.2')]) ++ topology.standalone.modify_s(ENCRYPTION_DN, [(ldap.MOD_DELETE, 'nsSSL3', None), ++ (ldap.MOD_DELETE, 'nsTLS1', None), ++ (ldap.MOD_DELETE, 'sslVersionMin', None), ++ (ldap.MOD_DELETE, 'sslVersionMax', None)]) ++ topology.standalone.modify_s(CONFIG_DN, [(ldap.MOD_REPLACE, 'nsslapd-errorlog-level', '64')]) ++ ++ log.info("\n######################### Restarting the server ######################\n") ++ topology.standalone.stop(timeout=10) ++ os.system('mv %s %s.47838_11' % (topology.standalone.errlog, topology.standalone.errlog)) ++ os.system('touch %s' % (topology.standalone.errlog)) ++ topology.standalone.start(timeout=120) ++ ++ errmsg = os.popen('egrep "SSL alert:" %s | egrep "Default SSL Version settings; Configuring the version range as min: TLS1.1"' % topology.standalone.errlog) ++ if errmsg != "": ++ log.info("Expected message:") ++ log.info("%s" % errmsg.readline()) ++ else: ++ log.info("Expected message was not found") ++ assert False ++ ++def test_ticket47928_run_1(topology): ++ """ ++ No nsSSL3, nsTLS1; sslVersionMin > sslVersionMax ++ Check sslVersionMax is ignored. ++ """ ++ _header(topology, 'Test Case 14 - No nsSSL3, nsTLS1; sslVersionMin > sslVersionMax') ++ ++ topology.standalone.simple_bind_s(DN_DM, PASSWORD) ++ topology.standalone.modify_s(ENCRYPTION_DN, [(ldap.MOD_REPLACE, 'sslVersionMin', 'TLS1.2'), ++ (ldap.MOD_REPLACE, 'sslVersionMax', 'TLS1.1')]) ++ ++ log.info("\n######################### Restarting the server ######################\n") ++ topology.standalone.stop(timeout=10) ++ os.system('mv %s %s.47838_12' % (topology.standalone.errlog, topology.standalone.errlog)) ++ os.system('touch %s' % (topology.standalone.errlog)) ++ topology.standalone.start(timeout=120) ++ ++ errmsg = os.popen('egrep "SSL alert:" %s | egrep "The min value of NSS version range"' % topology.standalone.errlog) ++ if errmsg != "": ++ log.info("Expected message:") ++ log.info("%s" % errmsg.readline()) ++ else: ++ log.info("Expected message was not found") ++ assert False ++ ++ errmsg = os.popen('egrep "SSL Initialization" %s | egrep "Configured SSL version range: min: TLS1.2, max: TLS1"' % topology.standalone.errlog) ++ if errmsg != "": ++ log.info("Expected message:") ++ log.info("%s" % errmsg.readline()) ++ else: ++ log.info("Expected message was not found") ++ assert False ++ ++def test_ticket47928_run_2(topology): ++ """ ++ nsSSL3: on; sslVersionMin: TLS1.1; sslVersionMax: TLS1.2 ++ Conflict between nsSSL3 and range; nsSSL3 is disabled ++ """ ++ _header(topology, 'Test Case 15 - nsSSL3: on; sslVersionMin: TLS1.1; sslVersionMax: TLS1.2') ++ ++ topology.standalone.simple_bind_s(DN_DM, PASSWORD) ++ topology.standalone.modify_s(ENCRYPTION_DN, [(ldap.MOD_REPLACE, 'sslVersionMin', 'TLS1.1'), ++ (ldap.MOD_REPLACE, 'sslVersionMax', 'TLS1.2'), ++ (ldap.MOD_REPLACE, 'nsSSL3', 'on')]) ++ ++ log.info("\n######################### Restarting the server ######################\n") ++ topology.standalone.stop(timeout=10) ++ os.system('mv %s %s.47838_13' % (topology.standalone.errlog, topology.standalone.errlog)) ++ os.system('touch %s' % (topology.standalone.errlog)) ++ topology.standalone.start(timeout=120) ++ ++ errmsg = os.popen('egrep "SSL alert:" %s | egrep "Found unsecure configuration: nsSSL3: on"' % topology.standalone.errlog) ++ if errmsg != "": ++ log.info("Expected message:") ++ log.info("%s" % errmsg.readline()) ++ else: ++ log.info("Expected message was not found") ++ assert False ++ ++ errmsg = os.popen('egrep "SSL alert:" %s | egrep "Respect the supported range."' % topology.standalone.errlog) ++ if errmsg != "": ++ log.info("Expected message:") ++ log.info("%s" % errmsg.readline()) ++ else: ++ log.info("Expected message was not found") ++ assert False ++ ++ errmsg = os.popen('egrep "SSL Initialization" %s | egrep "Configured SSL version range: min: TLS1.1, max: TLS1"' % topology.standalone.errlog) ++ if errmsg != "": ++ log.info("Expected message:") ++ log.info("%s" % errmsg.readline()) ++ else: ++ log.info("Expected message was not found") ++ assert False ++ ++def test_ticket47928_run_3(topology): ++ """ ++ nsSSL3: on; nsTLS1: off; sslVersionMin: TLS1.1; sslVersionMax: TLS1.2 ++ Conflict between nsSSL3/nsTLS1 and range; nsSSL3 is disabled; nsTLS1 is enabled. ++ """ ++ _header(topology, 'Test Case 16 - nsSSL3: on; nsTLS1: off; sslVersionMin: TLS1.1; sslVersionMax: TLS1.2') ++ ++ topology.standalone.simple_bind_s(DN_DM, PASSWORD) ++ topology.standalone.modify_s(ENCRYPTION_DN, [(ldap.MOD_REPLACE, 'sslVersionMin', 'TLS1.1'), ++ (ldap.MOD_REPLACE, 'sslVersionMax', 'TLS1.2'), ++ (ldap.MOD_REPLACE, 'nsSSL3', 'on'), ++ (ldap.MOD_REPLACE, 'nsTLS1', 'off')]) ++ ++ log.info("\n######################### Restarting the server ######################\n") ++ topology.standalone.stop(timeout=10) ++ os.system('mv %s %s.47838_14' % (topology.standalone.errlog, topology.standalone.errlog)) ++ os.system('touch %s' % (topology.standalone.errlog)) ++ topology.standalone.start(timeout=120) ++ ++ errmsg = os.popen('egrep "SSL alert:" %s | egrep "Found unsecure configuration: nsSSL3: on"' % topology.standalone.errlog) ++ if errmsg != "": ++ log.info("Expected message:") ++ log.info("%s" % errmsg.readline()) ++ else: ++ log.info("Expected message was not found") ++ assert False ++ ++ errmsg = os.popen('egrep "SSL alert:" %s | egrep "Respect the configured range."' % topology.standalone.errlog) ++ if errmsg != "": ++ log.info("Expected message:") ++ log.info("%s" % errmsg.readline()) ++ else: ++ log.info("Expected message was not found") ++ assert False ++ ++ errmsg = os.popen('egrep "SSL Initialization" %s | egrep "Configured SSL version range: min: TLS1.1, max: TLS1"' % topology.standalone.errlog) ++ if errmsg != "": ++ log.info("Expected message:") ++ log.info("%s" % errmsg.readline()) ++ else: ++ log.info("Expected message was not found") ++ assert False ++ + def test_ticket47838_run_last(topology): + """ + Check nssSSL3Chiphers: all <== invalid value + All ciphers are disabled. + """ +- _header(topology, 'Test Case 13 - Check nssSSL3Chiphers: all, which is invalid') ++ _header(topology, 'Test Case 17 - Check nssSSL3Chiphers: all, which is invalid') + + topology.standalone.simple_bind_s(DN_DM, PASSWORD) ++ topology.standalone.modify_s(CONFIG_DN, [(ldap.MOD_REPLACE, 'nsslapd-errorlog-level', None)]) + topology.standalone.modify_s(ENCRYPTION_DN, [(ldap.MOD_REPLACE, 'nsSSL3Ciphers', 'all')]) + + log.info("\n######################### Restarting the server ######################\n") + topology.standalone.stop(timeout=10) +- os.system('mv %s %s.47838_10' % (topology.standalone.errlog, topology.standalone.errlog)) ++ os.system('mv %s %s.47838_15' % (topology.standalone.errlog, topology.standalone.errlog)) + os.system('touch %s' % (topology.standalone.errlog)) + topology.standalone.start(timeout=120) + +@@ -671,7 +824,7 @@ def test_ticket47838_run_last(topology): + + comp_nsSSLEnableCipherCount(topology, 0) + +- topology.standalone.log.info("ticket47838, 47880, 47908 were successfully verified."); ++ topology.standalone.log.info("ticket47838, 47880, 47908, 47928 were successfully verified."); + + def test_ticket47838_final(topology): + topology.standalone.simple_bind_s(DN_DM, PASSWORD) +@@ -706,6 +859,10 @@ def run_isolated(): + test_ticket47838_run_9(topo) + test_ticket47838_run_10(topo) + test_ticket47838_run_11(topo) ++ test_ticket47928_run_0(topo) ++ test_ticket47928_run_1(topo) ++ test_ticket47928_run_2(topo) ++ test_ticket47928_run_3(topo) + + test_ticket47838_run_last(topo) + +-- +1.9.3 + diff --git a/SOURCES/0024-Ticket-47387-improve-logconv.pl-performance-with-lar.patch b/SOURCES/0024-Ticket-47387-improve-logconv.pl-performance-with-lar.patch deleted file mode 100644 index da3b16f..0000000 --- a/SOURCES/0024-Ticket-47387-improve-logconv.pl-performance-with-lar.patch +++ /dev/null @@ -1,61 +0,0 @@ -From ecd128536dcec395876936a8d3abf5a1eea46089 Mon Sep 17 00:00:00 2001 -From: Rich Megginson -Date: Tue, 2 Jul 2013 14:38:49 -0600 -Subject: [PATCH 24/28] Ticket #47387 - improve logconv.pl performance with large access logs - -https://fedorahosted.org/389/ticket/47387 -Reviewed by: mreynolds (Thanks!) -Branch: master -Fix Description: Fix some additional uninitialized variable warnings -Platforms tested: RHEL6 x86_64 -Flag Day: no -Doc impact: no -(cherry picked from commit 8a23f5e0af41291d28c4ce7251d9bb2e94a5994c) -(cherry picked from commit 7a107bdb67dad58728977b3f410df1d94c6cdb91) ---- - ldap/admin/src/logconv.pl | 8 ++++---- - 1 files changed, 4 insertions(+), 4 deletions(-) - -diff --git a/ldap/admin/src/logconv.pl b/ldap/admin/src/logconv.pl -index b628d03..ec0fdf5 100755 ---- a/ldap/admin/src/logconv.pl -+++ b/ldap/admin/src/logconv.pl -@@ -673,7 +673,7 @@ if ($verb eq "yes" || $usage =~ /u/){ - - my $notesCount = "1"; - my $unindexedIp; -- for (my $n = 0; $n <= scalar(@{$notesEtime}); $n++){ -+ for (my $n = 0; $n < scalar(@{$notesEtime}); $n++){ - if($conn_hash->{$notesConn->[$n]} eq ""){ - $unindexedIp = "?"; - } else { -@@ -726,7 +726,7 @@ if ($verb eq "yes" || $usage =~ /u/){ - - my $notesCount = "1"; - my $unindexedIp; -- for (my $n = 0; $n <= scalar(@{$notesEtime}); $n++){ -+ for (my $n = 0; $n < scalar(@{$notesEtime}); $n++){ - if($conn_hash->{$notesConn->[$n]} eq ""){ - $unindexedIp = "?"; - } else { -@@ -1821,7 +1821,7 @@ sub parseLineNormal - $con = $1; - if ($_ =~ /op= *([0-9]+)/i){ $op = $1;} - } -- for (my $i=0; $i <= $vlvCount;$i++){ -+ for (my $i=0; $i < $vlvCount;$i++){ - if ($vlvconn[$i] eq $con && $vlvop[$i] eq $op){ $vlvNotesACount++; $isVlvNotes="1";} - } - if($isVlvNotes == 0){ -@@ -1846,7 +1846,7 @@ sub parseLineNormal - $con = $1; - if ($_ =~ /op= *([0-9]+)/i){ $op = $1;} - } -- for (my $i=0; $i <= $vlvCount;$i++){ -+ for (my $i=0; $i < $vlvCount;$i++){ - if ($vlvconn[$i] eq $con && $vlvop[$i] eq $op){ $vlvNotesUCount++; $isVlvNotes="1";} - } - if($isVlvNotes == 0){ --- -1.7.1 - diff --git a/SOURCES/0024-Ticket-47937-Crash-in-entry_add_present_values_wsi_m.patch b/SOURCES/0024-Ticket-47937-Crash-in-entry_add_present_values_wsi_m.patch new file mode 100644 index 0000000..c31da71 --- /dev/null +++ b/SOURCES/0024-Ticket-47937-Crash-in-entry_add_present_values_wsi_m.patch @@ -0,0 +1,319 @@ +From 0fb6ca5fe49774a646e36fd7acd59638cc57041c Mon Sep 17 00:00:00 2001 +From: Mark Reynolds +Date: Fri, 24 Oct 2014 14:14:25 -0400 +Subject: [PATCH 24/28] Ticket 47937 - Crash in + entry_add_present_values_wsi_multi_valued + +Bug Description: If the DNA plugin uses an invlid attribute for "dnaType" + this can lead to crash when DNA attempts to update this + attribute. + +Fix Description: In the DNA plugin, verify that the attribute exists. + Also in entrywsi.c, pass in the type from the attribute + struct(which does do some basic normalization). + +https://fedorahosted.org/389/ticket/47937 + +Reviewed by: nhosoi(Thanks!) + +(cherry picked from commit 3cdf0eb571d120573f2cda2c140fd2b4215c94fa) +(cherry picked from commit 738d985dc6f52660e13d94a118271ce288a75ea6) +--- + dirsrvtests/tickets/ticket47937_test.py | 237 ++++++++++++++++++++++++++++++++ + ldap/servers/plugins/dna/dna.c | 8 ++ + ldap/servers/slapd/entrywsi.c | 5 +- + 3 files changed, 248 insertions(+), 2 deletions(-) + create mode 100644 dirsrvtests/tickets/ticket47937_test.py + +diff --git a/dirsrvtests/tickets/ticket47937_test.py b/dirsrvtests/tickets/ticket47937_test.py +new file mode 100644 +index 0000000..09ee714 +--- /dev/null ++++ b/dirsrvtests/tickets/ticket47937_test.py +@@ -0,0 +1,237 @@ ++import os ++import sys ++import time ++import ldap ++import logging ++import socket ++import pytest ++from lib389 import DirSrv, Entry, tools ++from lib389.tools import DirSrvTools ++from lib389._constants import * ++from lib389.properties import * ++from constants import * ++ ++log = logging.getLogger(__name__) ++ ++installation_prefix = None ++ ++ ++class TopologyStandalone(object): ++ def __init__(self, standalone): ++ standalone.open() ++ self.standalone = standalone ++ ++ ++@pytest.fixture(scope="module") ++def topology(request): ++ ''' ++ This fixture is used to standalone topology for the 'module'. ++ At the beginning, It may exists a standalone instance. ++ It may also exists a backup for the standalone instance. ++ ++ Principle: ++ If standalone instance exists: ++ restart it ++ If backup of standalone exists: ++ create/rebind to standalone ++ ++ restore standalone instance from backup ++ else: ++ Cleanup everything ++ remove instance ++ remove backup ++ Create instance ++ Create backup ++ ''' ++ global installation_prefix ++ ++ if installation_prefix: ++ args_instance[SER_DEPLOYED_DIR] = installation_prefix ++ ++ standalone = DirSrv(verbose=False) ++ ++ # Args for the standalone instance ++ args_instance[SER_HOST] = HOST_STANDALONE ++ args_instance[SER_PORT] = PORT_STANDALONE ++ args_instance[SER_SERVERID_PROP] = SERVERID_STANDALONE ++ args_standalone = args_instance.copy() ++ standalone.allocate(args_standalone) ++ ++ # Get the status of the backups ++ backup_standalone = standalone.checkBackupFS() ++ ++ # Get the status of the instance and restart it if it exists ++ instance_standalone = standalone.exists() ++ if instance_standalone: ++ # assuming the instance is already stopped, just wait 5 sec max ++ standalone.stop(timeout=5) ++ standalone.start(timeout=10) ++ ++ if backup_standalone: ++ # The backup exist, assuming it is correct ++ # we just re-init the instance with it ++ if not instance_standalone: ++ standalone.create() ++ # Used to retrieve configuration information (dbdir, confdir...) ++ standalone.open() ++ ++ # restore standalone instance from backup ++ standalone.stop(timeout=10) ++ standalone.restoreFS(backup_standalone) ++ standalone.start(timeout=10) ++ ++ else: ++ # We should be here only in two conditions ++ # - This is the first time a test involve standalone instance ++ # - Something weird happened (instance/backup destroyed) ++ # so we discard everything and recreate all ++ ++ # Remove the backup. So even if we have a specific backup file ++ # (e.g backup_standalone) we clear backup that an instance may have created ++ if backup_standalone: ++ standalone.clearBackupFS() ++ ++ # Remove the instance ++ if instance_standalone: ++ standalone.delete() ++ ++ # Create the instance ++ standalone.create() ++ ++ # Used to retrieve configuration information (dbdir, confdir...) ++ standalone.open() ++ ++ # Time to create the backups ++ standalone.stop(timeout=10) ++ standalone.backupfile = standalone.backupFS() ++ standalone.start(timeout=10) ++ ++ # clear the tmp directory ++ standalone.clearTmpDir(__file__) ++ ++ # ++ # Here we have standalone instance up and running ++ # Either coming from a backup recovery ++ # or from a fresh (re)init ++ # Time to return the topology ++ return TopologyStandalone(standalone) ++ ++ ++def test_ticket47937(topology): ++ """ ++ Test that DNA plugin only accepts valid attributes for "dnaType" ++ """ ++ ++ log.info("Creating \"ou=people\"...") ++ try: ++ topology.standalone.add_s(Entry(('ou=people,' + SUFFIX, { ++ 'objectclass': 'top organizationalunit'.split(), ++ 'ou': 'people' ++ }))) ++ ++ except ldap.ALREADY_EXISTS: ++ pass ++ except ldap.LDAPError, e: ++ log.error('Failed to add ou=people org unit: error ' + e.message['desc']) ++ assert False ++ ++ log.info("Creating \"ou=ranges\"...") ++ try: ++ topology.standalone.add_s(Entry(('ou=ranges,' + SUFFIX, { ++ 'objectclass': 'top organizationalunit'.split(), ++ 'ou': 'ranges' ++ }))) ++ ++ except ldap.LDAPError, e: ++ log.error('Failed to add ou=ranges org unit: error ' + e.message['desc']) ++ assert False ++ ++ log.info("Creating \"cn=entry\"...") ++ try: ++ topology.standalone.add_s(Entry(('cn=entry,ou=people,' + SUFFIX, { ++ 'objectclass': 'top groupofuniquenames'.split(), ++ 'cn': 'entry' ++ }))) ++ ++ except ldap.LDAPError, e: ++ log.error('Failed to add test entry: error ' + e.message['desc']) ++ assert False ++ ++ log.info("Creating DNA shared config entry...") ++ try: ++ topology.standalone.add_s(Entry(('dnaHostname=localhost.localdomain+dnaPortNum=389,ou=ranges,%s' % SUFFIX, { ++ 'objectclass': 'top dnaSharedConfig'.split(), ++ 'dnaHostname': 'localhost.localdomain', ++ 'dnaPortNum': '389', ++ 'dnaSecurePortNum': '636', ++ 'dnaRemainingValues': '9501' ++ }))) ++ ++ except ldap.LDAPError, e: ++ log.error('Failed to add shared config entry: error ' + e.message['desc']) ++ assert False ++ ++ log.info("Add dna plugin config entry...") ++ try: ++ topology.standalone.add_s(Entry(('cn=dna config,cn=Distributed Numeric Assignment Plugin,cn=plugins,cn=config', { ++ 'objectclass': 'top dnaPluginConfig'.split(), ++ 'dnaType': 'description', ++ 'dnaMaxValue': '10000', ++ 'dnaMagicRegen': '0', ++ 'dnaFilter': '(objectclass=top)', ++ 'dnaScope': 'ou=people,%s' % SUFFIX, ++ 'dnaNextValue': '500', ++ 'dnaSharedCfgDN': 'ou=ranges,%s' % SUFFIX ++ }))) ++ ++ except ldap.LDAPError, e: ++ log.error('Failed to add DNA config entry: error ' + e.message['desc']) ++ assert False ++ ++ log.info("Enable the DNA plugin...") ++ try: ++ topology.standalone.plugins.enable(name=PLUGIN_DNA) ++ except e: ++ log.error("Failed to enable DNA Plugin: error " + e.message['desc']) ++ assert False ++ ++ log.info("Restarting the server...") ++ topology.standalone.stop(timeout=120) ++ time.sleep(1) ++ topology.standalone.start(timeout=120) ++ time.sleep(3) ++ ++ log.info("Apply an invalid attribute to the DNA config(dnaType: foo)...") ++ ++ try: ++ topology.standalone.modify_s('cn=dna config,cn=Distributed Numeric Assignment Plugin,cn=plugins,cn=config', ++ [(ldap.MOD_REPLACE, 'dnaType', 'foo')]) ++ except ldap.LDAPError, e: ++ log.info('Operation failed as expected (error: %s)' % e.message['desc']) ++ else: ++ log.error('Operation incorectly succeeded! Test Failed!') ++ assert False ++ ++ topology.standalone.log.info('Test 47937 Passed.') ++ ++ ++def test_ticket47937_final(topology): ++ topology.standalone.stop(timeout=10) ++ ++ ++def run_isolated(): ++ ''' ++ run_isolated is used to run these test cases independently of a test scheduler (xunit, py.test..) ++ To run isolated without py.test, you need to ++ - edit this file and comment '@pytest.fixture' line before 'topology' function. ++ - set the installation prefix ++ - run this program ++ ''' ++ global installation_prefix ++ installation_prefix = None ++ ++ topo = topology(True) ++ test_ticket47937(topo) ++ ++if __name__ == '__main__': ++ run_isolated() +\ No newline at end of file +diff --git a/ldap/servers/plugins/dna/dna.c b/ldap/servers/plugins/dna/dna.c +index bc280a4..75edca8 100644 +--- a/ldap/servers/plugins/dna/dna.c ++++ b/ldap/servers/plugins/dna/dna.c +@@ -936,6 +936,14 @@ dna_parse_config_entry(Slapi_PBlock *pb, Slapi_Entry * e, int apply) + } + + for (i = 0; entry->types && entry->types[i]; i++) { ++ if (!slapi_attr_syntax_exists(entry->types[i])){ ++ slapi_log_error(SLAPI_LOG_FATAL, DNA_PLUGIN_SUBSYSTEM, ++ "dna_parse_config_entry: dnaType (%s) does " ++ "not exist.\n", ++ entry->types[i]); ++ ret = DNA_FAILURE; ++ goto bail; ++ } + slapi_log_error(SLAPI_LOG_CONFIG, DNA_PLUGIN_SUBSYSTEM, + "----------> %s [%s]\n", DNA_TYPE, entry->types[i]); + } +diff --git a/ldap/servers/slapd/entrywsi.c b/ldap/servers/slapd/entrywsi.c +index 7039bfc..41afe1a 100644 +--- a/ldap/servers/slapd/entrywsi.c ++++ b/ldap/servers/slapd/entrywsi.c +@@ -423,6 +423,7 @@ static void resolve_attribute_state_present_to_deleted(Slapi_Entry *e, Slapi_Att + static void resolve_attribute_state_to_present_or_deleted(Slapi_Entry *e, Slapi_Attr *a, Slapi_Value **valuestoupdate, int attribute_state); + static int entry_add_present_values_wsi_single_valued(Slapi_Entry *e, const char *type, struct berval **bervals, const CSN *csn, int urp, long flags); + static int entry_add_present_values_wsi_multi_valued(Slapi_Entry *e, const char *type, struct berval **bervals, const CSN *csn, int urp, long flags); ++ + static int + entry_add_present_values_wsi(Slapi_Entry *e, const char *type, struct berval **bervals, const CSN *csn, int urp, long flags) + { +@@ -439,11 +440,11 @@ entry_add_present_values_wsi(Slapi_Entry *e, const char *type, struct berval **b + + if(slapi_attr_flag_is_set(a,SLAPI_ATTR_FLAG_SINGLE)) + { +- retVal = entry_add_present_values_wsi_single_valued( e, type, bervals, csn, urp, 0 ); ++ retVal = entry_add_present_values_wsi_single_valued( e, a->a_type, bervals, csn, urp, 0 ); + } + else + { +- retVal = entry_add_present_values_wsi_multi_valued( e, type, bervals, csn, urp, 0 ); ++ retVal = entry_add_present_values_wsi_multi_valued( e, a->a_type, bervals, csn, urp, 0 ); + } + return retVal; + } +-- +1.9.3 + diff --git a/SOURCES/0025-Ticket-47520-Fix-various-issues-with-logconv.pl.patch b/SOURCES/0025-Ticket-47520-Fix-various-issues-with-logconv.pl.patch deleted file mode 100644 index af906e0..0000000 --- a/SOURCES/0025-Ticket-47520-Fix-various-issues-with-logconv.pl.patch +++ /dev/null @@ -1,602 +0,0 @@ -From 13d7e670c2bd412a3e1db935e0ba5b4f4d92d900 Mon Sep 17 00:00:00 2001 -From: Mark Reynolds -Date: Mon, 23 Sep 2013 11:32:16 -0400 -Subject: [PATCH 25/28] Ticket 47520 - Fix various issues with logconv.pl - -Bug Description: When testing an access log that contains "internal" connections/ops, many - warning messages are created. Other warnings are generated because the - DB_File arrays need to have thier elements checked before comparing to other - strings. - -Fix Description: Improve value checking. Add support for connection numbers that are words (Internal), - and negative values for op ids(-1). - -https://fedorahosted.org/389/ticket/47520 - -Reviewed by: richm(Thanks!) -(cherry picked from commit 8b153e999ac6dc4869498a78da103a07db49d28e) -(cherry picked from commit 2c5d52b7a4aef8317cc9e34a9b1153c74620010d) ---- - ldap/admin/src/logconv.pl | 201 ++++++++++++++++++++++++-------------------- - 1 files changed, 110 insertions(+), 91 deletions(-) - -diff --git a/ldap/admin/src/logconv.pl b/ldap/admin/src/logconv.pl -index ec0fdf5..3a6fa01 100755 ---- a/ldap/admin/src/logconv.pl -+++ b/ldap/admin/src/logconv.pl -@@ -102,6 +102,7 @@ my $fdds = 0; - my $reportBinds = "no"; - my $rootDN = ""; - my $needCleanup = 0; -+my @scopeTxt = ("0 (base)", "1 (one)", "2 (subtree)"); - - GetOptions( - 'd|rootDN=s' => \$rootDN, -@@ -653,6 +654,7 @@ print "Entire Search Base Queries: $objectclassTopCount\n"; - print "Paged Searches: $pagedSearchCount\n"; - print "Unindexed Searches: $unindexedSrchCountNotesA\n"; - print "Unindexed Components: $unindexedSrchCountNotesU\n"; -+ - if ($verb eq "yes" || $usage =~ /u/){ - if ($unindexedSrchCountNotesA > 0){ - my $conn_hash = $hashes->{conn_hash}; -@@ -670,11 +672,12 @@ if ($verb eq "yes" || $usage =~ /u/){ - my $filter_val = $arrays->{filterval}; - my $filter_conn = $arrays->{filterconn}; - my $filter_op = $arrays->{filterop}; -- - my $notesCount = "1"; - my $unindexedIp; -+ - for (my $n = 0; $n < scalar(@{$notesEtime}); $n++){ -- if($conn_hash->{$notesConn->[$n]} eq ""){ -+ if(!$notesConn->[$n] || $notesConn->[$n] eq "" || -+ !$conn_hash->{$notesConn->[$n]} || $conn_hash->{$notesConn->[$n]} eq ""){ - $unindexedIp = "?"; - } else { - $unindexedIp = $conn_hash->{$notesConn->[$n]}; -@@ -688,18 +691,21 @@ if ($verb eq "yes" || $usage =~ /u/){ - print " - IP Address: $unindexedIp\n"; - - for (my $nnn = 0; $nnn < $baseCount; $nnn++){ -+ if(!$base_conn->[$nnn] || !$base_op->[$nnn]){ next; } - if ($notesConn->[$n] eq $base_conn->[$nnn] && $notesOp->[$n] eq $base_op->[$nnn]){ - print " - Search Base: $base_val->[$nnn]\n"; - last; - } - } - for (my $nnn = 0; $nnn < $scopeCount; $nnn++){ -+ if(!$scope_conn->[$nnn] || !$scope_op->[$nnn]){ next; } - if ($notesConn->[$n] eq $scope_conn->[$nnn] && $notesOp->[$n] eq $scope_op->[$nnn]){ - print " - Search Scope: $scope_val->[$nnn]\n"; - last; - } - } - for (my $nnn = 0; $nnn < $filterCount; $nnn++){ -+ if(!$filter_conn->[$nnn] || !$filter_op->[$nnn]){ next; } - if ($notesConn->[$n] eq $filter_conn->[$nnn] && $notesOp->[$n] eq $filter_op->[$nnn]){ - print " - Search Filter: $filter_val->[$nnn]\n"; - last; -@@ -727,7 +733,8 @@ if ($verb eq "yes" || $usage =~ /u/){ - my $notesCount = "1"; - my $unindexedIp; - for (my $n = 0; $n < scalar(@{$notesEtime}); $n++){ -- if($conn_hash->{$notesConn->[$n]} eq ""){ -+ if(!$notesConn->[$n] || $notesConn->[$n] eq "" || -+ !$conn_hash->{$notesConn->[$n]} || $conn_hash->{$notesConn->[$n]} eq ""){ - $unindexedIp = "?"; - } else { - $unindexedIp = $conn_hash->{$notesConn->[$n]}; -@@ -741,18 +748,21 @@ if ($verb eq "yes" || $usage =~ /u/){ - print " - IP Address: $unindexedIp\n"; - - for (my $nnn = 0; $nnn < $baseCount; $nnn++){ -+ if(!$base_conn->[$nnn] || !$base_op->[$nnn]){ next; } - if ($notesConn->[$n] eq $base_conn->[$nnn] && $notesOp->[$n] eq $base_op->[$nnn]){ - print " - Search Base: $base_val->[$nnn]\n"; - last; - } - } - for (my $nnn = 0; $nnn < $scopeCount; $nnn++){ -+ if(!$scope_conn->[$nnn] || !$scope_op->[$nnn]){ next; } - if ($notesConn->[$n] eq $scope_conn->[$nnn] && $notesOp->[$n] eq $scope_op->[$nnn]){ - print " - Search Scope: $scope_val->[$nnn]\n"; - last; - } - } - for (my $nnn = 0; $nnn < $filterCount; $nnn++){ -+ if(!$filter_conn->[$nnn] || !$filter_op->[$nnn]){ next; } - if ($notesConn->[$n] eq $filter_conn->[$nnn] && $notesOp->[$n] eq $filter_op->[$nnn]){ - print " - Search Filter: $filter_val->[$nnn]\n"; - last; -@@ -772,13 +782,12 @@ if ($brokenPipeCount > 0){ - my @etext; - foreach my $key (sort { $rc->{$b} <=> $rc->{$a} } keys %{$rc}) { - if ($rc->{$key} > 0){ -- if ($conn{$key} eq ""){$conn{$key} = "**Unknown**";} -- push @etext, sprintf " - %-4s (%2s) %-40s\n",$rc->{$key},$conn{$key},$connmsg{$key --}; -- } -- } -- print @etext; -- print "\n"; -+ if ($conn{$key} eq ""){$conn{$key} = "**Unknown**";} -+ push @etext, sprintf " - %-4s (%2s) %-40s\n",$rc->{$key},$conn{$key},$connmsg{$key}; -+ } -+ } -+ print @etext; -+ print "\n"; - } - - print "Connections Reset By Peer: $connResetByPeerCount\n"; -@@ -787,12 +796,11 @@ if ($connResetByPeerCount > 0){ - my @retext; - foreach my $key (sort { $src->{$b} <=> $src->{$a} } keys %{$src}) { - if ($src->{$key} > 0){ -- if ($conn{$key} eq ""){$conn{$key} = "**Unknown**";} -- push @retext, sprintf " - %-4s (%2s) %-40s\n",$src->{$key},$conn{$key},$connmsg{$key --}; -- } -- } -- print @retext; -+ if ($conn{$key} eq ""){$conn{$key} = "**Unknown**";} -+ push @retext, sprintf " - %-4s (%2s) %-40s\n",$src->{$key},$conn{$key},$connmsg{$key}; -+ } -+ } -+ print @retext; - print "\n"; - } - -@@ -802,9 +810,9 @@ if ($resourceUnavailCount > 0){ - my @rtext; - foreach my $key (sort { $rsrc->{$b} <=> $rsrc->{$a} } keys %{$rsrc}) { - if ($rsrc->{$key} > 0){ -- if ($conn{$key} eq ""){$conn{$key} = "**Resource Issue**";} -- push @rtext, sprintf " - %-4s (%2s) %-40s\n",$rsrc->{$key},$conn{$key},$connmsg{$key}; -- } -+ if ($conn{$key} eq ""){$conn{$key} = "**Resource Issue**";} -+ push @rtext, sprintf " - %-4s (%2s) %-40s\n",$rsrc->{$key},$conn{$key},$connmsg{$key}; -+ } - } - print @rtext; - } -@@ -1244,48 +1252,57 @@ if ($usage =~ /g/i || $verb eq "yes"){ - my $op = $arrays->{targetop}->[$g]; - my $msgid = $arrays->{msgid}->[$g]; - for (my $sc = 0; $sc < $srchCount; $sc++){ -- if ($arrays->{srchconn}->[$sc] eq $conn && $arrays->{srchop}->[$sc] eq $op ){ -+ if (($arrays->{srchconn}->[$sc] && $arrays->{srchop}->[$sc]) && -+ ($arrays->{srchconn}->[$sc] eq $conn && $arrays->{srchop}->[$sc] eq $op )){ - print " - SRCH conn=$conn op=$op msgid=$msgid client=$conn_hash->{$conn}\n"; - } - } - for (my $dc = 0; $dc < $delCount; $dc++){ -- if ($arrays->{delconn}->[$dc] eq $conn && $arrays->{delop}->[$dc] eq $op){ -- print " - DEL conn=$conn op=$op msgid=$msgid client=$conn_hash->{$conn}\n"; -+ if (($arrays->{delconn}->[$dc] && $arrays->{delop}->[$dc]) && -+ ($arrays->{delconn}->[$dc] eq $conn && $arrays->{delop}->[$dc] eq $op)){ -+ print " - DEL conn=$conn op=$op msgid=$msgid client=$conn_hash->{$conn}\n"; - } - } - for (my $adc = 0; $adc < $addCount; $adc++){ -- if ($arrays->{addconn}->[$adc] eq $conn && $arrays->{addop}->[$adc] eq $op){ -- print " - ADD conn=$conn op=$op msgid=$msgid client=$conn_hash->{$conn}\n"; -+ if (($arrays->{addconn}->[$adc] && $arrays->{addop}->[$adc]) && -+ ($arrays->{addconn}->[$adc] eq $conn && $arrays->{addop}->[$adc] eq $op)){ -+ print " - ADD conn=$conn op=$op msgid=$msgid client=$conn_hash->{$conn}\n"; - } - } - for (my $mc = 0; $mc < $modCount; $mc++){ -- if ($arrays->{modconn}->[$mc] eq $conn && $arrays->{modop}->[$mc] eq $op){ -- print " - MOD conn=$conn op=$op msgid=$msgid client=$conn_hash->{$conn}\n"; -+ if (($arrays->{modconn}->[$mc] && $arrays->{modop}->[$mc]) && -+ ($arrays->{modconn}->[$mc] eq $conn && $arrays->{modop}->[$mc] eq $op)){ -+ print " - MOD conn=$conn op=$op msgid=$msgid client=$conn_hash->{$conn}\n"; - } - } - for (my $cc = 0; $cc < $cmpCount; $cc++){ -- if ($arrays->{cmpconn}->[$cc] eq $conn && $arrays->{cmpop}->[$cc] eq $op){ -- print " - CMP conn=$conn op=$op msgid=$msgid client=$conn_hash->{$conn}\n"; -+ if (($arrays->{cmpconn}->[$cc] && $arrays->{cmpop}->[$cc]) && -+ ($arrays->{cmpconn}->[$cc] eq $conn && $arrays->{cmpop}->[$cc] eq $op)){ -+ print " - CMP conn=$conn op=$op msgid=$msgid client=$conn_hash->{$conn}\n"; - } - } - for (my $mdc = 0; $mdc < $modrdnCount; $mdc++){ -- if ($arrays->{modrdnconn}->[$mdc] eq $conn && $arrays->{modrdnop}->[$mdc] eq $op){ -+ if (($arrays->{modrdnconn}->[$mdc] && $arrays->{modrdnop}->[$mdc]) && -+ ($arrays->{modrdnconn}->[$mdc] eq $conn && $arrays->{modrdnop}->[$mdc] eq $op)){ - print " - MODRDN conn=$conn op=$op msgid=$msgid client=$conn_hash->{$conn}\n"; - } - } - for (my $bcb = 0; $bcb < $bindCount; $bcb++){ -- if ($arrays->{bindconn}->[$bcb] eq $conn && $arrays->{bindop}->[$bcb] eq $op){ -+ if (($arrays->{bindconn}->[$bcb] && $arrays->{bindop}->[$bcb]) && -+ ($arrays->{bindconn}->[$bcb] eq $conn && $arrays->{bindop}->[$bcb] eq $op)){ - print " - BIND conn=$conn op=$op msgid=$msgid client=$conn_hash->{$conn}\n"; - } - } - for (my $ubc = 0; $ubc < $unbindCount; $ubc++){ -- if ($arrays->{unbindconn}->[$ubc] eq $conn && $arrays->{unbindop}->[$ubc] eq $op){ -+ if (($arrays->{unbindconn}->[$ubc] && $arrays->{unbindop}->[$ubc]) && -+ ($arrays->{unbindconn}->[$ubc] eq $conn && $arrays->{unbindop}->[$ubc] eq $op)){ - print " - UNBIND conn=$conn op=$op msgid=$msgid client=$conn_hash->{$conn}\n"; - } - } - for (my $ec = 0; $ec < $extopCount; $ec++){ -- if ($arrays->{extconn}->[$ec] eq $conn && $arrays->{extop}->[$ec] eq $op){ -- print " - EXT conn=$conn op=$op msgid=$msgid client=$conn_hash->{$conn}\n"; -+ if (($arrays->{extconn}->[$ec] && $arrays->{extop}->[$ec]) && -+ ($arrays->{extconn}->[$ec] eq $conn && $arrays->{extop}->[$ec] eq $op)){ -+ print " - EXT conn=$conn op=$op msgid=$msgid client=$conn_hash->{$conn}\n"; - } - } - } -@@ -1485,7 +1502,7 @@ parseLineBind { - return ; - } - $ip = $1; -- if ($_ =~ /conn= *([0-9]+)/i ){ -+ if ($_ =~ /conn= *([0-9A-Z]+)/i ){ - $connList{$ip} = $connList{$ip} . " $1 "; - } - return; -@@ -1516,7 +1533,7 @@ parseLineBind { - $bindReport{$dn}{"modrdn"} = 0; - $bindReport{$dn}{"failedBind"} = 0; - } -- if ($_ =~ /conn= *([0-9]+)/i) { -+ if ($_ =~ /conn= *([0-9A-Z]+)/i) { - $bindReport{$dn}{"conn"} = $bindReport{$dn}{"conn"} . " $1 "; - } - return; -@@ -1547,7 +1564,7 @@ processOpForBindReport - my $op = shift; - my $data = shift; - -- if ($data =~ /conn= *([0-9]+)/i) { -+ if ($data =~ /conn= *([0-9A-Z]+)/i) { - foreach my $dn (keys %bindReport){ - if ($bindReport{$dn}{"conn"} =~ / $1 /){ - $bindReport{$dn}{$op}++; -@@ -1649,48 +1666,48 @@ sub parseLineNormal - $anyAttrs++; - } - if ($verb eq "yes"){ -- if ($_ =~ /conn= *([0-9]+)/i){ push @{$arrays->{srchconn}}, $1;} -- if ($_ =~ /op= *([0-9]+)/i){ push @{$arrays->{srchop}}, $1;} -+ if ($_ =~ /conn= *([0-9A-Z]+)/i){ push @{$arrays->{srchconn}}, $1;} -+ if ($_ =~ /op= *([0-9\-]+)/i){ push @{$arrays->{srchop}}, $1;} - } - } - if (m/ DEL/){ - $delCount++; - if($reportStats){ inc_stats('del',$s_stats,$m_stats); } - if ($verb eq "yes"){ -- if ($_ =~ /conn= *([0-9]+)/i){ push @{$arrays->{delconn}}, $1;} -- if ($_ =~ /op= *([0-9]+)/i){ push @{$arrays->{delop}}, $1;} -+ if ($_ =~ /conn= *([0-9A-Z]+)/i){ push @{$arrays->{delconn}}, $1;} -+ if ($_ =~ /op= *([0-9\-]+)/i){ push @{$arrays->{delop}}, $1;} - } - } - if (m/ MOD dn=/){ - $modCount++; - if($reportStats){ inc_stats('mod',$s_stats,$m_stats); } - if ($verb eq "yes"){ -- if ($_ =~ /conn= *([0-9]+)/i){ push @{$arrays->{modconn}}, $1;} -- if ($_ =~ /op= *([0-9]+)/i){ push @{$arrays->{modop}}, $1; } -+ if ($_ =~ /conn= *([0-9A-Z]+)/i){ push @{$arrays->{modconn}}, $1;} -+ if ($_ =~ /op= *([0-9\-]+)/i){ push @{$arrays->{modop}}, $1; } - } - } - if (m/ ADD/){ - $addCount++; - if($reportStats){ inc_stats('add',$s_stats,$m_stats); } - if ($verb eq "yes"){ -- if ($_ =~ /conn= *([0-9]+)/i){ push @{$arrays->{addconn}}, $1; } -- if ($_ =~ /op= *([0-9]+)/i){ push @{$arrays->{addop}}, $1; } -+ if ($_ =~ /conn= *([0-9A-Z]+)/i){ push @{$arrays->{addconn}}, $1; } -+ if ($_ =~ /op= *([0-9\-]+)/i){ push @{$arrays->{addop}}, $1; } - } - } - if (m/ MODRDN/){ - $modrdnCount++; - if($reportStats){ inc_stats('modrdn',$s_stats,$m_stats); } - if ($verb eq "yes"){ -- if ($_ =~ /conn= *([0-9]+)/i){ push @{$arrays->{modrdnconn}}, $1; } -- if ($_ =~ /op= *([0-9]+)/i){ push @{$arrays->{modrdnop}}, $1; } -+ if ($_ =~ /conn= *([0-9A-Z]+)/i){ push @{$arrays->{modrdnconn}}, $1; } -+ if ($_ =~ /op= *([0-9\-]+)/i){ push @{$arrays->{modrdnop}}, $1; } - } - } - if (m/ CMP dn=/){ - $cmpCount++; - if($reportStats){ inc_stats('cmp',$s_stats,$m_stats); } - if ($verb eq "yes" || $usage =~ /g/i){ -- if ($_ =~ /conn= *([0-9]+)/i){ push @{$arrays->{cmpconn}}, $1;} -- if ($_ =~ /op= *([0-9]+)/i){ push @{$arrays->{cmpop}}, $1;} -+ if ($_ =~ /conn= *([0-9A-Z]+)/i){ push @{$arrays->{cmpconn}}, $1;} -+ if ($_ =~ /op= *([0-9\-]+)/i){ push @{$arrays->{cmpop}}, $1;} - } - } - if (m/ ABANDON /){ -@@ -1699,13 +1716,13 @@ sub parseLineNormal - $allResults++; - if ($_ =~ /targetop= *([0-9a-zA-Z]+)/i ){ - push @{$arrays->{targetop}}, $1; -- if ($_ =~ /conn= *([0-9]+)/i){ push @{$arrays->{targetconn}}, $1; } -- if ($_ =~ /msgid= *([0-9]+)/i){ push @{$arrays->{msgid}}, $1; } -+ if ($_ =~ /conn= *([0-9A-Z]+)/i){ push @{$arrays->{targetconn}}, $1; } -+ if ($_ =~ /msgid= *([0-9\-]+)/i){ push @{$arrays->{msgid}}, $1; } - } - } - if (m/ VLV /){ -- if ($_ =~ /conn= *([0-9]+)/i){ $vlvconn[$vlvCount] = $1;} -- if ($_ =~ /op= *([0-9]+)/i){ $vlvop[$vlvCount] = $1;} -+ if ($_ =~ /conn= *([0-9A-Z]+)/i){ $vlvconn[$vlvCount] = $1;} -+ if ($_ =~ /op= *([0-9\-]+)/i){ $vlvop[$vlvCount] = $1;} - $vlvCount++; - } - if (m/ authzid=/){ -@@ -1792,16 +1809,16 @@ sub parseLineNormal - $tmpp = $1; - $tmpp =~ tr/A-Z/a-z/; - $hashes->{bindlist}->{$tmpp}++; -- if ($_ =~ /conn= *([0-9]+)/i) { push @{$arrays->{bindconn}}, $1;} -- if ($_ =~ /op= *([0-9]+)/i) { push @{$arrays->{bindop}}, $1;} -+ if ($_ =~ /conn= *([0-9A-Z]+)/i) { push @{$arrays->{bindconn}}, $1;} -+ if ($_ =~ /op= *([0-9\-]+)/i) { push @{$arrays->{bindop}}, $1;} - if($usage =~ /f/ || $verb eq "yes"){ - push @{$arrays->{binddn}}, $tmpp; - } - } else { - $anonymousBindCount++; - $hashes->{bindlist}->{"Anonymous Binds"}++; -- if ($_ =~ /conn= *([0-9]+)/i) { push @{$arrays->{bindconn}}, $1;} -- if ($_ =~ /op= *([0-9]+)/i) { push @{$arrays->{bindop}}, $1;} -+ if ($_ =~ /conn= *([0-9A-Z]+)/i) { push @{$arrays->{bindconn}}, $1;} -+ if ($_ =~ /op= *([0-9\-]+)/i) { push @{$arrays->{bindop}}, $1;} - push @{$arrays->{binddn}}, ""; - inc_stats('anonbind',$s_stats,$m_stats); - } -@@ -1809,17 +1826,18 @@ sub parseLineNormal - if (m/ UNBIND/){ - $unbindCount++; - if ($verb eq "yes"){ -- if ($_ =~ /conn= *([0-9]+)/i){ push @{$arrays->{unbindconn}}, $1; } -- if ($_ =~ /op= *([0-9]+)/i){ push @{$arrays->{unbindop}}, $1; } -+ if ($_ =~ /conn= *([0-9A-Z]+)/i){ push @{$arrays->{unbindconn}}, $1; } -+ if ($_ =~ /op= *([0-9\-]+)/i){ push @{$arrays->{unbindop}}, $1; } - } - } - if (m/ RESULT err=/ && m/ notes=P/){ - $pagedSearchCount++; - } - if (m/ notes=A/){ -- if ($_ =~ /conn= *([0-9]+)/i){ -+ $con = ""; -+ if ($_ =~ /conn= *([0-9A-Z]+)/i){ - $con = $1; -- if ($_ =~ /op= *([0-9]+)/i){ $op = $1;} -+ if ($_ =~ /op= *([0-9\-]+)/i){ $op = $1;} - } - for (my $i=0; $i < $vlvCount;$i++){ - if ($vlvconn[$i] eq $con && $vlvop[$i] eq $op){ $vlvNotesACount++; $isVlvNotes="1";} -@@ -1833,8 +1851,8 @@ sub parseLineNormal - if ($usage =~ /u/ || $verb eq "yes"){ - if ($isVlvNotes == 0 ){ - if ($_ =~ /etime= *([0-9.]+)/i ){ push @{$arrays->{notesAetime}}, $1; } -- if ($_ =~ /conn= *([0-9]+)/i){ push @{$arrays->{notesAconn}}, $1; } -- if ($_ =~ /op= *([0-9]+)/i){ push @{$arrays->{notesAop}}, $1; } -+ if ($_ =~ /conn= *([0-9A-Z]+)/i){ push @{$arrays->{notesAconn}}, $1; } -+ if ($_ =~ /op= *([0-9\-]+)/i){ push @{$arrays->{notesAop}}, $1; } - if ($_ =~ / *([0-9a-z:\/]+)/i){ push @{$arrays->{notesAtime}}, $1; } - if ($_ =~ /nentries= *([0-9]+)/i ){ push @{$arrays->{notesAnentries}}, $1; } - } -@@ -1842,9 +1860,10 @@ sub parseLineNormal - $isVlvNotes = 0; - } - if (m/ notes=U/){ -- if ($_ =~ /conn= *([0-9]+)/i){ -+ $con = ""; -+ if ($_ =~ /conn= *([0-9A-Z]+)/i){ - $con = $1; -- if ($_ =~ /op= *([0-9]+)/i){ $op = $1;} -+ if ($_ =~ /op= *([0-9\-]+)/i){ $op = $1;} - } - for (my $i=0; $i < $vlvCount;$i++){ - if ($vlvconn[$i] eq $con && $vlvop[$i] eq $op){ $vlvNotesUCount++; $isVlvNotes="1";} -@@ -1858,8 +1877,8 @@ sub parseLineNormal - if ($usage =~ /u/ || $verb eq "yes"){ - if ($isVlvNotes == 0 ){ - if ($_ =~ /etime= *([0-9.]+)/i ){ push @{$arrays->{notesUetime}}, $1; } -- if ($_ =~ /conn= *([0-9]+)/i){ push @{$arrays->{notesUconn}}, $1; } -- if ($_ =~ /op= *([0-9]+)/i){ push @{$arrays->{notesUop}}, $1; } -+ if ($_ =~ /conn= *([0-9A-Z]+)/i){ push @{$arrays->{notesUconn}}, $1; } -+ if ($_ =~ /op= *([0-9\-]+)/i){ push @{$arrays->{notesUop}}, $1; } - if ($_ =~ / *([0-9a-z:\/]+)/i){ push @{$arrays->{notesUtime}}, $1; } - if ($_ =~ /nentries= *([0-9]+)/i ){ push @{$arrays->{notesUnentries}}, $1; } - } -@@ -1922,14 +1941,14 @@ sub parseLineNormal - } - $ip = $1; - $hashes->{ip_hash}->{$ip}++; -- if ($_ =~ /conn= *([0-9]+)/i ){ -+ if ($_ =~ /conn= *([0-9A-Z]+)/i ){ - if ($exc ne "yes"){ - $hashes->{conn_hash}->{$1} = $ip; - } - } - } - if (m/- A1/){ -- if ($_ =~ /conn= *([0-9]+)/i) { -+ if ($_ =~ /conn= *([0-9A-Z]+)/i) { - $exc = "no"; - $ip = getIPfromConn($1); - if ($ip eq ""){$ip = "Unknown_Host";} -@@ -1944,7 +1963,7 @@ sub parseLineNormal - } - } - if (m/- B1/){ -- if ($_ =~ /conn= *([0-9]+)/i) { -+ if ($_ =~ /conn= *([0-9A-Z]+)/i) { - $exc = "no"; - $ip = getIPfromConn($1); - if ($ip eq ""){$ip = "Unknown_Host";} -@@ -1959,7 +1978,7 @@ sub parseLineNormal - } - } - if (m/- B4/){ -- if ($_ =~ /conn= *([0-9]+)/i) { -+ if ($_ =~ /conn= *([0-9A-Z]+)/i) { - $exc = "no"; - $ip = getIPfromConn($1); - if ($ip eq ""){$ip = "Unknown_Host";} -@@ -1974,7 +1993,7 @@ sub parseLineNormal - } - } - if (m/- T1/){ -- if ($_ =~ /conn= *([0-9]+)/i) { -+ if ($_ =~ /conn= *([0-9A-Z]+)/i) { - $exc = "no"; - $ip = getIPfromConn($1); - if ($ip eq ""){$ip = "Unknown_Host";} -@@ -1989,7 +2008,7 @@ sub parseLineNormal - } - } - if (m/- T2/){ -- if ($_ =~ /conn= *([0-9]+)/i) { -+ if ($_ =~ /conn= *([0-9A-Z]+)/i) { - $exc = "no"; - $ip = getIPfromConn($1); - if ($ip eq ""){$ip = "Unknown_Host";} -@@ -2004,7 +2023,7 @@ sub parseLineNormal - } - } - if (m/- B2/){ -- if ($_ =~ /conn= *([0-9]+)/i) { -+ if ($_ =~ /conn= *([0-9A-Z]+)/i) { - $exc = "no"; - $ip = getIPfromConn($1); - $maxBerSizeCount++; -@@ -2020,7 +2039,7 @@ sub parseLineNormal - } - } - if (m/- B3/){ -- if ($_ =~ /conn= *([0-9]+)/i) { -+ if ($_ =~ /conn= *([0-9A-Z]+)/i) { - $exc = "no"; - $ip = getIPfromConn($1); - if ($ip eq ""){$ip = "Unknown_Host";} -@@ -2035,7 +2054,7 @@ sub parseLineNormal - } - } - if (m/- R1/){ -- if ($_ =~ /conn= *([0-9]+)/i) { -+ if ($_ =~ /conn= *([0-9A-Z]+)/i) { - $exc = "no"; - $ip = getIPfromConn($1); - if ($ip eq ""){$ip = "Unknown_Host";} -@@ -2050,7 +2069,7 @@ sub parseLineNormal - } - } - if (m/- P1/){ -- if ($_ =~ /conn= *([0-9]+)/i) { -+ if ($_ =~ /conn= *([0-9A-Z]+)/i) { - $exc = "no"; - $ip = getIPfromConn($1); - if ($ip eq ""){$ip = "Unknown_Host";} -@@ -2065,7 +2084,7 @@ sub parseLineNormal - } - } - if (m/- P2/){ -- if ($_ =~ /conn= *([0-9]+)/i) { -+ if ($_ =~ /conn= *([0-9A-Z]+)/i) { - $exc = "no"; - $ip = getIPfromConn($1); - if ($ip eq ""){$ip = "Unknown_Host";} -@@ -2080,7 +2099,7 @@ sub parseLineNormal - } - } - if (m/- U1/){ -- if ($_ =~ /conn= *([0-9]+)/i) { -+ if ($_ =~ /conn= *([0-9A-Z]+)/i) { - $exc = "no"; - $ip = getIPfromConn($1); - if ($ip eq ""){$ip = "Unknown_Host";} -@@ -2112,8 +2131,8 @@ sub parseLineNormal - if ($_ =~ /oid=\" *([0-9\.]+)/i ){ $hashes->{oid}->{$1}++; } - if ($1 && $1 eq $startTLSoid){$startTLSCount++;} - if ($verb eq "yes"){ -- if ($_ =~ /conn= *([0-9]+)/i){ push @{$arrays->{extconn}}, $1; } -- if ($_ =~ /op= *([0-9]+)/i){ push @{$arrays->{extop}}, $1; } -+ if ($_ =~ /conn= *([0-9A-Z]+)/i){ push @{$arrays->{extconn}}, $1; } -+ if ($_ =~ /op= *([0-9\-]+)/i){ push @{$arrays->{extop}}, $1; } - } - } - if (($usage =~ /l/ || $verb eq "yes") and / SRCH /){ -@@ -2123,15 +2142,15 @@ sub parseLineNormal - $tmpp =~ tr/A-Z/a-z/; - $tmpp =~ s/\\22/\"/g; - $hashes->{filter}->{$tmpp}++; -- if ($_ =~ /conn= *([0-9]+)/i) { $filterConn = $1; } -- if ($_ =~ /op= *([0-9]+)/i) { $filterOp = $1; } -+ if ($_ =~ /conn= *([0-9A-Z]+)/i) { $filterConn = $1; } -+ if ($_ =~ /op= *([0-9\-]+)/i) { $filterOp = $1; } - } elsif (/ SRCH / && $_ =~ /filter=\"(.*)\"/i){ - $tmpp = $1; - $tmpp =~ tr/A-Z/a-z/; - $tmpp =~ s/\\22/\"/g; - $hashes->{filter}->{$tmpp}++; -- if ($_ =~ /conn= *([0-9]+)/i) { $filterConn = $1; } -- if ($_ =~ /op= *([0-9]+)/i) { $filterOp = $1; } -+ if ($_ =~ /conn= *([0-9A-Z]+)/i) { $filterConn = $1; } -+ if ($_ =~ /op= *([0-9\-]+)/i) { $filterOp = $1; } - } - $filterCount++; - if($usage =~ /u/ || $verb eq "yes"){ -@@ -2157,11 +2176,11 @@ sub parseLineNormal - if ($_ =~ /scope= *([0-9]+)/i) { - $scopeVal = $1; - } -- if ($_ =~ /conn= *([0-9]+)/i) { -+ if ($_ =~ /conn= *([0-9A-Z]+)/i) { - $baseConn = $1; - $scopeConn = $1; - } -- if ($_ =~ /op= *([0-9]+)/i) { -+ if ($_ =~ /op= *([0-9\-]+)/i) { - $baseOp = $1; - $scopeOp = $1; - } -@@ -2170,9 +2189,9 @@ sub parseLineNormal - push @{$arrays->{baseval}}, $tmpp; - push @{$arrays->{baseconn}}, $baseConn; - push @{$arrays->{baseop}}, $baseOp; -- push @{$arrays->{scopeval}}, $scopeVal; -- push @{$arrays->{scopeconn}}, $scopeConn; -- push @{$arrays->{scopeop}}, $scopeOp; -+ push @{$arrays->{scopeval}}, $scopeTxt[$scopeVal]; -+ push @{$arrays->{scopeconn}}, $scopeConn; -+ push @{$arrays->{scopeop}}, $scopeOp; - } - $baseCount++; - $scopeCount++; -@@ -2191,12 +2210,12 @@ sub parseLineNormal - $ds6x = "true"; - $badPwdCount++; - } elsif (/ err=49 tag=/ ){ -- if ($_ =~ /conn= *([0-9]+)/i ){ -+ if ($_ =~ /conn= *([0-9A-Z]+)/i ){ - push @{$arrays->{badpwdconn}}, $1; - $ip = getIPfromConn($1); - $badPwdCount++; - } -- if ($_ =~ /op= *([0-9]+)/i ){ -+ if ($_ =~ /op= *([0-9\-]+)/i ){ - push @{$arrays->{badpwdop}}, $1; - } - push @{$arrays->{badpwdip}}, $ip; --- -1.7.1 - diff --git a/SOURCES/0025-Ticket-47928-Disable-SSL-v3-by-default.patch b/SOURCES/0025-Ticket-47928-Disable-SSL-v3-by-default.patch new file mode 100644 index 0000000..ea6855f --- /dev/null +++ b/SOURCES/0025-Ticket-47928-Disable-SSL-v3-by-default.patch @@ -0,0 +1,46 @@ +From 02e9d25e7836bc5f350bc81d78ed2b8dd457f9b2 Mon Sep 17 00:00:00 2001 +From: Noriko Hosoi +Date: Mon, 27 Oct 2014 09:24:46 -0700 +Subject: [PATCH 25/28] Ticket #47928 - Disable SSL v3, by default. + +Description: commit c1ecd8b659a0b8f7d84f8157cb69810c85ee26e4 +introdueced a coverity defect: 12783 - Logically dead code + +This patch removes the dead code. + +https://fedorahosted.org/389/ticket/47928 + +Reviewed by rmeggins@redhat.com (Thank you, Rich!!) + +(cherry picked from commit 77989d3bb5471542db50d66de77cc40fe4500cbd) +(cherry picked from commit 29a41604ce48855bd6d96bbd83cbae870deaa8d7) +--- + ldap/servers/slapd/ssl.c | 5 ----- + 1 file changed, 5 deletions(-) + +diff --git a/ldap/servers/slapd/ssl.c b/ldap/servers/slapd/ssl.c +index 26ef251..f81d1fb 100644 +--- a/ldap/servers/slapd/ssl.c ++++ b/ldap/servers/slapd/ssl.c +@@ -1215,7 +1215,6 @@ slapd_ssl_init() + PRErrorCode errorCode; + char ** family_list; + char *val = NULL; +- int rv = 0; + PK11SlotInfo *slot; + Slapi_Entry *entry = NULL; + +@@ -1334,10 +1333,6 @@ slapd_ssl_init() + * already been executed. */ + _security_library_initialized = 1; + +- if ( rv != 0 ) { +- return rv; +- } +- + return 0; + } + +-- +1.9.3 + diff --git a/SOURCES/0026-Ticket-47501-logconv.pl-uses-var-tmp-for-BDB-temp-fi.patch b/SOURCES/0026-Ticket-47501-logconv.pl-uses-var-tmp-for-BDB-temp-fi.patch deleted file mode 100644 index 601d34d..0000000 --- a/SOURCES/0026-Ticket-47501-logconv.pl-uses-var-tmp-for-BDB-temp-fi.patch +++ /dev/null @@ -1,1501 +0,0 @@ -From 86251b8a014583a39e365cf67c6db80197cdc608 Mon Sep 17 00:00:00 2001 -From: Rich Megginson -Date: Tue, 23 Jul 2013 17:05:32 -0600 -Subject: [PATCH 26/28] Ticket #47501 logconv.pl uses /var/tmp for BDB temp files - -https://fedorahosted.org/389/ticket/47501 -Reviewed by: mreynolds (Thanks!) -Branch: master -Fix Description: Tied arrays with DB_RECNO require a backing text file. By -default this goes in /var/tmp. This can be controlled with RECNOINFO bfname. -However, the use of arrays was killing performance. This patch replaces -all arrays with tied hashes. In addition, this patch fixes the notes=U -handling to also handle notes=U,P and notes=A,P -Platforms tested: RHEL6 x86_64 -Flag Day: no -Doc impact: no -(cherry picked from commit 4d20922423c9e22c858e0be7dd317591631cf357) -(cherry picked from commit d890e65b4ab15d0a836dbb248da8606867938630) ---- - ldap/admin/src/logconv.pl | 775 +++++++++++++++++++-------------------------- - 1 files changed, 333 insertions(+), 442 deletions(-) - -diff --git a/ldap/admin/src/logconv.pl b/ldap/admin/src/logconv.pl -index 3a6fa01..ca07a3a 100755 ---- a/ldap/admin/src/logconv.pl -+++ b/ldap/admin/src/logconv.pl -@@ -67,7 +67,7 @@ if ($#ARGV < 0){; - - my $file_count = 0; - my $arg_count = 0; --my $logversion = "7.0"; -+my $logversion = "8.0"; - my $sizeCount = "20"; - my $startFlag = 0; - my $startTime = 0; -@@ -76,6 +76,8 @@ my $endTime = 0; - my $reportStats = ""; - my $dataLocation = "/tmp"; - my $startTLSoid = "1.3.6.1.4.1.1466.20037"; -+my @statnames=qw(last last_str results srch add mod modrdn moddn cmp del abandon -+ conns sslconns bind anonbind unbind notesA notesU etime); - my $s_stats = new_stats_block( ); - my $m_stats = new_stats_block( ); - my $verb = "no"; -@@ -95,8 +97,6 @@ my %connList; - my %bindReport; - my @vlvconn; - my @vlvop; --my @start_time_of_connection; --my @end_time_of_connection; - my @fds; - my $fdds = 0; - my $reportBinds = "no"; -@@ -179,7 +179,7 @@ if ($sizeCount eq "all"){$sizeCount = "100000";} - - ####################################### - # # --# Initialize Arrays and variables # -+# Initialize Hashes and variables # - # # - ####################################### - -@@ -255,21 +255,17 @@ map {$conn{$_} = $_} @conncodes; - - # hash db-backed hashes - my @hashnames = qw(attr rc src rsrc excount conn_hash ip_hash conncount nentries -- filter base ds6xbadpwd saslmech bindlist etime oid); -+ filter base ds6xbadpwd saslmech bindlist etime oid -+ start_time_of_connection end_time_of_connection -+ notesa_conn_op notesu_conn_op etime_conn_op nentries_conn_op -+ optype_conn_op time_conn_op srch_conn_op del_conn_op mod_conn_op -+ mdn_conn_op cmp_conn_op bind_conn_op unbind_conn_op ext_conn_op -+ abandon_conn_op badpwd_conn_op); - # need per connection code ip address counts - so use a hash table - # for each connection code - key is ip, val is count - push @hashnames, @conncodes; - my $hashes = openHashFiles($dataLocation, @hashnames); - --# recno db-backed arrays/lists --my @arraynames = qw(srchconn srchop delconn delop modconn modop addconn addop modrdnconn modrdnop -- cmpconn cmpop targetconn targetop msgid bindconn bindop binddn unbindconn unbindop -- extconn extop notesAetime notesAconn notesAop notesAtime notesAnentries -- notesUetime notesUconn notesUop notesUtime notesUnentries badpwdconn -- badpwdop badpwdip baseval baseconn baseop scopeval scopeconn scopeop -- filterval filterconn filterop); --my $arrays = openArrayFiles($dataLocation, @arraynames); -- - $needCleanup = 1; - - my @err; -@@ -636,6 +632,12 @@ Binds: @<<<<<<<<<<<< @<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< - . - write STDOUT; - -+# format/write messes up emacs autoformatting - inserting this dummy function -+# fixes that -+sub dummy { -+ my $bar = shift; -+} -+ - print "\n"; - print "Proxied Auth Operations: $proxiedAuthCount\n"; - print "Persistent Searches: $persistentSrchCount\n"; -@@ -658,115 +660,75 @@ print "Unindexed Components: $unindexedSrchCountNotesU\n"; - if ($verb eq "yes" || $usage =~ /u/){ - if ($unindexedSrchCountNotesA > 0){ - my $conn_hash = $hashes->{conn_hash}; -- my $notesConn = $arrays->{notesAconn}; -- my $notesOp = $arrays->{notesAop}; -- my $notesEtime = $arrays->{notesAetime}; -- my $notesTime = $arrays->{notesAtime}; -- my $notesNentries = $arrays->{notesAnentries}; -- my $base_val = $arrays->{baseval}; -- my $base_conn = $arrays->{baseconn}; -- my $base_op = $arrays->{baseop}; -- my $scope_val = $arrays->{scopeval}; -- my $scope_conn = $arrays->{scopeconn}; -- my $scope_op = $arrays->{scopeop}; -- my $filter_val = $arrays->{filterval}; -- my $filter_conn = $arrays->{filterconn}; -- my $filter_op = $arrays->{filterop}; -- my $notesCount = "1"; -+ my $notesa_conn_op = $hashes->{notesa_conn_op}; -+ my $time_conn_op = $hashes->{time_conn_op}; -+ my $etime_conn_op = $hashes->{etime_conn_op}; -+ my $nentries_conn_op = $hashes->{nentries_conn_op}; -+ my $base_conn_op = $hashes->{base_conn_op}; -+ my $scope_conn_op = $hashes->{scope_conn_op}; -+ my $filter_conn_op = $hashes->{filter_conn_op}; -+ -+ my $notesCount = 1; - my $unindexedIp; -- -- for (my $n = 0; $n < scalar(@{$notesEtime}); $n++){ -- if(!$notesConn->[$n] || $notesConn->[$n] eq "" || -- !$conn_hash->{$notesConn->[$n]} || $conn_hash->{$notesConn->[$n]} eq ""){ -- $unindexedIp = "?"; -+ while (my ($conn_op, $count) = each %{$notesa_conn_op}) { -+ my ($conn, $op) = split(",", $conn_op); -+ if (exists($conn_hash->{$conn}) && defined($conn_hash->{$conn})) { -+ $unindexedIp = $conn_hash->{$conn}; - } else { -- $unindexedIp = $conn_hash->{$notesConn->[$n]}; -+ $unindexedIp = "?"; - } -- print "\n Unindexed Search #".$notesCount."\n"; $notesCount++; -- print " - Date/Time: $notesTime->[$n]\n"; -- print " - Connection Number: $notesConn->[$n]\n"; -- print " - Operation Number: $notesOp->[$n]\n"; -- print " - Etime: $notesEtime->[$n]\n"; -- print " - Nentries: $notesNentries->[$n]\n"; -+ print "\n Unindexed Components #".$notesCount."\n"; $notesCount++; -+ print " - Date/Time: $time_conn_op->{$conn_op}\n"; -+ print " - Connection Number: $conn\n"; -+ print " - Operation Number: $op\n"; -+ print " - Etime: $etime_conn_op->{$conn_op}\n"; -+ print " - Nentries: $nentries_conn_op->{$conn_op}\n"; - print " - IP Address: $unindexedIp\n"; -- -- for (my $nnn = 0; $nnn < $baseCount; $nnn++){ -- if(!$base_conn->[$nnn] || !$base_op->[$nnn]){ next; } -- if ($notesConn->[$n] eq $base_conn->[$nnn] && $notesOp->[$n] eq $base_op->[$nnn]){ -- print " - Search Base: $base_val->[$nnn]\n"; -- last; -- } -+ if (exists($base_conn_op->{$conn_op}) && defined($base_conn_op->{$conn_op})) { -+ print " - Search Base: $base_conn_op->{$conn_op}\n"; - } -- for (my $nnn = 0; $nnn < $scopeCount; $nnn++){ -- if(!$scope_conn->[$nnn] || !$scope_op->[$nnn]){ next; } -- if ($notesConn->[$n] eq $scope_conn->[$nnn] && $notesOp->[$n] eq $scope_op->[$nnn]){ -- print " - Search Scope: $scope_val->[$nnn]\n"; -- last; -- } -+ if (exists($scope_conn_op->{$conn_op}) && defined($scope_conn_op->{$conn_op})) { -+ print " - Search Scope: $scope_conn_op->{$conn_op}\n"; - } -- for (my $nnn = 0; $nnn < $filterCount; $nnn++){ -- if(!$filter_conn->[$nnn] || !$filter_op->[$nnn]){ next; } -- if ($notesConn->[$n] eq $filter_conn->[$nnn] && $notesOp->[$n] eq $filter_op->[$nnn]){ -- print " - Search Filter: $filter_val->[$nnn]\n"; -- last; -- } -+ if (exists($filter_conn_op->{$conn_op}) && defined($filter_conn_op->{$conn_op})) { -+ print " - Search Filter: $filter_conn_op->{$conn_op}\n"; - } - } - } - if ($unindexedSrchCountNotesU > 0){ - my $conn_hash = $hashes->{conn_hash}; -- my $notesConn = $arrays->{notesUconn}; -- my $notesOp = $arrays->{notesUop}; -- my $notesEtime = $arrays->{notesUetime}; -- my $notesTime = $arrays->{notesUtime}; -- my $notesNentries = $arrays->{notesUnentries}; -- my $base_val = $arrays->{baseval}; -- my $base_conn = $arrays->{baseconn}; -- my $base_op = $arrays->{baseop}; -- my $scope_val = $arrays->{scopeval}; -- my $scope_conn = $arrays->{scopeconn}; -- my $scope_op = $arrays->{scopeop}; -- my $filter_val = $arrays->{filterval}; -- my $filter_conn = $arrays->{filterconn}; -- my $filter_op = $arrays->{filterop}; -- -- my $notesCount = "1"; -+ my $notesu_conn_op = $hashes->{notesu_conn_op}; -+ my $time_conn_op = $hashes->{time_conn_op}; -+ my $etime_conn_op = $hashes->{etime_conn_op}; -+ my $nentries_conn_op = $hashes->{nentries_conn_op}; -+ my $base_conn_op = $hashes->{base_conn_op}; -+ my $scope_conn_op = $hashes->{scope_conn_op}; -+ my $filter_conn_op = $hashes->{filter_conn_op}; -+ -+ my $notesCount = 1; - my $unindexedIp; -- for (my $n = 0; $n < scalar(@{$notesEtime}); $n++){ -- if(!$notesConn->[$n] || $notesConn->[$n] eq "" || -- !$conn_hash->{$notesConn->[$n]} || $conn_hash->{$notesConn->[$n]} eq ""){ -- $unindexedIp = "?"; -+ while (my ($conn_op, $count) = each %{$notesu_conn_op}) { -+ my ($conn, $op) = split(",", $conn_op); -+ if (exists($conn_hash->{$conn}) && defined($conn_hash->{$conn})) { -+ $unindexedIp = $conn_hash->{$conn}; - } else { -- $unindexedIp = $conn_hash->{$notesConn->[$n]}; -+ $unindexedIp = "?"; - } - print "\n Unindexed Components #".$notesCount."\n"; $notesCount++; -- print " - Date/Time: $notesTime->[$n]\n"; -- print " - Connection Number: $notesConn->[$n]\n"; -- print " - Operation Number: $notesOp->[$n]\n"; -- print " - Etime: $notesEtime->[$n]\n"; -- print " - Nentries: $notesNentries->[$n]\n"; -+ print " - Date/Time: $time_conn_op->{$conn_op}\n"; -+ print " - Connection Number: $conn\n"; -+ print " - Operation Number: $op\n"; -+ print " - Etime: $etime_conn_op->{$conn_op}\n"; -+ print " - Nentries: $nentries_conn_op->{$conn_op}\n"; - print " - IP Address: $unindexedIp\n"; -- -- for (my $nnn = 0; $nnn < $baseCount; $nnn++){ -- if(!$base_conn->[$nnn] || !$base_op->[$nnn]){ next; } -- if ($notesConn->[$n] eq $base_conn->[$nnn] && $notesOp->[$n] eq $base_op->[$nnn]){ -- print " - Search Base: $base_val->[$nnn]\n"; -- last; -- } -+ if (exists($base_conn_op->{$conn_op}) && defined($base_conn_op->{$conn_op})) { -+ print " - Search Base: $base_conn_op->{$conn_op}\n"; - } -- for (my $nnn = 0; $nnn < $scopeCount; $nnn++){ -- if(!$scope_conn->[$nnn] || !$scope_op->[$nnn]){ next; } -- if ($notesConn->[$n] eq $scope_conn->[$nnn] && $notesOp->[$n] eq $scope_op->[$nnn]){ -- print " - Search Scope: $scope_val->[$nnn]\n"; -- last; -- } -+ if (exists($scope_conn_op->{$conn_op}) && defined($scope_conn_op->{$conn_op})) { -+ print " - Search Scope: $scope_conn_op->{$conn_op}\n"; - } -- for (my $nnn = 0; $nnn < $filterCount; $nnn++){ -- if(!$filter_conn->[$nnn] || !$filter_op->[$nnn]){ next; } -- if ($notesConn->[$n] eq $filter_conn->[$nnn] && $notesOp->[$n] eq $filter_op->[$nnn]){ -- print " - Search Filter: $filter_val->[$nnn]\n"; -- last; -- } -+ if (exists($filter_conn_op->{$conn_op}) && defined($filter_conn_op->{$conn_op})) { -+ print " - Search Filter: $filter_conn_op->{$conn_op}\n"; - } - } - } -@@ -800,7 +762,7 @@ if ($connResetByPeerCount > 0){ - push @retext, sprintf " - %-4s (%2s) %-40s\n",$src->{$key},$conn{$key},$connmsg{$key}; - } - } -- print @retext; -+ print @retext; - print "\n"; - } - -@@ -813,8 +775,8 @@ if ($resourceUnavailCount > 0){ - if ($conn{$key} eq ""){$conn{$key} = "**Resource Issue**";} - push @rtext, sprintf " - %-4s (%2s) %-40s\n",$rsrc->{$key},$conn{$key},$connmsg{$key}; - } -- } -- print @rtext; -+ } -+ print @rtext; - } - print "Max BER Size Exceeded: $maxBerSizeCount\n"; - print "\n"; -@@ -829,7 +791,7 @@ print " - SASL Binds: $saslBindCount\n"; - if ($saslBindCount > 0){ - my $saslmech = $hashes->{saslmech}; - foreach my $saslb ( sort {$saslmech->{$b} <=> $saslmech->{$a} } (keys %{$saslmech}) ){ -- printf " %-4s %-12s\n",$saslmech->{$saslb}, $saslb; -+ printf " %-4s %-12s\n",$saslmech->{$saslb}, $saslb; - } - } - -@@ -914,13 +876,13 @@ if ($usage =~ /e/i || $verb eq "yes"){ - for (my $i = 0; $i <= $#errtext; $i++){ - $errtext[$i] =~ s/\n//g; - print "\n" . $errtext[$i]; -- } -+ } - } - - #################################### --# # -+# # - # Print Failed Logins # --# # -+# # - #################################### - - if ($verb eq "yes" || $usage =~ /f/ ){ -@@ -936,19 +898,20 @@ if ($verb eq "yes" || $usage =~ /f/ ){ - $ds6loop++; - } - } else { -- my $bindVal = $arrays->{binddn}; -- my $bindConn = $arrays->{bindconn}; -- my $bindOp = $arrays->{bindop}; -- my $badPasswordConn = $arrays->{badpwdconn}; -- my $badPasswordOp = $arrays->{badpwdop}; -- my $badPasswordIp = $arrays->{badpwdip}; -+ # key is conn,op - val is binddn -+ my $bind_conn_op = $hashes->{bind_conn_op}; -+ # key is conn,op - val is count -+ my $badpwd_conn_op = $hashes->{badpwd_conn_op}; -+ # key is binddn - val is count - my %badPassword = (); -- for (my $ii =0 ; $ii < $badPwdCount; $ii++){ -- for (my $i = 0; $i < $bindCount; $i++){ -- if ($badPasswordConn->[$ii] eq $bindConn->[$i] && $badPasswordOp->[$ii] eq $bindOp->[$i] ){ -- $badPassword{ $bindVal->[$i] }++; -- } -- } -+ my @badPasswordIp = (); -+ while (my ($conn_op, $count) = each %{$badpwd_conn_op}) { -+ my ($conn, $op) = split(",", $conn_op); -+ if (exists($bind_conn_op->{$conn_op}) && defined($bind_conn_op->{$conn_op})) { -+ my $binddn = $bind_conn_op->{$conn_op}; -+ $badPassword{$binddn}++; -+ push @badPasswordIp, getIPfromConn($conn); -+ } - } - # sort the new hash of $badPassword{} - my $bpTotal = 0; -@@ -961,7 +924,7 @@ if ($verb eq "yes" || $usage =~ /f/ ){ - } - print "\nFrom the IP address(s) :\n\n"; - for (my $i=0; $i<$badPwdCount; $i++) { -- print "\t\t$badPasswordIp->[$i]\n"; -+ print "\t\t$badPasswordIp[$i]\n"; - } - if ($bpTotal > $badPwdCount){ - print "\n** Warning : Wrongly reported failed login attempts : ". ($bpTotal - $badPwdCount) . "\n"; -@@ -982,11 +945,11 @@ if ($connCodeCount > 0){ - print "\n\n----- Total Connection Codes -----\n\n"; - my $conncount = $hashes->{conncount}; - my @conntext; -- foreach my $key (sort { $conncount->{$b} <=> $conncount->{$a} } keys %{$conncount}) { -- if ($conncount->{$key} > 0){ -+ foreach my $key (sort { $conncount->{$b} <=> $conncount->{$a} } keys %{$conncount}) { -+ if ($conncount->{$key} > 0){ - push @conntext, sprintf "%-4s %6s %-40s\n",$key,$conncount->{$key},$connmsg{ $key }; -- } -- } -+ } -+ } - print @conntext; - } - } -@@ -1005,8 +968,8 @@ if ($usage =~ /i/i || $verb eq "yes"){ - my $ip_count = ($#ipkeys + 1)-($#exxCount + 1); - my $ccount = 0; - if ($ip_count > 0){ -- print "\n\n----- Top $sizeCount Clients -----\n\n"; -- print "Number of Clients: $ip_count\n\n"; -+ print "\n\n----- Top $sizeCount Clients -----\n\n"; -+ print "Number of Clients: $ip_count\n\n"; - foreach my $key (sort { $ip_hash->{$b} <=> $ip_hash->{$a} } @ipkeys) { - my $exc = "no"; - if ($ccount > $sizeCount){ last;} -@@ -1021,7 +984,7 @@ if ($usage =~ /i/i || $verb eq "yes"){ - my %counts; - map { $counts{$_} = $hashes->{$_}->{$key} if (defined($hashes->{$_}->{$key})) } @conncodes; - foreach my $code (sort { $counts{$b} <=> $counts{$a} } keys %counts) { -- if ($code eq 'count' ) { next; } -+ if ($code eq 'count' ) { next; } - printf "%10s - %s (%s)\n", $counts{ $code }, $code, $connmsg{ $code }; - } - print "\n"; -@@ -1042,14 +1005,14 @@ if ($usage =~ /b/i || $verb eq "yes"){ - my $bind_count = $#bindkeys + 1; - if ($bind_count > 0){ - print "\n\n----- Top $sizeCount Bind DN's -----\n\n"; -- print "Number of Unique Bind DN's: $bind_count\n\n"; -+ print "Number of Unique Bind DN's: $bind_count\n\n"; - my $bindcount = 0; - foreach my $dn (sort { $bindlist->{$b} <=> $bindlist->{$a} } @bindkeys) { -- if ($bindcount < $sizeCount){ -+ if ($bindcount < $sizeCount){ - printf "%-8s %-40s\n", $bindlist->{ $dn },$dn; - } else { -- last; -- } -+ last; -+ } - $bindcount++; - } - } -@@ -1070,16 +1033,16 @@ if ($usage =~ /a/i || $verb eq "yes"){ - print "Number of Unique Search Bases: $base_count\n\n"; - my $basecount = 0; - foreach my $bas (sort { $base->{$b} <=> $base->{$a} } @basekeys) { -- if ($basecount < $sizeCount){ -- printf "%-8s %-40s\n", $base->{ $bas },$bas; -- } else { -- last; -- } -- $basecount++; -+ if ($basecount < $sizeCount){ -+ printf "%-8s %-40s\n", $base->{ $bas },$bas; -+ } else { -+ last; -+ } -+ $basecount++; - } - } - } -- -+ - ######################################### - # # - # Gather and process search filters # -@@ -1091,15 +1054,15 @@ if ($usage =~ /l/ || $verb eq "yes"){ - my @filterkeys = keys %{$filter}; - my $filter_count = $#filterkeys + 1; - if ($filter_count > 0){ -- print "\n\n----- Top $sizeCount Search Filters -----\n"; -+ print "\n\n----- Top $sizeCount Search Filters -----\n"; - print "\nNumber of Unique Search Filters: $filter_count\n\n"; - my $filtercount = 0; - foreach my $filt (sort { $filter->{$b} <=> $filter->{$a} } @filterkeys){ - if ($filtercount < $sizeCount){ - printf "%-8s %-40s\n", $filter->{$filt}, $filt; - } else { -- last; -- } -+ last; -+ } - $filtercount++; - } - } -@@ -1108,7 +1071,7 @@ if ($usage =~ /l/ || $verb eq "yes"){ - ######################################### - # # - # Gather and Process the unique etimes # --# # -+# # - ######################################### - - my $first; -@@ -1139,7 +1102,7 @@ if ($usage =~ /t/i || $verb eq "yes"){ - if ($eloop == $sizeCount) { last; } - printf "%-12s %-10s\n","etime=$et",$etime->{ $et }; - $eloop++; -- } -+ } - } - - ####################################### -@@ -1156,7 +1119,7 @@ if ($usage =~ /n/i || $verb eq "yes"){ - my $eloop = 0; - foreach my $nentry (sort { $b <=> $a } @nkeys){ - if ($eloop == $sizeCount) { last; } -- printf "%-18s %12s\n","nentries=$nentry", $nentries->{ $nentry }; -+ printf "%-18s %12s\n","nentries=$nentry", $nentries->{ $nentry }; - $eloop++; - } - print "\n\n----- Top $sizeCount Most returned nentries -----\n\n"; -@@ -1216,7 +1179,7 @@ if ($usage =~ /x/i || $verb eq "yes"){ - } - - ############################################ --# # -+# # - # Print most commonly requested attributes # - # # - ############################################ -@@ -1235,7 +1198,7 @@ if ($usage =~ /r/i || $verb eq "yes"){ - } - - ############################# --# # -+# # - # abandoned operation stats # - # # - ############################# -@@ -1244,66 +1207,49 @@ if ($usage =~ /g/i || $verb eq "yes"){ - my $abandonTotal = $srchCount + $delCount + $modCount + $addCount + $modrdnCount + $bindCount + $extopCount + $cmpCount; - if ($verb eq "yes" && $abandonCount > 0 && $abandonTotal > 0){ - my $conn_hash = $hashes->{conn_hash}; -+ my $abandon_conn_op = $hashes->{abandon_conn_op}; -+ my $srch_conn_op = $hashes->{srch_conn_op}; -+ my $del_conn_op = $hashes->{del_conn_op}; -+ my $add_conn_op = $hashes->{add_conn_op}; -+ my $mod_conn_op = $hashes->{mod_conn_op}; -+ my $cmp_conn_op = $hashes->{cmp_conn_op}; -+ my $mdn_conn_op = $hashes->{mdn_conn_op}; -+ my $bind_conn_op = $hashes->{bind_conn_op}; -+ my $unbind_conn_op = $hashes->{unbind_conn_op}; -+ my $ext_conn_op = $hashes->{ext_conn_op}; - - print "\n\n----- Abandon Request Stats -----\n\n"; - -- for (my $g = 0; $g < $abandonCount; $g++){ -- my $conn = $arrays->{targetconn}->[$g]; -- my $op = $arrays->{targetop}->[$g]; -- my $msgid = $arrays->{msgid}->[$g]; -- for (my $sc = 0; $sc < $srchCount; $sc++){ -- if (($arrays->{srchconn}->[$sc] && $arrays->{srchop}->[$sc]) && -- ($arrays->{srchconn}->[$sc] eq $conn && $arrays->{srchop}->[$sc] eq $op )){ -- print " - SRCH conn=$conn op=$op msgid=$msgid client=$conn_hash->{$conn}\n"; -- } -- } -- for (my $dc = 0; $dc < $delCount; $dc++){ -- if (($arrays->{delconn}->[$dc] && $arrays->{delop}->[$dc]) && -- ($arrays->{delconn}->[$dc] eq $conn && $arrays->{delop}->[$dc] eq $op)){ -- print " - DEL conn=$conn op=$op msgid=$msgid client=$conn_hash->{$conn}\n"; -- } -- } -- for (my $adc = 0; $adc < $addCount; $adc++){ -- if (($arrays->{addconn}->[$adc] && $arrays->{addop}->[$adc]) && -- ($arrays->{addconn}->[$adc] eq $conn && $arrays->{addop}->[$adc] eq $op)){ -- print " - ADD conn=$conn op=$op msgid=$msgid client=$conn_hash->{$conn}\n"; -- } -- } -- for (my $mc = 0; $mc < $modCount; $mc++){ -- if (($arrays->{modconn}->[$mc] && $arrays->{modop}->[$mc]) && -- ($arrays->{modconn}->[$mc] eq $conn && $arrays->{modop}->[$mc] eq $op)){ -- print " - MOD conn=$conn op=$op msgid=$msgid client=$conn_hash->{$conn}\n"; -- } -- } -- for (my $cc = 0; $cc < $cmpCount; $cc++){ -- if (($arrays->{cmpconn}->[$cc] && $arrays->{cmpop}->[$cc]) && -- ($arrays->{cmpconn}->[$cc] eq $conn && $arrays->{cmpop}->[$cc] eq $op)){ -- print " - CMP conn=$conn op=$op msgid=$msgid client=$conn_hash->{$conn}\n"; -- } -- } -- for (my $mdc = 0; $mdc < $modrdnCount; $mdc++){ -- if (($arrays->{modrdnconn}->[$mdc] && $arrays->{modrdnop}->[$mdc]) && -- ($arrays->{modrdnconn}->[$mdc] eq $conn && $arrays->{modrdnop}->[$mdc] eq $op)){ -- print " - MODRDN conn=$conn op=$op msgid=$msgid client=$conn_hash->{$conn}\n"; -- } -- } -- for (my $bcb = 0; $bcb < $bindCount; $bcb++){ -- if (($arrays->{bindconn}->[$bcb] && $arrays->{bindop}->[$bcb]) && -- ($arrays->{bindconn}->[$bcb] eq $conn && $arrays->{bindop}->[$bcb] eq $op)){ -- print " - BIND conn=$conn op=$op msgid=$msgid client=$conn_hash->{$conn}\n"; -- } -- } -- for (my $ubc = 0; $ubc < $unbindCount; $ubc++){ -- if (($arrays->{unbindconn}->[$ubc] && $arrays->{unbindop}->[$ubc]) && -- ($arrays->{unbindconn}->[$ubc] eq $conn && $arrays->{unbindop}->[$ubc] eq $op)){ -- print " - UNBIND conn=$conn op=$op msgid=$msgid client=$conn_hash->{$conn}\n"; -- } -+ while (my ($conn_op, $targ_msgid) = each %{$abandon_conn_op}) { -+ my ($conn, $op) = split(",", $conn_op); -+ my ($targetop, $msgid) = split(",", $targ_msgid); -+ my $conn_targ = "$conn,$targetop"; -+ my $clientIP; -+ if (exists($conn_hash->{$conn}) && defined($conn_hash->{$conn})) { -+ $clientIP = $conn_hash->{$conn}; -+ } else { -+ $clientIP = "Unknown"; - } -- for (my $ec = 0; $ec < $extopCount; $ec++){ -- if (($arrays->{extconn}->[$ec] && $arrays->{extop}->[$ec]) && -- ($arrays->{extconn}->[$ec] eq $conn && $arrays->{extop}->[$ec] eq $op)){ -- print " - EXT conn=$conn op=$op msgid=$msgid client=$conn_hash->{$conn}\n"; -- } -+ if (exists($srch_conn_op->{$conn_targ}) && defined($srch_conn_op->{$conn_targ})) { -+ print " - SRCH conn=$conn op=$targetop msgid=$msgid client=$clientIP\n"; -+ } elsif (exists($del_conn_op->{$conn_targ}) && defined($del_conn_op->{$conn_targ})) { -+ print " - DEL conn=$conn op=$targetop msgid=$msgid client=$clientIP\n"; -+ } elsif (exists($add_conn_op->{$conn_targ}) && defined($add_conn_op->{$conn_targ})) { -+ print " - ADD conn=$conn op=$targetop msgid=$msgid client=$clientIP\n"; -+ } elsif (exists($mod_conn_op->{$conn_targ}) && defined($mod_conn_op->{$conn_targ})) { -+ print " - MOD conn=$conn op=$targetop msgid=$msgid client=$clientIP\n"; -+ } elsif (exists($cmp_conn_op->{$conn_targ}) && defined($cmp_conn_op->{$conn_targ})) { -+ print " - CMP conn=$conn op=$targetop msgid=$msgid client=$clientIP\n"; -+ } elsif (exists($mdn_conn_op->{$conn_targ}) && defined($mdn_conn_op->{$conn_targ})) { -+ print " - MODRDN conn=$conn op=$targetop msgid=$msgid client=$clientIP\n"; -+ } elsif (exists($bind_conn_op->{$conn_targ}) && defined($bind_conn_op->{$conn_targ})) { -+ print " - BIND conn=$conn op=$targetop msgid=$msgid client=$clientIP\n"; -+ } elsif (exists($unbind_conn_op->{$conn_targ}) && defined($unbind_conn_op->{$conn_targ})) { -+ print " - UNBIND conn=$conn op=$targetop msgid=$msgid client=$clientIP\n"; -+ } elsif (exists($ext_conn_op->{$conn_targ}) && defined($ext_conn_op->{$conn_targ})) { -+ print " - EXT conn=$conn op=$targetop msgid=$msgid client=$clientIP\n"; -+ } else { -+ print " - UNKNOWN conn=$conn op=$targetop msgid=$msgid client=$clientIP\n"; - } - } - } -@@ -1390,8 +1336,8 @@ sub displayUsage { - print "Usage:\n\n"; - - print " ./logconv.pl [-h] [-d|--rootdn ] [-s|--sizeLimit ] [-v|verison] [-Vi|verbose]\n"; -- print " [-S|--startTime ] [-E|--endTime ] \n"; -- print " [-efcibaltnxrgjuyp] [ access log ... ... ]\n\n"; -+ print " [-S|--startTime ] [-E|--endTime ] \n"; -+ print " [-efcibaltnxrgjuyp] [ access log ... ... ]\n\n"; - - print "- Commandline Switches:\n\n"; - -@@ -1400,7 +1346,7 @@ sub displayUsage { - print " -D, --data default is \"/tmp\"\n"; - print " -s, --sizeLimit default is 20\n"; - print " -X, --excludeIP E.g. Load balancers\n"; -- print " -v, --version show version of tool\n"; -+ print " -v, --version show version of tool\n"; - print " -S, --startTime