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 <nhosoi@redhat.com> +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 <nhosoi@redhat.com> -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 <nhosoi@redhat.com> +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 <rmeggins@redhat.com> -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 <nhosoi@redhat.com> +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 <mreynolds@redhat.com> -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 <lkrispen@redhat.com> +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 <rmeggins@redhat.com> -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 <nhosoi@redhat.com> +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 <mreynolds@redhat.com> -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 <nhosoi@redhat.com> +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 <nkinder@redhat.com> -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 <nhosoi@redhat.com> +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)" <tbordaz@redhat.com> -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)" <tbordaz@redhat.com> +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 <rmeggins@redhat.com> -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 <rmeggins@redhat.com> +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<char *> 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<char *>("%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<char *>("%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<char *>("%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<char *>("%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<char *>("%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<char *>("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 <rmeggins@redhat.com> -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 <nhosoi@redhat.com> +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 <rmeggins@redhat.com> -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 <nhosoi@redhat.com> +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 <mreynolds@redhat.com> -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 <nhosoi@redhat.com> +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 <mreynolds@redhat.com> -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 <nhosoi@redhat.com> +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 <mreynolds@redhat.com> -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 <nhosoi@redhat.com> +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 <mreynolds@redhat.com> -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 <nhosoi@redhat.com> +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 <mreynolds@redhat.com> -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 <nhosoi@redhat.com> +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 <nhosoi@redhat.com> -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 <lkrispen@redhat.com> +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 <mreynolds@redhat.com> -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 <conftest.tar]) -+ AM_RUN_LOG([cat conftest.dir/file]) -+ grep GrepMe conftest.dir/file >/dev/null 2>&1 && break -+ fi -+ done - rm -rf conftest.dir -- if test -s conftest.tar; then -- AM_RUN_LOG([$am__untar <conftest.tar]) -- grep GrepMe conftest.dir/file >/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 <tromey@cygnus.com>. - # - # 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 <config-patches@gnu.org> 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 <features.h> -+ #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 <<EOF - #ifdef _SEQUENT_ -diff --git a/config.sub b/config.sub -index 6205f84..c765b34 100755 ---- a/config.sub -+++ b/config.sub -@@ -1,24 +1,18 @@ - #! /bin/sh - # Configuration validation subroutine script. --# 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-04-18' -+timestamp='2013-04-24' - --# This file is (in principle) common to ALL GNU software. --# The presence of a machine in this file suggests that SOME GNU software --# can handle that machine. It does not imply ALL GNU software can. --# --# 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 -+# 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 3 of the License, or - # (at your option) any later version. - # --# This program is distributed in the hope that it will be useful, --# but WITHOUT ANY WARRANTY; without even the implied warranty of --# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the --# GNU General Public License for more details. -+# This program is distributed in the hope that it will be useful, but -+# WITHOUT ANY WARRANTY; without even the implied warranty of -+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -+# General Public License for more details. - # - # You should have received a copy of the GNU General Public License - # along with this program; if not, see <http://www.gnu.org/licenses/>. -@@ -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 <config-patches@gnu.org>. 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 <config-patches@gnu.org>." - 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 <pinard@iro.umontreal.ca>, 1996. -+# Copyright (C) 1996-2013 Free Software Foundation, Inc. -+# Originally written by Fran,cois Pinard <pinard@iro.umontreal.ca>, 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 <bug-automake@gnu.org>." - ;; - - -*) -- 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 <mreynolds@redhat.com> +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<char *>("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<DEBUG_MARGIN; index++) + if (cptr[index] != DEBUG_MARGIN_CHAR) { +- ereport(LOG_CATASTROPHE, "free: corrupt memory (prebounds overwrite)"); ++ ereport(LOG_CATASTROPHE, const_cast<char *>("free: corrupt memory (prebounds overwrite)")); + break; + } + + cptr += DEBUG_MARGIN + *length; + for (index=0; index<DEBUG_MARGIN; index++) + if (cptr[index] != DEBUG_MARGIN_CHAR) { +- ereport(LOG_CATASTROPHE, "free: corrupt memory (prebounds overwrite)"); ++ ereport(LOG_CATASTROPHE, const_cast<char *>("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<char *>("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 <nhosoi@redhat.com> -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 <nhosoi@redhat.com> +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 <nhosoi@redhat.com> -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)" <tbordaz@redhat.com> +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 <mreynolds@redhat.com> -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 <nhosoi@redhat.com> +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 <mreynolds@redhat.com> -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 <nhosoi@redhat.com> +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) <tbordaz@redhat.com> -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 <nhosoi@redhat.com> +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: <VERSION> + sslVersionMax: <VERSION> + where <VERSION> 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 <rmeggins@redhat.com> -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(<LOG>){ - 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 (<CONN>){ -- 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(<FILE>){ -- 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(<FILE>){ -- @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(<FILE>){ -- @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(<FILE>){ -- 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(<FILE>){ -- @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 <nhosoi@redhat.com> +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 <nhosoi@redhat.com> +--- + 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 <rmeggins@redhat.com> -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 <mreynolds@redhat.com> +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 <mreynolds@redhat.com> -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 <nhosoi@redhat.com> +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 <rmeggins@redhat.com> -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 <rootDN>] [-s|--sizeLimit <size limit>] [-v|verison] [-Vi|verbose]\n"; -- print " [-S|--startTime <start time>] [-E|--endTime <end time>] \n"; -- print " [-efcibaltnxrgjuyp] [ access log ... ... ]\n\n"; -+ print " [-S|--startTime <start time>] [-E|--endTime <end time>] \n"; -+ print " [-efcibaltnxrgjuyp] [ access log ... ... ]\n\n"; - - print "- Commandline Switches:\n\n"; - -@@ -1400,7 +1346,7 @@ sub displayUsage { - print " -D, --data <Location for temporary data files> default is \"/tmp\"\n"; - print " -s, --sizeLimit <Number of results to return per catagory> default is 20\n"; - print " -X, --excludeIP <IP address to exclude from connection stats> E.g. Load balancers\n"; -- print " -v, --version show version of tool\n"; -+ print " -v, --version show version of tool\n"; - print " -S, --startTime <time to begin analyzing logfile from>\n"; - print " E.g. \"[28/Mar/2002:13:14:22 -0800]\"\n"; - print " -E, --endTime <time to stop analyzing logfile>\n"; -@@ -1450,7 +1396,7 @@ sub displayUsage { - sub - parseLine { - if($reportBinds eq "yes"){ -- &parseLineBind(); -+ &parseLineBind(); - } else { - &parseLineNormal(); - } -@@ -1469,26 +1415,26 @@ parseLineBind { - return if $_ =~ /^\s/; - - if($firstFile == 1 && $_ =~ /^\[/){ -- $start = $_; -- if ($start =~ / *([0-9a-z:\/]+)/i){$start=$1;} -- $firstFile = 0; -+ $start = $_; -+ if ($start =~ / *([0-9a-z:\/]+)/i){$start=$1;} -+ $firstFile = 0; - } - if ($endFlag != 1 && $_ =~ /^\[/ && $_ =~ / *([0-9a-z:\/]+)/i){ - $end =$1; - } - if ($startTime && !$startFlag) { -- if (index($_, $startTime) == 0) { -- $startFlag = 1; -- ($start) = $startTime =~ /\D*(\S*)/; -- } else { -- return; -- } -+ if (index($_, $startTime) == 0) { -+ $startFlag = 1; -+ ($start) = $startTime =~ /\D*(\S*)/; -+ } else { -+ return; -+ } - } - if ($endTime && !$endFlag) { -- if (index($_, $endTime) == 0) { -- $endFlag = 1; -- ($end) = $endTime =~ /\D*(\S*)/; -- } -+ if (index($_, $endTime) == 0) { -+ $endFlag = 1; -+ ($end) = $endTime =~ /\D*(\S*)/; -+ } - } - if ($_ =~ /connection from *([0-9A-Fa-f\.\:]+)/i ) { - my $skip = "yes"; -@@ -1497,8 +1443,8 @@ parseLineBind { - $skip = "yes"; - last; - } -- } -- if ($skip eq "yes"){ -+ } -+ if ($skip eq "yes"){ - return ; - } - $ip = $1; -@@ -1507,9 +1453,9 @@ parseLineBind { - } - return; - } -- if (/ BIND/ && $_ =~ /dn=\"(.*)\" method/i ){ -+ if (/ BIND/ && $_ =~ /dn=\"(.*)\" method/i ){ - my $dn; -- if ($1 eq ""){ -+ if ($1 eq ""){ - $dn = "Anonymous"; - } else { - $dn = $1; -@@ -1522,7 +1468,7 @@ parseLineBind { - } - } - $bindReport{$dn}{"binds"}++; -- if ($bindReport{$dn}{"binds"} == 1){ -+ if ($bindReport{$dn}{"binds"} == 1){ - # For hashes we need to init the counters - $bindReport{$dn}{"srch"} = 0; - $bindReport{$dn}{"add"} = 0; -@@ -1537,7 +1483,7 @@ parseLineBind { - $bindReport{$dn}{"conn"} = $bindReport{$dn}{"conn"} . " $1 "; - } - return; -- } -+ } - if (/ RESULT err=49 /){ - processOpForBindReport("failedBind",$logline); - } -@@ -1547,7 +1493,7 @@ parseLineBind { - processOpForBindReport("add",$logline); - } elsif (/ MOD dn=/){ - processOpForBindReport("mod",$logline); -- } elsif (/ DEL dn=/){ -+ } elsif (/ DEL dn=/){ - processOpForBindReport("del",$logline); - } elsif (/ MODRDN dn=/){ - processOpForBindReport("modrdn",$logline); -@@ -1555,7 +1501,7 @@ parseLineBind { - processOpForBindReport("cmp",$logline); - } elsif (/ EXT oid=/){ - processOpForBindReport("ext",$logline); -- } -+ } - } - - sub -@@ -1625,13 +1571,13 @@ sub parseLineNormal - - if(!defined($lastzone) or $tzone ne $lastzone) - { -- # tz offset change -- $lastzone=$tzone; -- 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. -+ # tz offset change -+ $lastzone=$tzone; -+ 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. - } - my ($date, $hr, $min, $sec) = split (':', $time); - my ($day, $mon, $yr) = split ('/', $date); -@@ -1641,15 +1587,15 @@ sub parseLineNormal - reset_stats_block( $s_stats, $gmtime, $time.' '.$tzone ); - if (!defined($last_min) or $newmin != $last_min) - { -- print_stats_block( $m_stats ); -- $time =~ s/\d\d$/00/; -- reset_stats_block( $m_stats, $newmin, $time.' '.$tzone ); -- $last_min = $newmin; -+ print_stats_block( $m_stats ); -+ $time =~ s/\d\d$/00/; -+ reset_stats_block( $m_stats, $newmin, $time.' '.$tzone ); -+ $last_min = $newmin; - } - } - -- if (m/ RESULT err/){ -- $allResults++; -+ if (m/ RESULT err/){ -+ $allResults++; - if($reportStats){ inc_stats('results',$s_stats,$m_stats); } - } - if (m/ SRCH/){ -@@ -1666,58 +1612,57 @@ sub parseLineNormal - $anyAttrs++; - } - if ($verb eq "yes"){ -- if ($_ =~ /conn= *([0-9A-Z]+)/i){ push @{$arrays->{srchconn}}, $1;} -- if ($_ =~ /op= *([0-9\-]+)/i){ push @{$arrays->{srchop}}, $1;} -+ if ($_ =~ /conn= *([0-9A-Z]+) +op= *([0-9\-]+)/i){ $hashes->{srch_conn_op}->{"$1,$2"}++;} - } - } - if (m/ DEL/){ - $delCount++; - if($reportStats){ inc_stats('del',$s_stats,$m_stats); } - if ($verb eq "yes"){ -- if ($_ =~ /conn= *([0-9A-Z]+)/i){ push @{$arrays->{delconn}}, $1;} -- if ($_ =~ /op= *([0-9\-]+)/i){ push @{$arrays->{delop}}, $1;} -+ if ($_ =~ /conn= *([0-9A-Z]+) +op= *([0-9\-]+)/i){ $hashes->{del_conn_op}->{"$1,$2"}++;} - } - } - if (m/ MOD dn=/){ - $modCount++; - if($reportStats){ inc_stats('mod',$s_stats,$m_stats); } - if ($verb eq "yes"){ -- if ($_ =~ /conn= *([0-9A-Z]+)/i){ push @{$arrays->{modconn}}, $1;} -- if ($_ =~ /op= *([0-9\-]+)/i){ push @{$arrays->{modop}}, $1; } -+ if ($_ =~ /conn= *([0-9A-Z]+) +op= *([0-9\-]+)/i){ $hashes->{mod_conn_op}->{"$1,$2"}++;} - } - } - if (m/ ADD/){ - $addCount++; - if($reportStats){ inc_stats('add',$s_stats,$m_stats); } - if ($verb eq "yes"){ -- if ($_ =~ /conn= *([0-9A-Z]+)/i){ push @{$arrays->{addconn}}, $1; } -- if ($_ =~ /op= *([0-9\-]+)/i){ push @{$arrays->{addop}}, $1; } -+ if ($_ =~ /conn= *([0-9A-Z]+) +op= *([0-9\-]+)/i){ $hashes->{add_conn_op}->{"$1,$2"}++;} - } - } - if (m/ MODRDN/){ - $modrdnCount++; - if($reportStats){ inc_stats('modrdn',$s_stats,$m_stats); } - if ($verb eq "yes"){ -- if ($_ =~ /conn= *([0-9A-Z]+)/i){ push @{$arrays->{modrdnconn}}, $1; } -- if ($_ =~ /op= *([0-9\-]+)/i){ push @{$arrays->{modrdnop}}, $1; } -+ if ($_ =~ /conn= *([0-9A-Z]+) +op= *([0-9\-]+)/i){ $hashes->{mdn_conn_op}->{"$1,$2"}++;} - } - } - if (m/ CMP dn=/){ - $cmpCount++; - if($reportStats){ inc_stats('cmp',$s_stats,$m_stats); } - if ($verb eq "yes" || $usage =~ /g/i){ -- if ($_ =~ /conn= *([0-9A-Z]+)/i){ push @{$arrays->{cmpconn}}, $1;} -- if ($_ =~ /op= *([0-9\-]+)/i){ push @{$arrays->{cmpop}}, $1;} -+ if ($_ =~ /conn= *([0-9A-Z]+) +op= *([0-9\-]+)/i){ $hashes->{cmp_conn_op}->{"$1,$2"}++;} - } - } - if (m/ ABANDON /){ -+ # there are two cases for abandon -+ # [17/Sep/2013:01:52:11 -0400] conn=1482074 op=4 ABANDON targetop=3 msgid=4 -+ # [17/Sep/2013:01:52:11 -0400] conn=1482074 op=4 ABANDON targetop=NOTFOUND msgid=4 -+ # if the op to be abandoned completes before the abandon request can be processed -+ # the server will use NOTFOUND as the op number - $abandonCount++; - if($reportStats){ inc_stats('abandon',$s_stats,$m_stats); } - $allResults++; -- if ($_ =~ /targetop= *([0-9a-zA-Z]+)/i ){ -- push @{$arrays->{targetop}}, $1; -- if ($_ =~ /conn= *([0-9A-Z]+)/i){ push @{$arrays->{targetconn}}, $1; } -- if ($_ =~ /msgid= *([0-9\-]+)/i){ push @{$arrays->{msgid}}, $1; } -+ if ($_ =~ /conn= *([0-9A-Z]+) +op= *([0-9\-]+) +ABANDON +targetop= *([0-9a-zA-Z]+) +msgid= *([0-9\-]+)/i ){ -+ # abandon_conn_op - key is the conn,op of the ABANDON request -+ # the value is the targetop,msgid of the ABANDON request -+ $hashes->{abandon_conn_op}->{"$1,$2"} = "$3,$4"; # targetop,msgid - } - } - if (m/ VLV /){ -@@ -1738,11 +1683,11 @@ sub parseLineNormal - $autobindCount++; - $bindCount++; - if($reportStats){ inc_stats('bind',$s_stats,$m_stats); } -- if ($1 ne ""){ -+ if ($1 ne ""){ - $tmpp = $1; - $tmpp =~ tr/A-Z/a-z/; - $hashes->{bindlist}->{$tmpp}++; -- if($1 eq $rootDN){ -+ if($1 eq $rootDN){ - $rootDNBindCount++; - } - } else { -@@ -1752,7 +1697,7 @@ sub parseLineNormal - } - } - if (m/ connection from/){ -- if ($_ =~ /connection from *([0-9A-Fa-f\.\:]+)/i ){ -+ if ($_ =~ /connection from *([0-9A-Fa-f\.\:]+)/i ){ - for (my $xxx =0; $xxx < $#excludeIP; $xxx++){ - if ($excludeIP[$xxx] eq $1){$exc = "yes";} - } -@@ -1763,7 +1708,7 @@ sub parseLineNormal - } - $simConnection++; - if ($simConnection > $maxsimConnection) { -- $maxsimConnection = $simConnection; -+ $maxsimConnection = $simConnection; - } - ($connID) = $_ =~ /conn=(\d*)\s/; - $openConnection[$connID]++; -@@ -1772,7 +1717,7 @@ sub parseLineNormal - 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); -+ $hashes->{start_time_of_connection}->{$connID} = timegm($sec, $min, $hr, $day, $monthname{$mon}, $yr); - } - } - if (m/ SSL client bound as /){$sslClientBindCount++;} -@@ -1788,10 +1733,10 @@ sub parseLineNormal - # 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; -+ my $stoc = $hashes->{start_time_of_connection}->{$connID} || 0; -+ $hashes->{end_time_of_connection}->{$connID} = $gmtime || 0; -+ my $diff = $hashes->{end_time_of_connection}->{$connID} - $stoc; -+ $hashes->{start_time_of_connection}->{$connID} = $hashes->{end_time_of_connection}->{$connID} = 0; - if ($diff <= 1) { $latency[0]++;} - if ($diff == 2) { $latency[1]++;} - if ($diff == 3) { $latency[2]++;} -@@ -1802,85 +1747,82 @@ sub parseLineNormal - } - } - if (m/ BIND/ && $_ =~ /dn=\"(.*)\" method/i ){ -+ my $binddn = $1; - if($reportStats){ inc_stats('bind',$s_stats,$m_stats); } - $bindCount++; -- if ($1 ne ""){ -- if($1 eq $rootDN){$rootDNBindCount++;} -- $tmpp = $1; -+ my ($conn, $op); -+ if ($_ =~ /conn= *([0-9A-Z]+) +op= *([0-9\-]+)/i){ -+ $conn = $1; -+ $op = $2; -+ } -+ if ($binddn ne ""){ -+ if($binddn eq $rootDN){$rootDNBindCount++;} -+ $tmpp = $binddn; - $tmpp =~ tr/A-Z/a-z/; - $hashes->{bindlist}->{$tmpp}++; -- 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; -+ $hashes->{bind_conn_op}->{"$conn,$op"} = $tmpp; - } - } else { - $anonymousBindCount++; - $hashes->{bindlist}->{"Anonymous Binds"}++; -- if ($_ =~ /conn= *([0-9A-Z]+)/i) { push @{$arrays->{bindconn}}, $1;} -- if ($_ =~ /op= *([0-9\-]+)/i) { push @{$arrays->{bindop}}, $1;} -- push @{$arrays->{binddn}}, ""; -+ if($usage =~ /f/ || $verb eq "yes"){ -+ $hashes->{bind_conn_op}->{"$conn,$op"} = ""; -+ } - inc_stats('anonbind',$s_stats,$m_stats); - } - } - if (m/ UNBIND/){ - $unbindCount++; - if ($verb eq "yes"){ -- if ($_ =~ /conn= *([0-9A-Z]+)/i){ push @{$arrays->{unbindconn}}, $1; } -- if ($_ =~ /op= *([0-9\-]+)/i){ push @{$arrays->{unbindop}}, $1; } -+ if ($_ =~ /conn= *([0-9A-Z]+) +op= *([0-9\-]+)/i){ $hashes->{unbind_conn_op}->{"$1,$2"}++;} - } - } -- if (m/ RESULT err=/ && m/ notes=P/){ -+ if (m/ RESULT err=/ && m/ notes=[A-Z,]*P/){ - $pagedSearchCount++; - } -- if (m/ notes=A/){ -+ if (m/ notes=[A-Z,]*A/){ - $con = ""; - if ($_ =~ /conn= *([0-9A-Z]+)/i){ -- $con = $1; -- if ($_ =~ /op= *([0-9\-]+)/i){ $op = $1;} -+ $con = $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";} -+ 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 ($isVlvNotes == 0 ){ -- if ($_ =~ /etime= *([0-9.]+)/i ){ push @{$arrays->{notesAetime}}, $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; } -+ if ($usage =~ /u/ || $verb eq "yes"){ -+ $hashes->{notesa_conn_op}->{"$con,$op"}++; -+ if ($_ =~ /etime= *([0-9.]+)/i ){ $hashes->{etime_conn_op}->{"$con,$op"} = $1; } -+ if ($_ =~ / *([0-9a-z:\/]+)/i){ $hashes->{time_conn_op}->{"$con,$op"} = $1; } -+ if ($_ =~ /nentries= *([0-9]+)/i ){ $hashes->{nentries_conn_op}->{"$con,$op"} = $1; } - } - } - $isVlvNotes = 0; - } -- if (m/ notes=U/){ -+ if (m/ notes=[A-Z,]*U/){ - $con = ""; - if ($_ =~ /conn= *([0-9A-Z]+)/i){ -- $con = $1; -- if ($_ =~ /op= *([0-9\-]+)/i){ $op = $1;} -+ $con = $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";} -+ 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 - $unindexedSrchCountNotesU++; - if($reportStats){ inc_stats('notesU',$s_stats,$m_stats); } -- } -- if ($usage =~ /u/ || $verb eq "yes"){ -- if ($isVlvNotes == 0 ){ -- if ($_ =~ /etime= *([0-9.]+)/i ){ push @{$arrays->{notesUetime}}, $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; } -+ if ($usage =~ /u/ || $verb eq "yes"){ -+ $hashes->{notesu_conn_op}->{"$con,$op"}++; -+ if ($_ =~ /etime= *([0-9.]+)/i ){ $hashes->{etime_conn_op}->{"$con,$op"} = $1; } -+ if ($_ =~ / *([0-9a-z:\/]+)/i){ $hashes->{time_conn_op}->{"$con,$op"} = $1; } -+ if ($_ =~ /nentries= *([0-9]+)/i ){ $hashes->{nentries_conn_op}->{"$con,$op"} = $1; } - } - } - $isVlvNotes = 0; -@@ -1941,8 +1883,8 @@ sub parseLineNormal - } - $ip = $1; - $hashes->{ip_hash}->{$ip}++; -- if ($_ =~ /conn= *([0-9A-Z]+)/i ){ -- if ($exc ne "yes"){ -+ if ($_ =~ /conn= *([0-9A-Z]+)/i ){ -+ if ($exc ne "yes"){ - $hashes->{conn_hash}->{$1} = $ip; - } - } -@@ -1951,7 +1893,6 @@ sub parseLineNormal - if ($_ =~ /conn= *([0-9A-Z]+)/i) { - $exc = "no"; - $ip = getIPfromConn($1); -- if ($ip eq ""){$ip = "Unknown_Host";} - for (my $xxx = 0; $xxx < $#excludeIP; $xxx++){ - if ($ip eq $excludeIP[$xxx]){$exc = "yes";} - } -@@ -1966,14 +1907,13 @@ sub parseLineNormal - if ($_ =~ /conn= *([0-9A-Z]+)/i) { - $exc = "no"; - $ip = getIPfromConn($1); -- if ($ip eq ""){$ip = "Unknown_Host";} - for (my $xxx = 0; $xxx < $#excludeIP; $xxx++){ -- if ($ip eq $excludeIP[$xxx]){$exc = "yes";} -+ if ($ip eq $excludeIP[$xxx]){$exc = "yes";} - } - if ($exc ne "yes"){ - $hashes->{B1}->{$ip}++; - $hashes->{conncount}->{"B1"}++; -- $connCodeCount++; -+ $connCodeCount++; - } - } - } -@@ -1981,44 +1921,41 @@ sub parseLineNormal - if ($_ =~ /conn= *([0-9A-Z]+)/i) { - $exc = "no"; - $ip = getIPfromConn($1); -- if ($ip eq ""){$ip = "Unknown_Host";} - for (my $xxx = 0; $xxx < $#excludeIP; $xxx++){ -- if ($ip eq $excludeIP[$xxx]){$exc = "yes";} -+ if ($ip eq $excludeIP[$xxx]){$exc = "yes";} - } - if ($exc ne "yes"){ - $hashes->{B4}->{$ip}++; - $hashes->{conncount}->{"B4"}++; - $connCodeCount++; - } -- } -+ } - } - if (m/- T1/){ - if ($_ =~ /conn= *([0-9A-Z]+)/i) { - $exc = "no"; -- $ip = getIPfromConn($1); -- if ($ip eq ""){$ip = "Unknown_Host";} -+ $ip = getIPfromConn($1); - for (my $xxx = 0; $xxx < $#excludeIP; $xxx++){ -- if ($ip eq $excludeIP[$xxx]){$exc = "yes";} -+ if ($ip eq $excludeIP[$xxx]){$exc = "yes";} - } - if ($exc ne "yes"){ - $hashes->{T1}->{$ip}++; - $hashes->{conncount}->{"T1"}++; -- $connCodeCount++; -+ $connCodeCount++; - } - } - } - if (m/- T2/){ - if ($_ =~ /conn= *([0-9A-Z]+)/i) { -- $exc = "no"; -+ $exc = "no"; - $ip = getIPfromConn($1); -- if ($ip eq ""){$ip = "Unknown_Host";} - for (my $xxx = 0; $xxx < $#excludeIP; $xxx++){ -- if ($ip eq $excludeIP[$xxx]){$exc = "yes";} -+ if ($ip eq $excludeIP[$xxx]){$exc = "yes";} - } - if ($exc ne "yes"){ - $hashes->{T2}->{$ip}++; - $hashes->{conncount}->{"T2"}++; -- $connCodeCount++; -+ $connCodeCount++; - } - } - } -@@ -2027,14 +1964,13 @@ sub parseLineNormal - $exc = "no"; - $ip = getIPfromConn($1); - $maxBerSizeCount++; -- if ($ip eq ""){$ip = "Unknown_Host";} - for (my $xxx = 0; $xxx < $#excludeIP; $xxx++){ -- if ($ip eq $excludeIP[$xxx]){$exc = "yes";} -+ if ($ip eq $excludeIP[$xxx]){$exc = "yes";} - } - if ($exc ne "yes"){ - $hashes->{B2}->{$ip}++; - $hashes->{conncount}->{"B2"}++; -- $connCodeCount++; -+ $connCodeCount++; - } - } - } -@@ -2042,14 +1978,13 @@ sub parseLineNormal - if ($_ =~ /conn= *([0-9A-Z]+)/i) { - $exc = "no"; - $ip = getIPfromConn($1); -- if ($ip eq ""){$ip = "Unknown_Host";} - for (my $xxx = 0; $xxx < $#excludeIP; $xxx++){ -- if ($ip eq $excludeIP[$xxx]){$exc = "yes";} -+ if ($ip eq $excludeIP[$xxx]){$exc = "yes";} - } - if ($exc ne "yes"){ - $hashes->{B3}->{$ip}++; - $hashes->{conncount}->{"B3"}++; -- $connCodeCount++; -+ $connCodeCount++; - } - } - } -@@ -2057,9 +1992,8 @@ sub parseLineNormal - if ($_ =~ /conn= *([0-9A-Z]+)/i) { - $exc = "no"; - $ip = getIPfromConn($1); -- if ($ip eq ""){$ip = "Unknown_Host";} - for (my $xxx = 0; $xxx < $#excludeIP; $xxx++){ -- if ($ip eq $excludeIP[$xxx]){$exc = "yes";} -+ if ($ip eq $excludeIP[$xxx]){$exc = "yes";} - } - if ($exc ne "yes"){ - $hashes->{R1}->{$ip}++; -@@ -2072,14 +2006,13 @@ sub parseLineNormal - if ($_ =~ /conn= *([0-9A-Z]+)/i) { - $exc = "no"; - $ip = getIPfromConn($1); -- if ($ip eq ""){$ip = "Unknown_Host";} - for (my $xxx = 0; $xxx < $#excludeIP; $xxx++){ -- if ($ip eq $excludeIP[$xxx]){$exc = "yes";} -+ if ($ip eq $excludeIP[$xxx]){$exc = "yes";} - } - if ($exc ne "yes"){ - $hashes->{P1}->{$ip}++; - $hashes->{conncount}->{"P1"}++; -- $connCodeCount++; -+ $connCodeCount++; - } - } - } -@@ -2087,9 +2020,8 @@ sub parseLineNormal - if ($_ =~ /conn= *([0-9A-Z]+)/i) { - $exc = "no"; - $ip = getIPfromConn($1); -- if ($ip eq ""){$ip = "Unknown_Host";} - for (my $xxx = 0; $xxx < $#excludeIP; $xxx++){ -- if ($ip eq $excludeIP[$xxx]){$exc = "yes";} -+ if ($ip eq $excludeIP[$xxx]){$exc = "yes";} - } - if ($exc ne "yes"){ - $hashes->{P2}->{$ip}++; -@@ -2102,9 +2034,8 @@ sub parseLineNormal - if ($_ =~ /conn= *([0-9A-Z]+)/i) { - $exc = "no"; - $ip = getIPfromConn($1); -- if ($ip eq ""){$ip = "Unknown_Host";} - for (my $xxx = 0; $xxx < $#excludeIP; $xxx++){ -- if ($ip eq $excludeIP[$xxx]){$exc = "yes";} -+ if ($ip eq $excludeIP[$xxx]){$exc = "yes";} - } - if ($exc ne "yes"){ - $hashes->{U1}->{$ip}++; -@@ -2131,8 +2062,7 @@ sub parseLineNormal - if ($_ =~ /oid=\" *([0-9\.]+)/i ){ $hashes->{oid}->{$1}++; } - if ($1 && $1 eq $startTLSoid){$startTLSCount++;} - if ($verb eq "yes"){ -- if ($_ =~ /conn= *([0-9A-Z]+)/i){ push @{$arrays->{extconn}}, $1; } -- if ($_ =~ /op= *([0-9\-]+)/i){ push @{$arrays->{extop}}, $1; } -+ if ($_ =~ /conn= *([0-9A-Z]+) +op= *([0-9\-]+)/i){ $hashes->{ext_conn_op}->{"$1,$2"}++;} - } - } - if (($usage =~ /l/ || $verb eq "yes") and / SRCH /){ -@@ -2155,14 +2085,12 @@ sub parseLineNormal - $filterCount++; - if($usage =~ /u/ || $verb eq "yes"){ - # we only need this for the unindexed search report -- push @{$arrays->{filterval}}, $tmpp; -- push @{$arrays->{filterconn}}, $filterConn; -- push @{$arrays->{filterop}}, $filterOp; -+ $hashes->{filter_conn_op}->{"$filterConn,$filterOp"} = $tmpp; - } - } - if ($usage =~ /a/ || $verb eq "yes"){ - if (/ SRCH / && $_ =~ /base=\"(.*)\" scope/i ){ -- my ($baseConn, $baseOp, $scopeVal, $scopeConn, $scopeOp); -+ my ($conn, $op, $scopeVal); - if ($1 eq ""){ - $tmpp = "Root DSE"; - } else { -@@ -2173,25 +2101,19 @@ sub parseLineNormal - # - # grab the search bases & scope for potential unindexed searches - # -- if ($_ =~ /scope= *([0-9]+)/i) { -- $scopeVal = $1; -+ if ($_ =~ /scope= *([0-9]+)/i) { -+ $scopeVal = $1; - } -- if ($_ =~ /conn= *([0-9A-Z]+)/i) { -- $baseConn = $1; -- $scopeConn = $1; -+ if ($_ =~ /conn= *([0-9A-Z]+)/i) { -+ $conn = $1; - } -- if ($_ =~ /op= *([0-9\-]+)/i) { -- $baseOp = $1; -- $scopeOp = $1; -+ if ($_ =~ /op= *([0-9\-]+)/i) { -+ $op = $1; - } - if($usage =~ /u/ || $verb eq "yes"){ - # we only need this for the unindexed search report -- push @{$arrays->{baseval}}, $tmpp; -- push @{$arrays->{baseconn}}, $baseConn; -- push @{$arrays->{baseop}}, $baseOp; -- push @{$arrays->{scopeval}}, $scopeTxt[$scopeVal]; -- push @{$arrays->{scopeconn}}, $scopeConn; -- push @{$arrays->{scopeop}}, $scopeOp; -+ $hashes->{base_conn_op}->{"$conn,$op"} = $tmpp; -+ $hashes->{scope_conn_op}->{"$conn,$op"} = $scopeTxt[$scopeVal]; - } - $baseCount++; - $scopeCount++; -@@ -2210,15 +2132,8 @@ sub parseLineNormal - $ds6x = "true"; - $badPwdCount++; - } elsif (/ err=49 tag=/ ){ -- if ($_ =~ /conn= *([0-9A-Z]+)/i ){ -- push @{$arrays->{badpwdconn}}, $1; -- $ip = getIPfromConn($1); -- $badPwdCount++; -- } -- if ($_ =~ /op= *([0-9\-]+)/i ){ -- push @{$arrays->{badpwdop}}, $1; -- } -- push @{$arrays->{badpwdip}}, $ip; -+ $badPwdCount++; -+ if ($_ =~ /conn= *([0-9A-Z]+) +op= *([0-9\-]+)/i){ $hashes->{badpwd_conn_op}->{"$1,$2"}++;} - } - } - if (/ BIND / && /method=sasl/i){ -@@ -2259,29 +2174,17 @@ sub parseLineNormal - sub - reset_stats_block - { -- my $stats = shift; -- -- $stats->{'last'} = shift || 0; -- $stats->{'last_str'} = shift || ''; -- -- $stats->{'results'}=0; -- $stats->{'srch'}=0; -- $stats->{'add'}=0; -- $stats->{'mod'}=0; -- $stats->{'modrdn'}=0; -- $stats->{'moddn'}=0; -- $stats->{'cmp'}=0; -- $stats->{'del'}=0; -- $stats->{'abandon'}=0; -- $stats->{'conns'}=0; -- $stats->{'sslconns'}=0; -- $stats->{'bind'}=0; -- $stats->{'anonbind'}=0; -- $stats->{'unbind'}=0; -- $stats->{'notesA'}=0; -- $stats->{'notesU'}=0; -- $stats->{'etime'}=0; -- return; -+ my $stats = shift; -+ -+ $stats->{'last'} = shift || 0; -+ $stats->{'last_str'} = shift || ''; -+ -+ for my $sn (@statnames) { -+ next if ($sn eq 'last' or $sn eq 'last_str'); -+ $stats->{$sn}=0; -+ } -+ -+ return; - } - - sub -@@ -2292,6 +2195,7 @@ new_stats_block - 'active' => 0, - }; - if ($name){ -+ $stats = openHashFiles($dataLocation, @statnames); - $stats->{'filename'} = $name; - $stats->{'fh'} = new IO::File; - $stats->{'active'} = open($stats->{'fh'},">$name"); -@@ -2308,32 +2212,32 @@ print_stats_block - if ($stats->{'active'}){ - if ($stats->{'last'}){ - $stats->{'fh'}->print( -- join(',', -- $stats->{'last_str'}, -- $stats->{'last'}, -- $stats->{'results'}, -- $stats->{'srch'}, -- $stats->{'add'}, -- $stats->{'mod'}, -- $stats->{'modrdn'}, -- $stats->{'moddn'}, -- $stats->{'cmp'}, -- $stats->{'del'}, -- $stats->{'abandon'}, -- $stats->{'conns'}, -- $stats->{'sslconns'}, -- $stats->{'bind'}, -- $stats->{'anonbind'}, -- $stats->{'unbind'}, -- $stats->{'notesA'}, -- $stats->{'notesU'}, -- $stats->{'etime'}), -- "\n" ); -+ join(',', -+ $stats->{'last_str'}, -+ $stats->{'last'}, -+ $stats->{'results'}, -+ $stats->{'srch'}, -+ $stats->{'add'}, -+ $stats->{'mod'}, -+ $stats->{'modrdn'}, -+ $stats->{'moddn'}, -+ $stats->{'cmp'}, -+ $stats->{'del'}, -+ $stats->{'abandon'}, -+ $stats->{'conns'}, -+ $stats->{'sslconns'}, -+ $stats->{'bind'}, -+ $stats->{'anonbind'}, -+ $stats->{'unbind'}, -+ $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 search,Unindexed component,ElapsedTime\n" -- ); -+ "Time,time_t,Results,Search,Add,Mod,Modrdn,Moddn,Compare,Delete,Abandon,". -+ "Connections,SSL Conns,Bind,Anon Bind,Unbind,Unindexed search,Unindexed component,ElapsedTime\n" -+ ); - } - } - } -@@ -2346,7 +2250,7 @@ inc_stats - my $n = shift; - foreach(@_){ - $_->{$n}++ -- if exists $_->{$n}; -+ if exists $_->{$n}; - } - return; - } -@@ -2360,7 +2264,7 @@ inc_stats_val - my $val = shift; - foreach(@_){ - $_->{$n} += $val -- if exists $_->{$n}; -+ if exists $_->{$n}; - } - return; - } -@@ -2383,7 +2287,7 @@ displayBindReport - &printClients($bindReport{$bindDN}{"conn"}); - print("\n Operations Performed:\n\n"); - &printOpStats($bindDN); -- print("\n"); -+ print("\n"); - } - print "Done.\n"; - exit (0); -@@ -2391,13 +2295,13 @@ displayBindReport - - sub - printClients --{ -+{ - my @bindConns = &cleanConns(split(' ', $_[0])); - my $IPcount = "1"; - - 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 /){ -+ if($connList{$ip} =~ / $bc /){ - print(" [$IPcount] $ip\n"); - $IPcount++; - last; -@@ -2417,7 +2321,7 @@ cleanConns - if($dirtyConns[$i] ne ""){ - $retConns[$c++] = $dirtyConns[$i]; - } -- } -+ } - return @retConns; - } - -@@ -2443,7 +2347,7 @@ printOpStats - ####################### - # # - # Hash File Functions # --# # -+# # - ####################### - - sub -@@ -2471,35 +2375,17 @@ openHashFiles - } - - sub --openArrayFiles --{ -- 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; -- } -- return \%arrays; --} -- --sub - removeDataFiles - { -- if (!$needCleanup) { return ; } -+ if (!$needCleanup) { return ; } - - for my $h (keys %{$hashes}) { - untie %{$hashes->{$h}}; - } -- for my $a (keys %{$arrays}) { -- untie @{$arrays->{$a}}; -- } - for my $file (@removefiles) { - unlink $file; - } -- $needCleanup = 0; -+ $needCleanup = 0; - } - - END { print "Cleaning up temp files . . .\n"; removeDataFiles(); print "Done\n"; } -@@ -2508,7 +2394,12 @@ sub - getIPfromConn - { - my $connid = shift; -- return $hashes->{conn_hash}->{$connid}; -+ if (exists($hashes->{conn_hash}->{$connid}) && -+ defined($hashes->{conn_hash}->{$connid})) { -+ return $hashes->{conn_hash}->{$connid}; -+ } -+ -+ return "Unknown_Host"; - } - - ####################################### --- -1.7.1 - diff --git a/SOURCES/0026-Ticket-47939-Malformed-cookie-for-LDAP-Sync-makes-DS.patch b/SOURCES/0026-Ticket-47939-Malformed-cookie-for-LDAP-Sync-makes-DS.patch new file mode 100644 index 0000000..b217b4e --- /dev/null +++ b/SOURCES/0026-Ticket-47939-Malformed-cookie-for-LDAP-Sync-makes-DS.patch @@ -0,0 +1,97 @@ +From fe0ac5946b04d9ff2455692ddb8c0a8b0c91a7c7 Mon Sep 17 00:00:00 2001 +From: Noriko Hosoi <nhosoi@redhat.com> +Date: Mon, 3 Nov 2014 16:58:21 -0800 +Subject: [PATCH 26/28] Ticket #47939 - Malformed cookie for LDAP Sync makes DS + crash + +Bug Description: If a cookie sent from clients did not have the +expected form: server_signature#client_signature#change_info_number, +a NULL reference triggered a server crash in sync_cookie_isvalid. + +Fix Description: If a cookie does not have the expected form, +sync_cookie_parse returns NULL, which prevents the NULL reference +in the server_signature and client_signature. + +https://fedorahosted.org/389/ticket/47939 + +Reviewed by lkrispen@redhat.com (Thank you, Ludwig!!) + +(cherry picked from commit 8f540a6cee09be13430ebe0b983d2affe2863365) +(cherry picked from commit d87202acad6426bee7af8753a0ffe5ad5b3082df) +--- + ldap/servers/plugins/sync/sync_util.c | 33 ++++++++++++++++++++++----------- + 1 file changed, 22 insertions(+), 11 deletions(-) + +diff --git a/ldap/servers/plugins/sync/sync_util.c b/ldap/servers/plugins/sync/sync_util.c +index ef4a3f7..de65b99 100644 +--- a/ldap/servers/plugins/sync/sync_util.c ++++ b/ldap/servers/plugins/sync/sync_util.c +@@ -552,21 +552,21 @@ Sync_Cookie * + sync_cookie_parse (char *cookie) + { + char *p, *q; +- Sync_Cookie *sc; ++ Sync_Cookie *sc = NULL; + + if (cookie == NULL || *cookie == '\0' ) { + return NULL; + } + ++ /* ++ * Format of cookie: server_signature#client_signature#change_info_number ++ * If the cookie is malformed, NULL is returned. ++ */ + p = q = cookie; +- sc = (Sync_Cookie *)slapi_ch_malloc(sizeof(Sync_Cookie)); +- +- sc->cookie_client_signature = NULL; +- sc->cookie_server_signature = NULL; +- sc->cookie_change_info = -1; + p = strchr(q, '#'); + if (p) { + *p = '\0'; ++ sc = (Sync_Cookie *)slapi_ch_calloc(1, sizeof(Sync_Cookie)); + sc->cookie_server_signature = slapi_ch_strdup(q); + q = p + 1; + p = strchr(q, '#'); +@@ -574,21 +574,32 @@ sync_cookie_parse (char *cookie) + *p = '\0'; + sc->cookie_client_signature = slapi_ch_strdup(q); + sc->cookie_change_info = sync_number2int(p+1); ++ if (sc->cookie_change_info < 0) { ++ goto error_return; ++ } ++ } else { ++ goto error_return; + } + } +- + return (sc); ++error_return: ++ slapi_ch_free_string(&(sc->cookie_client_signature)); ++ slapi_ch_free_string(&(sc->cookie_server_signature)); ++ slapi_ch_free((void **)&sc); ++ return NULL; + } + + int + sync_cookie_isvalid (Sync_Cookie *testcookie, Sync_Cookie *refcookie) + { + /* client and server info must match */ +- if (strcmp(testcookie->cookie_client_signature,refcookie->cookie_client_signature) || +- strcmp(testcookie->cookie_server_signature,refcookie->cookie_server_signature) || +- testcookie->cookie_change_info == -1 || +- testcookie->cookie_change_info > refcookie->cookie_change_info ) ++ if ((testcookie && refcookie) && ++ (strcmp(testcookie->cookie_client_signature,refcookie->cookie_client_signature) || ++ strcmp(testcookie->cookie_server_signature,refcookie->cookie_server_signature) || ++ testcookie->cookie_change_info == -1 || ++ testcookie->cookie_change_info > refcookie->cookie_change_info)) { + return (0); ++ } + /* could add an additional check if the requested state in client cookie is still + * available. Accept any state request for now. + */ +-- +1.9.3 + diff --git a/SOURCES/0027-Ticket-47533-logconv-some-stats-do-not-work-across-s.patch b/SOURCES/0027-Ticket-47533-logconv-some-stats-do-not-work-across-s.patch deleted file mode 100644 index 375ad58..0000000 --- a/SOURCES/0027-Ticket-47533-logconv-some-stats-do-not-work-across-s.patch +++ /dev/null @@ -1,731 +0,0 @@ -From 05e22052af5b03b4e657e66713ef7f3afb16afb9 Mon Sep 17 00:00:00 2001 -From: Rich Megginson <rmeggins@redhat.com> -Date: Fri, 27 Sep 2013 11:08:29 -0600 -Subject: [PATCH 27/28] Ticket 47533 logconv: some stats do not work across server restarts - -https://fedorahosted.org/389/ticket/47533 -Reviewed by: mreynolds (Thanks!) -Branch: master -Fix Description: Most of the stat hashes use connid,opid as the hash key. -The connid,opid are not unique because the server recycles connection ids -when the server restarts. The solution is to use a triplet of -$serverRestartCount,$connid,$opid -as the hash key. This uniquely identifies a particular log event over -restarts. There is also some additional cleanup that needs to be done when -the server is reset - returning fds, marking connections as closed, etc. -Also fixed some gmtime handling - we were doing too many conversions. -This fix adds another command line option - -U - for a summary of search -filters which are unindexed or have unindexed components. The full detailed -report is just too much data. -Platforms tested: RHEL6 x86_64 -Flag Day: no -Doc impact: no -(cherry picked from commit 92ac8f48c1e5a8a049f4cfd1912fd570c628408f) -(cherry picked from commit e38685be139c2420cc969499324405a30203122a) ---- - ldap/admin/src/logconv.pl | 337 +++++++++++++++++++++++++-------------------- - man/man1/logconv.pl.1 | 10 +- - 2 files changed, 196 insertions(+), 151 deletions(-) - -diff --git a/ldap/admin/src/logconv.pl b/ldap/admin/src/logconv.pl -index ca07a3a..275ce34 100755 ---- a/ldap/admin/src/logconv.pl -+++ b/ldap/admin/src/logconv.pl -@@ -86,7 +86,8 @@ my $xi = 0; - my $bindReportDN; - my $usage = ""; - my @latency; --my @openConnection; -+# key is conn number - val is IP address -+my %openConnection; - my @errorCode; - my @errtext; - my @errornum; -@@ -133,7 +134,8 @@ GetOptions( - 'u' => sub { $usage = $usage . "u"; }, - 'r' => sub { $usage = $usage . "r"; }, - 'y' => sub { $usage = $usage . "y"; }, -- 'p' => sub { $usage = $usage . "p"; } -+ 'p' => sub { $usage = $usage . "p"; }, -+ 'U' => sub { $usage = $usage . "U"; } - ); - - # -@@ -657,7 +659,7 @@ print "Paged Searches: $pagedSearchCount\n"; - print "Unindexed Searches: $unindexedSrchCountNotesA\n"; - print "Unindexed Components: $unindexedSrchCountNotesU\n"; - --if ($verb eq "yes" || $usage =~ /u/){ -+if ($verb eq "yes" || $usage =~ /u/ || $usage =~ /U/){ - if ($unindexedSrchCountNotesA > 0){ - my $conn_hash = $hashes->{conn_hash}; - my $notesa_conn_op = $hashes->{notesa_conn_op}; -@@ -670,28 +672,39 @@ if ($verb eq "yes" || $usage =~ /u/){ - - my $notesCount = 1; - my $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 = "?"; -- } -- 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"; -- if (exists($base_conn_op->{$conn_op}) && defined($base_conn_op->{$conn_op})) { -- print " - Search Base: $base_conn_op->{$conn_op}\n"; -+ my %uniqFilt = (); # hash of unique filters -+ while (my ($srcnt_conn_op, $count) = each %{$notesa_conn_op}) { -+ my ($srvRstCnt, $conn, $op) = split(",", $srcnt_conn_op); -+ $unindexedIp = getIPfromConn($conn, $srvRstCnt); -+ if ($usage =~ /u/) { -+ print "\n Unindexed Search #".$notesCount."\n"; -+ print " - Date/Time: $time_conn_op->{$srcnt_conn_op}\n"; -+ print " - Connection Number: $conn\n"; -+ print " - Operation Number: $op\n"; -+ print " - Etime: $etime_conn_op->{$srcnt_conn_op}\n"; -+ print " - Nentries: $nentries_conn_op->{$srcnt_conn_op}\n"; -+ print " - IP Address: $unindexedIp\n"; -+ if (exists($base_conn_op->{$srcnt_conn_op}) && defined($base_conn_op->{$srcnt_conn_op})) { -+ print " - Search Base: $base_conn_op->{$srcnt_conn_op}\n"; -+ } -+ if (exists($scope_conn_op->{$srcnt_conn_op}) && defined($scope_conn_op->{$srcnt_conn_op})) { -+ print " - Search Scope: $scope_conn_op->{$srcnt_conn_op}\n"; -+ } - } -- if (exists($scope_conn_op->{$conn_op}) && defined($scope_conn_op->{$conn_op})) { -- print " - Search Scope: $scope_conn_op->{$conn_op}\n"; -+ if (exists($filter_conn_op->{$srcnt_conn_op}) && defined($filter_conn_op->{$srcnt_conn_op})) { -+ if ($usage =~ /u/) { -+ print " - Search Filter: $filter_conn_op->{$srcnt_conn_op}\n"; -+ } -+ $uniqFilt{$filter_conn_op->{$srcnt_conn_op}}++; - } -- if (exists($filter_conn_op->{$conn_op}) && defined($filter_conn_op->{$conn_op})) { -- print " - Search Filter: $filter_conn_op->{$conn_op}\n"; -+ $notesCount++; -+ } -+ if ($usage =~ /U/) { -+ print "\n Unindexed Search Summary - $notesCount total unindexed searches\n"; -+ foreach my $key (sort { $uniqFilt{$b} <=> $uniqFilt{$a} } keys %uniqFilt) { -+ if ($uniqFilt{$key} > 0) { -+ printf " - Number of times used unindexed: %10d Filter: $key\n", $uniqFilt{$key}; -+ } - } - } - } -@@ -707,28 +720,39 @@ if ($verb eq "yes" || $usage =~ /u/){ - - my $notesCount = 1; - my $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 = "?"; -- } -- 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"; -- if (exists($base_conn_op->{$conn_op}) && defined($base_conn_op->{$conn_op})) { -- print " - Search Base: $base_conn_op->{$conn_op}\n"; -+ my %uniqFilt = (); # hash of unique filters -+ while (my ($srcnt_conn_op, $count) = each %{$notesu_conn_op}) { -+ my ($srvRstCnt, $conn, $op) = split(",", $srcnt_conn_op); -+ $unindexedIp = getIPfromConn($conn, $srvRstCnt); -+ if ($usage =~ /u/) { -+ print "\n Unindexed Component #".$notesCount."\n"; -+ print " - Date/Time: $time_conn_op->{$srcnt_conn_op}\n"; -+ print " - Connection Number: $conn\n"; -+ print " - Operation Number: $op\n"; -+ print " - Etime: $etime_conn_op->{$srcnt_conn_op}\n"; -+ print " - Nentries: $nentries_conn_op->{$srcnt_conn_op}\n"; -+ print " - IP Address: $unindexedIp\n"; -+ if (exists($base_conn_op->{$srcnt_conn_op}) && defined($base_conn_op->{$srcnt_conn_op})) { -+ print " - Search Base: $base_conn_op->{$srcnt_conn_op}\n"; -+ } -+ if (exists($scope_conn_op->{$srcnt_conn_op}) && defined($scope_conn_op->{$srcnt_conn_op})) { -+ print " - Search Scope: $scope_conn_op->{$srcnt_conn_op}\n"; -+ } - } -- if (exists($scope_conn_op->{$conn_op}) && defined($scope_conn_op->{$conn_op})) { -- print " - Search Scope: $scope_conn_op->{$conn_op}\n"; -+ if (exists($filter_conn_op->{$srcnt_conn_op}) && defined($filter_conn_op->{$srcnt_conn_op})) { -+ if ($usage =~ /u/) { -+ print " - Search Filter: $filter_conn_op->{$srcnt_conn_op}\n"; -+ } -+ $uniqFilt{$filter_conn_op->{$srcnt_conn_op}}++; - } -- if (exists($filter_conn_op->{$conn_op}) && defined($filter_conn_op->{$conn_op})) { -- print " - Search Filter: $filter_conn_op->{$conn_op}\n"; -+ $notesCount++; -+ } -+ if ($usage =~ /U/) { -+ print "\n Unindexed Component Summary - $notesCount total unindexed components\n"; -+ foreach my $key (sort { $uniqFilt{$b} <=> $uniqFilt{$a} } keys %uniqFilt) { -+ if ($uniqFilt{$key} > 0) { -+ printf " - Number of times used unindexed: %10d Filter: $key\n", $uniqFilt{$key}; -+ } - } - } - } -@@ -829,12 +853,10 @@ if ($verb eq "yes" || $usage =~ /y/){ - ################################### - - if ($verb eq "yes" || $usage =~ /p/){ -- if (@openConnection > 0){ -+ if (%openConnection){ - print "\n\n----- Current Open Connection IDs ----- \n\n"; -- for (my $i=0; $i <= $#openConnection ; $i++) { -- if ($openConnection[$i]) { -- print "Conn Number: $i (" . getIPfromConn($i) . ")\n"; -- } -+ while (my ($connid, $ip) = each %openConnection) { -+ print "Conn Number: $connid ($ip)\n"; - } - } - } -@@ -904,13 +926,13 @@ if ($verb eq "yes" || $usage =~ /f/ ){ - my $badpwd_conn_op = $hashes->{badpwd_conn_op}; - # key is binddn - val is count - my %badPassword = (); -- 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}; -+ my %badPasswordIp = (); -+ while (my ($srcnt_conn_op, $ip) = each %{$badpwd_conn_op}) { -+ my ($srvRstCnt, $conn, $op) = split(",", $srcnt_conn_op); -+ if (exists($bind_conn_op->{$srcnt_conn_op}) && defined($bind_conn_op->{$srcnt_conn_op})) { -+ my $binddn = $bind_conn_op->{$srcnt_conn_op}; - $badPassword{$binddn}++; -- push @badPasswordIp, getIPfromConn($conn); -+ $badPasswordIp{$ip}++; - } - } - # sort the new hash of $badPassword{} -@@ -923,8 +945,11 @@ if ($verb eq "yes" || $usage =~ /f/ ){ - printf "%-4s %-40s\n", $badPassword{"$badpw"}, $badpw; - } - print "\nFrom the IP address(s) :\n\n"; -- for (my $i=0; $i<$badPwdCount; $i++) { -- print "\t\t$badPasswordIp[$i]\n"; -+ $bpCount = 0; -+ foreach my $ip (sort {$badPassword{$b} <=> $badPassword{$a} } keys %badPasswordIp){ -+ if ($bpCount > $sizeCount){ last;} -+ $bpCount++; -+ printf "%-4s %-16s\n", $badPasswordIp{$ip}, $ip; - } - if ($bpTotal > $badPwdCount){ - print "\n** Warning : Wrongly reported failed login attempts : ". ($bpTotal - $badPwdCount) . "\n"; -@@ -1220,33 +1245,28 @@ if ($usage =~ /g/i || $verb eq "yes"){ - - print "\n\n----- Abandon Request Stats -----\n\n"; - -- while (my ($conn_op, $targ_msgid) = each %{$abandon_conn_op}) { -- my ($conn, $op) = split(",", $conn_op); -+ while (my ($srcnt_conn_op, $targ_msgid) = each %{$abandon_conn_op}) { -+ my ($srvRstCnt, $conn, $op) = split(",", $srcnt_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"; -- } -- if (exists($srch_conn_op->{$conn_targ}) && defined($srch_conn_op->{$conn_targ})) { -+ my $srcnt_conn_targ = "$srvRstCnt,$conn,$targetop"; -+ my $clientIP = getIPfromConn($conn, $srvRstCnt); -+ if (exists($srch_conn_op->{$srcnt_conn_targ}) && defined($srch_conn_op->{$srcnt_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})) { -+ } elsif (exists($del_conn_op->{$srcnt_conn_targ}) && defined($del_conn_op->{$srcnt_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})) { -+ } elsif (exists($add_conn_op->{$srcnt_conn_targ}) && defined($add_conn_op->{$srcnt_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})) { -+ } elsif (exists($mod_conn_op->{$srcnt_conn_targ}) && defined($mod_conn_op->{$srcnt_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})) { -+ } elsif (exists($cmp_conn_op->{$srcnt_conn_targ}) && defined($cmp_conn_op->{$srcnt_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})) { -+ } elsif (exists($mdn_conn_op->{$srcnt_conn_targ}) && defined($mdn_conn_op->{$srcnt_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})) { -+ } elsif (exists($bind_conn_op->{$srcnt_conn_targ}) && defined($bind_conn_op->{$srcnt_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})) { -+ } elsif (exists($unbind_conn_op->{$srcnt_conn_targ}) && defined($unbind_conn_op->{$srcnt_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})) { -+ } elsif (exists($ext_conn_op->{$srcnt_conn_targ}) && defined($ext_conn_op->{$srcnt_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"; -@@ -1521,6 +1541,44 @@ processOpForBindReport - } - - my ($last_tm, $lastzone, $last_min, $gmtime, $tzoff); -+sub handleConnClose -+{ -+ my $connID = shift; -+ $fdReturned++; -+ $simConnection--; -+ -+ delete $openConnection{$connID}; -+ 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 = $hashes->{start_time_of_connection}->{$connID} || 0; -+ $hashes->{end_time_of_connection}->{$connID} = $gmtime || 0; -+ my $diff = $hashes->{end_time_of_connection}->{$connID} - $stoc; -+ $hashes->{start_time_of_connection}->{$connID} = $hashes->{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] ++;} -+ } -+} -+ -+sub handleRestart -+{ -+ # there are some stats which depend on restarts -+ if ($verb eq "yes") { -+ print "Found a restart - resetting stats that depend on restarts"; -+ } -+ for my $connID (keys %openConnection) { -+ handleConnClose($connID); -+ } -+ %openConnection = (); # reset open connections -+ $serverRestartCount++; -+} -+ - sub parseLineNormal - { - local $_ = $logline; -@@ -1612,42 +1670,42 @@ sub parseLineNormal - $anyAttrs++; - } - if ($verb eq "yes"){ -- if ($_ =~ /conn= *([0-9A-Z]+) +op= *([0-9\-]+)/i){ $hashes->{srch_conn_op}->{"$1,$2"}++;} -+ if ($_ =~ /conn= *([0-9A-Z]+) +op= *([0-9\-]+)/i){ $hashes->{srch_conn_op}->{"$serverRestartCount,$1,$2"}++;} - } - } - if (m/ DEL/){ - $delCount++; - if($reportStats){ inc_stats('del',$s_stats,$m_stats); } - if ($verb eq "yes"){ -- if ($_ =~ /conn= *([0-9A-Z]+) +op= *([0-9\-]+)/i){ $hashes->{del_conn_op}->{"$1,$2"}++;} -+ if ($_ =~ /conn= *([0-9A-Z]+) +op= *([0-9\-]+)/i){ $hashes->{del_conn_op}->{"$serverRestartCount,$1,$2"}++;} - } - } - if (m/ MOD dn=/){ - $modCount++; - if($reportStats){ inc_stats('mod',$s_stats,$m_stats); } - if ($verb eq "yes"){ -- if ($_ =~ /conn= *([0-9A-Z]+) +op= *([0-9\-]+)/i){ $hashes->{mod_conn_op}->{"$1,$2"}++;} -+ if ($_ =~ /conn= *([0-9A-Z]+) +op= *([0-9\-]+)/i){ $hashes->{mod_conn_op}->{"$serverRestartCount,$1,$2"}++;} - } - } - if (m/ ADD/){ - $addCount++; - if($reportStats){ inc_stats('add',$s_stats,$m_stats); } - if ($verb eq "yes"){ -- if ($_ =~ /conn= *([0-9A-Z]+) +op= *([0-9\-]+)/i){ $hashes->{add_conn_op}->{"$1,$2"}++;} -+ if ($_ =~ /conn= *([0-9A-Z]+) +op= *([0-9\-]+)/i){ $hashes->{add_conn_op}->{"$serverRestartCount,$1,$2"}++;} - } - } - if (m/ MODRDN/){ - $modrdnCount++; - if($reportStats){ inc_stats('modrdn',$s_stats,$m_stats); } - if ($verb eq "yes"){ -- if ($_ =~ /conn= *([0-9A-Z]+) +op= *([0-9\-]+)/i){ $hashes->{mdn_conn_op}->{"$1,$2"}++;} -+ if ($_ =~ /conn= *([0-9A-Z]+) +op= *([0-9\-]+)/i){ $hashes->{mdn_conn_op}->{"$serverRestartCount,$1,$2"}++;} - } - } - if (m/ CMP dn=/){ - $cmpCount++; - if($reportStats){ inc_stats('cmp',$s_stats,$m_stats); } - if ($verb eq "yes" || $usage =~ /g/i){ -- if ($_ =~ /conn= *([0-9A-Z]+) +op= *([0-9\-]+)/i){ $hashes->{cmp_conn_op}->{"$1,$2"}++;} -+ if ($_ =~ /conn= *([0-9A-Z]+) +op= *([0-9\-]+)/i){ $hashes->{cmp_conn_op}->{"$serverRestartCount,$1,$2"}++;} - } - } - if (m/ ABANDON /){ -@@ -1662,7 +1720,7 @@ sub parseLineNormal - if ($_ =~ /conn= *([0-9A-Z]+) +op= *([0-9\-]+) +ABANDON +targetop= *([0-9a-zA-Z]+) +msgid= *([0-9\-]+)/i ){ - # abandon_conn_op - key is the conn,op of the ABANDON request - # the value is the targetop,msgid of the ABANDON request -- $hashes->{abandon_conn_op}->{"$1,$2"} = "$3,$4"; # targetop,msgid -+ $hashes->{abandon_conn_op}->{"$serverRestartCount,$1,$2"} = "$3,$4"; # targetop,msgid - } - } - if (m/ VLV /){ -@@ -1676,7 +1734,9 @@ sub parseLineNormal - if (m/ SORT /){$vlvSortCount++} - if (m/ version=2/){$v2BindCount++} - if (m/ version=3/){$v3BindCount++} -- if (m/ conn=1 fd=/){$serverRestartCount++} -+ if (m/ conn=1 fd=/){ -+ handleRestart(); -+ } - if (m/ SSL connection from/){$sslCount++; if($reportStats){ inc_stats('sslconns',$s_stats,$m_stats); }} - if (m/ connection from local to /){$ldapiCount++;} - if($_ =~ /AUTOBIND dn=\"(.*)\"/){ -@@ -1697,9 +1757,11 @@ sub parseLineNormal - } - } - if (m/ connection from/){ -+ my $ip; - if ($_ =~ /connection from *([0-9A-Fa-f\.\:]+)/i ){ -+ $ip = $1; - for (my $xxx =0; $xxx < $#excludeIP; $xxx++){ -- if ($excludeIP[$xxx] eq $1){$exc = "yes";} -+ if ($excludeIP[$xxx] eq $ip){$exc = "yes";} - } - if ($exc ne "yes"){ - $connectionCount++; -@@ -1711,40 +1773,17 @@ sub parseLineNormal - $maxsimConnection = $simConnection; - } - ($connID) = $_ =~ /conn=(\d*)\s/; -- $openConnection[$connID]++; -+ $openConnection{$connID} = $ip; - 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/\[//; -- $hashes->{start_time_of_connection}->{$connID} = timegm($sec, $min, $hr, $day, $monthname{$mon}, $yr); -+ $hashes->{start_time_of_connection}->{$connID} = $gmtime; - } - } - if (m/ SSL client bound as /){$sslClientBindCount++;} - if (m/ SSL failed to map client certificate to LDAP DN/){$sslClientFailedCount++;} - if (m/ fd=/ && m/slot=/){$fdTaken++} - if (m/ fd=/ && m/closed/){ -- $fdReturned++; -- $simConnection--; -- - ($connID) = $_ =~ /conn=(\d*)\s/; -- $openConnection[$connID]--; -- 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 = $hashes->{start_time_of_connection}->{$connID} || 0; -- $hashes->{end_time_of_connection}->{$connID} = $gmtime || 0; -- my $diff = $hashes->{end_time_of_connection}->{$connID} - $stoc; -- $hashes->{start_time_of_connection}->{$connID} = $hashes->{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] ++;} -- } -+ handleConnClose($connID); - } - if (m/ BIND/ && $_ =~ /dn=\"(.*)\" method/i ){ - my $binddn = $1; -@@ -1761,13 +1800,13 @@ sub parseLineNormal - $tmpp =~ tr/A-Z/a-z/; - $hashes->{bindlist}->{$tmpp}++; - if($usage =~ /f/ || $verb eq "yes"){ -- $hashes->{bind_conn_op}->{"$conn,$op"} = $tmpp; -+ $hashes->{bind_conn_op}->{"$serverRestartCount,$conn,$op"} = $tmpp; - } - } else { - $anonymousBindCount++; - $hashes->{bindlist}->{"Anonymous Binds"}++; - if($usage =~ /f/ || $verb eq "yes"){ -- $hashes->{bind_conn_op}->{"$conn,$op"} = ""; -+ $hashes->{bind_conn_op}->{"$serverRestartCount,$conn,$op"} = ""; - } - inc_stats('anonbind',$s_stats,$m_stats); - } -@@ -1775,7 +1814,7 @@ sub parseLineNormal - if (m/ UNBIND/){ - $unbindCount++; - if ($verb eq "yes"){ -- if ($_ =~ /conn= *([0-9A-Z]+) +op= *([0-9\-]+)/i){ $hashes->{unbind_conn_op}->{"$1,$2"}++;} -+ if ($_ =~ /conn= *([0-9A-Z]+) +op= *([0-9\-]+)/i){ $hashes->{unbind_conn_op}->{"$serverRestartCount,$1,$2"}++;} - } - } - if (m/ RESULT err=/ && m/ notes=[A-Z,]*P/){ -@@ -1795,11 +1834,11 @@ sub parseLineNormal - # 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"){ -- $hashes->{notesa_conn_op}->{"$con,$op"}++; -- if ($_ =~ /etime= *([0-9.]+)/i ){ $hashes->{etime_conn_op}->{"$con,$op"} = $1; } -- if ($_ =~ / *([0-9a-z:\/]+)/i){ $hashes->{time_conn_op}->{"$con,$op"} = $1; } -- if ($_ =~ /nentries= *([0-9]+)/i ){ $hashes->{nentries_conn_op}->{"$con,$op"} = $1; } -+ if ($usage =~ /u/ || $usage =~ /U/ || $verb eq "yes"){ -+ $hashes->{notesa_conn_op}->{"$serverRestartCount,$con,$op"}++; -+ if ($_ =~ /etime= *([0-9.]+)/i ){ $hashes->{etime_conn_op}->{"$serverRestartCount,$con,$op"} = $1; } -+ if ($_ =~ / *([0-9a-z:\/]+)/i){ $hashes->{time_conn_op}->{"$serverRestartCount,$con,$op"} = $1; } -+ if ($_ =~ /nentries= *([0-9]+)/i ){ $hashes->{nentries_conn_op}->{"$serverRestartCount,$con,$op"} = $1; } - } - } - $isVlvNotes = 0; -@@ -1818,11 +1857,11 @@ sub parseLineNormal - # unindexed search stat, as VLV unindexed searches aren't that bad - $unindexedSrchCountNotesU++; - if($reportStats){ inc_stats('notesU',$s_stats,$m_stats); } -- if ($usage =~ /u/ || $verb eq "yes"){ -- $hashes->{notesu_conn_op}->{"$con,$op"}++; -- if ($_ =~ /etime= *([0-9.]+)/i ){ $hashes->{etime_conn_op}->{"$con,$op"} = $1; } -- if ($_ =~ / *([0-9a-z:\/]+)/i){ $hashes->{time_conn_op}->{"$con,$op"} = $1; } -- if ($_ =~ /nentries= *([0-9]+)/i ){ $hashes->{nentries_conn_op}->{"$con,$op"} = $1; } -+ if ($usage =~ /u/ || $usage =~ /U/ || $verb eq "yes"){ -+ $hashes->{notesu_conn_op}->{"$serverRestartCount,$con,$op"}++; -+ if ($_ =~ /etime= *([0-9.]+)/i ){ $hashes->{etime_conn_op}->{"$serverRestartCount,$con,$op"} = $1; } -+ if ($_ =~ / *([0-9a-z:\/]+)/i){ $hashes->{time_conn_op}->{"$serverRestartCount,$con,$op"} = $1; } -+ if ($_ =~ /nentries= *([0-9]+)/i ){ $hashes->{nentries_conn_op}->{"$serverRestartCount,$con,$op"} = $1; } - } - } - $isVlvNotes = 0; -@@ -1885,14 +1924,14 @@ sub parseLineNormal - $hashes->{ip_hash}->{$ip}++; - if ($_ =~ /conn= *([0-9A-Z]+)/i ){ - if ($exc ne "yes"){ -- $hashes->{conn_hash}->{$1} = $ip; -+ $hashes->{conn_hash}->{"$serverRestartCount,$1"} = $ip; - } - } - } - if (m/- A1/){ - if ($_ =~ /conn= *([0-9A-Z]+)/i) { - $exc = "no"; -- $ip = getIPfromConn($1); -+ $ip = getIPfromConn($1, $serverRestartCount); - for (my $xxx = 0; $xxx < $#excludeIP; $xxx++){ - if ($ip eq $excludeIP[$xxx]){$exc = "yes";} - } -@@ -1906,7 +1945,7 @@ sub parseLineNormal - if (m/- B1/){ - if ($_ =~ /conn= *([0-9A-Z]+)/i) { - $exc = "no"; -- $ip = getIPfromConn($1); -+ $ip = getIPfromConn($1, $serverRestartCount); - for (my $xxx = 0; $xxx < $#excludeIP; $xxx++){ - if ($ip eq $excludeIP[$xxx]){$exc = "yes";} - } -@@ -1920,7 +1959,7 @@ sub parseLineNormal - if (m/- B4/){ - if ($_ =~ /conn= *([0-9A-Z]+)/i) { - $exc = "no"; -- $ip = getIPfromConn($1); -+ $ip = getIPfromConn($1, $serverRestartCount); - for (my $xxx = 0; $xxx < $#excludeIP; $xxx++){ - if ($ip eq $excludeIP[$xxx]){$exc = "yes";} - } -@@ -1934,7 +1973,7 @@ sub parseLineNormal - if (m/- T1/){ - if ($_ =~ /conn= *([0-9A-Z]+)/i) { - $exc = "no"; -- $ip = getIPfromConn($1); -+ $ip = getIPfromConn($1, $serverRestartCount); - for (my $xxx = 0; $xxx < $#excludeIP; $xxx++){ - if ($ip eq $excludeIP[$xxx]){$exc = "yes";} - } -@@ -1948,7 +1987,7 @@ sub parseLineNormal - if (m/- T2/){ - if ($_ =~ /conn= *([0-9A-Z]+)/i) { - $exc = "no"; -- $ip = getIPfromConn($1); -+ $ip = getIPfromConn($1, $serverRestartCount); - for (my $xxx = 0; $xxx < $#excludeIP; $xxx++){ - if ($ip eq $excludeIP[$xxx]){$exc = "yes";} - } -@@ -1962,7 +2001,7 @@ sub parseLineNormal - if (m/- B2/){ - if ($_ =~ /conn= *([0-9A-Z]+)/i) { - $exc = "no"; -- $ip = getIPfromConn($1); -+ $ip = getIPfromConn($1, $serverRestartCount); - $maxBerSizeCount++; - for (my $xxx = 0; $xxx < $#excludeIP; $xxx++){ - if ($ip eq $excludeIP[$xxx]){$exc = "yes";} -@@ -1977,7 +2016,7 @@ sub parseLineNormal - if (m/- B3/){ - if ($_ =~ /conn= *([0-9A-Z]+)/i) { - $exc = "no"; -- $ip = getIPfromConn($1); -+ $ip = getIPfromConn($1, $serverRestartCount); - for (my $xxx = 0; $xxx < $#excludeIP; $xxx++){ - if ($ip eq $excludeIP[$xxx]){$exc = "yes";} - } -@@ -1991,7 +2030,7 @@ sub parseLineNormal - if (m/- R1/){ - if ($_ =~ /conn= *([0-9A-Z]+)/i) { - $exc = "no"; -- $ip = getIPfromConn($1); -+ $ip = getIPfromConn($1, $serverRestartCount); - for (my $xxx = 0; $xxx < $#excludeIP; $xxx++){ - if ($ip eq $excludeIP[$xxx]){$exc = "yes";} - } -@@ -2005,7 +2044,7 @@ sub parseLineNormal - if (m/- P1/){ - if ($_ =~ /conn= *([0-9A-Z]+)/i) { - $exc = "no"; -- $ip = getIPfromConn($1); -+ $ip = getIPfromConn($1, $serverRestartCount); - for (my $xxx = 0; $xxx < $#excludeIP; $xxx++){ - if ($ip eq $excludeIP[$xxx]){$exc = "yes";} - } -@@ -2019,7 +2058,7 @@ sub parseLineNormal - if (m/- P2/){ - if ($_ =~ /conn= *([0-9A-Z]+)/i) { - $exc = "no"; -- $ip = getIPfromConn($1); -+ $ip = getIPfromConn($1, $serverRestartCount); - for (my $xxx = 0; $xxx < $#excludeIP; $xxx++){ - if ($ip eq $excludeIP[$xxx]){$exc = "yes";} - } -@@ -2033,7 +2072,7 @@ sub parseLineNormal - if (m/- U1/){ - if ($_ =~ /conn= *([0-9A-Z]+)/i) { - $exc = "no"; -- $ip = getIPfromConn($1); -+ $ip = getIPfromConn($1, $serverRestartCount); - for (my $xxx = 0; $xxx < $#excludeIP; $xxx++){ - if ($ip eq $excludeIP[$xxx]){$exc = "yes";} - } -@@ -2062,10 +2101,10 @@ sub parseLineNormal - if ($_ =~ /oid=\" *([0-9\.]+)/i ){ $hashes->{oid}->{$1}++; } - if ($1 && $1 eq $startTLSoid){$startTLSCount++;} - if ($verb eq "yes"){ -- if ($_ =~ /conn= *([0-9A-Z]+) +op= *([0-9\-]+)/i){ $hashes->{ext_conn_op}->{"$1,$2"}++;} -+ if ($_ =~ /conn= *([0-9A-Z]+) +op= *([0-9\-]+)/i){ $hashes->{ext_conn_op}->{"$serverRestartCount,$1,$2"}++;} - } - } -- if (($usage =~ /l/ || $verb eq "yes") and / SRCH /){ -+ if (($usage =~ /l/ || $verb eq "yes" || $usage =~ /u/ || $usage =~ /U/) and / SRCH /){ - my ($filterConn, $filterOp); - if (/ SRCH / && / attrs=/ && $_ =~ /filter=\"(.*)\" /i ){ - $tmpp = $1; -@@ -2083,13 +2122,13 @@ sub parseLineNormal - if ($_ =~ /op= *([0-9\-]+)/i) { $filterOp = $1; } - } - $filterCount++; -- if($usage =~ /u/ || $verb eq "yes"){ -+ if($usage =~ /u/ || $usage =~ /U/ || $verb eq "yes"){ - # we only need this for the unindexed search report -- $hashes->{filter_conn_op}->{"$filterConn,$filterOp"} = $tmpp; -+ $hashes->{filter_conn_op}->{"$serverRestartCount,$filterConn,$filterOp"} = $tmpp; - } - } -- if ($usage =~ /a/ || $verb eq "yes"){ -- if (/ SRCH / && $_ =~ /base=\"(.*)\" scope/i ){ -+ if (($usage =~ /a/ || $verb eq "yes" || $usage =~ /u/ || $usage =~ /U/) and / SRCH /){ -+ if ($_ =~ /base=\"(.*)\" scope/i ){ - my ($conn, $op, $scopeVal); - if ($1 eq ""){ - $tmpp = "Root DSE"; -@@ -2110,10 +2149,10 @@ sub parseLineNormal - if ($_ =~ /op= *([0-9\-]+)/i) { - $op = $1; - } -- if($usage =~ /u/ || $verb eq "yes"){ -+ if($usage =~ /u/ || $usage =~ /U/ || $verb eq "yes"){ - # we only need this for the unindexed search report -- $hashes->{base_conn_op}->{"$conn,$op"} = $tmpp; -- $hashes->{scope_conn_op}->{"$conn,$op"} = $scopeTxt[$scopeVal]; -+ $hashes->{base_conn_op}->{"$serverRestartCount,$conn,$op"} = $tmpp; -+ $hashes->{scope_conn_op}->{"$serverRestartCount,$conn,$op"} = $scopeTxt[$scopeVal]; - } - $baseCount++; - $scopeCount++; -@@ -2133,7 +2172,9 @@ sub parseLineNormal - $badPwdCount++; - } elsif (/ err=49 tag=/ ){ - $badPwdCount++; -- if ($_ =~ /conn= *([0-9A-Z]+) +op= *([0-9\-]+)/i){ $hashes->{badpwd_conn_op}->{"$1,$2"}++;} -+ if ($_ =~ /conn= *([0-9A-Z]+) +op= *([0-9\-]+)/i){ -+ $hashes->{badpwd_conn_op}->{"$serverRestartCount,$1,$2"} = getIPfromConn($1, $serverRestartCount); -+ } - } - } - if (/ BIND / && /method=sasl/i){ -@@ -2394,9 +2435,11 @@ sub - getIPfromConn - { - my $connid = shift; -- if (exists($hashes->{conn_hash}->{$connid}) && -- defined($hashes->{conn_hash}->{$connid})) { -- return $hashes->{conn_hash}->{$connid}; -+ my $serverRestartCount = shift; -+ my $key = "$serverRestartCount,$connid"; -+ if (exists($hashes->{conn_hash}->{$key}) && -+ defined($hashes->{conn_hash}->{$key})) { -+ return $hashes->{conn_hash}->{$key}; - } - - return "Unknown_Host"; -diff --git a/man/man1/logconv.pl.1 b/man/man1/logconv.pl.1 -index c2a8cd8..46e7c96 100644 ---- a/man/man1/logconv.pl.1 -+++ b/man/man1/logconv.pl.1 -@@ -21,7 +21,7 @@ logconv.pl \- analyzes Directory Server access log files - .B logconv.pl - [\fI\-h\fR] [\fI\-d <rootDN>\fR] [\fI\-s <size limit>\fR] [\fI\-v\fR] [\fI\-V\fR] - [\fI\-S <start time>\fR] [\fI\-E <end time>\fR] --[\fI\-efcibaltnxgju\fR] [\fI access log ... ... \fR] -+[\fI\-efcibaltnxgjuU\fR] [\fI access log ... ... \fR] - .PP - .SH DESCRIPTION - Analyzes Directory Server access log files for specific information defined on the command -@@ -68,10 +68,10 @@ This option creates a CSV report for spreadsheets. - .B \fB\-B, \-\-bind\fR <ALL | ANONYMOUS | "Bind DN"> - This generates a report based on either ALL bind dn's, anonymous binds, or a specific DN. - .TP --\fB\-V, \-\-verbose\fR <enable verbose output \- includes all stats listed below> -+\fB\-V, \-\-verbose\fR <enable verbose output \- includes all stats listed below except U> - Verbose output - .TP --.B \fB\-[efcibaltnxgju]\fR -+.B \fB\-[efcibaltnxgjuU]\fR - .br - \fBe\fR Error Code stats - .br -@@ -99,11 +99,13 @@ Verbose output - .br - \fBj\fR Recommendations - .br --\fBu\fR Unindexed Search Stats -+\fBu\fR Unindexed Search Stats (very detailed) - .br - \fBy\fR Connection Latency Stats - .br - \fBp\fR Open Connection ID Stats -+.br -+\fBU\fR Unindexed Search Summary - .PP - .SH USAGE - Examples: --- -1.7.1 - diff --git a/SOURCES/0027-Ticket-47945-Add-SSL-TLS-version-info-to-the-access-.patch b/SOURCES/0027-Ticket-47945-Add-SSL-TLS-version-info-to-the-access-.patch new file mode 100644 index 0000000..675fa31 --- /dev/null +++ b/SOURCES/0027-Ticket-47945-Add-SSL-TLS-version-info-to-the-access-.patch @@ -0,0 +1,641 @@ +From e7c71a8c3a361fa7cbf96a0c57723c74d044922a Mon Sep 17 00:00:00 2001 +From: Noriko Hosoi <nhosoi@redhat.com> +Date: Mon, 10 Nov 2014 13:51:34 -0800 +Subject: [PATCH 27/28] Ticket #47945 - Add SSL/TLS version info to the access + log + +Description: Added the currently used SSL library version info per +connection to the access log. +Sample output: + SSL + [..] conn=3 fd=64 slot=64 SSL connection from ::1 to ::1 + [..] conn=3 TLS1.2 128-bit AES-GCM + + startTLS + [..] conn=4 op=0 EXT oid="1.3.6.1.4.1.1466.20037" name="startTLS" + [..] conn=4 op=0 RESULT err=0 tag=120 nentries=0 etime=0 + [..] conn=4 TLS1.2 128-bit AES-GCM + +To convert the SSL version number to string (e.g., SSL_LIBRARY_VERSION_ +TLS_1_2 --> "TLS1.2"), instead of maintaining a mapping table, this +patch calculates the number and generates the version string. + +https://fedorahosted.org/389/ticket/47945 + +Reviewed and adviced by rmeggins@redhat.com (Thanks a lot, Rich!!) + +(cherry picked from commit a2e0de3aa90f04593427628afeb7fe090dac93fb) +(cherry picked from commit 0d1087d0c4dc9b6af3a01776ae11e0977c447fb7) +--- + ldap/servers/slapd/auth.c | 85 +++++++++------- + ldap/servers/slapd/slapi-private.h | 19 ++++ + ldap/servers/slapd/ssl.c | 194 ++++++++++++++++++++----------------- + 3 files changed, 174 insertions(+), 124 deletions(-) + +diff --git a/ldap/servers/slapd/auth.c b/ldap/servers/slapd/auth.c +index 5b7dc31..0219576 100644 +--- a/ldap/servers/slapd/auth.c ++++ b/ldap/servers/slapd/auth.c +@@ -430,9 +430,10 @@ handle_handshake_done (PRFileDesc *prfd, void* clientData) + int keySize = 0; + char* cipher = NULL; + char* extraErrorMsg = ""; +- SSLChannelInfo channelInfo; +- SSLCipherSuiteInfo cipherInfo; +- char* subject = NULL; ++ SSLChannelInfo channelInfo; ++ SSLCipherSuiteInfo cipherInfo; ++ char* subject = NULL; ++ char sslversion[64]; + + if ( (slapd_ssl_getChannelInfo (prfd, &channelInfo, sizeof(channelInfo))) != SECSuccess ) { + PRErrorCode errorCode = PR_GetError(); +@@ -460,38 +461,48 @@ handle_handshake_done (PRFileDesc *prfd, void* clientData) + * to be enough, close the SSL connection. */ + if ( conn->c_flags & CONN_FLAG_START_TLS ) { + if ( cipherInfo.symKeyBits == 0 ) { +- start_tls_graceful_closure( conn, NULL, 1 ); +- goto done; +- } ++ start_tls_graceful_closure( conn, NULL, 1 ); ++ goto done; ++ } + } + + if (config_get_SSLclientAuth() == SLAPD_SSLCLIENTAUTH_OFF ) { +- slapi_log_access (LDAP_DEBUG_STATS, "conn=%" NSPRIu64 " SSL %i-bit %s\n", +- (long long unsigned int)conn->c_connid, keySize, cipher ? cipher : "NULL" ); +- goto done; +- } ++ (void) slapi_getSSLVersion_str(channelInfo.protocolVersion, sslversion, sizeof(sslversion)); ++ slapi_log_access (LDAP_DEBUG_STATS, "conn=%" NSPRIu64 " %s %i-bit %s\n", ++ (long long unsigned int)conn->c_connid, ++ sslversion, keySize, cipher ? cipher : "NULL" ); ++ goto done; ++ } + if (clientCert == NULL) { +- slapi_log_access (LDAP_DEBUG_STATS, "conn=%" NSPRIu64 " SSL %i-bit %s\n", +- (long long unsigned int)conn->c_connid, keySize, cipher ? cipher : "NULL" ); ++ (void) slapi_getSSLVersion_str(channelInfo.protocolVersion, sslversion, sizeof(sslversion)); ++ slapi_log_access (LDAP_DEBUG_STATS, "conn=%" NSPRIu64 " %s %i-bit %s\n", ++ (long long unsigned int)conn->c_connid, ++ sslversion, keySize, cipher ? cipher : "NULL" ); + } else { +- subject = subject_of (clientCert); +- if (!subject) { +- slapi_log_access( LDAP_DEBUG_STATS, +- "conn=%" NSPRIu64 " SSL %i-bit %s; missing subject\n", +- (long long unsigned int)conn->c_connid, keySize, cipher ? cipher : "NULL"); +- goto done; +- } +- { +- char* issuer = issuer_of (clientCert); +- char sbuf[ BUFSIZ ], ibuf[ BUFSIZ ]; +- slapi_log_access( LDAP_DEBUG_STATS, +- "conn=%" NSPRIu64 " SSL %i-bit %s; client %s; issuer %s\n", +- (long long unsigned int)conn->c_connid, keySize, cipher ? cipher : "NULL", +- subject ? escape_string( subject, sbuf ) : "NULL", +- issuer ? escape_string( issuer, ibuf ) : "NULL"); +- if (issuer) free (issuer); +- } +- slapi_dn_normalize (subject); ++ subject = subject_of (clientCert); ++ if (!subject) { ++ (void) slapi_getSSLVersion_str(channelInfo.protocolVersion, ++ sslversion, sizeof(sslversion)); ++ slapi_log_access( LDAP_DEBUG_STATS, ++ "conn=%" NSPRIu64 " %s %i-bit %s; missing subject\n", ++ (long long unsigned int)conn->c_connid, ++ sslversion, keySize, cipher ? cipher : "NULL"); ++ goto done; ++ } ++ { ++ char* issuer = issuer_of (clientCert); ++ char sbuf[ BUFSIZ ], ibuf[ BUFSIZ ]; ++ (void) slapi_getSSLVersion_str(channelInfo.protocolVersion, ++ sslversion, sizeof(sslversion)); ++ slapi_log_access( LDAP_DEBUG_STATS, ++ "conn=%" NSPRIu64 " %s %i-bit %s; client %s; issuer %s\n", ++ (long long unsigned int)conn->c_connid, ++ sslversion, keySize, cipher ? cipher : "NULL", ++ subject ? escape_string( subject, sbuf ) : "NULL", ++ issuer ? escape_string( issuer, ibuf ) : "NULL"); ++ if (issuer) free (issuer); ++ } ++ slapi_dn_normalize (subject); + { + LDAPMessage* chain = NULL; + char *basedn = config_get_basedn(); +@@ -525,14 +536,20 @@ handle_handshake_done (PRFileDesc *prfd, void* clientData) + sdn = slapi_sdn_new_dn_passin(clientDN); + clientDN = slapi_ch_strdup(slapi_sdn_get_dn(sdn)); + slapi_sdn_free(&sdn); ++ (void) slapi_getSSLVersion_str(channelInfo.protocolVersion, ++ sslversion, sizeof(sslversion)); + slapi_log_access (LDAP_DEBUG_STATS, +- "conn=%" NSPRIu64 " SSL client bound as %s\n", +- (long long unsigned int)conn->c_connid, clientDN); ++ "conn=%" NSPRIu64 " %s client bound as %s\n", ++ (long long unsigned int)conn->c_connid, ++ sslversion, clientDN); + } else if (clientCert != NULL) { ++ (void) slapi_getSSLVersion_str(channelInfo.protocolVersion, ++ sslversion, sizeof(sslversion)); + slapi_log_access (LDAP_DEBUG_STATS, +- "conn=%" NSPRIu64 " SSL failed to map client " ++ "conn=%" NSPRIu64 " %s failed to map client " + "certificate to LDAP DN (%s)\n", +- (long long unsigned int)conn->c_connid, extraErrorMsg ); ++ (long long unsigned int)conn->c_connid, ++ sslversion, extraErrorMsg); + } + + /* +diff --git a/ldap/servers/slapd/slapi-private.h b/ldap/servers/slapd/slapi-private.h +index a8d7738..921c397 100644 +--- a/ldap/servers/slapd/slapi-private.h ++++ b/ldap/servers/slapd/slapi-private.h +@@ -1336,6 +1336,25 @@ void add_internal_modifiersname(Slapi_PBlock *pb, Slapi_Entry *e); + /* ldaputil.c */ + char *ldaputil_get_saslpath(); + ++/* ssl.c */ ++/* ++ * If non NULL buf and positive bufsize is given, ++ * the memory is used to store the version string. ++ * Otherwise, the memory for the string is allocated. ++ * The latter case, caller is responsible to free it. ++ */ ++/* vnum is supposed to be in one of the following: ++ * nss3/sslproto.h ++ * #define SSL_LIBRARY_VERSION_2 0x0002 ++ * #define SSL_LIBRARY_VERSION_3_0 0x0300 ++ * #define SSL_LIBRARY_VERSION_TLS_1_0 0x0301 ++ * #define SSL_LIBRARY_VERSION_TLS_1_1 0x0302 ++ * #define SSL_LIBRARY_VERSION_TLS_1_2 0x0303 ++ * #define SSL_LIBRARY_VERSION_TLS_1_3 0x0304 ++ * ... ++ */ ++char *slapi_getSSLVersion_str(PRUint16 vnum, char *buf, size_t bufsize); ++ + #ifdef __cplusplus + } + #endif +diff --git a/ldap/servers/slapd/ssl.c b/ldap/servers/slapd/ssl.c +index f81d1fb..5d6919a 100644 +--- a/ldap/servers/slapd/ssl.c ++++ b/ldap/servers/slapd/ssl.c +@@ -99,7 +99,6 @@ extern symbol_t supported_ciphers[]; + #if !defined(NSS_TLS10) /* NSS_TLS11 or newer */ + 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 +@@ -246,6 +245,9 @@ static lookup_cipher _lookup_cipher[] = { + {NULL, NULL} + }; + ++/* E.g., "SSL3", "TLS1.2", "Unknown SSL version: 0x0" */ ++#define VERSION_STR_LENGTH 64 ++ + /* Supported SSL versions */ + /* nsSSL2: on -- we don't allow this any more. */ + PRBool enableSSL2 = PR_FALSE; +@@ -418,8 +420,8 @@ getSSLVersionRange(char **min, char **max) + #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)); ++ *min = slapi_getSSLVersion_str(slapdNSSVersions.min, NULL, 0); ++ *max = slapi_getSSLVersion_str(slapdNSSVersions.max, NULL, 0); + return 0; + #endif + } +@@ -854,34 +856,48 @@ warn_if_no_key_file(const char *dir, int no_log) + } + + #if !defined(NSS_TLS10) /* NSS_TLS11 or newer */ +-typedef struct _nss_version_list { +- PRUint16 vnum; +- char* vname; +-} NSSVersion_list; +-NSSVersion_list _NSSVersion_list[] = +-{ +- {SSL_LIBRARY_VERSION_2, "SSL2"}, +- {SSL_LIBRARY_VERSION_3_0, "SSL3"}, +- {SSL_LIBRARY_VERSION_TLS_1_0, "TLS1.0"}, +- {SSL_LIBRARY_VERSION_TLS_1_1, "TLS1.1"}, +-#if defined(NSS_TLS12) +- {SSL_LIBRARY_VERSION_TLS_1_2, "TLS1.2"}, +-#endif +- {0, "unknown"} +-}; +- +-static char * +-getNSSVersion_str(PRUint16 vnum) ++/* ++ * If non NULL buf and positive bufsize is given, ++ * the memory is used to store the version string. ++ * Otherwise, the memory for the string is allocated. ++ * The latter case, caller is responsible to free it. ++ */ ++char * ++slapi_getSSLVersion_str(PRUint16 vnum, char *buf, size_t bufsize) + { +- NSSVersion_list *nvlp = NULL; +- char *vstr = "none"; +- if (vnum) { +- for (nvlp = _NSSVersion_list; nvlp && nvlp->vnum; nvlp++) { +- if (nvlp->vnum == vnum) { +- vstr = nvlp->vname; +- break; ++ char *vstr = buf; ++ if (vnum >= SSL_LIBRARY_VERSION_3_0) { ++ if (vnum == SSL_LIBRARY_VERSION_3_0) { /* SSL3 */ ++ if (buf && bufsize) { ++ PR_snprintf(buf, bufsize, "SSL3"); ++ } else { ++ vstr = slapi_ch_smprintf("SSL3"); ++ } ++ } else { /* TLS v X.Y */ ++ const char *TLSFMT = "TLS%d.%d"; ++ int minor_offset = 0; /* e.g. 0x0401 -> TLS v 2.1, not 2.0 */ ++ ++ if ((vnum & SSL_LIBRARY_VERSION_3_0) == SSL_LIBRARY_VERSION_3_0) { ++ minor_offset = 1; /* e.g. 0x0301 -> TLS v 1.0, not 1.1 */ ++ } ++ if (buf && bufsize) { ++ PR_snprintf(buf, bufsize, TLSFMT, (vnum >> 8) - 2, (vnum & 0xff) - minor_offset); ++ } else { ++ vstr = slapi_ch_smprintf(TLSFMT, (vnum >> 8) - 2, (vnum & 0xff) - minor_offset); + } + } ++ } else if (vnum == SSL_LIBRARY_VERSION_2) { /* SSL2 */ ++ if (buf && bufsize) { ++ PR_snprintf(buf, bufsize, "SSL2"); ++ } else { ++ vstr = slapi_ch_smprintf("SSL2"); ++ } ++ } else { ++ if (buf && bufsize) { ++ PR_snprintf(buf, bufsize, "Unknown SSL version: 0x%x", vnum); ++ } else { ++ vstr = slapi_ch_smprintf("Unknown SSL version: 0x%x", vnum); ++ } + } + return vstr; + } +@@ -895,12 +911,16 @@ getNSSVersion_str(PRUint16 vnum) + static void + restrict_SSLVersionRange(void) + { ++ char mymin[VERSION_STR_LENGTH], mymax[VERSION_STR_LENGTH]; ++ char emin[VERSION_STR_LENGTH], emax[VERSION_STR_LENGTH]; ++ (void) slapi_getSSLVersion_str(slapdNSSVersions.min, mymin, sizeof(mymin)); ++ (void) slapi_getSSLVersion_str(slapdNSSVersions.max, mymax, sizeof(mymax)); ++ (void) slapi_getSSLVersion_str(enabledNSSVersions.max, emax, sizeof(emax)); ++ (void) slapi_getSSLVersion_str(enabledNSSVersions.min, emin, sizeof(emin)); + 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)); ++ mymin, mymax, emax); + slapdNSSVersions.max = enabledNSSVersions.max; + } + if (enableSSL3) { +@@ -911,17 +931,14 @@ restrict_SSLVersionRange(void) + 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)); ++ mymin, mymax); + 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)); ++ mymin, mymax, emax); + slapdNSSVersions.max = enabledNSSVersions.max; + } + } else { +@@ -930,8 +947,7 @@ restrict_SSLVersionRange(void) + 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)); ++ emin, emax); + slapdNSSVersions.min = SSLVGreater(slapdNSSVersions.min, enabledNSSVersions.min); + enableSSL3 = PR_FALSE; + enableTLS1 = PR_TRUE; +@@ -939,19 +955,13 @@ restrict_SSLVersionRange(void) + 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)); ++ mymin, mymax); + 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; ++ "We strongly recommend to set sslVersionMax higher than %s.", ++ mymin, mymax, emax); + } else { + /* + * slapdNSSVersions.min <= SSL_LIBRARY_VERSION_TLS_1_0 && +@@ -960,8 +970,7 @@ restrict_SSLVersionRange(void) + 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)); ++ mymin, mymax); + enableTLS1 = PR_TRUE; + } + } +@@ -971,8 +980,7 @@ restrict_SSLVersionRange(void) + /* 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)); ++ emin, emax); + slapdNSSVersions.max = enabledNSSVersions.max; + slapdNSSVersions.min = enabledNSSVersions.min; + enableSSL3 = PR_TRUE; +@@ -983,8 +991,7 @@ restrict_SSLVersionRange(void) + 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)); ++ mymin, mymax); + } else { + /* + * slapdNSSVersions.min >= SSL_LIBRARY_VERSION_TLS_1_1 && +@@ -995,8 +1002,7 @@ restrict_SSLVersionRange(void) + } else { + slapd_SSL_warn("Supported range: min: %s, max: %s; " + "Respect the configured range.", +- getNSSVersion_str(enabledNSSVersions.min), +- getNSSVersion_str(enabledNSSVersions.max)); ++ emin, emax); + /* nsTLS1 is explicitly set to off. */ + if (slapdNSSVersions.min > SSL_LIBRARY_VERSION_TLS_1_0) { + enableTLS1 = PR_TRUE; +@@ -1040,13 +1046,15 @@ slapd_nss_init(int init_ssl, int config_available) + char *keydb_file_name = NULL; + char *secmoddb_file_name = NULL; + #if !defined(NSS_TLS10) /* NSS_TLS11 or newer */ ++ char emin[VERSION_STR_LENGTH], emax[VERSION_STR_LENGTH]; + /* Get the range of the supported SSL version */ + SSL_VersionRangeGetSupported(ssl_variant_stream, &enabledNSSVersions); + ++ (void) slapi_getSSLVersion_str(enabledNSSVersions.min, emin, sizeof(emin)); ++ (void) slapi_getSSLVersion_str(enabledNSSVersions.max, emax, sizeof(emax)); + slapi_log_error(SLAPI_LOG_CONFIG, "SSL Initialization", + "supported range by NSS: min: %s, max: %s\n", +- getNSSVersion_str(enabledNSSVersions.min), +- getNSSVersion_str(enabledNSSVersions.max)); ++ emin, emax); + #endif + + /* set in slapd_bootstrap_config, +@@ -1351,34 +1359,37 @@ set_NSS_version(char *val, PRUint16 *rval, int ismin) + { + char *vp, *endp; + int vnum; ++ char emin[VERSION_STR_LENGTH], emax[VERSION_STR_LENGTH]; + + if (NULL == rval) { + return 1; + } ++ (void) slapi_getSSLVersion_str(enabledNSSVersions.min, emin, sizeof(emin)); ++ (void) slapi_getSSLVersion_str(enabledNSSVersions.max, emax, sizeof(emax)); + if (!strncasecmp(val, SSLSTR, SSLLEN)) { /* ssl# */ + vp = val + SSLLEN; + vnum = strtol(vp, &endp, 10); + if (2 == vnum) { + if (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.", +- val, getNSSVersion_str(enabledNSSVersions.min)); +- (*rval) = enabledNSSVersions.min; ++ slapd_SSL_warn("Security Initialization: The value of sslVersionMin " ++ "\"%s\" is lower than the supported version; " ++ "the default value \"%s\" is used.", ++ val, emin); ++ (*rval) = enabledNSSVersions.min; + } else { +- (*rval) = SSL_LIBRARY_VERSION_2; ++ (*rval) = SSL_LIBRARY_VERSION_2; + } + } else { + if (enabledNSSVersions.max < SSL_LIBRARY_VERSION_2) { + /* never happens */ + slapd_SSL_warn("Security Initialization: The value of sslVersionMax " +- "\"%s\" is higher than the supported version; " +- "the default value \"%s\" is used.", +- val, getNSSVersion_str(enabledNSSVersions.max)); +- (*rval) = enabledNSSVersions.max; ++ "\"%s\" is higher than the supported version; " ++ "the default value \"%s\" is used.", ++ val, emax); ++ (*rval) = enabledNSSVersions.max; + } else { +- (*rval) = SSL_LIBRARY_VERSION_2; ++ (*rval) = SSL_LIBRARY_VERSION_2; + } + } + } else if (3 == vnum) { +@@ -1387,7 +1398,7 @@ set_NSS_version(char *val, PRUint16 *rval, int ismin) + slapd_SSL_warn("Security Initialization: The value of sslVersionMin " + "\"%s\" is lower than the supported version; " + "the default value \"%s\" is used.", +- val, getNSSVersion_str(enabledNSSVersions.min)); ++ val, emin); + (*rval) = enabledNSSVersions.min; + } else { + (*rval) = SSL_LIBRARY_VERSION_3_0; +@@ -1398,7 +1409,7 @@ set_NSS_version(char *val, PRUint16 *rval, int ismin) + slapd_SSL_warn("Security Initialization: The value of sslVersionMax " + "\"%s\" is higher than the supported version; " + "the default value \"%s\" is used.", +- val, getNSSVersion_str(enabledNSSVersions.max)); ++ val, emax); + (*rval) = enabledNSSVersions.max; + } else { + (*rval) = SSL_LIBRARY_VERSION_3_0; +@@ -1408,12 +1419,12 @@ set_NSS_version(char *val, PRUint16 *rval, int ismin) + if (ismin) { + slapd_SSL_warn("Security Initialization: The value of sslVersionMin " + "\"%s\" is invalid; the default value \"%s\" is used.", +- val, getNSSVersion_str(enabledNSSVersions.min)); ++ val, emin); + (*rval) = enabledNSSVersions.min; + } else { + slapd_SSL_warn("Security Initialization: The value of sslVersionMax " + "\"%s\" is invalid; the default value \"%s\" is used.", +- val, getNSSVersion_str(enabledNSSVersions.max)); ++ val, emax); + (*rval) = enabledNSSVersions.max; + } + } +@@ -1427,7 +1438,7 @@ set_NSS_version(char *val, PRUint16 *rval, int ismin) + slapd_SSL_warn("Security Initialization: The value of sslVersionMin " + "\"%s\" is lower than the supported version; " + "the default value \"%s\" is used.", +- val, getNSSVersion_str(enabledNSSVersions.min)); ++ val, emin); + (*rval) = enabledNSSVersions.min; + } else { + (*rval) = SSL_LIBRARY_VERSION_TLS_1_0; +@@ -1438,7 +1449,7 @@ set_NSS_version(char *val, PRUint16 *rval, int ismin) + slapd_SSL_warn("Security Initialization: The value of sslVersionMax " + "\"%s\" is higher than the supported version; " + "the default value \"%s\" is used.", +- val, getNSSVersion_str(enabledNSSVersions.max)); ++ val, emax); + (*rval) = enabledNSSVersions.max; + } else { + (*rval) = SSL_LIBRARY_VERSION_TLS_1_0; +@@ -1450,7 +1461,7 @@ set_NSS_version(char *val, PRUint16 *rval, int ismin) + slapd_SSL_warn("Security Initialization: The value of sslVersionMin " + "\"%s\" is lower than the supported version; " + "the default value \"%s\" is used.", +- val, getNSSVersion_str(enabledNSSVersions.min)); ++ val, emin); + (*rval) = enabledNSSVersions.min; + } else { + (*rval) = SSL_LIBRARY_VERSION_TLS_1_1; +@@ -1461,7 +1472,7 @@ set_NSS_version(char *val, PRUint16 *rval, int ismin) + slapd_SSL_warn("Security Initialization: The value of sslVersionMax " + "\"%s\" is higher than the supported version; " + "the default value \"%s\" is used.", +- val, getNSSVersion_str(enabledNSSVersions.max)); ++ val, emax); + (*rval) = enabledNSSVersions.max; + } else { + (*rval) = SSL_LIBRARY_VERSION_TLS_1_1; +@@ -1474,7 +1485,7 @@ set_NSS_version(char *val, PRUint16 *rval, int ismin) + slapd_SSL_warn("Security Initialization: The value of sslVersionMin " + "\"%s\" is lower than the supported version; " + "the default value \"%s\" is used.", +- val, getNSSVersion_str(enabledNSSVersions.min)); ++ val, emin); + (*rval) = enabledNSSVersions.min; + } else { + (*rval) = SSL_LIBRARY_VERSION_TLS_1_2; +@@ -1485,7 +1496,7 @@ set_NSS_version(char *val, PRUint16 *rval, int ismin) + slapd_SSL_warn("Security Initialization: The value of sslVersionMax " + "\"%s\" is higher than the supported version; " + "the default value \"%s\" is used.", +- val, getNSSVersion_str(enabledNSSVersions.max)); ++ val, emax); + (*rval) = enabledNSSVersions.max; + } else { + (*rval) = SSL_LIBRARY_VERSION_TLS_1_2; +@@ -1497,13 +1508,13 @@ set_NSS_version(char *val, PRUint16 *rval, int 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.", +- val, getNSSVersion_str(enabledNSSVersions.min)); ++ val, emin); + (*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.", +- val, getNSSVersion_str(enabledNSSVersions.min)); ++ val, emax); + (*rval) = enabledNSSVersions.max; + } + } +@@ -1511,12 +1522,12 @@ set_NSS_version(char *val, PRUint16 *rval, int ismin) + if (ismin) { + slapd_SSL_warn("Security Initialization: The value of sslVersionMin " + "\"%s\" is invalid; the default value \"%s\" is used.", +- val, getNSSVersion_str(enabledNSSVersions.min)); ++ val, emin); + (*rval) = enabledNSSVersions.min; + } else { + slapd_SSL_warn("Security Initialization: The value of sslVersionMax " + "\"%s\" is invalid; the default value \"%s\" is used.", +- val, getNSSVersion_str(enabledNSSVersions.min)); ++ val, emax); + (*rval) = enabledNSSVersions.max; + } + } +@@ -1549,6 +1560,8 @@ slapd_ssl_init2(PRFileDesc **fd, int startTLS) + #if !defined(NSS_TLS10) /* NSS_TLS11 or newer */ + PRUint16 NSSVersionMin = enabledNSSVersions.min; + PRUint16 NSSVersionMax = enabledNSSVersions.max; ++ char mymin[VERSION_STR_LENGTH], mymax[VERSION_STR_LENGTH]; ++ char newmax[VERSION_STR_LENGTH]; + #endif + char cipher_string[1024]; + int allowweakcipher = CIPHER_SET_DEFAULTWEAKCIPHER; +@@ -1909,12 +1922,13 @@ slapd_ssl_init2(PRFileDesc **fd, int startTLS) + } + slapi_ch_free_string( &val ); + if (NSSVersionMin > NSSVersionMax) { ++ (void) slapi_getSSLVersion_str(NSSVersionMin, mymin, sizeof(mymin)); ++ (void) slapi_getSSLVersion_str(NSSVersionMax, mymax, sizeof(mymax)); + slapd_SSL_warn("The min value of NSS version range \"%s\" is greater than the max value \"%s\".", +- getNSSVersion_str(NSSVersionMin), +- getNSSVersion_str(NSSVersionMax)); ++ mymin, mymax); ++ (void) slapi_getSSLVersion_str(enabledNSSVersions.max, newmax, sizeof(newmax)); + slapd_SSL_warn("Reset the max \"%s\" to supported max \"%s\".", +- getNSSVersion_str(NSSVersionMax), +- getNSSVersion_str(enabledNSSVersions.max)); ++ mymax, newmax); + NSSVersionMax = enabledNSSVersions.max; + } + #endif +@@ -1925,18 +1939,18 @@ slapd_ssl_init2(PRFileDesc **fd, int startTLS) + slapdNSSVersions.min = NSSVersionMin; + slapdNSSVersions.max = NSSVersionMax; + restrict_SSLVersionRange(); ++ (void) slapi_getSSLVersion_str(slapdNSSVersions.min, mymin, sizeof(mymin)); ++ (void) slapi_getSSLVersion_str(slapdNSSVersions.max, mymax, sizeof(mymax)); + 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)); ++ mymin, mymax); + 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(slapdNSSVersions.min), +- getNSSVersion_str(slapdNSSVersions.max)); ++ mymin, mymax); + } + } else { + #endif +-- +1.9.3 + diff --git a/SOURCES/0028-Coverity-fixes-12023-12024-and-12025.patch b/SOURCES/0028-Coverity-fixes-12023-12024-and-12025.patch deleted file mode 100644 index 2d1a1ee..0000000 --- a/SOURCES/0028-Coverity-fixes-12023-12024-and-12025.patch +++ /dev/null @@ -1,97 +0,0 @@ -From 203db29666519c297a842723892f62fb294ac84b Mon Sep 17 00:00:00 2001 -From: Noriko Hosoi <nhosoi@redhat.com> -Date: Mon, 30 Sep 2013 12:45:15 -0700 -Subject: [PATCH 28/28] Coverity fixes - 12023, 12024, and 12025 - -. 12023 - Ignoring number of bytes read - basicInit (ldclt.c): - The return value from fread was ignored and not used for copying - the read content from buffer to mctx.attrplFileContent. -. 12024 - Resource leak - roles_cache_create_object_from_entry (roles_cache.c): - When an error occurred, filter_attr_value was not freed. -. 12025 - Wrong sizeof argument - read_metadata (dblayer.c): - prfinfo is declared as PRFileInfo64, but when initializing the - structure with NULL, the specified size was for PRFileInfo. - -Reviewed by rmeggins (Thank you, Rich!!) -(cherry picked from commit f702868012ac1f9deb1cb92d51cdfd793353e836) -(cherry picked from commit 99f7b65e4bd35ce5d2c24a05178cfca4a44645db) ---- - ldap/servers/plugins/roles/roles_cache.c | 3 ++- - ldap/servers/slapd/back-ldbm/dblayer.c | 2 +- - ldap/servers/slapd/tools/ldclt/ldclt.c | 14 +++++++++----- - 3 files changed, 12 insertions(+), 7 deletions(-) - -diff --git a/ldap/servers/plugins/roles/roles_cache.c b/ldap/servers/plugins/roles/roles_cache.c -index 89acc59..01e9651 100644 ---- a/ldap/servers/plugins/roles/roles_cache.c -+++ b/ldap/servers/plugins/roles/roles_cache.c -@@ -1224,6 +1224,7 @@ static int roles_cache_create_object_from_entry(Slapi_Entry *role_entry, role_ob - (char*)slapi_sdn_get_ndn(this_role->dn), - ROLE_FILTER_ATTR_NAME, filter_attr_value, - ROLE_FILTER_ATTR_NAME); -+ slapi_ch_free_string(&filter_attr_value); - slapi_ch_free((void**)&this_role); - return SLAPI_ROLE_ERROR_FILTER_BAD; - } -@@ -1233,7 +1234,7 @@ static int roles_cache_create_object_from_entry(Slapi_Entry *role_entry, role_ob - - /* Turn it into a slapi filter object */ - filter = slapi_str2filter(filter_attr_value); -- slapi_ch_free((void**)&filter_attr_value); -+ slapi_ch_free_string(&filter_attr_value); - - if ( filter == NULL ) - { -diff --git a/ldap/servers/slapd/back-ldbm/dblayer.c b/ldap/servers/slapd/back-ldbm/dblayer.c -index 22c5d2f..46334bd 100644 ---- a/ldap/servers/slapd/back-ldbm/dblayer.c -+++ b/ldap/servers/slapd/back-ldbm/dblayer.c -@@ -4947,7 +4947,7 @@ static int read_metadata(struct ldbminfo *li) - /* Open the guard file and read stuff, then delete it */ - PR_snprintf(filename,sizeof(filename),"%s/guardian",priv->dblayer_home_directory); - -- memset(&prfinfo, '\0', sizeof(PRFileInfo)); -+ memset(&prfinfo, '\0', sizeof(PRFileInfo64)); - (void)PR_GetFileInfo64(filename, &prfinfo); - - prfd = PR_Open(filename,PR_RDONLY,priv->dblayer_file_mode); -diff --git a/ldap/servers/slapd/tools/ldclt/ldclt.c b/ldap/servers/slapd/tools/ldclt/ldclt.c -index 0dbc8a4..4fb8b25 100644 ---- a/ldap/servers/slapd/tools/ldclt/ldclt.c -+++ b/ldap/servers/slapd/tools/ldclt/ldclt.c -@@ -1584,20 +1584,24 @@ basicInit (void) - /* start to read file content */ - mctx.attrplFileContent = (char *)malloc(mctx.attrplFileSize + 1); - i=0; -- while ( fread(buffer, BUFFERSIZE , 1, attrF) ) -+ while ( (ret = fread(buffer, BUFFERSIZE , 1, attrF)) ) - { -- memcpy(mctx.attrplFileContent+i, buffer , BUFFERSIZE ); -- memset(buffer ,'\0', BUFFERSIZE ); -- i = i + BUFFERSIZE; -+ memcpy(mctx.attrplFileContent+i, buffer , ret); -+ memset(buffer ,'\0', BUFFERSIZE); -+ i += ret; - } - /* copy remainding content into mctx.attrplFileContent */ -+ /* ??? -+ * Why you need to copy buffer twice to fill the gap? -+ * Could there any chance (mctx.attrplFileSize - 1 - i) > BUFFERSIZE ? -+ */ - if (i<mctx.attrplFileSize) - { - memcpy(mctx.attrplFileContent+i, buffer , (mctx.attrplFileSize - 1 - i)); - memset(buffer ,'\0', BUFFERSIZE ); /* clear the buffer */ - } - -- mctx.attrplFileContent[mctx.attrplFileSize]='\0'; // append the close bit -+ mctx.attrplFileContent[mctx.attrplFileSize]='\0'; /* append the close bit */ - - if ((fclose(attrF)) == EOF ) - { --- -1.7.1 - diff --git a/SOURCES/0028-Ticket-47948-ldap_sasl_bind-fails-assertion-ld-NULL-.patch b/SOURCES/0028-Ticket-47948-ldap_sasl_bind-fails-assertion-ld-NULL-.patch new file mode 100644 index 0000000..71b1487 --- /dev/null +++ b/SOURCES/0028-Ticket-47948-ldap_sasl_bind-fails-assertion-ld-NULL-.patch @@ -0,0 +1,42 @@ +From fa5ccbb5f5b730122b624b31c0225762492797d7 Mon Sep 17 00:00:00 2001 +From: Noriko Hosoi <nhosoi@redhat.com> +Date: Mon, 10 Nov 2014 13:12:48 -0800 +Subject: [PATCH 28/28] Ticket #47948 - ldap_sasl_bind fails assertion (ld != + NULL) if it is called from chainingdb_bind over SSL/startTLS + +Bug Description: In case startTLS, if ldap_start_tls_s called from +cb_get_connection failed and it returned non LDAP_SUCCESS return +code, the code was stored in the local variable just in the error +case, used only for error logging and abandoned in the scope; the +caller cb_get_connection returned LDAP_SUCCESS even if the connection +was not established. That confuses the caller of cb_get_connection +and let it call ldap_sasl_bind with NULL ld and it causes the assertion +failure. + +Fix Description: remove the local variable declaration in the scope. + +https://fedorahosted.org/389/ticket/47948 + +Reviewed by rmeggins@redhat.com (Thank you, Rich!!) + +(cherry picked from commit 47868d3e5278d425abe5e8325f2965de66c10cff) +(cherry picked from commit cb4f0cb2d120bc899bfb68dfe134ec3a26f3f334) +--- + ldap/servers/plugins/chainingdb/cb_conn_stateless.c | 1 - + 1 file changed, 1 deletion(-) + +diff --git a/ldap/servers/plugins/chainingdb/cb_conn_stateless.c b/ldap/servers/plugins/chainingdb/cb_conn_stateless.c +index a85b392..4b323b1 100644 +--- a/ldap/servers/plugins/chainingdb/cb_conn_stateless.c ++++ b/ldap/servers/plugins/chainingdb/cb_conn_stateless.c +@@ -463,7 +463,6 @@ cb_get_connection(cb_conn_pool * pool, + ldap_controls_free(serverctrls); + } + } else if (secure == 2) { +- int rc; + /* the start_tls operation is usually performed in slapi_ldap_bind, but + since we are not binding we still need to start_tls */ + if (cb_debug_on()) { +-- +1.9.3 + diff --git a/SOURCES/0029-Ticket-47551-logconv-V-does-not-produce-unindexed-se.patch b/SOURCES/0029-Ticket-47551-logconv-V-does-not-produce-unindexed-se.patch deleted file mode 100644 index e9bee4b..0000000 --- a/SOURCES/0029-Ticket-47551-logconv-V-does-not-produce-unindexed-se.patch +++ /dev/null @@ -1,74 +0,0 @@ -From 8b10f83f01590c9753f707df106d44277d6cf07a Mon Sep 17 00:00:00 2001 -From: Rich Megginson <rmeggins@redhat.com> -Date: Tue, 8 Oct 2013 11:04:31 -0600 -Subject: [PATCH 29/39] Ticket #47551 logconv: -V does not produce unindexed search report - -https://fedorahosted.org/389/ticket/47551 -Reviewed by: mreynolds (Thanks!) -Branch: master -Fix Description: Execute the $usage /u/ code also when verb == yes. -Platforms tested: RHEL6 x86_64 -Flag Day: no -Doc impact: no -(cherry picked from commit 87ad36b865f85297feb40c4b61db82101b9a9447) -cherry pick from master did not apply cleanly and was fixed up -(cherry picked from commit 1197d9dd48f32fb2d5e41de06c6cea3b181acbc9) ---- - ldap/admin/src/logconv.pl | 20 ++++++++++---------- - 1 files changed, 10 insertions(+), 10 deletions(-) - -diff --git a/ldap/admin/src/logconv.pl b/ldap/admin/src/logconv.pl -index 275ce34..7381a66 100755 ---- a/ldap/admin/src/logconv.pl -+++ b/ldap/admin/src/logconv.pl -@@ -674,10 +674,10 @@ if ($verb eq "yes" || $usage =~ /u/ || $usage =~ /U/){ - my $unindexedIp; - my %uniqFilt = (); # hash of unique filters - while (my ($srcnt_conn_op, $count) = each %{$notesa_conn_op}) { -- my ($srvRstCnt, $conn, $op) = split(",", $srcnt_conn_op); -- $unindexedIp = getIPfromConn($conn, $srvRstCnt); -- if ($usage =~ /u/) { -- print "\n Unindexed Search #".$notesCount."\n"; -+ if ($verb eq "yes" || $usage =~ /u/) { -+ my ($srvRstCnt, $conn, $op) = split(",", $srcnt_conn_op); -+ my $unindexedIp = getIPfromConn($conn, $srvRstCnt); -+ print "\n Unindexed Search #".$notesCount." (notes=A)\n"; - print " - Date/Time: $time_conn_op->{$srcnt_conn_op}\n"; - print " - Connection Number: $conn\n"; - print " - Operation Number: $op\n"; -@@ -692,7 +692,7 @@ if ($verb eq "yes" || $usage =~ /u/ || $usage =~ /U/){ - } - } - if (exists($filter_conn_op->{$srcnt_conn_op}) && defined($filter_conn_op->{$srcnt_conn_op})) { -- if ($usage =~ /u/) { -+ if ($verb eq "yes" || $usage =~ /u/) { - print " - Search Filter: $filter_conn_op->{$srcnt_conn_op}\n"; - } - $uniqFilt{$filter_conn_op->{$srcnt_conn_op}}++; -@@ -722,10 +722,10 @@ if ($verb eq "yes" || $usage =~ /u/ || $usage =~ /U/){ - my $unindexedIp; - my %uniqFilt = (); # hash of unique filters - while (my ($srcnt_conn_op, $count) = each %{$notesu_conn_op}) { -- my ($srvRstCnt, $conn, $op) = split(",", $srcnt_conn_op); -- $unindexedIp = getIPfromConn($conn, $srvRstCnt); -- if ($usage =~ /u/) { -- print "\n Unindexed Component #".$notesCount."\n"; -+ if ($verb eq "yes" || $usage =~ /u/) { -+ my ($srvRstCnt, $conn, $op) = split(",", $srcnt_conn_op); -+ $unindexedIp = getIPfromConn($conn, $srvRstCnt); -+ print "\n Unindexed Component #".$notesCount." (notes=U)\n"; - print " - Date/Time: $time_conn_op->{$srcnt_conn_op}\n"; - print " - Connection Number: $conn\n"; - print " - Operation Number: $op\n"; -@@ -740,7 +740,7 @@ if ($verb eq "yes" || $usage =~ /u/ || $usage =~ /U/){ - } - } - if (exists($filter_conn_op->{$srcnt_conn_op}) && defined($filter_conn_op->{$srcnt_conn_op})) { -- if ($usage =~ /u/) { -+ if ($verb eq "yes" || $usage =~ /u/) { - print " - Search Filter: $filter_conn_op->{$srcnt_conn_op}\n"; - } - $uniqFilt{$filter_conn_op->{$srcnt_conn_op}}++; --- -1.7.1 - diff --git a/SOURCES/0029-Ticket-47953-Should-not-check-aci-syntax-when-deleti.patch b/SOURCES/0029-Ticket-47953-Should-not-check-aci-syntax-when-deleti.patch new file mode 100644 index 0000000..d4c5521 --- /dev/null +++ b/SOURCES/0029-Ticket-47953-Should-not-check-aci-syntax-when-deleti.patch @@ -0,0 +1,44 @@ +From d14caafc91ea6f417b1c602a91153764cc70f1d9 Mon Sep 17 00:00:00 2001 +From: Mark Reynolds <mreynolds@redhat.com> +Date: Wed, 12 Nov 2014 10:15:46 -0500 +Subject: [PATCH 29/30] Ticket 47953 - Should not check aci syntax when + deleting an aci + +Bug Description: Trying to delete an aci that has an invalid sytenx, generates a + syntax error when trying to remove it. + +Fix Description: Do not check the syntax of an aci if it's being deleted. + +https://fedorahosted.org/389/ticket/47953 + +Reviewed by: ? + +(cherry picked from commit 3ce60db0a404b4663df6005b78027332d0e56f95) +(cherry picked from commit 6a435f1cce137990c9c55f3f571f97c09ad6d9f4) +--- + ldap/servers/plugins/acl/acl.c | 7 ++++--- + 1 file changed, 4 insertions(+), 3 deletions(-) + +diff --git a/ldap/servers/plugins/acl/acl.c b/ldap/servers/plugins/acl/acl.c +index fe863c8..5416330 100644 +--- a/ldap/servers/plugins/acl/acl.c ++++ b/ldap/servers/plugins/acl/acl.c +@@ -1553,11 +1553,12 @@ acl_check_mods( + + /* Are we adding/replacing a aci attribute + ** value. In that case, we need to make +- ** sure that the new value has thr right ++ ** sure that the new value has the right + ** syntax + */ +- if (strcmp(mod->mod_type, +- aci_attr_type) == 0) { ++ if (!SLAPI_IS_MOD_DELETE(mod->mod_op) && ++ strcmp(mod->mod_type, aci_attr_type) == 0) ++ { + if ( 0 != (rv = acl_verify_syntax(pb, e_sdn, + mod->mod_bvalues[i], errbuf))) { + aclutil_print_err(rv, e_sdn, +-- +1.9.3 + diff --git a/SOURCES/0030-Ticket-47928-Disable-SSL-v3-by-default.patch b/SOURCES/0030-Ticket-47928-Disable-SSL-v3-by-default.patch new file mode 100644 index 0000000..f6c0215 --- /dev/null +++ b/SOURCES/0030-Ticket-47928-Disable-SSL-v3-by-default.patch @@ -0,0 +1,275 @@ +From c2bb6286434ea3bb87d454a8c9451dcc8f278297 Mon Sep 17 00:00:00 2001 +From: Noriko Hosoi <nhosoi@redhat.com> +Date: Thu, 13 Nov 2014 12:14:48 -0800 +Subject: [PATCH 30/30] Ticket #47928 - Disable SSL v3, by default. + +Description: +Changing the default SSL Version Min value from TLS 1.1 to TLS 1.0. +In dn: cn=encryption,cn=config, +0) Setting no SSL version attrs (using defaults); supported max is TLS1.2 + ==> + SSL Initialization - Configured SSL version range: min: TLS1.0, max: TLS1.2 + +1) Setting old/new SSL version attrs; no conflict; supported max is TLS1.2 + sslVersionMin: TLS1.0 + sslVersionMax: TLS1.3 + nsSSL3: off + nsTLS1: on + ==> + SSL Initialization - Configured SSL version range: min: TLS1.0, max: TLS1.2 +2) Setting new SSL version attrs; supported max is TLS1.2 + sslVersionMin: TLS1.0 + sslVersionMax: TLS1.3 + ==> + SSL Initialization - Configured SSL version range: min: TLS1.0, max: TLS1.2 + +3) Setting old/new SSL version attrs; conflict (new min is stricter); supported max is TLS1.2 + nsSSL3: on + sslVersionMin: TLS1.0 + ==> + SSL alert: Found unsecure configuration: nsSSL3: on; We strongly recommend to dis + able nsSSL3 in cn=encryption,cn=config. + SSL alert: Configured range: min: TLS1.0, max: TLS1.2; but both nsSSL3 and nsTLS1 + are on. Respect the supported range. + SSL Initialization - Configured SSL version range: min: TLS1.0, max: TLS1.2 + +4) Setting old/new SSL version attrs; conflict (old min is stricter); supported max is TLS1.2 + nsSSL3: off + sslVersionMin: SSL3 + sslVersionMax: SSL3 + ==> + SSL alert: nsTLS1 is on, but the version range is lower than "TLS1.0"; Configuring + the version range as default min: TLS1.0, max: TLS1.2. + SSL Initialization - Configured SSL version range: min: TLS1.0, max: TLS1.2 + +5) Setting old/new SSL version attrs; no conflict; setting SSL3 + nsSSL3: on + nsTLS1: off + sslVersionMin: SSL3 + sslVersionMax: SSL3 + ==> + SSL alert: Found unsecure configuration: nsSSL3: on; We strongly recommend to disable + nsSSL3 in cn=encryption,cn=config. + SSL alert: Too low configured range: min: SSL3, max: SSL3; We strongly recommend + to set sslVersionMin higher than TLS1.0. + SSL Initialization - Configured SSL version range: min: SSL3, max: SSL3 + +https://fedorahosted.org/389/ticket/47928 + +Reviewed by mreynolds@redhat.com (Thank you, Mark!!) + +(cherry picked from commit ad7885eae64a2085a89d516c1106b578142be502) +(cherry picked from commit 3e7321ba1641234651fbf1e8fc01bf9fbecbc696) +--- + ldap/servers/slapd/fedse.c | 2 +- + ldap/servers/slapd/ssl.c | 74 ++++++++++++++++++++++++++-------------------- + 2 files changed, 43 insertions(+), 33 deletions(-) + +diff --git a/ldap/servers/slapd/fedse.c b/ldap/servers/slapd/fedse.c +index 87f45a1..d10fb3e 100644 +--- a/ldap/servers/slapd/fedse.c ++++ b/ldap/servers/slapd/fedse.c +@@ -110,7 +110,7 @@ static const char *internal_entries[] = + "cn:encryption\n" + "nsSSLSessionTimeout:0\n" + "nsSSLClientAuth:allowed\n" +- "sslVersionMin:tls1.1\n", ++ "sslVersionMin:TLS1.0\n", + + "dn:cn=monitor\n" + "objectclass:top\n" +diff --git a/ldap/servers/slapd/ssl.c b/ldap/servers/slapd/ssl.c +index 5d6919a..6b51e0c 100644 +--- a/ldap/servers/slapd/ssl.c ++++ b/ldap/servers/slapd/ssl.c +@@ -87,13 +87,23 @@ + /* 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 + ++/****************************************************************************** ++ * Default SSL Version Rule ++ * Old SSL version attributes: ++ * nsSSL3: off -- nsSSL3 == SSL_LIBRARY_VERSION_3_0 ++ * nsTLS1: on -- nsTLS1 == SSL_LIBRARY_VERSION_TLS_1_0 and greater ++ * Note: TLS1.0 is defined in RFC2246, which is close to SSL 3.0. ++ * New SSL version attributes: ++ * sslVersionMin: TLS1.0 ++ * sslVersionMax: max ssl version supported by NSS ++ ******************************************************************************/ ++ ++#define DEFVERSION "TLS1.0" ++#define CURRENT_DEFAULT_SSL_VERSION SSL_LIBRARY_VERSION_TLS_1_0 ++ + extern char* slapd_SSL3ciphers; + extern symbol_t supported_ciphers[]; + #if !defined(NSS_TLS10) /* NSS_TLS11 or newer */ +@@ -253,12 +263,12 @@ static lookup_cipher _lookup_cipher[] = { + PRBool enableSSL2 = PR_FALSE; + /* + * nsSSL3: on -- disable SSLv3 by default. +- * Corresonding to SSL_LIBRARY_VERSION_3_0 and SSL_LIBRARY_VERSION_TLS_1_0 ++ * Corresonding to SSL_LIBRARY_VERSION_3_0 + */ + PRBool enableSSL3 = PR_FALSE; + /* + * nsTLS1: on -- enable TLS1 by default. +- * Corresonding to SSL_LIBRARY_VERSION_TLS_1_1 and greater. ++ * Corresonding to SSL_LIBRARY_VERSION_TLS_1_0 and greater. + */ + PRBool enableTLS1 = PR_TRUE; + +@@ -927,14 +937,14 @@ restrict_SSLVersionRange(void) + slapd_SSL_warn("Found unsecure configuration: nsSSL3: on; " + "We strongly recommend to disable nsSSL3 in %s.", configDN); + if (enableTLS1) { +- if (slapdNSSVersions.min > SSL_LIBRARY_VERSION_TLS_1_0) { ++ if (slapdNSSVersions.min >= CURRENT_DEFAULT_SSL_VERSION) { + slapd_SSL_warn("Configured range: min: %s, max: %s; " + "but both nsSSL3 and nsTLS1 are on. " + "Respect the supported range.", + mymin, mymax); + enableSSL3 = PR_FALSE; + } +- if (slapdNSSVersions.max < SSL_LIBRARY_VERSION_TLS_1_1) { ++ if (slapdNSSVersions.max < CURRENT_DEFAULT_SSL_VERSION) { + 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.", +@@ -943,7 +953,7 @@ restrict_SSLVersionRange(void) + } + } else { + /* nsTLS1 is explicitly set to off. */ +- if (enabledNSSVersions.min > SSL_LIBRARY_VERSION_TLS_1_0) { ++ if (enabledNSSVersions.min >= CURRENT_DEFAULT_SSL_VERSION) { + slapd_SSL_warn("Supported range: min: %s, max: %s; " + "but nsSSL3 is on and nsTLS1 is off. " + "Respect the supported range.", +@@ -951,20 +961,20 @@ restrict_SSLVersionRange(void) + slapdNSSVersions.min = SSLVGreater(slapdNSSVersions.min, enabledNSSVersions.min); + enableSSL3 = PR_FALSE; + enableTLS1 = PR_TRUE; +- } else if (slapdNSSVersions.min > SSL_LIBRARY_VERSION_TLS_1_0) { ++ } else if (slapdNSSVersions.min >= CURRENT_DEFAULT_SSL_VERSION) { + slapd_SSL_warn("Configured range: min: %s, max: %s; " + "but nsSSL3 is on and nsTLS1 is off. " + "Respect the configured range.", + mymin, mymax); + enableSSL3 = PR_FALSE; + enableTLS1 = PR_TRUE; +- } else if (slapdNSSVersions.max < SSL_LIBRARY_VERSION_TLS_1_1) { ++ } else if (slapdNSSVersions.min < CURRENT_DEFAULT_SSL_VERSION) { + slapd_SSL_warn("Too low configured range: min: %s, max: %s; " +- "We strongly recommend to set sslVersionMax higher than %s.", +- mymin, mymax, emax); ++ "We strongly recommend to set sslVersionMin higher than %s.", ++ mymin, mymax, DEFVERSION); + } else { + /* +- * slapdNSSVersions.min <= SSL_LIBRARY_VERSION_TLS_1_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; " +@@ -976,7 +986,7 @@ restrict_SSLVersionRange(void) + } + } else { + if (enableTLS1) { +- if (enabledNSSVersions.max < SSL_LIBRARY_VERSION_TLS_1_1) { ++ if (enabledNSSVersions.max < CURRENT_DEFAULT_SSL_VERSION) { + /* 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.", +@@ -985,17 +995,17 @@ restrict_SSLVersionRange(void) + 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)) { ++ } else if ((slapdNSSVersions.max < CURRENT_DEFAULT_SSL_VERSION) || ++ (slapdNSSVersions.min < CURRENT_DEFAULT_SSL_VERSION)) { + 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; ", +- mymin, mymax); ++ slapdNSSVersions.min = SSLVGreater(CURRENT_DEFAULT_SSL_VERSION, enabledNSSVersions.min); ++ slapd_SSL_warn("nsTLS1 is on, but the version range is lower than \"%s\"; " ++ "Configuring the version range as default min: %s, max: %s.", ++ DEFVERSION, DEFVERSION, emax); + } else { + /* +- * slapdNSSVersions.min >= SSL_LIBRARY_VERSION_TLS_1_1 && +- * slapdNSSVersions.max >= SSL_LIBRARY_VERSION_TLS_1_1 ++ * slapdNSSVersions.min >= SSL_LIBRARY_VERSION_TLS_1_0 && ++ * slapdNSSVersions.max >= SSL_LIBRARY_VERSION_TLS_1_0 + */ + ; + } +@@ -1004,14 +1014,14 @@ restrict_SSLVersionRange(void) + "Respect the configured range.", + emin, emax); + /* nsTLS1 is explicitly set to off. */ +- if (slapdNSSVersions.min > SSL_LIBRARY_VERSION_TLS_1_0) { ++ if (slapdNSSVersions.min >= CURRENT_DEFAULT_SSL_VERSION) { + enableTLS1 = PR_TRUE; +- } else if (slapdNSSVersions.max < SSL_LIBRARY_VERSION_TLS_1_1) { ++ } else if (slapdNSSVersions.max < CURRENT_DEFAULT_SSL_VERSION) { + enableSSL3 = PR_TRUE; + } else { + /* +- * slapdNSSVersions.min <= SSL_LIBRARY_VERSION_TLS_1_0 && +- * slapdNSSVersions.max >= SSL_LIBRARY_VERSION_TLS_1_1 ++ * slapdNSSVersions.min < SSL_LIBRARY_VERSION_TLS_1_0 && ++ * slapdNSSVersions.max >= SSL_LIBRARY_VERSION_TLS_1_0 + */ + enableSSL3 = PR_TRUE; + enableTLS1 = PR_TRUE; +@@ -1434,17 +1444,17 @@ set_NSS_version(char *val, PRUint16 *rval, int ismin) + sscanf(vp, "%4f", &tlsv); + if (tlsv < 1.1) { /* TLS1.0 */ + if (ismin) { +- if (enabledNSSVersions.min > SSL_LIBRARY_VERSION_TLS_1_0) { ++ if (enabledNSSVersions.min > CURRENT_DEFAULT_SSL_VERSION) { + slapd_SSL_warn("Security Initialization: The value of sslVersionMin " + "\"%s\" is lower than the supported version; " + "the default value \"%s\" is used.", + val, emin); + (*rval) = enabledNSSVersions.min; + } else { +- (*rval) = SSL_LIBRARY_VERSION_TLS_1_0; ++ (*rval) = CURRENT_DEFAULT_SSL_VERSION; + } + } else { +- if (enabledNSSVersions.max < SSL_LIBRARY_VERSION_TLS_1_0) { ++ if (enabledNSSVersions.max < CURRENT_DEFAULT_SSL_VERSION) { + /* never happens */ + slapd_SSL_warn("Security Initialization: The value of sslVersionMax " + "\"%s\" is higher than the supported version; " +@@ -1452,7 +1462,7 @@ set_NSS_version(char *val, PRUint16 *rval, int ismin) + val, emax); + (*rval) = enabledNSSVersions.max; + } else { +- (*rval) = SSL_LIBRARY_VERSION_TLS_1_0; ++ (*rval) = CURRENT_DEFAULT_SSL_VERSION; + } + } + } else if (tlsv < 1.2) { /* TLS1.1 */ +@@ -1906,7 +1916,7 @@ 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) { ++ } else if (enabledNSSVersions.max >= CURRENT_DEFAULT_SSL_VERSION) { + enableTLS1 = PR_TRUE; /* If available, enable TLS1 */ + } + slapi_ch_free_string( &val ); +-- +1.9.3 + diff --git a/SOURCES/0030-Ticket-54-locale-nl-not-supported-by-collation-plugi.patch b/SOURCES/0030-Ticket-54-locale-nl-not-supported-by-collation-plugi.patch deleted file mode 100644 index 38d4f5a..0000000 --- a/SOURCES/0030-Ticket-54-locale-nl-not-supported-by-collation-plugi.patch +++ /dev/null @@ -1,58 +0,0 @@ -From d30ca340657d858ca416e5c8bc3600607ca49e80 Mon Sep 17 00:00:00 2001 -From: Noriko Hosoi <nhosoi@redhat.com> -Date: Wed, 2 Oct 2013 10:56:42 -0700 -Subject: [PATCH 30/39] Ticket #54 - locale "nl" not supported by collation plugin - -Bug description: In the recent version of ICU, some locales do not -have its specific collator, but are included in the default (root) -locale. "nl", "en", and "fr" are in the class. ICU API ucol_open -takes the locale string and returns the collator with the status. -If the locale has no dedicated collator and the root collator is -picked up, status U_USING_DEFAULT_WARNING is returned, which is not -an error. But collation_indexer_create (collate.c) treats it as an -error and stops the collation. - -Fix description: As ICU doc suggests, error checking for ucol_open -is replaced with "(U_SUCCESS(err)", by which the status U_USING_ -DEFAULT_WARNING is correctlly handled. - -https://fedorahosted.org/389/ticket/54 - -Reviewed by rmeggins (Thank you, Rich!!) -(cherry picked from commit c8d1cf570882a55329c11d8fba418c575671d131) -(cherry picked from commit 0a45dc28399ab878866d8a23fd289e309a5d73c8) ---- - ldap/servers/plugins/collation/collate.c | 9 +++------ - 1 files changed, 3 insertions(+), 6 deletions(-) - -diff --git a/ldap/servers/plugins/collation/collate.c b/ldap/servers/plugins/collation/collate.c -index 2a73ee1..a02040f 100644 ---- a/ldap/servers/plugins/collation/collate.c -+++ b/ldap/servers/plugins/collation/collate.c -@@ -449,20 +449,17 @@ collation_indexer_create (const char* oid) - * or if we found a fallback one, or if we are happy with - * the default, use it. - */ -- if (err == U_ZERO_ERROR || err == U_USING_FALLBACK_WARNING || -- (err == U_USING_DEFAULT_WARNING && is_default)) { -+ if (U_SUCCESS(err)) { - etc = (collation_indexer_t*) slapi_ch_calloc (1, sizeof (collation_indexer_t)); - ix = (indexer_t*) slapi_ch_calloc (1, sizeof (indexer_t)); - ucol_setAttribute (coll, UCOL_STRENGTH, profile->strength, &err); -- if (err != U_ZERO_ERROR && err != U_USING_FALLBACK_WARNING -- && (err != U_USING_DEFAULT_WARNING || !is_default)) { -+ if (U_FAILURE(err)) { - LDAPDebug (LDAP_DEBUG_ANY, "collation_indexer_create: could not " - "set the collator strength for oid %s to %d: err %d\n", - oid, profile->strength, err); - } - ucol_setAttribute (coll, UCOL_DECOMPOSITION_MODE, profile->decomposition, &err); -- if (err != U_ZERO_ERROR && err != U_USING_FALLBACK_WARNING -- && (err != U_USING_DEFAULT_WARNING || !is_default)) { -+ if (U_FAILURE(err)) { - LDAPDebug (LDAP_DEBUG_ANY, "collation_indexer_create: could not " - "set the collator decomposition mode for oid %s to %d: err %d\n", - oid, profile->decomposition, err); --- -1.7.1 - diff --git a/SOURCES/0031-Fix-for-CVE-2014-8112.patch b/SOURCES/0031-Fix-for-CVE-2014-8112.patch new file mode 100644 index 0000000..ef94acf --- /dev/null +++ b/SOURCES/0031-Fix-for-CVE-2014-8112.patch @@ -0,0 +1,116 @@ +From e5de803f4ab1b097c637c269fcc8b567e664c00d Mon Sep 17 00:00:00 2001 +From: Ludwig Krispenz <lkrispen@redhat.com> +Date: Fri, 28 Nov 2014 14:23:06 +0100 +Subject: [PATCH 31/53] Fix for CVE-2014-8112 + + If the unhashed pw switch is set to off this should only + prevent the generation of the unhashed#user#password + attribute. + But encoding of pw values and detiecetion which values have + to be deleted needs to stay intact. + So the check if the switch is set has to be placed close to + the generation of the attribute in different 'if' branches + +Reviewed by Noriko, thanks +--- + ldap/servers/plugins/retrocl/retrocl_po.c | 6 +++++ + ldap/servers/slapd/modify.c | 39 +++++++++++++++++-------------- + 2 files changed, 28 insertions(+), 17 deletions(-) + +diff --git a/ldap/servers/plugins/retrocl/retrocl_po.c b/ldap/servers/plugins/retrocl/retrocl_po.c +index 4b2cdda..3f8af81 100644 +--- a/ldap/servers/plugins/retrocl/retrocl_po.c ++++ b/ldap/servers/plugins/retrocl/retrocl_po.c +@@ -101,6 +101,12 @@ static lenstr *make_changes_string(LDAPMod **ldm, const char **includeattrs) + continue; + } + } ++ if (SLAPD_UNHASHED_PW_NOLOG == slapi_config_get_unhashed_pw_switch()) { ++ if (0 == strcasecmp(ldm[ i ]->mod_type, PSEUDO_ATTR_UNHASHEDUSERPASSWORD)) { ++ /* If nsslapd-unhashed-pw-switch == nolog, skip writing it to cl. */ ++ continue; ++ } ++ } + switch ( ldm[ i ]->mod_op & ~LDAP_MOD_BVALUES ) { + case LDAP_MOD_ADD: + addlenstr( l, "add: " ); +diff --git a/ldap/servers/slapd/modify.c b/ldap/servers/slapd/modify.c +index fb0fdde..de44fd3 100644 +--- a/ldap/servers/slapd/modify.c ++++ b/ldap/servers/slapd/modify.c +@@ -836,8 +836,7 @@ static void op_shared_modify (Slapi_PBlock *pb, int pw_change, char *old_pw) + * before calling the preop plugins + */ + +- if (pw_change && !repl_op && +- (SLAPD_UNHASHED_PW_OFF != config_get_unhashed_pw_switch())) { ++ if (pw_change && !repl_op ) { + Slapi_Value **va = NULL; + + unhashed_pw_attr = slapi_attr_syntax_normalize(PSEUDO_ATTR_UNHASHEDUSERPASSWORD); +@@ -907,13 +906,15 @@ static void op_shared_modify (Slapi_PBlock *pb, int pw_change, char *old_pw) + * Finally, delete the unhashed userpassword + * (this will update the password entry extension) + */ +- bval.bv_val = password; +- bval.bv_len = strlen(password); +- bv[0] = &bval; +- bv[1] = NULL; +- valuearray_init_bervalarray(bv, &va); +- slapi_mods_add_mod_values(&smods, pw_mod->mod_op, unhashed_pw_attr, va); +- valuearray_free(&va); ++ if (SLAPD_UNHASHED_PW_OFF != config_get_unhashed_pw_switch()) { ++ bval.bv_val = password; ++ bval.bv_len = strlen(password); ++ bv[0] = &bval; ++ bv[1] = NULL; ++ valuearray_init_bervalarray(bv, &va); ++ slapi_mods_add_mod_values(&smods, pw_mod->mod_op, unhashed_pw_attr, va); ++ valuearray_free(&va); ++ } + } else { + /* + * Password is encoded, try and find a matching unhashed_password to delete +@@ -945,19 +946,23 @@ static void op_shared_modify (Slapi_PBlock *pb, int pw_change, char *old_pw) + if(strcmp(unhashed_pwsp->pws_name, "CLEAR") == 0){ + if((*(pwsp->pws_cmp))((char *)unhashed_pwd , valpwd) == 0 ){ + /* match, add the delete mod for this particular unhashed userpassword */ +- valuearray_init_bervalarray(bv, &va); +- slapi_mods_add_mod_values(&smods, pw_mod->mod_op, unhashed_pw_attr, va); +- valuearray_free(&va); +- free_pw_scheme( unhashed_pwsp ); ++ if (SLAPD_UNHASHED_PW_OFF != config_get_unhashed_pw_switch()) { ++ valuearray_init_bervalarray(bv, &va); ++ slapi_mods_add_mod_values(&smods, pw_mod->mod_op, unhashed_pw_attr, va); ++ valuearray_free(&va); ++ free_pw_scheme( unhashed_pwsp ); ++ } + break; + } + } else { + /* + * We have a hashed unhashed_userpassword! We must delete it. + */ +- valuearray_init_bervalarray(bv, &va); +- slapi_mods_add_mod_values(&smods, pw_mod->mod_op, unhashed_pw_attr, va); +- valuearray_free(&va); ++ if (SLAPD_UNHASHED_PW_OFF != config_get_unhashed_pw_switch()) { ++ valuearray_init_bervalarray(bv, &va); ++ slapi_mods_add_mod_values(&smods, pw_mod->mod_op, unhashed_pw_attr, va); ++ valuearray_free(&va); ++ } + } + free_pw_scheme( unhashed_pwsp ); + } +@@ -972,7 +977,7 @@ static void op_shared_modify (Slapi_PBlock *pb, int pw_change, char *old_pw) + if (remove_unhashed_pw && !slapi_entry_attr_find(e, unhashed_pw_attr, &a)){ + slapi_mods_add_mod_values(&smods, pw_mod->mod_op,unhashed_pw_attr, va); + } +- } else { ++ } else if (SLAPD_UNHASHED_PW_OFF != config_get_unhashed_pw_switch()) { + /* add pseudo password attribute */ + valuearray_init_bervalarray_unhashed_only(pw_mod->mod_bvalues, &va); + if(va && va[0]){ +-- +1.9.3 + diff --git a/SOURCES/0031-Ticket-53-Need-to-update-supported-locales.patch b/SOURCES/0031-Ticket-53-Need-to-update-supported-locales.patch deleted file mode 100644 index 1fe8013..0000000 --- a/SOURCES/0031-Ticket-53-Need-to-update-supported-locales.patch +++ /dev/null @@ -1,10153 +0,0 @@ -From e8f5f9bf6f2e25cdc8091541c64f04c7e7b8cfb8 Mon Sep 17 00:00:00 2001 -From: Noriko Hosoi <nhosoi@redhat.com> -Date: Fri, 4 Oct 2013 10:34:36 -0700 -Subject: [PATCH 31/39] Ticket #53 - Need to update supported locales - -Description: This patch adds locales that were newly supported by -ICU to slapd-collations.conf. (OID 2.16.840.1.113730.3.3.2.51.1 -through 2.16.840.1.113730.3.3.2.244.1) - -Upgrade script 60upgradeconfigfiles.pl is also added. - -https://fedorahosted.org/389/ticket/53 - -Reviewed by rmeggins (Thanks, Rich!!) -(cherry picked from commit e0c78d5b87d4d798a936eba9c90f5db5347bcb3c) -(cherry picked from commit 876d24777a5787813edf1e9ec8c7cbd1936773dc) ---- - Makefile.am | 1 + - Makefile.in | 4891 ++++++++++++++++---------------- - aclocal.m4 | 334 +-- - compile | 9 +- - config.guess | 182 +- - config.sub | 88 +- - configure | 61 +- - depcomp | 454 ++-- - ldap/admin/src/scripts/setup-ds.res.in | 4 +- - ldap/schema/slapd-collations.conf | 234 ++- - missing | 405 ++- - 11 files changed, 3301 insertions(+), 3362 deletions(-) - -diff --git a/Makefile.am b/Makefile.am -index 77a565f..8cf7ba7 100644 ---- a/Makefile.am -+++ b/Makefile.am -@@ -563,6 +563,7 @@ update_DATA = ldap/admin/src/scripts/exampleupdate.pl \ - ldap/admin/src/scripts/50retroclprecedence.ldif \ - ldap/admin/src/scripts/50rootdnaccesscontrolplugin.ldif \ - ldap/admin/src/scripts/60upgradeschemafiles.pl \ -+ ldap/admin/src/scripts/60upgradeconfigfiles.pl \ - ldap/admin/src/scripts/70upgradefromldif.pl \ - ldap/admin/src/scripts/80upgradednformat.pl \ - ldap/admin/src/scripts/81changelog.pl \ -diff --git a/Makefile.in b/Makefile.in -index 7dc1791..d90f130 100644 ---- a/Makefile.in -+++ b/Makefile.in -@@ -1,7 +1,7 @@ --# Makefile.in generated by automake 1.13.4 from Makefile.am. -+# Makefile.in generated by automake 1.12.2 from Makefile.am. - # @configure_input@ - --# Copyright (C) 1994-2013 Free Software Foundation, Inc. -+# Copyright (C) 1994-2012 Free Software Foundation, Inc. - - # This Makefile.in is free software; the Free Software Foundation - # gives unlimited permission to copy and/or distribute it, -@@ -20,51 +20,23 @@ - - - VPATH = @srcdir@ --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 \ -+am__make_dryrun = \ -+ { \ -+ am__dry=no; \ - case $$MAKEFLAGS in \ - *\\[\ \ ]*) \ -- bs=\\; \ -- sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ -- | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ -- esac; \ -- 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;; \ -+ 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;; \ - 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)) -+ test $$am__dry = yes; \ -+ } - pkgdatadir = $(datadir)/@PACKAGE@ - pkgincludedir = $(includedir)/@PACKAGE@ - pkglibdir = $(libdir)/@PACKAGE@ -@@ -93,11 +65,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 = $(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 -+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 - 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 \ -@@ -119,10 +91,6 @@ 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 -@@ -189,14 +157,9 @@ 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) --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 $@ -+libacctpolicy_plugin_la_LINK = $(LIBTOOL) --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 \ -@@ -204,7 +167,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) $(AM_V_lt) --tag=CC \ -+libacctusability_plugin_la_LINK = $(LIBTOOL) --tag=CC \ - $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ - $(AM_CFLAGS) $(CFLAGS) $(libacctusability_plugin_la_LDFLAGS) \ - $(LDFLAGS) -o $@ -@@ -232,19 +195,17 @@ 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) $(AM_V_lt) --tag=CC \ -- $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ -- $(AM_CFLAGS) $(CFLAGS) $(libattr_unique_plugin_la_LDFLAGS) \ -- $(LDFLAGS) -o $@ -+libattr_unique_plugin_la_LINK = $(LIBTOOL) --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) $(AM_V_lt) --tag=CC \ -- $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ -- $(AM_CFLAGS) $(CFLAGS) $(libautomember_plugin_la_LDFLAGS) \ -- $(LDFLAGS) -o $@ -+libautomember_plugin_la_LINK = $(LIBTOOL) --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 = \ -@@ -309,18 +270,16 @@ 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) $(AM_V_lt) --tag=CC \ -- $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ -- $(AM_CFLAGS) $(CFLAGS) $(libback_ldbm_la_LDFLAGS) $(LDFLAGS) \ -- -o $@ -+libback_ldbm_la_LINK = $(LIBTOOL) --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) $(AM_V_lt) --tag=CC \ -- $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ -- $(AM_CFLAGS) $(CFLAGS) $(libbitwise_plugin_la_LDFLAGS) \ -- $(LDFLAGS) -o $@ -+libbitwise_plugin_la_LINK = $(LIBTOOL) --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 \ -@@ -352,10 +311,9 @@ 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) $(AM_V_lt) --tag=CC \ -- $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ -- $(AM_CFLAGS) $(CFLAGS) $(libchainingdb_plugin_la_LDFLAGS) \ -- $(LDFLAGS) -o $@ -+libchainingdb_plugin_la_LINK = $(LIBTOOL) --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) \ -@@ -370,45 +328,40 @@ 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) $(AM_V_lt) --tag=CC \ -- $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ -- $(AM_CFLAGS) $(CFLAGS) $(libcos_plugin_la_LDFLAGS) $(LDFLAGS) \ -- -o $@ -+libcos_plugin_la_LINK = $(LIBTOOL) --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) $(AM_V_lt) --tag=CC \ -- $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ -- $(AM_CFLAGS) $(CFLAGS) $(libderef_plugin_la_LDFLAGS) \ -- $(LDFLAGS) -o $@ -+libderef_plugin_la_LINK = $(LIBTOOL) --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) $(AM_V_lt) --tag=CC \ -- $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ -- $(AM_CFLAGS) $(CFLAGS) $(libdes_plugin_la_LDFLAGS) $(LDFLAGS) \ -- -o $@ -+libdes_plugin_la_LINK = $(LIBTOOL) --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) $(AM_V_lt) --tag=CC \ -- $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ -- $(AM_CFLAGS) $(CFLAGS) $(libdistrib_plugin_la_LDFLAGS) \ -- $(LDFLAGS) -o $@ -+libdistrib_plugin_la_LINK = $(LIBTOOL) --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) $(AM_V_lt) --tag=CC \ -- $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ -- $(AM_CFLAGS) $(CFLAGS) $(libdna_plugin_la_LDFLAGS) $(LDFLAGS) \ -- -o $@ -+libdna_plugin_la_LINK = $(LIBTOOL) --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) -@@ -416,27 +369,25 @@ 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) $(AM_V_lt) --tag=CC \ -- $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ -- $(AM_CFLAGS) $(CFLAGS) $(libhttp_client_plugin_la_LDFLAGS) \ -- $(LDFLAGS) -o $@ -+libhttp_client_plugin_la_LINK = $(LIBTOOL) --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) $(AM_V_lt) --tag=CC \ -- $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ -- $(AM_CFLAGS) $(CFLAGS) $(liblinkedattrs_plugin_la_LDFLAGS) \ -- $(LDFLAGS) -o $@ -+liblinkedattrs_plugin_la_LINK = $(LIBTOOL) --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) $(AM_V_lt) --tag=CC \ -+libmanagedentries_plugin_la_LINK = $(LIBTOOL) --tag=CC \ - $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ - $(AM_CFLAGS) $(CFLAGS) $(libmanagedentries_plugin_la_LDFLAGS) \ - $(LDFLAGS) -o $@ -@@ -445,10 +396,9 @@ 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) $(AM_V_lt) --tag=CC \ -- $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ -- $(AM_CFLAGS) $(CFLAGS) $(libmemberof_plugin_la_LDFLAGS) \ -- $(LDFLAGS) -o $@ -+libmemberof_plugin_la_LINK = $(LIBTOOL) --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) -@@ -515,7 +465,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) $(AM_V_lt) --tag=CC \ -+libpam_passthru_plugin_la_LINK = $(LIBTOOL) --tag=CC \ - $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ - $(AM_CFLAGS) $(CFLAGS) $(libpam_passthru_plugin_la_LDFLAGS) \ - $(LDFLAGS) -o $@ -@@ -531,10 +481,9 @@ 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) $(AM_V_lt) --tag=CC \ -- $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ -- $(AM_CFLAGS) $(CFLAGS) $(libpassthru_plugin_la_LDFLAGS) \ -- $(LDFLAGS) -o $@ -+libpassthru_plugin_la_LINK = $(LIBTOOL) --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 \ -@@ -543,7 +492,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) $(AM_V_lt) --tag=CC \ -+libposix_winsync_plugin_la_LINK = $(LIBTOOL) --tag=CC \ - $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ - $(AM_CFLAGS) $(CFLAGS) $(libposix_winsync_plugin_la_LDFLAGS) \ - $(LDFLAGS) -o $@ -@@ -552,10 +501,9 @@ libposix_winsync_plugin_la_LINK = $(LIBTOOL) $(AM_V_lt) --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) $(AM_V_lt) --tag=CC \ -- $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ -- $(AM_CFLAGS) $(CFLAGS) $(libpresence_plugin_la_LDFLAGS) \ -- $(LDFLAGS) -o $@ -+libpresence_plugin_la_LINK = $(LIBTOOL) --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 \ -@@ -573,18 +521,16 @@ 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) $(AM_V_lt) --tag=CC \ -- $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ -- $(AM_CFLAGS) $(CFLAGS) $(libpwdstorage_plugin_la_LDFLAGS) \ -- $(LDFLAGS) -o $@ -+libpwdstorage_plugin_la_LINK = $(LIBTOOL) --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) $(AM_V_lt) --tag=CC \ -- $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ -- $(AM_CFLAGS) $(CFLAGS) $(libreferint_plugin_la_LDFLAGS) \ -- $(LDFLAGS) -o $@ -+libreferint_plugin_la_LINK = $(LIBTOOL) --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) \ -@@ -647,10 +593,9 @@ 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) $(AM_V_lt) --tag=CC \ -- $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ -- $(AM_CFLAGS) $(CFLAGS) $(libreplication_plugin_la_LDFLAGS) \ -- $(LDFLAGS) -o $@ -+libreplication_plugin_la_LINK = $(LIBTOOL) --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 = \ -@@ -661,25 +606,23 @@ 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) $(AM_V_lt) --tag=CC \ -- $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ -- $(AM_CFLAGS) $(CFLAGS) $(libretrocl_plugin_la_LDFLAGS) \ -- $(LDFLAGS) -o $@ -+libretrocl_plugin_la_LINK = $(LIBTOOL) --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) $(AM_V_lt) --tag=CC \ -- $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ -- $(AM_CFLAGS) $(CFLAGS) $(libroles_plugin_la_LDFLAGS) \ -- $(LDFLAGS) -o $@ -+libroles_plugin_la_LINK = $(LIBTOOL) --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) $(AM_V_lt) --tag=CC \ -+librootdn_access_plugin_la_LINK = $(LIBTOOL) --tag=CC \ - $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ - $(AM_CFLAGS) $(CFLAGS) $(librootdn_access_plugin_la_LDFLAGS) \ - $(LDFLAGS) -o $@ -@@ -688,7 +631,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) $(AM_V_lt) --tag=CC \ -+libschemareload_plugin_la_LINK = $(LIBTOOL) --tag=CC \ - $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ - $(AM_CFLAGS) $(CFLAGS) $(libschemareload_plugin_la_LDFLAGS) \ - $(LDFLAGS) -o $@ -@@ -855,10 +798,9 @@ 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) $(AM_V_lt) --tag=CC \ -- $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ -- $(AM_CFLAGS) $(CFLAGS) $(libstatechange_plugin_la_LDFLAGS) \ -- $(LDFLAGS) -o $@ -+libstatechange_plugin_la_LINK = $(LIBTOOL) --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 = \ -@@ -885,29 +827,26 @@ 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) $(AM_V_lt) --tag=CC \ -- $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ -- $(AM_CFLAGS) $(CFLAGS) $(libsyntax_plugin_la_LDFLAGS) \ -- $(LDFLAGS) -o $@ -+libsyntax_plugin_la_LINK = $(LIBTOOL) --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) $(AM_V_lt) --tag=CC \ -- $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ -- $(AM_CFLAGS) $(CFLAGS) $(libusn_plugin_la_LDFLAGS) $(LDFLAGS) \ -- -o $@ -+libusn_plugin_la_LINK = $(LIBTOOL) --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) $(AM_V_lt) --tag=CC \ -- $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ -- $(AM_CFLAGS) $(CFLAGS) $(libviews_plugin_la_LDFLAGS) \ -- $(LDFLAGS) -o $@ -+libviews_plugin_la_LINK = $(LIBTOOL) --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) -@@ -1058,68 +997,33 @@ 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_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 = -+LTCPPASCOMPILE = $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ -+ --mode=compile $(CCAS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ -+ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CCASFLAGS) $(CCASFLAGS) - 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 = -+LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ -+ --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ -+ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) - CCLD = $(CC) --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 = -+LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ -+ --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ -+ $(LDFLAGS) -o $@ - CXXCOMPILE = $(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 = -+LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ -+ --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ -+ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) - CXXLD = $(CXX) --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 = -+CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ -+ --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ -+ $(LDFLAGS) -o $@ - SOURCES = $(libavl_a_SOURCES) $(libldaputil_a_SOURCES) \ - $(libacctpolicy_plugin_la_SOURCES) \ - $(libacctusability_plugin_la_SOURCES) \ -@@ -1203,24 +1107,6 @@ 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 -@@ -1244,7 +1130,6 @@ 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@ -@@ -1945,6 +1830,7 @@ update_DATA = ldap/admin/src/scripts/exampleupdate.pl \ - ldap/admin/src/scripts/50retroclprecedence.ldif \ - ldap/admin/src/scripts/50rootdnaccesscontrolplugin.ldif \ - ldap/admin/src/scripts/60upgradeschemafiles.pl \ -+ ldap/admin/src/scripts/60upgradeconfigfiles.pl \ - ldap/admin/src/scripts/70upgradefromldif.pl \ - ldap/admin/src/scripts/80upgradednformat.pl \ - ldap/admin/src/scripts/81changelog.pl \ -@@ -2967,11 +2853,10 @@ 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) -- $(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 -+ -rm -f libavl.a -+ $(libavl_a_AR) libavl.a $(libavl_a_OBJECTS) $(libavl_a_LIBADD) -+ $(RANLIB) libavl.a - lib/ldaputil/$(am__dirstamp): - @$(MKDIR_P) lib/ldaputil - @: > lib/ldaputil/$(am__dirstamp) -@@ -3002,12 +2887,10 @@ 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) -- $(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 -- -+ -rm -f libldaputil.a -+ $(libldaputil_a_AR) libldaputil.a $(libldaputil_a_OBJECTS) $(libldaputil_a_LIBADD) -+ $(RANLIB) libldaputil.a - install-serverLTLIBRARIES: $(server_LTLIBRARIES) - @$(NORMAL_INSTALL) - @list='$(server_LTLIBRARIES)'; test -n "$(serverdir)" || list=; \ -@@ -3042,7 +2925,6 @@ clean-serverLTLIBRARIES: - echo rm -f $${locs}; \ - rm -f $${locs}; \ - } -- - install-serverpluginLTLIBRARIES: $(serverplugin_LTLIBRARIES) - @$(NORMAL_INSTALL) - @list='$(serverplugin_LTLIBRARIES)'; test -n "$(serverplugindir)" || list=; \ -@@ -3095,9 +2977,8 @@ 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) -- $(AM_V_CCLD)$(libacctpolicy_plugin_la_LINK) $(am_libacctpolicy_plugin_la_rpath) $(libacctpolicy_plugin_la_OBJECTS) $(libacctpolicy_plugin_la_LIBADD) $(LIBS) -+ $(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) -@@ -3107,9 +2988,8 @@ 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) -- $(AM_V_CCLD)$(libacctusability_plugin_la_LINK) -rpath $(serverplugindir) $(libacctusability_plugin_la_OBJECTS) $(libacctusability_plugin_la_LIBADD) $(LIBS) -+ $(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) -@@ -3149,9 +3029,8 @@ 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) -- $(AM_V_GEN)$(libacl_plugin_la_LINK) -rpath $(serverplugindir) $(libacl_plugin_la_OBJECTS) $(libacl_plugin_la_LIBADD) $(LIBS) -+ $(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) -@@ -3167,9 +3046,8 @@ 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) -- $(AM_V_CCLD)$(libattr_unique_plugin_la_LINK) -rpath $(serverplugindir) $(libattr_unique_plugin_la_OBJECTS) $(libattr_unique_plugin_la_LIBADD) $(LIBS) -+ $(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) -@@ -3179,9 +3057,8 @@ 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) -- $(AM_V_CCLD)$(libautomember_plugin_la_LINK) -rpath $(serverplugindir) $(libautomember_plugin_la_OBJECTS) $(libautomember_plugin_la_LIBADD) $(LIBS) -+ $(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) -@@ -3368,9 +3245,8 @@ 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) -- $(AM_V_CCLD)$(libback_ldbm_la_LINK) -rpath $(serverplugindir) $(libback_ldbm_la_OBJECTS) $(libback_ldbm_la_LIBADD) $(LIBS) -+ $(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) -@@ -3380,9 +3256,8 @@ 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) -- $(AM_V_CCLD)$(libbitwise_plugin_la_LINK) $(am_libbitwise_plugin_la_rpath) $(libbitwise_plugin_la_OBJECTS) $(libbitwise_plugin_la_LIBADD) $(LIBS) -+ $(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) -@@ -3464,9 +3339,8 @@ 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) -- $(AM_V_CCLD)$(libchainingdb_plugin_la_LINK) -rpath $(serverplugindir) $(libchainingdb_plugin_la_OBJECTS) $(libchainingdb_plugin_la_LIBADD) $(LIBS) -+ $(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) -@@ -3482,9 +3356,8 @@ 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) -- $(AM_V_GEN)$(libcollation_plugin_la_LINK) -rpath $(serverplugindir) $(libcollation_plugin_la_OBJECTS) $(libcollation_plugin_la_LIBADD) $(LIBS) -+ $(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) -@@ -3497,9 +3370,8 @@ 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) -- $(AM_V_CCLD)$(libcos_plugin_la_LINK) -rpath $(serverplugindir) $(libcos_plugin_la_OBJECTS) $(libcos_plugin_la_LIBADD) $(LIBS) -+ $(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) -@@ -3509,9 +3381,8 @@ 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) -- $(AM_V_CCLD)$(libderef_plugin_la_LINK) -rpath $(serverplugindir) $(libderef_plugin_la_OBJECTS) $(libderef_plugin_la_LIBADD) $(LIBS) -+ $(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) -@@ -3524,9 +3395,8 @@ 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) -- $(AM_V_CCLD)$(libdes_plugin_la_LINK) -rpath $(serverplugindir) $(libdes_plugin_la_OBJECTS) $(libdes_plugin_la_LIBADD) $(LIBS) -+ $(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) -@@ -3536,9 +3406,8 @@ 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) -- $(AM_V_CCLD)$(libdistrib_plugin_la_LINK) -rpath $(serverplugindir) $(libdistrib_plugin_la_OBJECTS) $(libdistrib_plugin_la_LIBADD) $(LIBS) -+ $(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) -@@ -3548,9 +3417,8 @@ 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) -- $(AM_V_CCLD)$(libdna_plugin_la_LINK) $(am_libdna_plugin_la_rpath) $(libdna_plugin_la_OBJECTS) $(libdna_plugin_la_LIBADD) $(LIBS) -+ $(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) -@@ -3563,9 +3431,8 @@ 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) -- $(AM_V_CCLD)$(libhttp_client_plugin_la_LINK) -rpath $(serverplugindir) $(libhttp_client_plugin_la_OBJECTS) $(libhttp_client_plugin_la_LIBADD) $(LIBS) -+ $(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) -@@ -3578,9 +3445,8 @@ 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) -- $(AM_V_CCLD)$(liblinkedattrs_plugin_la_LINK) -rpath $(serverplugindir) $(liblinkedattrs_plugin_la_OBJECTS) $(liblinkedattrs_plugin_la_LIBADD) $(LIBS) -+ $(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) -@@ -3590,9 +3456,8 @@ 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) -- $(AM_V_CCLD)$(libmanagedentries_plugin_la_LINK) -rpath $(serverplugindir) $(libmanagedentries_plugin_la_OBJECTS) $(libmanagedentries_plugin_la_LIBADD) $(LIBS) -+ $(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) -@@ -3605,9 +3470,8 @@ 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) -- $(AM_V_CCLD)$(libmemberof_plugin_la_LINK) -rpath $(serverplugindir) $(libmemberof_plugin_la_OBJECTS) $(libmemberof_plugin_la_LIBADD) $(LIBS) -+ $(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) -@@ -3765,9 +3629,8 @@ 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) -- $(AM_V_CXXLD)$(CXXLINK) -rpath $(serverdir) $(libns_dshttpd_la_OBJECTS) $(libns_dshttpd_la_LIBADD) $(LIBS) -+ $(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) -@@ -3786,9 +3649,8 @@ 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) -- $(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) -+ $(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) -@@ -3813,9 +3675,8 @@ 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) -- $(AM_V_CCLD)$(libpassthru_plugin_la_LINK) -rpath $(serverplugindir) $(libpassthru_plugin_la_OBJECTS) $(libpassthru_plugin_la_LIBADD) $(LIBS) -+ $(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) -@@ -3834,9 +3695,8 @@ 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) -- $(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) -+ $(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) -@@ -3846,9 +3706,8 @@ 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) -- $(AM_V_CCLD)$(libpresence_plugin_la_LINK) $(am_libpresence_plugin_la_rpath) $(libpresence_plugin_la_OBJECTS) $(libpresence_plugin_la_LIBADD) $(LIBS) -+ $(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) -@@ -3885,9 +3744,8 @@ 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) -- $(AM_V_CCLD)$(libpwdstorage_plugin_la_LINK) -rpath $(serverplugindir) $(libpwdstorage_plugin_la_OBJECTS) $(libpwdstorage_plugin_la_LIBADD) $(LIBS) -+ $(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) -@@ -3897,9 +3755,8 @@ 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) -- $(AM_V_CCLD)$(libreferint_plugin_la_LINK) -rpath $(serverplugindir) $(libreferint_plugin_la_OBJECTS) $(libreferint_plugin_la_LIBADD) $(LIBS) -+ $(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) -@@ -4074,9 +3931,8 @@ 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) -- $(AM_V_CCLD)$(libreplication_plugin_la_LINK) -rpath $(serverplugindir) $(libreplication_plugin_la_OBJECTS) $(libreplication_plugin_la_LIBADD) $(LIBS) -+ $(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) -@@ -4101,9 +3957,8 @@ 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) -- $(AM_V_CCLD)$(libretrocl_plugin_la_LINK) -rpath $(serverplugindir) $(libretrocl_plugin_la_OBJECTS) $(libretrocl_plugin_la_LIBADD) $(LIBS) -+ $(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) -@@ -4116,9 +3971,8 @@ 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) -- $(AM_V_CCLD)$(libroles_plugin_la_LINK) -rpath $(serverplugindir) $(libroles_plugin_la_OBJECTS) $(libroles_plugin_la_LIBADD) $(LIBS) -+ $(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) -@@ -4128,9 +3982,8 @@ 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) -- $(AM_V_CCLD)$(librootdn_access_plugin_la_LINK) -rpath $(serverplugindir) $(librootdn_access_plugin_la_OBJECTS) $(librootdn_access_plugin_la_LIBADD) $(LIBS) -+ $(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) -@@ -4140,9 +3993,8 @@ 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) -- $(AM_V_CCLD)$(libschemareload_plugin_la_LINK) -rpath $(serverplugindir) $(libschemareload_plugin_la_OBJECTS) $(libschemareload_plugin_la_LIBADD) $(LIBS) -+ $(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) -@@ -4437,9 +4289,8 @@ 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) -- $(AM_V_CCLD)$(LINK) -rpath $(serverdir) $(libslapd_la_OBJECTS) $(libslapd_la_LIBADD) $(LIBS) -+ $(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) -@@ -4449,9 +4300,8 @@ 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) -- $(AM_V_CCLD)$(libstatechange_plugin_la_LINK) -rpath $(serverplugindir) $(libstatechange_plugin_la_OBJECTS) $(libstatechange_plugin_la_LIBADD) $(LIBS) -+ $(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) -@@ -4524,9 +4374,8 @@ 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) -- $(AM_V_CCLD)$(libsyntax_plugin_la_LINK) -rpath $(serverplugindir) $(libsyntax_plugin_la_OBJECTS) $(libsyntax_plugin_la_LIBADD) $(LIBS) -+ $(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) -@@ -4539,9 +4388,8 @@ 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) -- $(AM_V_CCLD)$(libusn_plugin_la_LINK) -rpath $(serverplugindir) $(libusn_plugin_la_OBJECTS) $(libusn_plugin_la_LIBADD) $(LIBS) -+ $(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) -@@ -4551,9 +4399,8 @@ 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) -- $(AM_V_CCLD)$(libviews_plugin_la_LINK) -rpath $(serverplugindir) $(libviews_plugin_la_OBJECTS) $(libviews_plugin_la_LIBADD) $(LIBS) -+ $(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=; \ -@@ -4563,12 +4410,10 @@ 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 } \ -@@ -4589,8 +4434,7 @@ 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 -@@ -4621,12 +4465,10 @@ 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 } \ -@@ -4647,8 +4489,7 @@ 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 -@@ -4670,10 +4511,9 @@ 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) -- $(AM_V_CCLD)$(LINK) $(dbscan_bin_OBJECTS) $(dbscan_bin_LDADD) $(LIBS) -+ $(LINK) $(dbscan_bin_OBJECTS) $(dbscan_bin_LDADD) $(LIBS) - ldap/systools/$(am__dirstamp): - @$(MKDIR_P) ldap/systools - @: > ldap/systools/$(am__dirstamp) -@@ -4684,10 +4524,9 @@ 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) -- $(AM_V_CCLD)$(LINK) $(dsktune_bin_OBJECTS) $(dsktune_bin_LDADD) $(LIBS) -+ $(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) -@@ -4703,10 +4542,9 @@ 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) -- $(AM_V_CCLD)$(LINK) $(infadd_bin_OBJECTS) $(infadd_bin_LDADD) $(LIBS) -+ $(LINK) $(infadd_bin_OBJECTS) $(infadd_bin_LDADD) $(LIBS) - ldap/servers/snmp/$(am__dirstamp): - @$(MKDIR_P) ldap/servers/snmp - @: > ldap/servers/snmp/$(am__dirstamp) -@@ -4722,10 +4560,9 @@ 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) -- $(AM_V_CCLD)$(LINK) $(ldap_agent_bin_OBJECTS) $(ldap_agent_bin_LDADD) $(LIBS) -+ $(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) -@@ -4771,38 +4608,33 @@ 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) -- $(AM_V_CCLD)$(LINK) $(ldclt_bin_OBJECTS) $(ldclt_bin_LDADD) $(LIBS) -+ $(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) -- $(AM_V_CCLD)$(LINK) $(ldif_bin_OBJECTS) $(ldif_bin_LDADD) $(LIBS) -+ $(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) -- $(AM_V_CCLD)$(LINK) $(makstrdb_OBJECTS) $(makstrdb_LDADD) $(LIBS) -+ $(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) -- $(AM_V_CCLD)$(LINK) $(migratecred_bin_OBJECTS) $(migratecred_bin_LDADD) $(LIBS) -+ $(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) -- $(AM_V_CCLD)$(LINK) $(mmldif_bin_OBJECTS) $(mmldif_bin_LDADD) $(LIBS) -+ $(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) -@@ -4899,17 +4731,15 @@ 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) -- $(AM_V_GEN)$(ns_slapd_LINK) $(ns_slapd_OBJECTS) $(ns_slapd_LDADD) $(LIBS) -+ $(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) -- $(AM_V_CCLD)$(LINK) $(pwdhash_bin_OBJECTS) $(pwdhash_bin_LDADD) $(LIBS) -+ $(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) -@@ -4922,10 +4752,9 @@ 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) -- $(AM_V_CCLD)$(LINK) $(rsearch_bin_OBJECTS) $(rsearch_bin_LDADD) $(LIBS) -+ $(LINK) $(rsearch_bin_OBJECTS) $(rsearch_bin_LDADD) $(LIBS) - install-binSCRIPTS: $(bin_SCRIPTS) - @$(NORMAL_INSTALL) - @list='$(bin_SCRIPTS)'; test -n "$(bindir)" || list=; \ -@@ -5656,3765 +5485,3765 @@ distclean-compile: - @AMDEP_TRUE@@am__include@ @am__quote@lib/libsi18n/$(DEPDIR)/makstrdb-makstrdb.Po@am__quote@ - - .S.o: --@am__fastdepCCAS_TRUE@ $(AM_V_CPPAS)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ -+@am__fastdepCCAS_TRUE@ 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@ $(AM_V_CPPAS)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -+@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCCAS_FALSE@ DEPDIR=$(DEPDIR) $(CCASDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS@am__nodep@)$(CPPASCOMPILE) -c -o $@ $< -+@am__fastdepCCAS_FALSE@ $(CPPASCOMPILE) -c -o $@ $< - - .S.obj: --@am__fastdepCCAS_TRUE@ $(AM_V_CPPAS)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ -+@am__fastdepCCAS_TRUE@ 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@ $(AM_V_CPPAS)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -+@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCCAS_FALSE@ DEPDIR=$(DEPDIR) $(CCASDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS@am__nodep@)$(CPPASCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` -+@am__fastdepCCAS_FALSE@ $(CPPASCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - - .S.lo: --@am__fastdepCCAS_TRUE@ $(AM_V_CPPAS)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ -+@am__fastdepCCAS_TRUE@ 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@ $(AM_V_CPPAS)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -+@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCCAS_FALSE@ DEPDIR=$(DEPDIR) $(CCASDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS@am__nodep@)$(LTCPPASCOMPILE) -c -o $@ $< -+@am__fastdepCCAS_FALSE@ $(LTCPPASCOMPILE) -c -o $@ $< - - ldap/servers/slapd/libslapd_la-slapi_counter_sunos_sparcv9.lo: ldap/servers/slapd/slapi_counter_sunos_sparcv9.S --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCCAS_FALSE@ DEPDIR=$(DEPDIR) $(CCASDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - .c.o: --@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ -+@am__fastdepCC_TRUE@ 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@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< -+@am__fastdepCC_FALSE@ $(COMPILE) -c -o $@ $< - - .c.obj: --@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ -+@am__fastdepCC_TRUE@ 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@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` -+@am__fastdepCC_FALSE@ $(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - - .c.lo: --@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ -+@am__fastdepCC_TRUE@ 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@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -+@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< -+@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< - - lib/ldaputil/libldaputil_a-cert.o: lib/ldaputil/cert.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/ldaputil/libldaputil_a-cert.obj: lib/ldaputil/cert.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - lib/ldaputil/libldaputil_a-certmap.o: lib/ldaputil/certmap.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/ldaputil/libldaputil_a-certmap.obj: lib/ldaputil/certmap.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - lib/ldaputil/libldaputil_a-dbconf.o: lib/ldaputil/dbconf.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/ldaputil/libldaputil_a-dbconf.obj: lib/ldaputil/dbconf.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - lib/ldaputil/libldaputil_a-encode.o: lib/ldaputil/encode.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/ldaputil/libldaputil_a-encode.obj: lib/ldaputil/encode.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - lib/ldaputil/libldaputil_a-errors.o: lib/ldaputil/errors.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/ldaputil/libldaputil_a-errors.obj: lib/ldaputil/errors.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - lib/ldaputil/libldaputil_a-init.o: lib/ldaputil/init.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/ldaputil/libldaputil_a-init.obj: lib/ldaputil/init.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - lib/ldaputil/libldaputil_a-ldapauth.o: lib/ldaputil/ldapauth.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/ldaputil/libldaputil_a-ldapauth.obj: lib/ldaputil/ldapauth.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - lib/ldaputil/libldaputil_a-vtable.o: lib/ldaputil/vtable.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/ldaputil/libldaputil_a-vtable.obj: lib/ldaputil/vtable.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/plugins/acctpolicy/libacctpolicy_plugin_la-acct_config.lo: ldap/servers/plugins/acctpolicy/acct_config.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/acctpolicy/libacctpolicy_plugin_la-acct_init.lo: ldap/servers/plugins/acctpolicy/acct_init.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/acctpolicy/libacctpolicy_plugin_la-acct_plugin.lo: ldap/servers/plugins/acctpolicy/acct_plugin.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/acctpolicy/libacctpolicy_plugin_la-acct_util.lo: ldap/servers/plugins/acctpolicy/acct_util.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/acct_usability/libacctusability_plugin_la-acct_usability.lo: ldap/servers/plugins/acct_usability/acct_usability.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/acl/libacl_plugin_la-acl.lo: ldap/servers/plugins/acl/acl.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/acl/libacl_plugin_la-acl_ext.lo: ldap/servers/plugins/acl/acl_ext.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/acl/libacl_plugin_la-aclanom.lo: ldap/servers/plugins/acl/aclanom.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/acl/libacl_plugin_la-acleffectiverights.lo: ldap/servers/plugins/acl/acleffectiverights.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/acl/libacl_plugin_la-aclgroup.lo: ldap/servers/plugins/acl/aclgroup.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/acl/libacl_plugin_la-aclinit.lo: ldap/servers/plugins/acl/aclinit.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/acl/libacl_plugin_la-acllas.lo: ldap/servers/plugins/acl/acllas.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/acl/libacl_plugin_la-acllist.lo: ldap/servers/plugins/acl/acllist.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/acl/libacl_plugin_la-aclparse.lo: ldap/servers/plugins/acl/aclparse.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/acl/libacl_plugin_la-aclplugin.lo: ldap/servers/plugins/acl/aclplugin.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/acl/libacl_plugin_la-aclutil.lo: ldap/servers/plugins/acl/aclutil.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/uiduniq/libattr_unique_plugin_la-7bit.lo: ldap/servers/plugins/uiduniq/7bit.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/uiduniq/libattr_unique_plugin_la-uid.lo: ldap/servers/plugins/uiduniq/uid.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/uiduniq/libattr_unique_plugin_la-utils.lo: ldap/servers/plugins/uiduniq/utils.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/automember/libautomember_plugin_la-automember.lo: ldap/servers/plugins/automember/automember.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-ancestorid.lo: ldap/servers/slapd/back-ldbm/ancestorid.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-archive.lo: ldap/servers/slapd/back-ldbm/archive.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-backentry.lo: ldap/servers/slapd/back-ldbm/backentry.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-cache.lo: ldap/servers/slapd/back-ldbm/cache.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-cleanup.lo: ldap/servers/slapd/back-ldbm/cleanup.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-close.lo: ldap/servers/slapd/back-ldbm/close.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-dbhelp.lo: ldap/servers/slapd/back-ldbm/dbhelp.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-dblayer.lo: ldap/servers/slapd/back-ldbm/dblayer.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-dbsize.lo: ldap/servers/slapd/back-ldbm/dbsize.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-dbversion.lo: ldap/servers/slapd/back-ldbm/dbversion.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-dn2entry.lo: ldap/servers/slapd/back-ldbm/dn2entry.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-entrystore.lo: ldap/servers/slapd/back-ldbm/entrystore.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-filterindex.lo: ldap/servers/slapd/back-ldbm/filterindex.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-findentry.lo: ldap/servers/slapd/back-ldbm/findentry.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-haschildren.lo: ldap/servers/slapd/back-ldbm/haschildren.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-id2entry.lo: ldap/servers/slapd/back-ldbm/id2entry.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-idl.lo: ldap/servers/slapd/back-ldbm/idl.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-idl_shim.lo: ldap/servers/slapd/back-ldbm/idl_shim.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-idl_new.lo: ldap/servers/slapd/back-ldbm/idl_new.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-idl_common.lo: ldap/servers/slapd/back-ldbm/idl_common.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-import.lo: ldap/servers/slapd/back-ldbm/import.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-import-merge.lo: ldap/servers/slapd/back-ldbm/import-merge.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-import-threads.lo: ldap/servers/slapd/back-ldbm/import-threads.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-index.lo: ldap/servers/slapd/back-ldbm/index.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-init.lo: ldap/servers/slapd/back-ldbm/init.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-instance.lo: ldap/servers/slapd/back-ldbm/instance.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_abandon.lo: ldap/servers/slapd/back-ldbm/ldbm_abandon.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_add.lo: ldap/servers/slapd/back-ldbm/ldbm_add.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_attr.lo: ldap/servers/slapd/back-ldbm/ldbm_attr.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_attrcrypt.lo: ldap/servers/slapd/back-ldbm/ldbm_attrcrypt.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_attrcrypt_config.lo: ldap/servers/slapd/back-ldbm/ldbm_attrcrypt_config.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_bind.lo: ldap/servers/slapd/back-ldbm/ldbm_bind.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_compare.lo: ldap/servers/slapd/back-ldbm/ldbm_compare.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_config.lo: ldap/servers/slapd/back-ldbm/ldbm_config.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_delete.lo: ldap/servers/slapd/back-ldbm/ldbm_delete.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_entryrdn.lo: ldap/servers/slapd/back-ldbm/ldbm_entryrdn.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_index_config.lo: ldap/servers/slapd/back-ldbm/ldbm_index_config.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_instance_config.lo: ldap/servers/slapd/back-ldbm/ldbm_instance_config.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_modify.lo: ldap/servers/slapd/back-ldbm/ldbm_modify.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_modrdn.lo: ldap/servers/slapd/back-ldbm/ldbm_modrdn.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_search.lo: ldap/servers/slapd/back-ldbm/ldbm_search.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_unbind.lo: ldap/servers/slapd/back-ldbm/ldbm_unbind.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldbm_usn.lo: ldap/servers/slapd/back-ldbm/ldbm_usn.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-ldif2ldbm.lo: ldap/servers/slapd/back-ldbm/ldif2ldbm.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-dbverify.lo: ldap/servers/slapd/back-ldbm/dbverify.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-matchrule.lo: ldap/servers/slapd/back-ldbm/matchrule.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-misc.lo: ldap/servers/slapd/back-ldbm/misc.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-monitor.lo: ldap/servers/slapd/back-ldbm/monitor.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-nextid.lo: ldap/servers/slapd/back-ldbm/nextid.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-parents.lo: ldap/servers/slapd/back-ldbm/parents.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-perfctrs.lo: ldap/servers/slapd/back-ldbm/perfctrs.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-rmdb.lo: ldap/servers/slapd/back-ldbm/rmdb.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-seq.lo: ldap/servers/slapd/back-ldbm/seq.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-sort.lo: ldap/servers/slapd/back-ldbm/sort.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-start.lo: ldap/servers/slapd/back-ldbm/start.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-uniqueid2entry.lo: ldap/servers/slapd/back-ldbm/uniqueid2entry.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-upgrade.lo: ldap/servers/slapd/back-ldbm/upgrade.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-vlv.lo: ldap/servers/slapd/back-ldbm/vlv.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-vlv_key.lo: ldap/servers/slapd/back-ldbm/vlv_key.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/back-ldbm/libback_ldbm_la-vlv_srch.lo: ldap/servers/slapd/back-ldbm/vlv_srch.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/bitwise/libbitwise_plugin_la-bitwise.lo: ldap/servers/plugins/bitwise/bitwise.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_abandon.lo: ldap/servers/plugins/chainingdb/cb_abandon.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_acl.lo: ldap/servers/plugins/chainingdb/cb_acl.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_add.lo: ldap/servers/plugins/chainingdb/cb_add.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_bind.lo: ldap/servers/plugins/chainingdb/cb_bind.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_cleanup.lo: ldap/servers/plugins/chainingdb/cb_cleanup.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_close.lo: ldap/servers/plugins/chainingdb/cb_close.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_compare.lo: ldap/servers/plugins/chainingdb/cb_compare.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_config.lo: ldap/servers/plugins/chainingdb/cb_config.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_conn_stateless.lo: ldap/servers/plugins/chainingdb/cb_conn_stateless.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_controls.lo: ldap/servers/plugins/chainingdb/cb_controls.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_debug.lo: ldap/servers/plugins/chainingdb/cb_debug.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_delete.lo: ldap/servers/plugins/chainingdb/cb_delete.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_init.lo: ldap/servers/plugins/chainingdb/cb_init.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_instance.lo: ldap/servers/plugins/chainingdb/cb_instance.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_modify.lo: ldap/servers/plugins/chainingdb/cb_modify.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_modrdn.lo: ldap/servers/plugins/chainingdb/cb_modrdn.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_monitor.lo: ldap/servers/plugins/chainingdb/cb_monitor.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_schema.lo: ldap/servers/plugins/chainingdb/cb_schema.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_search.lo: ldap/servers/plugins/chainingdb/cb_search.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_size.lo: ldap/servers/plugins/chainingdb/cb_size.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_start.lo: ldap/servers/plugins/chainingdb/cb_start.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_temp.lo: ldap/servers/plugins/chainingdb/cb_temp.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_test.lo: ldap/servers/plugins/chainingdb/cb_test.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_unbind.lo: ldap/servers/plugins/chainingdb/cb_unbind.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/chainingdb/libchainingdb_plugin_la-cb_utils.lo: ldap/servers/plugins/chainingdb/cb_utils.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/collation/libcollation_plugin_la-collate.lo: ldap/servers/plugins/collation/collate.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/collation/libcollation_plugin_la-config.lo: ldap/servers/plugins/collation/config.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/collation/libcollation_plugin_la-orfilter.lo: ldap/servers/plugins/collation/orfilter.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/cos/libcos_plugin_la-cos.lo: ldap/servers/plugins/cos/cos.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/cos/libcos_plugin_la-cos_cache.lo: ldap/servers/plugins/cos/cos_cache.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/deref/libderef_plugin_la-deref.lo: ldap/servers/plugins/deref/deref.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/rever/libdes_plugin_la-des.lo: ldap/servers/plugins/rever/des.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/rever/libdes_plugin_la-rever.lo: ldap/servers/plugins/rever/rever.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/distrib/libdistrib_plugin_la-distrib.lo: ldap/servers/plugins/distrib/distrib.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/dna/libdna_plugin_la-dna.lo: ldap/servers/plugins/dna/dna.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/http/libhttp_client_plugin_la-http_client.lo: ldap/servers/plugins/http/http_client.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/http/libhttp_client_plugin_la-http_impl.lo: ldap/servers/plugins/http/http_impl.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/linkedattrs/liblinkedattrs_plugin_la-fixup_task.lo: ldap/servers/plugins/linkedattrs/fixup_task.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/linkedattrs/liblinkedattrs_plugin_la-linked_attrs.lo: ldap/servers/plugins/linkedattrs/linked_attrs.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/mep/libmanagedentries_plugin_la-mep.lo: ldap/servers/plugins/mep/mep.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/memberof/libmemberof_plugin_la-memberof.lo: ldap/servers/plugins/memberof/memberof.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/memberof/libmemberof_plugin_la-memberof_config.lo: ldap/servers/plugins/memberof/memberof_config.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/libadmin/libns_dshttpd_la-error.lo: lib/libadmin/error.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/libadmin/libns_dshttpd_la-template.lo: lib/libadmin/template.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/libadmin/libns_dshttpd_la-util.lo: lib/libadmin/util.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/base/libns_dshttpd_la-nscperror.lo: lib/base/nscperror.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/libsi18n/libns_dshttpd_la-getstrprop.lo: lib/libsi18n/getstrprop.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/libsi18n/libns_dshttpd_la-reshash.lo: lib/libsi18n/reshash.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/libsi18n/libns_dshttpd_la-txtfile.lo: lib/libsi18n/txtfile.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/ldaputil/libns_dshttpd_la-cert.lo: lib/ldaputil/cert.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/ldaputil/libns_dshttpd_la-certmap.lo: lib/ldaputil/certmap.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/ldaputil/libns_dshttpd_la-dbconf.lo: lib/ldaputil/dbconf.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/ldaputil/libns_dshttpd_la-encode.lo: lib/ldaputil/encode.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/ldaputil/libns_dshttpd_la-errors.lo: lib/ldaputil/errors.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/ldaputil/libns_dshttpd_la-init.lo: lib/ldaputil/init.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/ldaputil/libns_dshttpd_la-ldapauth.lo: lib/ldaputil/ldapauth.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/ldaputil/libns_dshttpd_la-vtable.lo: lib/ldaputil/vtable.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/pam_passthru/libpam_passthru_plugin_la-pam_ptconfig.lo: ldap/servers/plugins/pam_passthru/pam_ptconfig.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/pam_passthru/libpam_passthru_plugin_la-pam_ptdebug.lo: ldap/servers/plugins/pam_passthru/pam_ptdebug.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/pam_passthru/libpam_passthru_plugin_la-pam_ptimpl.lo: ldap/servers/plugins/pam_passthru/pam_ptimpl.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/pam_passthru/libpam_passthru_plugin_la-pam_ptpreop.lo: ldap/servers/plugins/pam_passthru/pam_ptpreop.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/passthru/libpassthru_plugin_la-ptbind.lo: ldap/servers/plugins/passthru/ptbind.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/passthru/libpassthru_plugin_la-ptconfig.lo: ldap/servers/plugins/passthru/ptconfig.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/passthru/libpassthru_plugin_la-ptconn.lo: ldap/servers/plugins/passthru/ptconn.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/passthru/libpassthru_plugin_la-ptdebug.lo: ldap/servers/plugins/passthru/ptdebug.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/passthru/libpassthru_plugin_la-ptpreop.lo: ldap/servers/plugins/passthru/ptpreop.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/passthru/libpassthru_plugin_la-ptutil.lo: ldap/servers/plugins/passthru/ptutil.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/posix-winsync/libposix_winsync_plugin_la-posix-winsync.lo: ldap/servers/plugins/posix-winsync/posix-winsync.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - 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@ $(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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - 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@ $(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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - 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@ $(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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/presence/libpresence_plugin_la-presence.lo: ldap/servers/plugins/presence/presence.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-clear_pwd.lo: ldap/servers/plugins/pwdstorage/clear_pwd.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-crypt_pwd.lo: ldap/servers/plugins/pwdstorage/crypt_pwd.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-md5_pwd.lo: ldap/servers/plugins/pwdstorage/md5_pwd.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-md5c.lo: ldap/servers/plugins/pwdstorage/md5c.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-ns-mta-md5_pwd.lo: ldap/servers/plugins/pwdstorage/ns-mta-md5_pwd.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-pwd_init.lo: ldap/servers/plugins/pwdstorage/pwd_init.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-pwd_util.lo: ldap/servers/plugins/pwdstorage/pwd_util.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-sha_pwd.lo: ldap/servers/plugins/pwdstorage/sha_pwd.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-smd5_pwd.lo: ldap/servers/plugins/pwdstorage/smd5_pwd.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/pwdstorage/libpwdstorage_plugin_la-ssha_pwd.lo: ldap/servers/plugins/pwdstorage/ssha_pwd.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/referint/libreferint_plugin_la-referint.lo: ldap/servers/plugins/referint/referint.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-cl5_api.lo: ldap/servers/plugins/replication/cl5_api.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-cl5_clcache.lo: ldap/servers/plugins/replication/cl5_clcache.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-cl5_config.lo: ldap/servers/plugins/replication/cl5_config.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-cl5_init.lo: ldap/servers/plugins/replication/cl5_init.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-cl_crypt.lo: ldap/servers/plugins/replication/cl_crypt.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-csnpl.lo: ldap/servers/plugins/replication/csnpl.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-legacy_consumer.lo: ldap/servers/plugins/replication/legacy_consumer.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-llist.lo: ldap/servers/plugins/replication/llist.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-repl_add.lo: ldap/servers/plugins/replication/repl_add.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-repl_bind.lo: ldap/servers/plugins/replication/repl_bind.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-repl_compare.lo: ldap/servers/plugins/replication/repl_compare.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-repl_connext.lo: ldap/servers/plugins/replication/repl_connext.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-repl_controls.lo: ldap/servers/plugins/replication/repl_controls.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-repl_delete.lo: ldap/servers/plugins/replication/repl_delete.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-repl_entry.lo: ldap/servers/plugins/replication/repl_entry.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-repl_ext.lo: ldap/servers/plugins/replication/repl_ext.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-repl_extop.lo: ldap/servers/plugins/replication/repl_extop.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-repl_globals.lo: ldap/servers/plugins/replication/repl_globals.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-repl_init.lo: ldap/servers/plugins/replication/repl_init.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-repl_modify.lo: ldap/servers/plugins/replication/repl_modify.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-repl_modrdn.lo: ldap/servers/plugins/replication/repl_modrdn.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-repl_monitor.lo: ldap/servers/plugins/replication/repl_monitor.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-repl_objset.lo: ldap/servers/plugins/replication/repl_objset.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-repl_opext.lo: ldap/servers/plugins/replication/repl_opext.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-repl_ops.lo: ldap/servers/plugins/replication/repl_ops.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-repl_rootdse.lo: ldap/servers/plugins/replication/repl_rootdse.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-repl_search.lo: ldap/servers/plugins/replication/repl_search.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-repl_session_plugin.lo: ldap/servers/plugins/replication/repl_session_plugin.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-repl5_agmt.lo: ldap/servers/plugins/replication/repl5_agmt.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-repl5_agmtlist.lo: ldap/servers/plugins/replication/repl5_agmtlist.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-repl5_backoff.lo: ldap/servers/plugins/replication/repl5_backoff.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-repl5_connection.lo: ldap/servers/plugins/replication/repl5_connection.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-repl5_inc_protocol.lo: ldap/servers/plugins/replication/repl5_inc_protocol.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-repl5_init.lo: ldap/servers/plugins/replication/repl5_init.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-repl5_mtnode_ext.lo: ldap/servers/plugins/replication/repl5_mtnode_ext.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-repl5_plugins.lo: ldap/servers/plugins/replication/repl5_plugins.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-repl5_protocol.lo: ldap/servers/plugins/replication/repl5_protocol.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-repl5_protocol_util.lo: ldap/servers/plugins/replication/repl5_protocol_util.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-repl5_replica.lo: ldap/servers/plugins/replication/repl5_replica.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-repl5_replica_config.lo: ldap/servers/plugins/replication/repl5_replica_config.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-repl5_replica_dnhash.lo: ldap/servers/plugins/replication/repl5_replica_dnhash.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-repl5_replica_hash.lo: ldap/servers/plugins/replication/repl5_replica_hash.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-repl5_ruv.lo: ldap/servers/plugins/replication/repl5_ruv.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-repl5_schedule.lo: ldap/servers/plugins/replication/repl5_schedule.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-repl5_tot_protocol.lo: ldap/servers/plugins/replication/repl5_tot_protocol.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-repl5_total.lo: ldap/servers/plugins/replication/repl5_total.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-repl5_updatedn_list.lo: ldap/servers/plugins/replication/repl5_updatedn_list.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-replutil.lo: ldap/servers/plugins/replication/replutil.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-urp.lo: ldap/servers/plugins/replication/urp.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-urp_glue.lo: ldap/servers/plugins/replication/urp_glue.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-urp_tombstone.lo: ldap/servers/plugins/replication/urp_tombstone.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-windows_connection.lo: ldap/servers/plugins/replication/windows_connection.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-windows_inc_protocol.lo: ldap/servers/plugins/replication/windows_inc_protocol.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-windows_private.lo: ldap/servers/plugins/replication/windows_private.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-windows_protocol_util.lo: ldap/servers/plugins/replication/windows_protocol_util.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/replication/libreplication_plugin_la-windows_tot_protocol.lo: ldap/servers/plugins/replication/windows_tot_protocol.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl.lo: ldap/servers/plugins/retrocl/retrocl.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_cn.lo: ldap/servers/plugins/retrocl/retrocl_cn.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_create.lo: ldap/servers/plugins/retrocl/retrocl_create.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_po.lo: ldap/servers/plugins/retrocl/retrocl_po.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_rootdse.lo: ldap/servers/plugins/retrocl/retrocl_rootdse.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/retrocl/libretrocl_plugin_la-retrocl_trim.lo: ldap/servers/plugins/retrocl/retrocl_trim.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/roles/libroles_plugin_la-roles_cache.lo: ldap/servers/plugins/roles/roles_cache.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/roles/libroles_plugin_la-roles_plugin.lo: ldap/servers/plugins/roles/roles_plugin.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/rootdn_access/librootdn_access_plugin_la-rootdn_access.lo: ldap/servers/plugins/rootdn_access/rootdn_access.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/schema_reload/libschemareload_plugin_la-schema_reload.lo: ldap/servers/plugins/schema_reload/schema_reload.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-add.lo: ldap/servers/slapd/add.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-agtmmap.lo: ldap/servers/slapd/agtmmap.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-apibroker.lo: ldap/servers/slapd/apibroker.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-attr.lo: ldap/servers/slapd/attr.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-attrlist.lo: ldap/servers/slapd/attrlist.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-attrsyntax.lo: ldap/servers/slapd/attrsyntax.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-auditlog.lo: ldap/servers/slapd/auditlog.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-ava.lo: ldap/servers/slapd/ava.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-backend.lo: ldap/servers/slapd/backend.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-backend_manager.lo: ldap/servers/slapd/backend_manager.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-bitset.lo: ldap/servers/slapd/bitset.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-bulk_import.lo: ldap/servers/slapd/bulk_import.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-charray.lo: ldap/servers/slapd/charray.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-ch_malloc.lo: ldap/servers/slapd/ch_malloc.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-computed.lo: ldap/servers/slapd/computed.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-control.lo: ldap/servers/slapd/control.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-counters.lo: ldap/servers/slapd/counters.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-csn.lo: ldap/servers/slapd/csn.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-csngen.lo: ldap/servers/slapd/csngen.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-csnset.lo: ldap/servers/slapd/csnset.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-defbackend.lo: ldap/servers/slapd/defbackend.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-delete.lo: ldap/servers/slapd/delete.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-dl.lo: ldap/servers/slapd/dl.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-dn.lo: ldap/servers/slapd/dn.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-dse.lo: ldap/servers/slapd/dse.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-dynalib.lo: ldap/servers/slapd/dynalib.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-entry.lo: ldap/servers/slapd/entry.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-entrywsi.lo: ldap/servers/slapd/entrywsi.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-errormap.lo: ldap/servers/slapd/errormap.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-eventq.lo: ldap/servers/slapd/eventq.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-factory.lo: ldap/servers/slapd/factory.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-fileio.lo: ldap/servers/slapd/fileio.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-filter.lo: ldap/servers/slapd/filter.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-filtercmp.lo: ldap/servers/slapd/filtercmp.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-filterentry.lo: ldap/servers/slapd/filterentry.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-generation.lo: ldap/servers/slapd/generation.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-getfilelist.lo: ldap/servers/slapd/getfilelist.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-index_subsystem.lo: ldap/servers/slapd/index_subsystem.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-ldaputil.lo: ldap/servers/slapd/ldaputil.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-lenstr.lo: ldap/servers/slapd/lenstr.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-libglobs.lo: ldap/servers/slapd/libglobs.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-localhost.lo: ldap/servers/slapd/localhost.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-log.lo: ldap/servers/slapd/log.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-mapping_tree.lo: ldap/servers/slapd/mapping_tree.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-match.lo: ldap/servers/slapd/match.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-modify.lo: ldap/servers/slapd/modify.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-modrdn.lo: ldap/servers/slapd/modrdn.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-modutil.lo: ldap/servers/slapd/modutil.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-ntuserpin.lo: ldap/servers/slapd/ntuserpin.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-object.lo: ldap/servers/slapd/object.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-objset.lo: ldap/servers/slapd/objset.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-operation.lo: ldap/servers/slapd/operation.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-opshared.lo: ldap/servers/slapd/opshared.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-pagedresults.lo: ldap/servers/slapd/pagedresults.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-pblock.lo: ldap/servers/slapd/pblock.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-plugin.lo: ldap/servers/slapd/plugin.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-plugin_acl.lo: ldap/servers/slapd/plugin_acl.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-plugin_internal_op.lo: ldap/servers/slapd/plugin_internal_op.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-plugin_mr.lo: ldap/servers/slapd/plugin_mr.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-plugin_role.lo: ldap/servers/slapd/plugin_role.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-plugin_syntax.lo: ldap/servers/slapd/plugin_syntax.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-protect_db.lo: ldap/servers/slapd/protect_db.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-proxyauth.lo: ldap/servers/slapd/proxyauth.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-pw.lo: ldap/servers/slapd/pw.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-pw_retry.lo: ldap/servers/slapd/pw_retry.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-rdn.lo: ldap/servers/slapd/rdn.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-referral.lo: ldap/servers/slapd/referral.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-regex.lo: ldap/servers/slapd/regex.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-resourcelimit.lo: ldap/servers/slapd/resourcelimit.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-result.lo: ldap/servers/slapd/result.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-sasl_map.lo: ldap/servers/slapd/sasl_map.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-schema.lo: ldap/servers/slapd/schema.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-schemaparse.lo: ldap/servers/slapd/schemaparse.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-security_wrappers.lo: ldap/servers/slapd/security_wrappers.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-slapd_plhash.lo: ldap/servers/slapd/slapd_plhash.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-slapi_counter.lo: ldap/servers/slapd/slapi_counter.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-slapi2nspr.lo: ldap/servers/slapd/slapi2nspr.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-snmp_collator.lo: ldap/servers/slapd/snmp_collator.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-sort.lo: ldap/servers/slapd/sort.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-ssl.lo: ldap/servers/slapd/ssl.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-str2filter.lo: ldap/servers/slapd/str2filter.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-subentry.lo: ldap/servers/slapd/subentry.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-task.lo: ldap/servers/slapd/task.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-time.lo: ldap/servers/slapd/time.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-thread_data.lo: ldap/servers/slapd/thread_data.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-uniqueid.lo: ldap/servers/slapd/uniqueid.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-uniqueidgen.lo: ldap/servers/slapd/uniqueidgen.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-utf8.lo: ldap/servers/slapd/utf8.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-utf8compare.lo: ldap/servers/slapd/utf8compare.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-util.lo: ldap/servers/slapd/util.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-uuid.lo: ldap/servers/slapd/uuid.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-value.lo: ldap/servers/slapd/value.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-valueset.lo: ldap/servers/slapd/valueset.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/libslapd_la-vattr.lo: ldap/servers/slapd/vattr.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/libraries/libavl/libslapd_la-avl.lo: ldap/libraries/libavl/avl.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/statechange/libstatechange_plugin_la-statechange.lo: ldap/servers/plugins/statechange/statechange.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/syntaxes/libsyntax_plugin_la-bin.lo: ldap/servers/plugins/syntaxes/bin.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/syntaxes/libsyntax_plugin_la-bitstring.lo: ldap/servers/plugins/syntaxes/bitstring.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/syntaxes/libsyntax_plugin_la-ces.lo: ldap/servers/plugins/syntaxes/ces.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/syntaxes/libsyntax_plugin_la-cis.lo: ldap/servers/plugins/syntaxes/cis.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/syntaxes/libsyntax_plugin_la-debug.lo: ldap/servers/plugins/syntaxes/debug.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/syntaxes/libsyntax_plugin_la-dn.lo: ldap/servers/plugins/syntaxes/dn.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/syntaxes/libsyntax_plugin_la-deliverymethod.lo: ldap/servers/plugins/syntaxes/deliverymethod.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/syntaxes/libsyntax_plugin_la-facsimile.lo: ldap/servers/plugins/syntaxes/facsimile.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/syntaxes/libsyntax_plugin_la-guide.lo: ldap/servers/plugins/syntaxes/guide.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/syntaxes/libsyntax_plugin_la-int.lo: ldap/servers/plugins/syntaxes/int.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/syntaxes/libsyntax_plugin_la-nameoptuid.lo: ldap/servers/plugins/syntaxes/nameoptuid.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/syntaxes/libsyntax_plugin_la-numericstring.lo: ldap/servers/plugins/syntaxes/numericstring.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/syntaxes/libsyntax_plugin_la-phonetic.lo: ldap/servers/plugins/syntaxes/phonetic.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/syntaxes/libsyntax_plugin_la-sicis.lo: ldap/servers/plugins/syntaxes/sicis.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/syntaxes/libsyntax_plugin_la-string.lo: ldap/servers/plugins/syntaxes/string.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/syntaxes/libsyntax_plugin_la-syntax_common.lo: ldap/servers/plugins/syntaxes/syntax_common.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/syntaxes/libsyntax_plugin_la-tel.lo: ldap/servers/plugins/syntaxes/tel.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/syntaxes/libsyntax_plugin_la-telex.lo: ldap/servers/plugins/syntaxes/telex.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/syntaxes/libsyntax_plugin_la-teletex.lo: ldap/servers/plugins/syntaxes/teletex.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/syntaxes/libsyntax_plugin_la-validate.lo: ldap/servers/plugins/syntaxes/validate.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/syntaxes/libsyntax_plugin_la-validate_task.lo: ldap/servers/plugins/syntaxes/validate_task.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/syntaxes/libsyntax_plugin_la-value.lo: ldap/servers/plugins/syntaxes/value.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/usn/libusn_plugin_la-usn.lo: ldap/servers/plugins/usn/usn.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/usn/libusn_plugin_la-usn_cleanup.lo: ldap/servers/plugins/usn/usn_cleanup.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/plugins/views/libviews_plugin_la-views.lo: ldap/servers/plugins/views/views.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/tools/dbscan_bin-dbscan.o: ldap/servers/slapd/tools/dbscan.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/tools/dbscan_bin-dbscan.obj: ldap/servers/slapd/tools/dbscan.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/tools/rsearch/infadd_bin-addthread.o: ldap/servers/slapd/tools/rsearch/addthread.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/tools/rsearch/infadd_bin-addthread.obj: ldap/servers/slapd/tools/rsearch/addthread.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/tools/rsearch/infadd_bin-infadd.o: ldap/servers/slapd/tools/rsearch/infadd.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/tools/rsearch/infadd_bin-infadd.obj: ldap/servers/slapd/tools/rsearch/infadd.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/tools/rsearch/infadd_bin-nametable.o: ldap/servers/slapd/tools/rsearch/nametable.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/tools/rsearch/infadd_bin-nametable.obj: ldap/servers/slapd/tools/rsearch/nametable.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/snmp/ldap_agent_bin-main.o: ldap/servers/snmp/main.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/snmp/ldap_agent_bin-main.obj: ldap/servers/snmp/main.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/snmp/ldap_agent_bin-ldap-agent.o: ldap/servers/snmp/ldap-agent.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/snmp/ldap_agent_bin-ldap-agent.obj: ldap/servers/snmp/ldap-agent.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/ldap_agent_bin-agtmmap.o: ldap/servers/slapd/agtmmap.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/ldap_agent_bin-agtmmap.obj: ldap/servers/slapd/agtmmap.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/tools/ldclt_bin-ldaptool-sasl.o: ldap/servers/slapd/tools/ldaptool-sasl.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/tools/ldclt_bin-ldaptool-sasl.obj: ldap/servers/slapd/tools/ldaptool-sasl.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/tools/ldclt/ldclt_bin-data.o: ldap/servers/slapd/tools/ldclt/data.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/tools/ldclt/ldclt_bin-data.obj: ldap/servers/slapd/tools/ldclt/data.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/tools/ldclt/ldclt_bin-ldapfct.o: ldap/servers/slapd/tools/ldclt/ldapfct.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/tools/ldclt/ldclt_bin-ldapfct.obj: ldap/servers/slapd/tools/ldclt/ldapfct.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/tools/ldclt/ldclt_bin-ldclt.o: ldap/servers/slapd/tools/ldclt/ldclt.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/tools/ldclt/ldclt_bin-ldclt.obj: ldap/servers/slapd/tools/ldclt/ldclt.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/tools/ldclt/ldclt_bin-ldcltU.o: ldap/servers/slapd/tools/ldclt/ldcltU.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/tools/ldclt/ldclt_bin-ldcltU.obj: ldap/servers/slapd/tools/ldclt/ldcltU.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/tools/ldclt/ldclt_bin-parser.o: ldap/servers/slapd/tools/ldclt/parser.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/tools/ldclt/ldclt_bin-parser.obj: ldap/servers/slapd/tools/ldclt/parser.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/tools/ldclt/ldclt_bin-port.o: ldap/servers/slapd/tools/ldclt/port.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/tools/ldclt/ldclt_bin-port.obj: ldap/servers/slapd/tools/ldclt/port.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/tools/ldclt/ldclt_bin-scalab01.o: ldap/servers/slapd/tools/ldclt/scalab01.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/tools/ldclt/ldclt_bin-scalab01.obj: ldap/servers/slapd/tools/ldclt/scalab01.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/tools/ldclt/ldclt_bin-threadMain.o: ldap/servers/slapd/tools/ldclt/threadMain.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/tools/ldclt/ldclt_bin-threadMain.obj: ldap/servers/slapd/tools/ldclt/threadMain.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/tools/ldclt/ldclt_bin-utils.o: ldap/servers/slapd/tools/ldclt/utils.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/tools/ldclt/ldclt_bin-utils.obj: ldap/servers/slapd/tools/ldclt/utils.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/tools/ldclt/ldclt_bin-version.o: ldap/servers/slapd/tools/ldclt/version.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/tools/ldclt/ldclt_bin-version.obj: ldap/servers/slapd/tools/ldclt/version.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/tools/ldclt/ldclt_bin-workarounds.o: ldap/servers/slapd/tools/ldclt/workarounds.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/tools/ldclt/ldclt_bin-workarounds.obj: ldap/servers/slapd/tools/ldclt/workarounds.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/tools/ldclt/ldclt_bin-opCheck.o: ldap/servers/slapd/tools/ldclt/opCheck.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/tools/ldclt/ldclt_bin-opCheck.obj: ldap/servers/slapd/tools/ldclt/opCheck.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/tools/ldif_bin-ldif.o: ldap/servers/slapd/tools/ldif.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/tools/ldif_bin-ldif.obj: ldap/servers/slapd/tools/ldif.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - lib/libsi18n/makstrdb-makstrdb.o: lib/libsi18n/makstrdb.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/libsi18n/makstrdb-makstrdb.obj: lib/libsi18n/makstrdb.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/tools/migratecred_bin-migratecred.o: ldap/servers/slapd/tools/migratecred.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/tools/migratecred_bin-migratecred.obj: ldap/servers/slapd/tools/migratecred.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/tools/mmldif_bin-mmldif.o: ldap/servers/slapd/tools/mmldif.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/tools/mmldif_bin-mmldif.obj: ldap/servers/slapd/tools/mmldif.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/ns_slapd-abandon.o: ldap/servers/slapd/abandon.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/ns_slapd-abandon.obj: ldap/servers/slapd/abandon.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/ns_slapd-auth.o: ldap/servers/slapd/auth.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/ns_slapd-auth.obj: ldap/servers/slapd/auth.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/ns_slapd-bind.o: ldap/servers/slapd/bind.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/ns_slapd-bind.obj: ldap/servers/slapd/bind.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/ns_slapd-compare.o: ldap/servers/slapd/compare.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/ns_slapd-compare.obj: ldap/servers/slapd/compare.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/ns_slapd-config.o: ldap/servers/slapd/config.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/ns_slapd-config.obj: ldap/servers/slapd/config.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/ns_slapd-configdse.o: ldap/servers/slapd/configdse.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/ns_slapd-configdse.obj: ldap/servers/slapd/configdse.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/ns_slapd-connection.o: ldap/servers/slapd/connection.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/ns_slapd-connection.obj: ldap/servers/slapd/connection.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/ns_slapd-conntable.o: ldap/servers/slapd/conntable.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/ns_slapd-conntable.obj: ldap/servers/slapd/conntable.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/ns_slapd-daemon.o: ldap/servers/slapd/daemon.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/ns_slapd-daemon.obj: ldap/servers/slapd/daemon.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/ns_slapd-detach.o: ldap/servers/slapd/detach.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/ns_slapd-detach.obj: ldap/servers/slapd/detach.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/ns_slapd-extendop.o: ldap/servers/slapd/extendop.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/ns_slapd-extendop.obj: ldap/servers/slapd/extendop.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/ns_slapd-fedse.o: ldap/servers/slapd/fedse.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/ns_slapd-fedse.obj: ldap/servers/slapd/fedse.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/ns_slapd-fileio.o: ldap/servers/slapd/fileio.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/ns_slapd-fileio.obj: ldap/servers/slapd/fileio.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/ns_slapd-getopt_ext.o: ldap/servers/slapd/getopt_ext.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/ns_slapd-getopt_ext.obj: ldap/servers/slapd/getopt_ext.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/ns_slapd-globals.o: ldap/servers/slapd/globals.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/ns_slapd-globals.obj: ldap/servers/slapd/globals.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/ns_slapd-house.o: ldap/servers/slapd/house.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/ns_slapd-house.obj: ldap/servers/slapd/house.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/ns_slapd-init.o: ldap/servers/slapd/init.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/ns_slapd-init.obj: ldap/servers/slapd/init.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/ns_slapd-main.o: ldap/servers/slapd/main.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/ns_slapd-main.obj: ldap/servers/slapd/main.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/ns_slapd-monitor.o: ldap/servers/slapd/monitor.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/ns_slapd-monitor.obj: ldap/servers/slapd/monitor.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/ns_slapd-passwd_extop.o: ldap/servers/slapd/passwd_extop.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/ns_slapd-passwd_extop.obj: ldap/servers/slapd/passwd_extop.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/ns_slapd-psearch.o: ldap/servers/slapd/psearch.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/ns_slapd-psearch.obj: ldap/servers/slapd/psearch.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/ns_slapd-pw_mgmt.o: ldap/servers/slapd/pw_mgmt.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/ns_slapd-pw_mgmt.obj: ldap/servers/slapd/pw_mgmt.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/ns_slapd-rootdse.o: ldap/servers/slapd/rootdse.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/ns_slapd-rootdse.obj: ldap/servers/slapd/rootdse.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/ns_slapd-sasl_io.o: ldap/servers/slapd/sasl_io.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/ns_slapd-sasl_io.obj: ldap/servers/slapd/sasl_io.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/ns_slapd-saslbind.o: ldap/servers/slapd/saslbind.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/ns_slapd-saslbind.obj: ldap/servers/slapd/saslbind.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/ns_slapd-search.o: ldap/servers/slapd/search.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/ns_slapd-search.obj: ldap/servers/slapd/search.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/ns_slapd-start_tls_extop.o: ldap/servers/slapd/start_tls_extop.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/ns_slapd-start_tls_extop.obj: ldap/servers/slapd/start_tls_extop.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/ns_slapd-strdup.o: ldap/servers/slapd/strdup.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/ns_slapd-strdup.obj: ldap/servers/slapd/strdup.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/ns_slapd-stubs.o: ldap/servers/slapd/stubs.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/ns_slapd-stubs.obj: ldap/servers/slapd/stubs.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/ns_slapd-tempnam.o: ldap/servers/slapd/tempnam.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/ns_slapd-tempnam.obj: ldap/servers/slapd/tempnam.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/ns_slapd-unbind.o: ldap/servers/slapd/unbind.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/ns_slapd-unbind.obj: ldap/servers/slapd/unbind.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/ns_slapd-getsocketpeer.o: ldap/servers/slapd/getsocketpeer.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/ns_slapd-getsocketpeer.obj: ldap/servers/slapd/getsocketpeer.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/tools/pwdhash_bin-pwenc.o: ldap/servers/slapd/tools/pwenc.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/tools/pwdhash_bin-pwenc.obj: ldap/servers/slapd/tools/pwenc.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/tools/rsearch/rsearch_bin-nametable.o: ldap/servers/slapd/tools/rsearch/nametable.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/tools/rsearch/rsearch_bin-nametable.obj: ldap/servers/slapd/tools/rsearch/nametable.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/tools/rsearch/rsearch_bin-rsearch.o: ldap/servers/slapd/tools/rsearch/rsearch.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/tools/rsearch/rsearch_bin-rsearch.obj: ldap/servers/slapd/tools/rsearch/rsearch.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/tools/rsearch/rsearch_bin-sdattable.o: ldap/servers/slapd/tools/rsearch/sdattable.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/tools/rsearch/rsearch_bin-sdattable.obj: ldap/servers/slapd/tools/rsearch/sdattable.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - ldap/servers/slapd/tools/rsearch/rsearch_bin-searchthread.o: ldap/servers/slapd/tools/rsearch/searchthread.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - ldap/servers/slapd/tools/rsearch/rsearch_bin-searchthread.obj: ldap/servers/slapd/tools/rsearch/searchthread.c --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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` -+@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` - - .cpp.o: --@am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ -+@am__fastdepCXX_TRUE@ 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@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< -+@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< - - .cpp.obj: --@am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ -+@am__fastdepCXX_TRUE@ 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@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` -+@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - - .cpp.lo: --@am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ -+@am__fastdepCXX_TRUE@ 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@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< -+@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< - - lib/libaccess/libns_dshttpd_la-access_plhash.lo: lib/libaccess/access_plhash.cpp --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/libaccess/libns_dshttpd_la-acl.tab.lo: lib/libaccess/acl.tab.cpp --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/libaccess/libns_dshttpd_la-acl.yy.lo: lib/libaccess/acl.yy.cpp --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/libaccess/libns_dshttpd_la-aclcache.lo: lib/libaccess/aclcache.cpp --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/libaccess/libns_dshttpd_la-aclerror.lo: lib/libaccess/aclerror.cpp --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/libaccess/libns_dshttpd_la-acleval.lo: lib/libaccess/acleval.cpp --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/libaccess/libns_dshttpd_la-aclflush.lo: lib/libaccess/aclflush.cpp --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/libaccess/libns_dshttpd_la-aclspace.lo: lib/libaccess/aclspace.cpp --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/libaccess/libns_dshttpd_la-acltools.lo: lib/libaccess/acltools.cpp --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/libaccess/libns_dshttpd_la-aclutil.lo: lib/libaccess/aclutil.cpp --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/libaccess/libns_dshttpd_la-authdb.lo: lib/libaccess/authdb.cpp --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/libaccess/libns_dshttpd_la-lasdns.lo: lib/libaccess/lasdns.cpp --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/libaccess/libns_dshttpd_la-lasgroup.lo: lib/libaccess/lasgroup.cpp --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/libaccess/libns_dshttpd_la-lasip.lo: lib/libaccess/lasip.cpp --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/libaccess/libns_dshttpd_la-lastod.lo: lib/libaccess/lastod.cpp --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/libaccess/libns_dshttpd_la-lasuser.lo: lib/libaccess/lasuser.cpp --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/libaccess/libns_dshttpd_la-method.lo: lib/libaccess/method.cpp --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/libaccess/libns_dshttpd_la-nseframe.lo: lib/libaccess/nseframe.cpp --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/libaccess/libns_dshttpd_la-nsautherr.lo: lib/libaccess/nsautherr.cpp --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/libaccess/libns_dshttpd_la-oneeval.lo: lib/libaccess/oneeval.cpp --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/libaccess/libns_dshttpd_la-register.lo: lib/libaccess/register.cpp --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/libaccess/libns_dshttpd_la-symbols.lo: lib/libaccess/symbols.cpp --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/libaccess/libns_dshttpd_la-usi.lo: lib/libaccess/usi.cpp --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/libaccess/libns_dshttpd_la-usrcache.lo: lib/libaccess/usrcache.cpp --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/base/libns_dshttpd_la-crit.lo: lib/base/crit.cpp --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/base/libns_dshttpd_la-dns.lo: lib/base/dns.cpp --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/base/libns_dshttpd_la-dnsdmain.lo: lib/base/dnsdmain.cpp --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/base/libns_dshttpd_la-ereport.lo: lib/base/ereport.cpp --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/base/libns_dshttpd_la-file.lo: lib/base/file.cpp --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/base/libns_dshttpd_la-fsmutex.lo: lib/base/fsmutex.cpp --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/base/libns_dshttpd_la-net.lo: lib/base/net.cpp --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/base/libns_dshttpd_la-plist.lo: lib/base/plist.cpp --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/base/libns_dshttpd_la-pool.lo: lib/base/pool.cpp --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/base/libns_dshttpd_la-shexp.lo: lib/base/shexp.cpp --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/base/libns_dshttpd_la-system.lo: lib/base/system.cpp --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/base/libns_dshttpd_la-systhr.lo: lib/base/systhr.cpp --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - lib/base/libns_dshttpd_la-util.lo: lib/base/util.cpp --@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@ -+@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@ - @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --@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 -+@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 - - mostlyclean-libtool: - -rm -f *.lo -@@ -9824,15 +9653,26 @@ uninstall-serverincHEADERS: - files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(serverincdir)'; $(am__uninstall_files_from_dir) - --ID: $(am__tagged_files) -- $(am__define_uniq_tagged_files); mkid -fID $$unique --tags: tags-am --TAGS: tags -- --tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) -+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) - set x; \ - here=`pwd`; \ -- $(am__define_uniq_tagged_files); \ -+ 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; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ -@@ -9844,11 +9684,15 @@ tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - $$unique; \ - fi; \ - fi --ctags: ctags-am -- --CTAGS: ctags --ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) -- $(am__define_uniq_tagged_files); \ -+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; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique -@@ -9857,16 +9701,18 @@ 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 - --cscopelist-am: $(am__tagged_files) -- list='$(am__tagged_files)'; \ -+cscope.files: clean-cscope cscopelist -+ -+cscopelist: $(HEADERS) $(SOURCES) $(LISP) -+ list='$(SOURCES) $(HEADERS) $(LISP)'; \ - case "$(srcdir)" in \ - [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ - *) sdir=$(subdir)/$(srcdir) ;; \ -@@ -9884,6 +9730,19 @@ 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'`; \ -@@ -9974,9 +9833,9 @@ distcheck: dist - *.zip*) \ - unzip $(distdir).zip ;;\ - esac -- chmod -R a-w $(distdir) -- chmod u+w $(distdir) -- mkdir $(distdir)/_build $(distdir)/_inst -+ chmod -R a-w $(distdir); chmod u+w $(distdir) -+ mkdir $(distdir)/_build -+ mkdir $(distdir)/_inst - chmod a-w $(distdir) - test -d $(distdir)/_build || exit 0; \ - dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ -@@ -10268,20 +10127,20 @@ uninstall-man: uninstall-man1 uninstall-man8 - - .MAKE: all check install install-am install-strip - --.PHONY: CTAGS GTAGS TAGS all all-am am--refresh check check-am clean \ -+.PHONY: CTAGS GTAGS 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-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 \ -+ 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 \ - install-initSCRIPTS install-initconfigDATA install-man \ - install-man1 install-man8 install-mibDATA \ - install-nodist_propertyDATA install-pdf install-pdf-am \ -@@ -10295,7 +10154,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 tags-am uninstall uninstall-am uninstall-binPROGRAMS \ -+ tags 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 8136dd1..9055418 100644 ---- a/aclocal.m4 -+++ b/aclocal.m4 -@@ -1,6 +1,6 @@ --# generated automatically by aclocal 1.13.4 -*- Autoconf -*- -+# generated automatically by aclocal 1.12.2 -*- Autoconf -*- - --# Copyright (C) 1996-2013 Free Software Foundation, Inc. -+# Copyright (C) 1996-2012 Free Software Foundation, Inc. - - # This file is free software; the Free Software Foundation - # gives unlimited permission to copy and/or distribute it, -@@ -11,7 +11,6 @@ - # 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],, -@@ -220,22 +219,24 @@ m4_popdef([pkg_default]) - m4_popdef([pkg_description]) - ]) dnl PKG_NOARCH_INSTALLDIR - --# Copyright (C) 2002-2013 Free Software Foundation, Inc. -+# Copyright (C) 2002-2012 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.13' -+[am__api_version='1.12' - 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.13.4], [], -+m4_if([$1], [1.12.2], [], - [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl - ]) - -@@ -251,19 +252,21 @@ 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.13.4])dnl -+[AM_AUTOMAKE_VERSION([1.12.2])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-2013 Free Software Foundation, Inc. -+# Copyright (C) 2001-2012 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], -@@ -278,12 +281,14 @@ _AM_IF_OPTION([no-dependencies],, [_AM_DEPENDENCIES([CCAS])])dnl - - # AM_AUX_DIR_EXPAND -*- Autoconf -*- - --# Copyright (C) 2001-2013 Free Software Foundation, Inc. -+# Copyright (C) 2001-2012 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/../..'. -@@ -331,12 +336,14 @@ am_aux_dir=`cd $ac_aux_dir && pwd` - - # AM_CONDITIONAL -*- Autoconf -*- - --# Copyright (C) 1997-2013 Free Software Foundation, Inc. -+# Copyright (C) 1997-2012 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. -@@ -362,12 +369,13 @@ AC_CONFIG_COMMANDS_PRE( - Usually this means the macro was only invoked conditionally.]]) - fi])]) - --# Copyright (C) 1999-2013 Free Software Foundation, Inc. -+# Copyright (C) 1999-2012 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, -@@ -553,18 +561,19 @@ _AM_SUBST_NOTMAKE([am__nodep])dnl - - # Generate code to set up dependency tracking. -*- Autoconf -*- - --# Copyright (C) 1999-2013 Free Software Foundation, Inc. -+# Copyright (C) 1999-2012 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], - [{ -- # Older Autoconf quotes --file arguments for eval, but not when files -+ # Autoconf 2.62 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 -@@ -593,7 +602,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 -@@ -629,12 +638,14 @@ AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], - - # Do all the work for Automake. -*- Autoconf -*- - --# Copyright (C) 1996-2013 Free Software Foundation, Inc. -+# Copyright (C) 1996-2012 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. - -@@ -650,7 +661,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.65])dnl -+[AC_PREREQ([2.62])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 -@@ -680,7 +691,8 @@ 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.]) -+[$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]) - m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl - AC_SUBST([PACKAGE], [$1])dnl - AC_SUBST([VERSION], [$2])], -@@ -734,15 +746,18 @@ AC_PROVIDE_IFELSE([AC_PROG_OBJC], - [_AM_DEPENDENCIES([OBJC])], - [m4_define([AC_PROG_OBJC], - m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl --AC_PROVIDE_IFELSE([AC_PROG_OBJCXX], -+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], - [_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 - ]) --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. -+_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_CONFIG_COMMANDS_PRE(dnl - [m4_provide_if([_AM_COMPILER_EXEEXT], - [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl -@@ -776,12 +791,14 @@ 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-2013 Free Software Foundation, Inc. -+# Copyright (C) 2001-2012 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. -@@ -797,12 +814,14 @@ if test x"${install_sh}" != xset; then - fi - AC_SUBST([install_sh])]) - --# Copyright (C) 2003-2013 Free Software Foundation, Inc. -+# Copyright (C) 2003-2012 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], -@@ -819,12 +838,14 @@ AC_SUBST([am__leading_dot])]) - # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- - # From Jim Meyering - --# Copyright (C) 1996-2013 Free Software Foundation, Inc. -+# Copyright (C) 1996-2012 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. -@@ -852,14 +873,18 @@ 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-2013 Free Software Foundation, Inc. -+# Copyright (C) 2001-2012 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. -@@ -902,12 +927,14 @@ AC_MSG_RESULT([$_am_result]) - rm -f confinc confmf - ]) - --# Copyright (C) 1999-2013 Free Software Foundation, Inc. -+# Copyright (C) 1999-2012 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. -@@ -936,12 +963,14 @@ m4_define([AC_PROG_CC], - - # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- - --# Copyright (C) 1997-2013 Free Software Foundation, Inc. -+# Copyright (C) 1997-2012 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], -@@ -949,10 +978,11 @@ 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 is modern enough. --# If it is, set am_missing_run to use it, otherwise, to nothing. -+# 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. - AC_DEFUN([AM_MISSING_HAS_RUN], - [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl - AC_REQUIRE_AUX_FILE([missing])dnl -@@ -965,8 +995,8 @@ if test x"${MISSING+set}" != xset; then - esac - fi - # Use eval to expand $SHELL --if eval "$MISSING --is-lightweight"; then -- am_missing_run="$MISSING " -+if eval "$MISSING --run true"; then -+ am_missing_run="$MISSING --run " - else - am_missing_run= - AC_MSG_WARN(['missing' script is too old or missing]) -@@ -975,12 +1005,14 @@ fi - - # Helper functions for option handling. -*- Autoconf -*- - --# Copyright (C) 2001-2013 Free Software Foundation, Inc. -+# Copyright (C) 2001-2012 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], -@@ -1006,12 +1038,14 @@ AC_DEFUN([_AM_IF_OPTION], - - # Check to make sure that the build environment is sane. -*- Autoconf -*- - --# Copyright (C) 1996-2013 Free Software Foundation, Inc. -+# Copyright (C) 1996-2012 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], -@@ -1087,71 +1121,13 @@ AC_CONFIG_COMMANDS_PRE( - rm -f conftest.file - ]) - --# Copyright (C) 2009-2013 Free Software Foundation, Inc. -+# Copyright (C) 2001-2012 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_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. -+# serial 2 - - # AM_PROG_INSTALL_STRIP - # --------------------- -@@ -1175,12 +1151,14 @@ fi - INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" - AC_SUBST([INSTALL_STRIP_PROGRAM])]) - --# Copyright (C) 2006-2013 Free Software Foundation, Inc. -+# Copyright (C) 2006-2012 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. -@@ -1194,12 +1172,14 @@ AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) - - # Check how to create a tarball. -*- Autoconf -*- - --# Copyright (C) 2004-2013 Free Software Foundation, Inc. -+# Copyright (C) 2004-2012 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. -@@ -1213,114 +1193,76 @@ 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}']) -- --# We'll loop over all known methods to create a tar archive until one works. -+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. - _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 - --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 -+ # 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 - -- # 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 <conftest.tar]) -- AM_RUN_LOG([cat conftest.dir/file]) -- grep GrepMe conftest.dir/file >/dev/null 2>&1 && break -- fi -- done -+ # 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 <conftest.tar]) -+ grep GrepMe conftest.dir/file >/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 531136b..7b4a9a7 100755 ---- a/compile -+++ b/compile -@@ -1,9 +1,9 @@ - #! /bin/sh - # Wrapper for compilers which do not understand '-c -o'. - --scriptversion=2012-10-14.11; # UTC -+scriptversion=2012-03-05.13; # UTC - --# Copyright (C) 1999-2013 Free Software Foundation, Inc. -+# Copyright (C) 1999-2012 Free Software Foundation, Inc. - # Written by Tom Tromey <tromey@cygnus.com>. - # - # This program is free software; you can redistribute it and/or modify -@@ -112,11 +112,6 @@ 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 b79252d..c0adba9 100755 ---- a/config.guess -+++ b/config.guess -@@ -1,12 +1,14 @@ - #! /bin/sh - # Attempt to guess a canonical system name. --# Copyright 1992-2013 Free Software Foundation, Inc. -+# 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. - --timestamp='2013-06-10' -+timestamp='2012-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 3 of the License, or -+# the Free Software Foundation; either version 2 of the License, or - # (at your option) any later version. - # - # This program is distributed in the hope that it will be useful, but -@@ -20,17 +22,19 @@ timestamp='2013-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. This Exception is an additional permission under section 7 --# of the GNU General Public License, version 3 ("GPLv3"). -+# 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 <config-patches@gnu.org> and include a ChangeLog -+# entry. - # --# Originally written by Per Bothner. -+# 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. - # - # 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,.*/,,'` - -@@ -50,7 +54,9 @@ version="\ - GNU config.guess ($timestamp) - - Originally written by Per Bothner. --Copyright 1992-2013 Free Software Foundation, Inc. -+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. - - This is free software; see the source for copying conditions. There is NO - warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." -@@ -132,27 +138,6 @@ 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 <features.h> -- #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 -@@ -215,10 +200,6 @@ 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} -@@ -321,7 +302,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:*:*) -@@ -820,9 +801,6 @@ EOF - i*:CYGWIN*:*) - echo ${UNAME_MACHINE}-pc-cygwin - exit ;; -- *:MINGW64*:*) -- echo ${UNAME_MACHINE}-pc-mingw64 -- exit ;; - *:MINGW*:*) - echo ${UNAME_MACHINE}-pc-mingw32 - exit ;; -@@ -874,21 +852,21 @@ EOF - exit ;; - *:GNU:*:*) - # the GNU system -- echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-${LIBC}`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` -+ echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`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/[-(].*//'`-${LIBC} -+ echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu - exit ;; - i*86:Minix:*:*) - echo ${UNAME_MACHINE}-pc-minix - exit ;; - aarch64:Linux:*:*) -- echo ${UNAME_MACHINE}-unknown-linux-${LIBC} -+ echo ${UNAME_MACHINE}-unknown-linux-gnu - exit ;; - aarch64_be:Linux:*:*) - UNAME_MACHINE=aarch64_be -- echo ${UNAME_MACHINE}-unknown-linux-${LIBC} -+ echo ${UNAME_MACHINE}-unknown-linux-gnu - exit ;; - alpha:Linux:*:*) - case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in -@@ -901,54 +879,59 @@ EOF - EV68*) UNAME_MACHINE=alphaev68 ;; - esac - objdump --private-headers /bin/sh | grep -q ld.so.1 -- if test "$?" = 0 ; then LIBC="gnulibc1" ; fi -- echo ${UNAME_MACHINE}-unknown-linux-${LIBC} -- exit ;; -- arc:Linux:*:* | arceb:Linux:*:*) -- echo ${UNAME_MACHINE}-unknown-linux-${LIBC} -+ if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi -+ echo ${UNAME_MACHINE}-unknown-linux-gnu${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-${LIBC} -+ echo ${UNAME_MACHINE}-unknown-linux-gnu - else - if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ - | grep -q __ARM_PCS_VFP - then -- echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabi -+ echo ${UNAME_MACHINE}-unknown-linux-gnueabi - else -- echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabihf -+ echo ${UNAME_MACHINE}-unknown-linux-gnueabihf - fi - fi - exit ;; - avr32*:Linux:*:*) -- echo ${UNAME_MACHINE}-unknown-linux-${LIBC} -+ echo ${UNAME_MACHINE}-unknown-linux-gnu - exit ;; - cris:Linux:*:*) -- echo ${UNAME_MACHINE}-axis-linux-${LIBC} -+ echo ${UNAME_MACHINE}-axis-linux-gnu - exit ;; - crisv32:Linux:*:*) -- echo ${UNAME_MACHINE}-axis-linux-${LIBC} -+ echo ${UNAME_MACHINE}-axis-linux-gnu - exit ;; - frv:Linux:*:*) -- echo ${UNAME_MACHINE}-unknown-linux-${LIBC} -+ echo ${UNAME_MACHINE}-unknown-linux-gnu - exit ;; - hexagon:Linux:*:*) -- echo ${UNAME_MACHINE}-unknown-linux-${LIBC} -+ echo ${UNAME_MACHINE}-unknown-linux-gnu - exit ;; - i*86:Linux:*:*) -- echo ${UNAME_MACHINE}-pc-linux-${LIBC} -+ 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}" - exit ;; - ia64:Linux:*:*) -- echo ${UNAME_MACHINE}-unknown-linux-${LIBC} -+ echo ${UNAME_MACHINE}-unknown-linux-gnu - exit ;; - m32r*:Linux:*:*) -- echo ${UNAME_MACHINE}-unknown-linux-${LIBC} -+ echo ${UNAME_MACHINE}-unknown-linux-gnu - exit ;; - m68*:Linux:*:*) -- echo ${UNAME_MACHINE}-unknown-linux-${LIBC} -+ echo ${UNAME_MACHINE}-unknown-linux-gnu - exit ;; - mips:Linux:*:* | mips64:Linux:*:*) - eval $set_cc_for_build -@@ -967,63 +950,54 @@ EOF - #endif - EOF - eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` -- test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; } -+ test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } - ;; -- or1k:Linux:*:*) -- echo ${UNAME_MACHINE}-unknown-linux-${LIBC} -- exit ;; - or32:Linux:*:*) -- echo ${UNAME_MACHINE}-unknown-linux-${LIBC} -+ echo ${UNAME_MACHINE}-unknown-linux-gnu - exit ;; - padre:Linux:*:*) -- echo sparc-unknown-linux-${LIBC} -+ echo sparc-unknown-linux-gnu - exit ;; - parisc64:Linux:*:* | hppa64:Linux:*:*) -- echo hppa64-unknown-linux-${LIBC} -+ echo hppa64-unknown-linux-gnu - 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-${LIBC} ;; -- PA8*) echo hppa2.0-unknown-linux-${LIBC} ;; -- *) echo hppa-unknown-linux-${LIBC} ;; -+ PA7*) echo hppa1.1-unknown-linux-gnu ;; -+ PA8*) echo hppa2.0-unknown-linux-gnu ;; -+ *) echo hppa-unknown-linux-gnu ;; - esac - exit ;; - ppc64:Linux:*:*) -- echo powerpc64-unknown-linux-${LIBC} -+ echo powerpc64-unknown-linux-gnu - exit ;; - ppc:Linux:*:*) -- echo powerpc-unknown-linux-${LIBC} -- exit ;; -- ppc64le:Linux:*:*) -- echo powerpc64le-unknown-linux-${LIBC} -- exit ;; -- ppcle:Linux:*:*) -- echo powerpcle-unknown-linux-${LIBC} -+ echo powerpc-unknown-linux-gnu - exit ;; - s390:Linux:*:* | s390x:Linux:*:*) -- echo ${UNAME_MACHINE}-ibm-linux-${LIBC} -+ echo ${UNAME_MACHINE}-ibm-linux - exit ;; - sh64*:Linux:*:*) -- echo ${UNAME_MACHINE}-unknown-linux-${LIBC} -+ echo ${UNAME_MACHINE}-unknown-linux-gnu - exit ;; - sh*:Linux:*:*) -- echo ${UNAME_MACHINE}-unknown-linux-${LIBC} -+ echo ${UNAME_MACHINE}-unknown-linux-gnu - exit ;; - sparc:Linux:*:* | sparc64:Linux:*:*) -- echo ${UNAME_MACHINE}-unknown-linux-${LIBC} -+ echo ${UNAME_MACHINE}-unknown-linux-gnu - exit ;; - tile*:Linux:*:*) -- echo ${UNAME_MACHINE}-unknown-linux-${LIBC} -+ echo ${UNAME_MACHINE}-unknown-linux-gnu - exit ;; - vax:Linux:*:*) -- echo ${UNAME_MACHINE}-dec-linux-${LIBC} -+ echo ${UNAME_MACHINE}-dec-linux-gnu - exit ;; - x86_64:Linux:*:*) -- echo ${UNAME_MACHINE}-unknown-linux-${LIBC} -+ echo ${UNAME_MACHINE}-unknown-linux-gnu - exit ;; - xtensa*:Linux:*:*) -- echo ${UNAME_MACHINE}-unknown-linux-${LIBC} -+ echo ${UNAME_MACHINE}-unknown-linux-gnu - exit ;; - i*86:DYNIX/ptx:4*:*) - # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. -@@ -1227,9 +1201,6 @@ 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 ;; -@@ -1256,21 +1227,19 @@ EOF - exit ;; - *:Darwin:*:*) - UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown -- 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 -+ 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 - echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} - exit ;; - *:procnto*:*:* | *:QNX:[0123456789]*:*) -@@ -1361,6 +1330,9 @@ 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 <<EOF - #ifdef _SEQUENT_ -diff --git a/config.sub b/config.sub -index c765b34..6205f84 100755 ---- a/config.sub -+++ b/config.sub -@@ -1,18 +1,24 @@ - #! /bin/sh - # Configuration validation subroutine script. --# Copyright 1992-2013 Free Software Foundation, Inc. -+# 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. - --timestamp='2013-04-24' -+timestamp='2012-04-18' - --# 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 3 of the License, or -+# This file is (in principle) common to ALL GNU software. -+# The presence of a machine in this file suggests that SOME GNU software -+# can handle that machine. It does not imply ALL GNU software can. -+# -+# 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 - # (at your option) any later version. - # --# This program is distributed in the hope that it will be useful, but --# WITHOUT ANY WARRANTY; without even the implied warranty of --# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU --# General Public License for more details. -+# This program is distributed in the hope that it will be useful, -+# but WITHOUT ANY WARRANTY; without even the implied warranty of -+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -+# GNU General Public License for more details. - # - # You should have received a copy of the GNU General Public License - # along with this program; if not, see <http://www.gnu.org/licenses/>. -@@ -20,12 +26,11 @@ timestamp='2013-04-24' - # 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. This Exception is an additional permission under section 7 --# of the GNU General Public License, version 3 ("GPLv3"). -+# the same distribution terms that you use for the rest of that program. - - --# Please send patches with a ChangeLog entry to config-patches@gnu.org. -+# Please send patches to <config-patches@gnu.org>. Submit a context -+# diff and a properly formatted GNU ChangeLog entry. - # - # Configuration subroutine to validate and canonicalize a configuration type. - # Supply the specified configuration type as an argument. -@@ -68,7 +73,9 @@ Report bugs and patches to <config-patches@gnu.org>." - version="\ - GNU config.sub ($timestamp) - --Copyright 1992-2013 Free Software Foundation, Inc. -+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. - - This is free software; see the source for copying conditions. There is NO - warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." -@@ -116,7 +123,7 @@ esac - maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` - case $maybe_os in - nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \ -- linux-musl* | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \ -+ linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \ - knetbsd*-gnu* | netbsd*-gnu* | \ - kopensolaris*-gnu* | \ - storm-chaos* | os2-emx* | rtmk-nova*) -@@ -149,7 +156,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 - ;; -@@ -252,10 +259,8 @@ 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 | arceb \ -- | arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] \ -- | avr | avr32 \ -- | be32 | be64 \ -+ | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \ -+ | be32 | be64 \ - | bfin \ - | c4x | clipper \ - | d10v | d30v | dlx | dsp16xx \ -@@ -268,7 +273,7 @@ case $basic_machine in - | le32 | le64 \ - | lm32 \ - | m32c | m32r | m32rle | m68000 | m68k | m88k \ -- | maxq | mb | microblaze | microblazeel | mcore | mep | metag \ -+ | maxq | mb | microblaze | mcore | mep | metag \ - | mips | mipsbe | mipseb | mipsel | mipsle \ - | mips16 \ - | mips64 | mips64el \ -@@ -286,17 +291,16 @@ case $basic_machine in - | mipsisa64r2 | mipsisa64r2el \ - | mipsisa64sb1 | mipsisa64sb1el \ - | mipsisa64sr71k | mipsisa64sr71kel \ -- | mipsr5900 | mipsr5900el \ - | mipstx39 | mipstx39el \ - | mn10200 | mn10300 \ - | moxie \ - | mt \ - | msp430 \ - | nds32 | nds32le | nds32be \ -- | nios | nios2 | nios2eb | nios2el \ -+ | nios | nios2 \ - | ns16k | ns32k \ - | open8 \ -- | or1k | or32 \ -+ | or32 \ - | pdp10 | pdp11 | pj | pjl \ - | powerpc | powerpc64 | powerpc64le | powerpcle \ - | pyramid \ -@@ -366,7 +370,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-* | arceb-* \ -+ | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ - | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ - | avr-* | avr32-* \ - | be32-* | be64-* \ -@@ -385,8 +389,7 @@ case $basic_machine in - | lm32-* \ - | m32c-* | m32r-* | m32rle-* \ - | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ -- | m88110-* | m88k-* | maxq-* | mcore-* | metag-* \ -- | microblaze-* | microblazeel-* \ -+ | m88110-* | m88k-* | maxq-* | mcore-* | metag-* | microblaze-* \ - | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ - | mips16-* \ - | mips64-* | mips64el-* \ -@@ -404,13 +407,12 @@ case $basic_machine in - | mipsisa64r2-* | mipsisa64r2el-* \ - | mipsisa64sb1-* | mipsisa64sb1el-* \ - | mipsisa64sr71k-* | mipsisa64sr71kel-* \ -- | mipsr5900-* | mipsr5900el-* \ - | mipstx39-* | mipstx39el-* \ - | mmix-* \ - | mt-* \ - | msp430-* \ - | nds32-* | nds32le-* | nds32be-* \ -- | nios-* | nios2-* | nios2eb-* | nios2el-* \ -+ | nios-* | nios2-* \ - | none-* | np1-* | ns16k-* | ns32k-* \ - | open8-* \ - | orion-* \ -@@ -786,13 +788,9 @@ 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 -@@ -1006,7 +1004,7 @@ case $basic_machine in - ;; - ppc64) basic_machine=powerpc64-unknown - ;; -- ppc64-* | ppc64p7-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` -+ ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - ppc64le | powerpc64little | ppc64-le | powerpc64-little) - basic_machine=powerpc64le-unknown -@@ -1021,11 +1019,7 @@ case $basic_machine in - basic_machine=i586-unknown - os=-pw32 - ;; -- rdos | rdos64) -- basic_machine=x86_64-pc -- os=-rdos -- ;; -- rdos32) -+ rdos) - basic_machine=i386-pc - os=-rdos - ;; -@@ -1352,21 +1346,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* | -plan9* \ -+ | -sym* | -kopensolaris* \ - | -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* \ -- | -bitrig* | -openbsd* | -solidbsd* \ -+ | -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* | -mingw64* | -linux-gnu* | -linux-android* \ -- | -linux-newlib* | -linux-musl* | -linux-uclibc* \ -+ | -mingw32* | -linux-gnu* | -linux-android* \ -+ | -linux-newlib* | -linux-uclibc* \ - | -uxpv* | -beos* | -mpeix* | -udk* \ - | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ - | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ -@@ -1498,6 +1492,9 @@ case $os in - -aros*) - os=-aros - ;; -+ -kaos*) -+ os=-kaos -+ ;; - -zvmoe) - os=-zvmoe - ;; -@@ -1589,9 +1586,6 @@ case $basic_machine in - mips*-*) - os=-elf - ;; -- or1k-*) -- os=-elf -- ;; - or32-*) - os=-coff - ;; -diff --git a/configure b/configure -index 064e319..22cc78f 100755 ---- a/configure -+++ b/configure -@@ -822,10 +822,6 @@ MAINT - MAINTAINER_MODE_FALSE - MAINTAINER_MODE_TRUE - CONSOLE_VERSION --AM_BACKSLASH --AM_DEFAULT_VERBOSITY --AM_DEFAULT_V --AM_V - am__untar - am__tar - AMTAR -@@ -890,7 +886,6 @@ SHELL' - ac_subst_files='' - ac_user_opts=' - enable_option_checking --enable_silent_rules - enable_maintainer_mode - enable_dependency_tracking - enable_static -@@ -1590,8 +1585,6 @@ 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 -@@ -2765,7 +2758,7 @@ cat >>confdefs.h <<_ACEOF - #define DS_PACKAGE_STRING "$PACKAGE_STRING" - _ACEOF - --am__api_version='1.13' -+am__api_version='1.12' - - ac_aux_dir= - for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do -@@ -2978,8 +2971,8 @@ if test x"${MISSING+set}" != xset; then - esac - fi - # Use eval to expand $SHELL --if eval "$MISSING --is-lightweight"; then -- am_missing_run="$MISSING " -+if eval "$MISSING --run true"; then -+ am_missing_run="$MISSING --run " - else - am_missing_run= - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: 'missing' script is too old or missing" >&5 -@@ -3219,45 +3212,6 @@ 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." -@@ -3311,17 +3265,12 @@ 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 -@@ -23074,7 +23023,7 @@ $as_echo "$as_me: executing $ac_file commands" >&6;} - - case $ac_file$ac_mode in - "depfiles":C) test x"$AMDEP_TRUE" != x"" || { -- # Older Autoconf quotes --file arguments for eval, but not when files -+ # Autoconf 2.62 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 -@@ -23125,7 +23074,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/depcomp b/depcomp -index 4ebd5b3..debb6ff 100755 ---- a/depcomp -+++ b/depcomp -@@ -1,9 +1,9 @@ - #! /bin/sh - # depcomp - compile a program generating dependencies as side-effects - --scriptversion=2013-05-30.07; # UTC -+scriptversion=2012-03-27.16; # UTC - --# Copyright (C) 1999-2013 Free Software Foundation, Inc. -+# Copyright (C) 1999-2012 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=2013-05-30.07; # 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,65 +56,11 @@ 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 -@@ -128,9 +74,6 @@ 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 -@@ -142,32 +85,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 information. -- gccflag=-qmakedep=gcc,-MF -- depmode=gcc -+ # IBM C/C++ Compilers xlc/xlC can output gcc-like dependency informations. -+ gccflag=-qmakedep=gcc,-MF -+ depmode=gcc - fi - - case "$depmode" in -@@ -190,7 +133,8 @@ gcc3) - done - "$@" - stat=$? -- if test $stat -ne 0; then -+ if test $stat -eq 0; then : -+ else - rm -f "$tmpdepfile" - exit $stat - fi -@@ -198,17 +142,13 @@ 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). Also, it might not be --## supported by the other compilers which use the 'gcc' depmode. -+## -MM, not -M (despite what the docs say). - ## - Using -M directly means running the compiler twice (even worse - ## than renaming). - if test -z "$gccflag"; then -@@ -216,14 +156,15 @@ gcc) - fi - "$@" -Wp,"$gccflag$tmpdepfile" - stat=$? -- if test $stat -ne 0; then -+ if test $stat -eq 0; then : -+ else - rm -f "$tmpdepfile" - exit $stat - fi - rm -f "$depfile" - echo "$object : \\" > "$depfile" -- # The second -e expression handles DOS-style file names with drive -- # letters. -+ alpha=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz -+## 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. -@@ -232,15 +173,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. -- tr ' ' "$nl" < "$tmpdepfile" \ -- | sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \ -- | sed -e 's/$/ :/' >> "$depfile" -+ sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \ -+ | sed -e 's/$/ :/' >> "$depfile" - rm -f "$tmpdepfile" - ;; - -@@ -258,7 +199,8 @@ sgi) - "$@" -MDupdate "$tmpdepfile" - fi - stat=$? -- if test $stat -ne 0; then -+ if test $stat -eq 0; then : -+ else - rm -f "$tmpdepfile" - exit $stat - fi -@@ -266,6 +208,7 @@ 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 -@@ -273,15 +216,19 @@ 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 -- make_dummy_depfile -+ # 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" - fi - rm -f "$tmpdepfile" - ;; -@@ -299,8 +246,9 @@ 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. -- set_dir_from "$object" -- set_base_from "$object" -+ 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 - tmpdepfile1=$dir$base.u - tmpdepfile2=$base.u -@@ -313,7 +261,9 @@ aix) - "$@" -M - fi - stat=$? -- if test $stat -ne 0; then -+ -+ if test $stat -eq 0; then : -+ else - rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" - exit $stat - fi -@@ -322,113 +272,65 @@ aix) - do - test -f "$tmpdepfile" && break - done -- 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 -+ 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" - 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" - ;; - --## 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 -+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 - # 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 ... \ - # ... -- 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 -+ # 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 - 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 "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" -+ # '$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" - rm -f "$tmpdepfile" - ;; - -@@ -439,8 +341,9 @@ 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. -- set_dir_from "$object" -- set_base_from "$object" -+ 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 - tmpdepfile1=$dir$base.d - tmpdepfile2=$dir.libs/$base.d -@@ -451,7 +354,8 @@ hp2) - "$@" +Maked - fi - stat=$? -- if test $stat -ne 0; then -+ if test $stat -eq 0; then : -+ else - rm -f "$tmpdepfile1" "$tmpdepfile2" - exit $stat - fi -@@ -461,61 +365,76 @@ hp2) - test -f "$tmpdepfile" && break - done - if test -f "$tmpdepfile"; then -- sed -e "s,^.*\.[$lower]*:,$object:," "$tmpdepfile" > "$depfile" -+ sed -e "s,^.*\.[a-z]*:,$object:," "$tmpdepfile" > "$depfile" - # Add 'dependent.h:' lines. - sed -ne '2,${ -- s/^ *// -- s/ \\*$// -- s/$/:/ -- p -- }' "$tmpdepfile" >> "$depfile" -+ s/^ *// -+ s/ \\*$// -+ s/$/:/ -+ p -+ }' "$tmpdepfile" >> "$depfile" - else -- make_dummy_depfile -+ echo "#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. -- 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 -- ;; -+ # 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" -+ ;; - - msvc7) - if test "$libtool" = yes; then -@@ -526,7 +445,8 @@ msvc7) - "$@" $showIncludes > "$tmpdepfile" - stat=$? - grep -v '^Note: including file: ' "$tmpdepfile" -- if test $stat -ne 0; then -+ if test "$stat" = 0; then : -+ else - rm -f "$tmpdepfile" - exit $stat - fi -@@ -552,7 +472,6 @@ $ { - G - p - }' >> "$depfile" -- echo >> "$depfile" # make sure the fragment doesn't end with a backslash - rm -f "$tmpdepfile" - ;; - -@@ -604,14 +523,13 @@ 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" -- # 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" -+ 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" - rm -f "$tmpdepfile" - ;; - -@@ -664,12 +582,10 @@ 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" -- # 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" -+ 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" - rm -f "$tmpdepfile" "$tmpdepfile".bak - ;; - -@@ -705,10 +621,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" -@@ -740,15 +656,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/setup-ds.res.in b/ldap/admin/src/scripts/setup-ds.res.in -index ddda771..f8157af 100644 ---- a/ldap/admin/src/scripts/setup-ds.res.in -+++ b/ldap/admin/src/scripts/setup-ds.res.in -@@ -172,10 +172,12 @@ update_dialog_mode_prompt = Which update mode do you want to use? - update_admin_dialog = Please specify the authentication data for '%s'\n\n - update_admin_id_prompt = Full DN of administrative user - update_admin_pwd_prompt = Password for this user --error_renaming_schema = Could not rename schema file '%s' tp '%s'. Error: %s\n -+error_renaming_schema = Could not rename schema file '%s' to '%s'. Error: %s\n - error_reading_schema_file = Schema file '%s' does not exist or is not readable. Error: %s\n - error_reading_schema_dir = Schema directory '%s' does not exist or is not readable\n - error_writing_schema_file = Schema file '%s' could not be opened for writing. Error: %s\n -+error_reading_config_dir = Config directory '%s' does not exist or is not readable\n -+error_renaming_config = Could not rename config file '%s' to '%s'. Error: %s\n - error_online_update = Could not open a connection to the server at %s port %s as '%s'.\ - Please make sure the server is up and running before using online mode,\ - or use offline mode.\n\n -diff --git a/ldap/schema/slapd-collations.conf b/ldap/schema/slapd-collations.conf -index d5c7e2d..55fe893 100644 ---- a/ldap/schema/slapd-collations.conf -+++ b/ldap/schema/slapd-collations.conf -@@ -44,43 +44,43 @@ - - collation "" "" "" 1 3 2.16.840.1.113730.3.3.2.0.1 default - collation ar "" "" 1 3 2.16.840.1.113730.3.3.2.1.1 ar --collation be "" "" 1 3 2.16.840.1.113730.3.3.2.2.1 be --collation bg "" "" 1 3 2.16.840.1.113730.3.3.2.3.1 bg --collation ca "" "" 1 3 2.16.840.1.113730.3.3.2.4.1 ca --collation cs "" "" 1 3 2.16.840.1.113730.3.3.2.5.1 cs --collation da "" "" 1 3 2.16.840.1.113730.3.3.2.6.1 da --collation de "" "" 1 3 2.16.840.1.113730.3.3.2.7.1 de -+collation be "" "" 1 3 2.16.840.1.113730.3.3.2.2.1 be be-BY -+collation bg "" "" 1 3 2.16.840.1.113730.3.3.2.3.1 bg bg-BG -+collation ca "" "" 1 3 2.16.840.1.113730.3.3.2.4.1 ca ca-ES -+collation cs "" "" 1 3 2.16.840.1.113730.3.3.2.5.1 cs cs-CZ -+collation da "" "" 1 3 2.16.840.1.113730.3.3.2.6.1 da da-DK -+collation de "" "" 1 3 2.16.840.1.113730.3.3.2.7.1 de de-DE - collation de AT "" 1 3 2.16.840.1.113730.3.3.2.8.1 de-AT - collation de CH "" 1 3 2.16.840.1.113730.3.3.2.9.1 de-CH - collation el "" "" 1 3 2.16.840.1.113730.3.3.2.10.1 el --collation en "" "" 1 3 2.16.840.1.113730.3.3.2.11.1 en en-US -+collation en "" "" 1 3 2.16.840.1.113730.3.3.2.11.1 en - collation en CA "" 1 3 2.16.840.1.113730.3.3.2.12.1 en-CA - collation en GB "" 1 3 2.16.840.1.113730.3.3.2.13.1 en-GB - collation en IE "" 1 3 2.16.840.1.113730.3.3.2.14.1 en-IE - collation es "" "" 1 3 2.16.840.1.113730.3.3.2.15.1 es es-ES --collation et "" "" 1 3 2.16.840.1.113730.3.3.2.16.1 et --collation fi "" "" 1 3 2.16.840.1.113730.3.3.2.17.1 fi -+collation et "" "" 1 3 2.16.840.1.113730.3.3.2.16.1 et et-EE -+collation fi "" "" 1 3 2.16.840.1.113730.3.3.2.17.1 fi fi-FI - collation fr "" "" 1 3 2.16.840.1.113730.3.3.2.18.1 fr fr-FR - collation fr BE "" 1 3 2.16.840.1.113730.3.3.2.19.1 fr-BE - collation fr CA "" 1 3 2.16.840.1.113730.3.3.2.20.1 fr-CA - collation fr CH "" 1 3 2.16.840.1.113730.3.3.2.21.1 fr-CH --collation hr "" "" 1 3 2.16.840.1.113730.3.3.2.22.1 hr --collation hu "" "" 1 3 2.16.840.1.113730.3.3.2.23.1 hu --collation is "" "" 1 3 2.16.840.1.113730.3.3.2.24.1 is -+collation hr "" "" 1 3 2.16.840.1.113730.3.3.2.22.1 hr hr-HR -+collation hu "" "" 1 3 2.16.840.1.113730.3.3.2.23.1 hu hu-HU -+collation is "" "" 1 3 2.16.840.1.113730.3.3.2.24.1 is is-IS - collation it "" "" 1 3 2.16.840.1.113730.3.3.2.25.1 it - collation it CH "" 1 3 2.16.840.1.113730.3.3.2.26.1 it-CH - collation iw "" "" 1 3 2.16.840.1.113730.3.3.2.27.1 iw --collation ja "" "" 1 3 2.16.840.1.113730.3.3.2.28.1 ja --collation ko "" "" 1 3 2.16.840.1.113730.3.3.2.29.1 ko --collation lt "" "" 1 3 2.16.840.1.113730.3.3.2.30.1 lt --collation lv "" "" 1 3 2.16.840.1.113730.3.3.2.31.1 lv --collation mk "" "" 1 3 2.16.840.1.113730.3.3.2.32.1 mk -+collation ja "" "" 1 3 2.16.840.1.113730.3.3.2.28.1 ja ja-JP -+collation ko "" "" 1 3 2.16.840.1.113730.3.3.2.29.1 ko ko-KR -+collation lt "" "" 1 3 2.16.840.1.113730.3.3.2.30.1 lt lt-LT -+collation lv "" "" 1 3 2.16.840.1.113730.3.3.2.31.1 lv lv-LV -+collation mk "" "" 1 3 2.16.840.1.113730.3.3.2.32.1 mk mk-MK - collation nl "" "" 1 3 2.16.840.1.113730.3.3.2.33.1 nl - collation nl BE "" 1 3 2.16.840.1.113730.3.3.2.34.1 nl-BE - collation no "" "" 1 3 2.16.840.1.113730.3.3.2.35.1 no - collation no NO B 1 3 2.16.840.1.113730.3.3.2.36.1 no-NO-B - collation no NO NY 1 3 2.16.840.1.113730.3.3.2.37.1 no-NO-NY --collation pl "" "" 1 3 2.16.840.1.113730.3.3.2.38.1 pl -+collation pl "" "" 1 3 2.16.840.1.113730.3.3.2.38.1 pl pl-PL - collation ro "" "" 1 3 2.16.840.1.113730.3.3.2.39.1 ro - collation ru "" "" 1 3 2.16.840.1.113730.3.3.2.40.1 ru - collation sh "" "" 1 3 2.16.840.1.113730.3.3.2.41.1 sh -@@ -89,10 +89,204 @@ collation sl "" "" 1 3 2.16.840.1.113730.3.3.2.43.1 sl - collation sq "" "" 1 3 2.16.840.1.113730.3.3.2.44.1 sq - collation sr "" "" 1 3 2.16.840.1.113730.3.3.2.45.1 sr - collation sv "" "" 1 3 2.16.840.1.113730.3.3.2.46.1 sv --collation tr "" "" 1 3 2.16.840.1.113730.3.3.2.47.1 tr --collation uk "" "" 1 3 2.16.840.1.113730.3.3.2.48.1 uk -+collation tr "" "" 1 3 2.16.840.1.113730.3.3.2.47.1 tr tr-TR -+collation uk "" "" 1 3 2.16.840.1.113730.3.3.2.48.1 uk uk-UA - collation zh "" "" 1 3 2.16.840.1.113730.3.3.2.49.1 zh - collation zh TW "" 1 3 2.16.840.1.113730.3.3.2.50.1 zh-TW -+collation af "" "" 1 3 2.16.840.1.113730.3.3.2.51.1 af -+collation af NA "" 1 3 2.16.840.1.113730.3.3.2.52.1 af-NA -+collation af ZA "" 1 3 2.16.840.1.113730.3.3.2.53.1 af-ZA -+collation ar AE "" 1 3 2.16.840.1.113730.3.3.2.54.1 ar-AE -+collation ar BH "" 1 3 2.16.840.1.113730.3.3.2.55.1 ar-BH -+collation ar DZ "" 1 3 2.16.840.1.113730.3.3.2.56.1 ar-DZ -+collation ar EG "" 1 3 2.16.840.1.113730.3.3.2.57.1 ar-EG -+collation ar IQ "" 1 3 2.16.840.1.113730.3.3.2.58.1 ar-IQ -+collation ar JO "" 1 3 2.16.840.1.113730.3.3.2.59.1 ar-JO -+collation ar KW "" 1 3 2.16.840.1.113730.3.3.2.60.1 ar-KW -+collation ar LB "" 1 3 2.16.840.1.113730.3.3.2.61.1 ar-LB -+collation ar LY "" 1 3 2.16.840.1.113730.3.3.2.62.1 ar-LY -+collation ar MA "" 1 3 2.16.840.1.113730.3.3.2.63.1 ar-MA -+collation ar OM "" 1 3 2.16.840.1.113730.3.3.2.64.1 ar-OM -+collation ar QA "" 1 3 2.16.840.1.113730.3.3.2.65.1 ar-QA -+collation ar SA "" 1 3 2.16.840.1.113730.3.3.2.66.1 ar-SA -+collation ar SD "" 1 3 2.16.840.1.113730.3.3.2.67.1 ar-SD -+collation ar SY "" 1 3 2.16.840.1.113730.3.3.2.68.1 ar-SY -+collation ar TN "" 1 3 2.16.840.1.113730.3.3.2.69.1 ar-TN -+collation ar YE "" 1 3 2.16.840.1.113730.3.3.2.70.1 ar-YE -+collation as "" "" 1 3 2.16.840.1.113730.3.3.2.71.1 as -+collation as IN "" 1 3 2.16.840.1.113730.3.3.2.72.1 as-IN -+collation az "" "" 1 3 2.16.840.1.113730.3.3.2.73.1 az -+collation az Latn "" 1 3 2.16.840.1.113730.3.3.2.74.1 az-Latn -+collation az Latn_AZ "" 1 3 2.16.840.1.113730.3.3.2.75.1 az-Latn-AZ -+collation bn "" "" 1 3 2.16.840.1.113730.3.3.2.76.1 bn -+collation bn BD "" 1 3 2.16.840.1.113730.3.3.2.77.1 bn bn-BD -+collation bn IN "" 1 3 2.16.840.1.113730.3.3.2.78.1 bn bn-IN -+collation bs "" "" 1 3 2.16.840.1.113730.3.3.2.79.1 bs bs-BA -+collation chr "" "" 1 3 2.16.840.1.113730.3.3.2.80.1 chr -+collation chr US "" 1 3 2.16.840.1.113730.3.3.2.81.1 chr-US -+collation cy "" "" 1 3 2.16.840.1.113730.3.3.2.82.1 cy cy-GB -+collation de BE "" 1 3 2.16.840.1.113730.3.3.2.83.1 de-BE -+collation de LI "" 1 3 2.16.840.1.113730.3.3.2.84.1 de-LI -+collation de LU "" 1 3 2.16.840.1.113730.3.3.2.85.1 de-LU -+collation el CY "" 1 3 2.16.840.1.113730.3.3.2.86.1 el-CY -+collation el GR "" 1 3 2.16.840.1.113730.3.3.2.87.1 el-GR -+collation en AS "" 1 3 2.16.840.1.113730.3.3.2.88.1 en-AS -+collation en AU "" 1 3 2.16.840.1.113730.3.3.2.89.1 en-AU -+collation en BE "" 1 3 2.16.840.1.113730.3.3.2.90.1 en-BE -+collation en BW "" 1 3 2.16.840.1.113730.3.3.2.91.1 en-BW -+collation en BZ "" 1 3 2.16.840.1.113730.3.3.2.92.1 en-BZ -+collation en GU "" 1 3 2.16.840.1.113730.3.3.2.93.1 en-GU -+collation en HK "" 1 3 2.16.840.1.113730.3.3.2.94.1 en-HK -+collation en HK "" 1 3 2.16.840.1.113730.3.3.2.95.1 en-HK -+collation en IN "" 1 3 2.16.840.1.113730.3.3.2.96.1 en-IN -+collation en JM "" 1 3 2.16.840.1.113730.3.3.2.97.1 en-JM -+collation en MH "" 1 3 2.16.840.1.113730.3.3.2.98.1 en-MH -+collation en MP "" 1 3 2.16.840.1.113730.3.3.2.99.1 en-MP -+collation en MT "" 1 3 2.16.840.1.113730.3.3.2.100.1 en-MT -+collation en MU "" 1 3 2.16.840.1.113730.3.3.2.101.1 en-MU -+collation en NA "" 1 3 2.16.840.1.113730.3.3.2.102.1 en-NA -+collation en NZ "" 1 3 2.16.840.1.113730.3.3.2.103.1 en-NZ -+collation en PH "" 1 3 2.16.840.1.113730.3.3.2.104.1 en-PH -+collation en PK "" 1 3 2.16.840.1.113730.3.3.2.105.1 en-PK -+collation en SG "" 1 3 2.16.840.1.113730.3.3.2.106.1 en-SG -+collation en TT "" 1 3 2.16.840.1.113730.3.3.2.107.1 en-TT -+collation en UM "" 1 3 2.16.840.1.113730.3.3.2.108.1 en-UM -+collation en US "" 1 3 2.16.840.1.113730.3.3.2.109.1 en-US -+collation en US POSIX 1 3 2.16.840.1.113730.3.3.2.110.1 en-US-POSIX -+collation en VI "" 1 3 2.16.840.1.113730.3.3.2.111.1 en-VI -+collation en ZA "" 1 3 2.16.840.1.113730.3.3.2.112.1 en-ZA -+collation en ZW "" 1 3 2.16.840.1.113730.3.3.2.113.1 en-ZW -+collation es AR "" 1 3 2.16.840.1.113730.3.3.2.114.1 es-AR -+collation es BO "" 1 3 2.16.840.1.113730.3.3.2.115.1 es-BO -+collation es CL "" 1 3 2.16.840.1.113730.3.3.2.116.1 es-CL -+collation es CO "" 1 3 2.16.840.1.113730.3.3.2.117.1 es-CO -+collation es CR "" 1 3 2.16.840.1.113730.3.3.2.118.1 es-CR -+collation es DO "" 1 3 2.16.840.1.113730.3.3.2.119.1 es-DO -+collation es EC "" 1 3 2.16.840.1.113730.3.3.2.120.1 es-EC -+collation es ES "" 1 3 2.16.840.1.113730.3.3.2.121.1 es-ES -+collation es GQ "" 1 3 2.16.840.1.113730.3.3.2.122.1 es-GQ -+collation es GT "" 1 3 2.16.840.1.113730.3.3.2.123.1 es-GT -+collation es HN "" 1 3 2.16.840.1.113730.3.3.2.124.1 es-HN -+collation es MX "" 1 3 2.16.840.1.113730.3.3.2.125.1 es-MX -+collation es NI "" 1 3 2.16.840.1.113730.3.3.2.126.1 es-NI -+collation es PA "" 1 3 2.16.840.1.113730.3.3.2.127.1 es-PA -+collation es PE "" 1 3 2.16.840.1.113730.3.3.2.128.1 es-PE -+collation es PR "" 1 3 2.16.840.1.113730.3.3.2.129.1 es-PR -+collation es PY "" 1 3 2.16.840.1.113730.3.3.2.130.1 es-PY -+collation es SV "" 1 3 2.16.840.1.113730.3.3.2.131.1 es-SV -+collation es US "" 1 3 2.16.840.1.113730.3.3.2.132.1 es-US -+collation es UY "" 1 3 2.16.840.1.113730.3.3.2.133.1 es-UY -+collation es VE "" 1 3 2.16.840.1.113730.3.3.2.134.1 es-VE -+collation fa "" "" 1 3 2.16.840.1.113730.3.3.2.135.1 fa fa-IR -+collation fil "" "" 1 3 2.16.840.1.113730.3.3.2.136.1 fil fil-PH -+collation fo "" "" 1 3 2.16.840.1.113730.3.3.2.137.1 fo fo-FO -+collation fr BF "" 1 3 2.16.840.1.113730.3.3.2.138.1 fr fr-BF -+collation fr BI "" 1 3 2.16.840.1.113730.3.3.2.139.1 fr fr-BI -+collation fr BJ "" 1 3 2.16.840.1.113730.3.3.2.140.1 fr fr-BJ -+collation fr BL "" 1 3 2.16.840.1.113730.3.3.2.141.1 fr fr-BL -+collation fr CD "" 1 3 2.16.840.1.113730.3.3.2.142.1 fr fr-CD -+collation fr CF "" 1 3 2.16.840.1.113730.3.3.2.143.1 fr fr-CF -+collation fr CG "" 1 3 2.16.840.1.113730.3.3.2.144.1 fr fr-CG -+collation fr CI "" 1 3 2.16.840.1.113730.3.3.2.145.1 fr fr-CI -+collation fr CM "" 1 3 2.16.840.1.113730.3.3.2.146.1 fr fr-CM -+collation fr DJ "" 1 3 2.16.840.1.113730.3.3.2.147.1 fr fr-DJ -+collation fr GA "" 1 3 2.16.840.1.113730.3.3.2.148.1 fr fr-GA -+collation fr GN "" 1 3 2.16.840.1.113730.3.3.2.149.1 fr fr-GN -+collation fr GP "" 1 3 2.16.840.1.113730.3.3.2.150.1 fr fr-GP -+collation fr GQ "" 1 3 2.16.840.1.113730.3.3.2.151.1 fr fr-GQ -+collation fr KM "" 1 3 2.16.840.1.113730.3.3.2.152.1 fr fr-KM -+collation fr LU "" 1 3 2.16.840.1.113730.3.3.2.153.1 fr fr-LU -+collation fr MC "" 1 3 2.16.840.1.113730.3.3.2.154.1 fr fr-MC -+collation fr MF "" 1 3 2.16.840.1.113730.3.3.2.155.1 fr fr-MF -+collation fr MG "" 1 3 2.16.840.1.113730.3.3.2.156.1 fr fr-MG -+collation fr ML "" 1 3 2.16.840.1.113730.3.3.2.157.1 fr fr-ML -+collation fr MQ "" 1 3 2.16.840.1.113730.3.3.2.158.1 fr fr-MQ -+collation fr NE "" 1 3 2.16.840.1.113730.3.3.2.159.1 fr fr-NE -+collation fr RE "" 1 3 2.16.840.1.113730.3.3.2.160.1 fr fr-RE -+collation fr RW "" 1 3 2.16.840.1.113730.3.3.2.161.1 fr fr-RW -+collation fr SN "" 1 3 2.16.840.1.113730.3.3.2.162.1 fr fr-SN -+collation fr TD "" 1 3 2.16.840.1.113730.3.3.2.163.1 fr fr-TD -+collation fr TG "" 1 3 2.16.840.1.113730.3.3.2.164.1 fr fr-TG -+collation ga "" "" 1 3 2.16.840.1.113730.3.3.2.165.1 ga -+collation ga IE "" 1 3 2.16.840.1.113730.3.3.2.166.1 ga-IE -+collation ga IN "" 1 3 2.16.840.1.113730.3.3.2.167.1 ga-IN -+collation ha Latn "" 1 3 2.16.840.1.113730.3.3.2.168.1 ha-Latn -+collation ha Latn GH 1 3 2.16.840.1.113730.3.3.2.169.1 ha-Latn-GH -+collation ha Latn NE 1 3 2.16.840.1.113730.3.3.2.170.1 ha-Latn-NE -+collation ha Latn NG 1 3 2.16.840.1.113730.3.3.2.171.1 ha-Latn-NG -+collation he "" "" 1 3 2.16.840.1.113730.3.3.2.172.1 he he-IL -+collation hi "" "" 1 3 2.16.840.1.113730.3.3.2.173.1 hi hi-IN -+collation hy "" "" 1 3 2.16.840.1.113730.3.3.2.174.1 hy hy-AM -+collation id "" "" 1 3 2.16.840.1.113730.3.3.2.175.1 id -+collation id ID "" 1 3 2.16.840.1.113730.3.3.2.176.1 id-ID -+collation ig "" "" 1 3 2.16.840.1.113730.3.3.2.177.1 ig ig-NG -+collation it IT "" 1 3 2.16.840.1.113730.3.3.2.178.1 it-IT -+collation ka "" "" 1 3 2.16.840.1.113730.3.3.2.179.1 ka -+collation ka GE "" 1 3 2.16.840.1.113730.3.3.2.180.1 ka-GE -+collation kk "" "" 1 3 2.16.840.1.113730.3.3.2.181.1 kk kk-KZ -+collation kl "" "" 1 3 2.16.840.1.113730.3.3.2.182.1 kl kl-GL -+collation kn "" "" 1 3 2.16.840.1.113730.3.3.2.183.1 kn kn-IN -+collation kok "" "" 1 3 2.16.840.1.113730.3.3.2.184.1 kok kok-IN -+collation ml "" "" 1 3 2.16.840.1.113730.3.3.2.185.1 ml ml-IN -+collation ms "" "" 1 3 2.16.840.1.113730.3.3.2.186.1 ms -+collation ms BN "" 1 3 2.16.840.1.113730.3.3.2.187.1 ms-BN -+collation ms MY "" 1 3 2.16.840.1.113730.3.3.2.188.1 ms-MY -+collation mt "" "" 1 3 2.16.840.1.113730.3.3.2.189.1 mt mt-MT -+collation nl NL "" 1 3 2.16.840.1.113730.3.3.2.190.1 nl-NL -+collation nn "" "" 1 3 2.16.840.1.113730.3.3.2.191.1 nn nn-NO -+collation om "" "" 1 3 2.16.840.1.113730.3.3.2.192.1 om -+collation om ET "" 1 3 2.16.840.1.113730.3.3.2.193.1 om-ET -+collation om KE "" 1 3 2.16.840.1.113730.3.3.2.194.1 om-KE -+collation or "" "" 1 3 2.16.840.1.113730.3.3.2.195.1 or or-IN -+collation pa "" "" 1 3 2.16.840.1.113730.3.3.2.196.1 pa -+collation pa Arab "" 1 3 2.16.840.1.113730.3.3.2.197.1 pa-Arab -+collation pa Arab PK 1 3 2.16.840.1.113730.3.3.2.198.1 pa-Arab-PK -+collation pa Guru "" 1 3 2.16.840.1.113730.3.3.2.199.1 pa-Guru -+collation pa Guru IN 1 3 2.16.840.1.113730.3.3.2.200.1 pa-Guru-IN -+collation ps "" "" 1 3 2.16.840.1.113730.3.3.2.201.1 ps ps-AF -+collation pt "" "" 1 3 2.16.840.1.113730.3.3.2.202.1 pt -+collation pt BR "" 1 3 2.16.840.1.113730.3.3.2.203.1 pt-BR -+collation pt PT "" 1 3 2.16.840.1.113730.3.3.2.204.1 pt-PT -+collation ro MD "" 1 3 2.16.840.1.113730.3.3.2.205.1 ro-MD -+collation ro RO "" 1 3 2.16.840.1.113730.3.3.2.206.1 ro-RO -+collation ru MD "" 1 3 2.16.840.1.113730.3.3.2.207.1 ru-MD -+collation ru RU "" 1 3 2.16.840.1.113730.3.3.2.208.1 ru-RU -+collation ru UA "" 1 3 2.16.840.1.113730.3.3.2.209.1 ru-UA -+collation si "" "" 1 3 2.16.840.1.113730.3.3.2.210.1 si si-LK -+collation sk "" "" 1 3 2.16.840.1.113730.3.3.2.211.1 sk sk-SK -+collation sl "" "" 1 3 2.16.840.1.113730.3.3.2.212.1 sl sl-SI -+collation sq "" "" 1 3 2.16.840.1.113730.3.3.2.213.1 sq sq-AL -+collation sr Cyrl "" 1 3 2.16.840.1.113730.3.3.2.214.1 sr-Cyrl -+collation sr Cyrl BA 1 3 2.16.840.1.113730.3.3.2.215.1 sr-Cyrl-BA -+collation sr Cyrl ME 1 3 2.16.840.1.113730.3.3.2.216.1 sr-Cyrl-ME -+collation sr Cyrl RS 1 3 2.16.840.1.113730.3.3.2.217.1 sr-Cyrl-RS -+collation sr Latn "" 1 3 2.16.840.1.113730.3.3.2.218.1 sr-Latn -+collation sr Latn BA 1 3 2.16.840.1.113730.3.3.2.219.1 sr-Latn-BA -+collation sr Latn ME 1 3 2.16.840.1.113730.3.3.2.220.1 sr-Latn-ME -+collation sr Latn RS 1 3 2.16.840.1.113730.3.3.2.221.1 sr-Latn-RS -+collation sv FI "" 1 3 2.16.840.1.113730.3.3.2.222.1 sv-FI -+collation sv SE "" 1 3 2.16.840.1.113730.3.3.2.223.1 sv-SE -+collation sw "" "" 1 3 2.16.840.1.113730.3.3.2.224.1 sw -+collation sw KE "" 1 3 2.16.840.1.113730.3.3.2.225.1 sw-KE -+collation sw TZ "" 1 3 2.16.840.1.113730.3.3.2.226.1 sw-TZ -+collation ta "" "" 1 3 2.16.840.1.113730.3.3.2.227.1 ta -+collation ta IN "" 1 3 2.16.840.1.113730.3.3.2.228.1 ta-IN -+collation ta LK "" 1 3 2.16.840.1.113730.3.3.2.229.1 ta-LK -+collation te "" "" 1 3 2.16.840.1.113730.3.3.2.230.1 te te-IN -+collation th "" "" 1 3 2.16.840.1.113730.3.3.2.231.1 th th-TH -+collation ur "" "" 1 3 2.16.840.1.113730.3.3.2.232.1 ur -+collation ur IN "" 1 3 2.16.840.1.113730.3.3.2.233.1 ur-IN -+collation ur PK "" 1 3 2.16.840.1.113730.3.3.2.234.1 ur-PK -+collation vi "" "" 1 3 2.16.840.1.113730.3.3.2.235.1 vi vi-VN -+collation yo "" "" 1 3 2.16.840.1.113730.3.3.2.236.1 yo yo-NG -+collation zh Hans "" 1 3 2.16.840.1.113730.3.3.2.237.1 zh-Hans -+collation zh Hans CN 1 3 2.16.840.1.113730.3.3.2.238.1 zh-Hans-CN -+collation zh Hans SG 1 3 2.16.840.1.113730.3.3.2.239.1 zh-Hans-SG -+collation zh Hant HK 1 3 2.16.840.1.113730.3.3.2.240.1 zh-Hant-HK -+collation zh Hant MO 1 3 2.16.840.1.113730.3.3.2.241.1 zh-Hant-MO -+collation zh Hant TW 1 3 2.16.840.1.113730.3.3.2.242.1 zh-Hant-TW -+collation zu "" "" 1 3 2.16.840.1.113730.3.3.2.243.1 zu -+collation zu ZA "" 1 3 2.16.840.1.113730.3.3.2.244.1 zu-ZA - - collation "" "" "" 3 3 2.16.840.1.113730.3.3.2.0.3 - collation en "" "" 3 3 2.16.840.1.113730.3.3.2.11.3 -diff --git a/missing b/missing -index cdea514..9a55648 100755 ---- a/missing -+++ b/missing -@@ -1,10 +1,10 @@ - #! /bin/sh --# Common wrapper for a few potentially missing GNU programs. -+# Common stub for a few missing GNU programs while installing. - --scriptversion=2012-06-26.16; # UTC -+scriptversion=2012-01-06.18; # UTC - --# Copyright (C) 1996-2013 Free Software Foundation, Inc. --# Originally written by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996. -+# Copyright (C) 1996-2012 Free Software Foundation, Inc. -+# Originally by Fran,cois Pinard <pinard@iro.umontreal.ca>, 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,33 +29,61 @@ if test $# -eq 0; then - exit 1 - fi - --case $1 in -+run=: -+sed_output='s/.* --output[ =]\([^ ]*\).*/\1/p' -+sed_minuso='s/.* -o \([^ ]*\).*/\1/p' - -- --is-lightweight) -- # Used by our autoconf macros to check whether the available missing -- # script is modern enough. -- exit 0 -- ;; -+# 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 - -- --run) -- # Back-compat with the calling convention used by older automake. -- shift -- ;; -+msg="missing on your system" -+ -+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 -+ ;; - - -h|--h|--he|--hel|--help) - echo "\ - $0 [OPTION]... PROGRAM [ARGUMENT]... - --Run 'PROGRAM [ARGUMENT]...', returning a proper advice when this fails due --to PROGRAM being missing or too old. -+Handle 'PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an -+error status if there is no known handling for PROGRAM. - - 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 autoconf autoheader autom4te automake makeinfo -- bison yacc flex lex help2man -+ 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] - - Version suffixes to PROGRAM as well as the prefixes 'gnu-', 'gnu', and - 'g' are ignored when checking the name. -@@ -70,141 +98,228 @@ Send bug reports to <bug-automake@gnu.org>." - ;; - - -*) -- 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 - --# 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 -+# 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 -+ ;; - --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/>" -+ 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 - ;; -- 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 -+ -+ 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 -+ ;; -+ -+ *) -+ 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 -+ ;; -+esac -+ -+exit 0 - - # Local variables: - # eval: (add-hook 'write-file-hooks 'time-stamp) --- -1.7.1 - diff --git a/SOURCES/0032-Ticket-47942-DS-hangs-during-online-total-update.patch b/SOURCES/0032-Ticket-47942-DS-hangs-during-online-total-update.patch new file mode 100644 index 0000000..aa5cd5c --- /dev/null +++ b/SOURCES/0032-Ticket-47942-DS-hangs-during-online-total-update.patch @@ -0,0 +1,784 @@ +From 5b0283a5a5b12c9b2ccee049ddc611decaa07a09 Mon Sep 17 00:00:00 2001 +From: "Thierry bordaz (tbordaz)" <tbordaz@redhat.com> +Date: Mon, 15 Dec 2014 15:12:35 +0100 +Subject: [PATCH 32/53] Ticket 47942: DS hangs during online total update + +Bug Description: + During incremental or total update of a consumer the replica agreement thread may hang. + For total update: + The replica agreement thread that send the entries flowed the consumer that is not + able to process fast enough the entries. So the TCP connection get full and + the RA sender sleep on the connection to be able to write the next entries. + + Sleeping on the poll or write the RA.sender holds the connection lock. + + It prevents the replica agreement result thread to read the results from the + network. So the consumer is also halted because is can no longer send the results. + + For incrementatl update: + During incremental update, all updates are sent by the RA.sender. + If many updates need to be send, the supplier may overflow the consumer + that is very late. This flow of updates can fill the TCP connection + so that the RA.sender hang when writing the next update. + On the hang, it holds the connection lock preventing the RA.reader + to receive the acks. And so the consumer can also hang trying to send the + acks. + +Fix Description: + For total update there are two parts of the fix: + + To prevent the RA.sender to sleep too long on the poll, the fix (conn_is_available) + splits the RA.timeout into 1s period. + If unable to write for 1s, it releases the connection for a short period of time 100ms. + + To prevent the RA.sender to sleep on the write, the fix (check_flow_control_tot_init) + checks how late is the consumer and if it is too late, it pauses (releasing the connection + during that time). This second part of the fix is configurable and it may need to be + tune according to the observed failures. + + For incremental update: + The fix is to implement a flow control on the RA.sender. + After each sent update, if the window (update.sent - update.acked) cross the limit + The RA.sender pause during a configured delay. + When the RA.sender pause it does not hold the connection lock + + Tuning can be done with nsds5ReplicaFlowControlWindow (how late is the consumer in terms of + number of entries/updates acknowledged) and nsds5ReplicaFlowControlPause (how long the RA.sender will + pause if the consumer is too late) + + Logging: + For total update, the first time the flow control pauses, it logs a message (FATAL level). + If flow control happened, then at the end of the total update, it also logs the number + of flow control pauses (FATAL level). + + For incremental update, if flow control happened it logs the number of pause (REPL level). + +https://fedorahosted.org/389/ticket/47942 + +Reviewed by: Mark Reynolds, Rich Megginson, Andrey Ivanov, Noriko Hosoi (many many thanks to all of you !) + +Platforms tested: RHEL 7.0, Centos + +Flag Day: no + +Doc impact: no +--- + ldap/schema/01core389.ldif | 4 +- + ldap/servers/plugins/replication/repl5.h | 10 ++ + ldap/servers/plugins/replication/repl5_agmt.c | 160 ++++++++++++++++++++ + ldap/servers/plugins/replication/repl5_agmtlist.c | 26 ++++ + .../servers/plugins/replication/repl5_connection.c | 163 ++++++++++++++++++++- + .../plugins/replication/repl5_inc_protocol.c | 32 +++- + .../plugins/replication/repl5_prot_private.h | 2 + + .../plugins/replication/repl5_tot_protocol.c | 53 ++++++- + ldap/servers/plugins/replication/repl_globals.c | 2 + + 9 files changed, 446 insertions(+), 6 deletions(-) + +diff --git a/ldap/schema/01core389.ldif b/ldap/schema/01core389.ldif +index c7aec70..c59d762 100644 +--- a/ldap/schema/01core389.ldif ++++ b/ldap/schema/01core389.ldif +@@ -302,6 +302,8 @@ attributeTypes: ( 2.16.840.1.113730.3.1.2306 NAME 'nsslapd-return-default-opattr + attributeTypes: ( 2.16.840.1.113730.3.1.2307 NAME 'nsslapd-allow-hashed-passwords' DESC 'Netscape defined attribute type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'Netscape Directory Server' ) + attributeTypes: ( 2.16.840.1.113730.3.1.2308 NAME 'nstombstonecsn' DESC 'Netscape defined attribute type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'Netscape Directory Server' ) + attributeTypes: ( 2.16.840.1.113730.3.1.2309 NAME 'nsds5ReplicaPreciseTombstonePurging' DESC 'Netscape defined attribute type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'Netscape Directory Server' ) ++attributeTypes: ( 2.16.840.1.113730.3.1.2310 NAME 'nsds5ReplicaFlowControlWindow' DESC 'Netscape defined attribute type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'Netscape Directory Server' ) ++attributeTypes: ( 2.16.840.1.113730.3.1.2311 NAME 'nsds5ReplicaFlowControlPause' DESC 'Netscape defined attribute type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'Netscape Directory Server' ) + # + # objectclasses + # +@@ -313,7 +315,7 @@ objectClasses: ( 2.16.840.1.113730.3.2.110 NAME 'nsMappingTree' DESC 'Netscape d + objectClasses: ( 2.16.840.1.113730.3.2.104 NAME 'nsContainer' DESC 'Netscape defined objectclass' SUP top MUST ( CN ) X-ORIGIN 'Netscape Directory Server' ) + objectClasses: ( 2.16.840.1.113730.3.2.108 NAME 'nsDS5Replica' DESC 'Netscape defined objectclass' SUP top MUST ( nsDS5ReplicaRoot $ nsDS5ReplicaId ) MAY (cn $ nsds5ReplicaPreciseTombstonePurging $ nsds5ReplicaCleanRUV $ nsds5ReplicaAbortCleanRUV $ nsDS5ReplicaType $ nsDS5ReplicaBindDN $ nsState $ nsDS5ReplicaName $ nsDS5Flags $ nsDS5Task $ nsDS5ReplicaReferral $ nsDS5ReplicaAutoReferral $ nsds5ReplicaPurgeDelay $ nsds5ReplicaTombstonePurgeInterval $ nsds5ReplicaChangeCount $ nsds5ReplicaLegacyConsumer $ nsds5ReplicaProtocolTimeout $ nsds5ReplicaBackoffMin $ nsds5ReplicaBackoffMax ) X-ORIGIN 'Netscape Directory Server' ) + objectClasses: ( 2.16.840.1.113730.3.2.113 NAME 'nsTombstone' DESC 'Netscape defined objectclass' SUP top MAY ( nstombstonecsn $ nsParentUniqueId $ nscpEntryDN ) X-ORIGIN 'Netscape Directory Server' ) +-objectClasses: ( 2.16.840.1.113730.3.2.103 NAME 'nsDS5ReplicationAgreement' DESC 'Netscape defined objectclass' SUP top MUST ( cn ) MAY ( nsds5ReplicaCleanRUVNotified $ nsDS5ReplicaHost $ nsDS5ReplicaPort $ nsDS5ReplicaTransportInfo $ nsDS5ReplicaBindDN $ nsDS5ReplicaCredentials $ nsDS5ReplicaBindMethod $ nsDS5ReplicaRoot $ nsDS5ReplicatedAttributeList $ nsDS5ReplicatedAttributeListTotal $ nsDS5ReplicaUpdateSchedule $ nsds5BeginReplicaRefresh $ description $ nsds50ruv $ nsruvReplicaLastModified $ nsds5ReplicaTimeout $ nsds5replicaChangesSentSinceStartup $ nsds5replicaLastUpdateEnd $ nsds5replicaLastUpdateStart $ nsds5replicaLastUpdateStatus $ nsds5replicaUpdateInProgress $ nsds5replicaLastInitEnd $ nsds5ReplicaEnabled $ nsds5replicaLastInitStart $ nsds5replicaLastInitStatus $ nsds5debugreplicatimeout $ nsds5replicaBusyWaitTime $ nsds5ReplicaStripAttrs $ nsds5replicaSessionPauseTime $ nsds5ReplicaProtocolTimeout ) X-ORIGIN 'Netscape Directory Server' ) ++objectClasses: ( 2.16.840.1.113730.3.2.103 NAME 'nsDS5ReplicationAgreement' DESC 'Netscape defined objectclass' SUP top MUST ( cn ) MAY ( nsds5ReplicaCleanRUVNotified $ nsDS5ReplicaHost $ nsDS5ReplicaPort $ nsDS5ReplicaTransportInfo $ nsDS5ReplicaBindDN $ nsDS5ReplicaCredentials $ nsDS5ReplicaBindMethod $ nsDS5ReplicaRoot $ nsDS5ReplicatedAttributeList $ nsDS5ReplicatedAttributeListTotal $ nsDS5ReplicaUpdateSchedule $ nsds5BeginReplicaRefresh $ description $ nsds50ruv $ nsruvReplicaLastModified $ nsds5ReplicaTimeout $ nsds5replicaChangesSentSinceStartup $ nsds5replicaLastUpdateEnd $ nsds5replicaLastUpdateStart $ nsds5replicaLastUpdateStatus $ nsds5replicaUpdateInProgress $ nsds5replicaLastInitEnd $ nsds5ReplicaEnabled $ nsds5replicaLastInitStart $ nsds5replicaLastInitStatus $ nsds5debugreplicatimeout $ nsds5replicaBusyWaitTime $ nsds5ReplicaStripAttrs $ nsds5replicaSessionPauseTime $ nsds5ReplicaProtocolTimeout $ nsds5ReplicaFlowControlWindow $ nsds5ReplicaFlowControlPause ) X-ORIGIN 'Netscape Directory Server' ) + 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' ) +diff --git a/ldap/servers/plugins/replication/repl5.h b/ldap/servers/plugins/replication/repl5.h +index 86c77ce..e2b6209 100644 +--- a/ldap/servers/plugins/replication/repl5.h ++++ b/ldap/servers/plugins/replication/repl5.h +@@ -170,6 +170,8 @@ extern const char *type_nsds5ReplicaBusyWaitTime; + extern const char *type_nsds5ReplicaSessionPauseTime; + extern const char *type_nsds5ReplicaEnabled; + extern const char *type_nsds5ReplicaStripAttrs; ++extern const char *type_nsds5ReplicaFlowControlWindow; ++extern const char *type_nsds5ReplicaFlowControlPause; + extern const char *type_replicaProtocolTimeout; + extern const char *type_replicaBackoffMin; + extern const char *type_replicaBackoffMax; +@@ -332,6 +334,8 @@ int agmt_get_auto_initialize(const Repl_Agmt *ra); + long agmt_get_timeout(const Repl_Agmt *ra); + long agmt_get_busywaittime(const Repl_Agmt *ra); + long agmt_get_pausetime(const Repl_Agmt *ra); ++long agmt_get_flowcontrolwindow(const Repl_Agmt *ra); ++long agmt_get_flowcontrolpause(const Repl_Agmt *ra); + int agmt_start(Repl_Agmt *ra); + int windows_agmt_start(Repl_Agmt *ra); + int agmt_stop(Repl_Agmt *ra); +@@ -352,6 +356,8 @@ int agmt_replarea_matches(const Repl_Agmt *ra, const Slapi_DN *name); + int agmt_schedule_in_window_now(const Repl_Agmt *ra); + int agmt_set_schedule_from_entry( Repl_Agmt *ra, const Slapi_Entry *e ); + int agmt_set_timeout_from_entry( Repl_Agmt *ra, const Slapi_Entry *e ); ++int agmt_set_flowcontrolwindow_from_entry(Repl_Agmt *ra, const Slapi_Entry *e); ++int agmt_set_flowcontrolpause_from_entry(Repl_Agmt *ra, const Slapi_Entry *e); + int agmt_set_busywaittime_from_entry( Repl_Agmt *ra, const Slapi_Entry *e ); + int agmt_set_pausetime_from_entry( Repl_Agmt *ra, const Slapi_Entry *e ); + int agmt_set_credentials_from_entry( Repl_Agmt *ra, const Slapi_Entry *e ); +@@ -490,6 +496,10 @@ void conn_lock(Repl_Connection *conn); + void conn_unlock(Repl_Connection *conn); + void conn_delete_internal_ext(Repl_Connection *conn); + const char* conn_get_bindmethod(Repl_Connection *conn); ++void conn_set_tot_update_cb(Repl_Connection *conn, void *cb_data); ++void conn_set_tot_update_cb_nolock(Repl_Connection *conn, void *cb_data); ++void conn_get_tot_update_cb(Repl_Connection *conn, void **cb_data); ++void conn_get_tot_update_cb_nolock(Repl_Connection *conn, void **cb_data); + + /* In repl5_protocol.c */ + typedef struct repl_protocol Repl_Protocol; +diff --git a/ldap/servers/plugins/replication/repl5_agmt.c b/ldap/servers/plugins/replication/repl5_agmt.c +index 7c5c37c..91be757 100644 +--- a/ldap/servers/plugins/replication/repl5_agmt.c ++++ b/ldap/servers/plugins/replication/repl5_agmt.c +@@ -87,6 +87,8 @@ + #include "slapi-plugin.h" + + #define DEFAULT_TIMEOUT 600 /* (seconds) default outbound LDAP connection */ ++#define DEFAULT_FLOWCONTROL_WINDOW 1000 /* #entries sent without acknowledgment */ ++#define DEFAULT_FLOWCONTROL_PAUSE 2000 /* msec of pause when #entries sent witout acknowledgment */ + #define STATUS_LEN 1024 + + struct changecounter { +@@ -145,6 +147,12 @@ typedef struct repl5agmt { + int agreement_type; + Slapi_Counter *protocol_timeout; + char *maxcsn; /* agmt max csn */ ++ long flowControlWindow; /* This is the maximum number of entries ++ * sent without acknowledgment ++ */ ++ long flowControlPause; /* When nb of not acknowledged entries overpass totalUpdateWindow ++ * This is the duration (in msec) that the RA will pause before sending the next entry ++ */ + Slapi_RWLock *attr_lock; /* RW lock for all the stripped attrs */ + } repl5agmt; + +@@ -345,6 +353,28 @@ agmt_new_from_entry(Slapi_Entry *e) + } + } + ++ /* flow control update window. */ ++ ra->flowControlWindow = DEFAULT_FLOWCONTROL_WINDOW; ++ if (slapi_entry_attr_find(e, type_nsds5ReplicaFlowControlWindow, &sattr) == 0) ++ { ++ Slapi_Value *sval; ++ if (slapi_attr_first_value(sattr, &sval) == 0) ++ { ++ ra->flowControlWindow = slapi_value_get_long(sval); ++ } ++ } ++ ++ /* flow control update pause. */ ++ ra->flowControlPause = DEFAULT_FLOWCONTROL_PAUSE; ++ if (slapi_entry_attr_find(e, type_nsds5ReplicaFlowControlPause, &sattr) == 0) ++ { ++ Slapi_Value *sval; ++ if (slapi_attr_first_value(sattr, &sval) == 0) ++ { ++ ra->flowControlPause = slapi_value_get_long(sval); ++ } ++ } ++ + /* DN of entry at root of replicated area */ + tmpstr = slapi_entry_attr_get_charptr(e, type_nsds5ReplicaRoot); + if (NULL != tmpstr) +@@ -1014,6 +1044,26 @@ agmt_get_pausetime(const Repl_Agmt *ra) + return return_value; + } + ++long ++agmt_get_flowcontrolwindow(const Repl_Agmt *ra) ++{ ++ long return_value; ++ PR_ASSERT(NULL != ra); ++ PR_Lock(ra->lock); ++ return_value = ra->flowControlWindow; ++ PR_Unlock(ra->lock); ++ return return_value; ++} ++long ++agmt_get_flowcontrolpause(const Repl_Agmt *ra) ++{ ++ long return_value; ++ PR_ASSERT(NULL != ra); ++ PR_Lock(ra->lock); ++ return_value = ra->flowControlPause; ++ PR_Unlock(ra->lock); ++ return return_value; ++} + /* + * Warning - reference to the long name of the agreement is returned. + * The long name of an agreement is the DN of the agreement entry, +@@ -1775,6 +1825,90 @@ agmt_set_timeout_from_entry(Repl_Agmt *ra, const Slapi_Entry *e) + return return_value; + } + ++/* ++ * Set or reset the windows of entries sent without acknowledgment. ++ * The window is used during update to determine the number of ++ * entries will be send by the replica agreement without acknowledgment from the consumer ++ * ++ * Returns 0 if window set, or -1 if an error occurred. ++ */ ++int ++agmt_set_flowcontrolwindow_from_entry(Repl_Agmt *ra, const Slapi_Entry *e) ++{ ++ Slapi_Attr *sattr = NULL; ++ int return_value = -1; ++ ++ PR_ASSERT(NULL != ra); ++ PR_Lock(ra->lock); ++ if (ra->stop_in_progress) ++ { ++ PR_Unlock(ra->lock); ++ return return_value; ++ } ++ ++ slapi_entry_attr_find(e, type_nsds5ReplicaFlowControlWindow, &sattr); ++ if (NULL != sattr) ++ { ++ Slapi_Value *sval = NULL; ++ slapi_attr_first_value(sattr, &sval); ++ if (NULL != sval) ++ { ++ long tmpval = slapi_value_get_long(sval); ++ if (tmpval >= 0) { ++ ra->flowControlWindow = tmpval; ++ return_value = 0; /* success! */ ++ } ++ } ++ } ++ PR_Unlock(ra->lock); ++ if (return_value == 0) ++ { ++ prot_notify_agmt_changed(ra->protocol, ra->long_name); ++ } ++ return return_value; ++} ++ ++/* ++ * Set or reset the pause duration when #entries sent without acknowledgment overpass flow control window ++ * ++ * Returns 0 if pause set, or -1 if an error occurred. ++ */ ++int ++agmt_set_flowcontrolpause_from_entry(Repl_Agmt *ra, const Slapi_Entry *e) ++{ ++ Slapi_Attr *sattr = NULL; ++ int return_value = -1; ++ ++ PR_ASSERT(NULL != ra); ++ PR_Lock(ra->lock); ++ if (ra->stop_in_progress) ++ { ++ PR_Unlock(ra->lock); ++ return return_value; ++ } ++ ++ slapi_entry_attr_find(e, type_nsds5ReplicaFlowControlPause, &sattr); ++ if (NULL != sattr) ++ { ++ Slapi_Value *sval = NULL; ++ slapi_attr_first_value(sattr, &sval); ++ if (NULL != sval) ++ { ++ long tmpval = slapi_value_get_long(sval); ++ if (tmpval >= 0) { ++ ra->flowControlPause = tmpval; ++ return_value = 0; /* success! */ ++ } ++ } ++ } ++ PR_Unlock(ra->lock); ++ if (return_value == 0) ++ { ++ prot_notify_agmt_changed(ra->protocol, ra->long_name); ++ } ++ return return_value; ++} ++ + int + agmt_set_timeout(Repl_Agmt *ra, long timeout) + { +@@ -1788,6 +1922,32 @@ agmt_set_timeout(Repl_Agmt *ra, long timeout) + + return 0; + } ++int ++agmt_set_flowcontrolwindow(Repl_Agmt *ra, long window) ++{ ++ PR_Lock(ra->lock); ++ if (ra->stop_in_progress){ ++ PR_Unlock(ra->lock); ++ return -1; ++ } ++ ra->flowControlWindow = window; ++ PR_Unlock(ra->lock); ++ ++ return 0; ++} ++int ++agmt_set_flowcontrolpause(Repl_Agmt *ra, long pause) ++{ ++ PR_Lock(ra->lock); ++ if (ra->stop_in_progress){ ++ PR_Unlock(ra->lock); ++ return -1; ++ } ++ ra->flowControlPause = pause; ++ PR_Unlock(ra->lock); ++ ++ return 0; ++} + + /* + * Set or reset the busywaittime +diff --git a/ldap/servers/plugins/replication/repl5_agmtlist.c b/ldap/servers/plugins/replication/repl5_agmtlist.c +index 8a70055..5eead07 100644 +--- a/ldap/servers/plugins/replication/repl5_agmtlist.c ++++ b/ldap/servers/plugins/replication/repl5_agmtlist.c +@@ -330,6 +330,32 @@ agmtlist_modify_callback(Slapi_PBlock *pb, Slapi_Entry *entryBefore, Slapi_Entry + } + } + else if (slapi_attr_types_equivalent(mods[i]->mod_type, ++ type_nsds5ReplicaFlowControlWindow)) ++ { ++ /* New replica timeout */ ++ if (agmt_set_flowcontrolwindow_from_entry(agmt, e) != 0) ++ { ++ slapi_log_error(SLAPI_LOG_REPL, repl_plugin_name, "agmtlist_modify_callback: " ++ "failed to update the flow control window for agreement %s\n", ++ agmt_get_long_name(agmt)); ++ *returncode = LDAP_OPERATIONS_ERROR; ++ rc = SLAPI_DSE_CALLBACK_ERROR; ++ } ++ } ++ else if (slapi_attr_types_equivalent(mods[i]->mod_type, ++ type_nsds5ReplicaFlowControlPause)) ++ { ++ /* New replica timeout */ ++ if (agmt_set_flowcontrolpause_from_entry(agmt, e) != 0) ++ { ++ slapi_log_error(SLAPI_LOG_REPL, repl_plugin_name, "agmtlist_modify_callback: " ++ "failed to update the flow control pause for agreement %s\n", ++ agmt_get_long_name(agmt)); ++ *returncode = LDAP_OPERATIONS_ERROR; ++ rc = SLAPI_DSE_CALLBACK_ERROR; ++ } ++ } ++ else if (slapi_attr_types_equivalent(mods[i]->mod_type, + type_nsds5ReplicaBusyWaitTime)) + { + /* New replica busywaittime */ +diff --git a/ldap/servers/plugins/replication/repl5_connection.c b/ldap/servers/plugins/replication/repl5_connection.c +index c004bfb..2971025 100644 +--- a/ldap/servers/plugins/replication/repl5_connection.c ++++ b/ldap/servers/plugins/replication/repl5_connection.c +@@ -52,6 +52,7 @@ replica locked. Seems like right thing to do. + */ + + #include "repl5.h" ++#include "repl5_prot_private.h" + #include "slapi-private.h" + #if defined(USE_OPENLDAP) + #include "ldap.h" +@@ -91,6 +92,7 @@ typedef struct repl_connection + struct timeval timeout; + int flag_agmt_changed; + char *plain; ++ void *tot_init_callback; /* Used during total update to do flow control */ + } repl_connection; + + /* #define DEFAULT_LINGER_TIME (5 * 60) */ /* 5 minutes */ +@@ -274,6 +276,32 @@ conn_delete(Repl_Connection *conn) + PR_Unlock(conn->lock); + } + ++void ++conn_set_tot_update_cb_nolock(Repl_Connection *conn, void *cb_data) ++{ ++ conn->tot_init_callback = (void *) cb_data; ++} ++void ++conn_set_tot_update_cb(Repl_Connection *conn, void *cb_data) ++{ ++ PR_Lock(conn->lock); ++ conn_set_tot_update_cb_nolock(conn, cb_data); ++ PR_Unlock(conn->lock); ++} ++ ++void ++conn_get_tot_update_cb_nolock(Repl_Connection *conn, void **cb_data) ++{ ++ *cb_data = (void *) conn->tot_init_callback; ++} ++void ++conn_get_tot_update_cb(Repl_Connection *conn, void **cb_data) ++{ ++ PR_Lock(conn->lock); ++ conn_get_tot_update_cb_nolock(conn, cb_data); ++ PR_Unlock(conn->lock); ++} ++ + /* + * Return the last operation type processed by the connection + * object, and the LDAP error encountered. +@@ -640,6 +668,131 @@ see_if_write_available(Repl_Connection *conn, PRIntervalTime timeout) + } + #endif /* ! USE_OPENLDAP */ + ++/* ++ * During a total update, this function checks how much entries ++ * have been sent to the consumer without having received their acknowledgment. ++ * Basically it checks how late is the consumer. ++ * ++ * If the consumer is too late, it pause the RA.sender (releasing the lock) to ++ * let the consumer to catch up and RA.reader to receive the acknowledgments. ++ * ++ * Caller must hold conn->lock ++ */ ++static void ++check_flow_control_tot_init(Repl_Connection *conn, int optype, const char *extop_oid, int sent_msgid) ++{ ++ int rcv_msgid; ++ int once; ++ ++ if ((sent_msgid != 0) && (optype == CONN_EXTENDED_OPERATION) && (strcmp(extop_oid, REPL_NSDS50_REPLICATION_ENTRY_REQUEST_OID) == 0)) { ++ /* We are sending entries part of the total update of a consumer ++ * Wait a bit if the consumer needs to catchup from the current sent entries ++ */ ++ rcv_msgid = repl5_tot_last_rcv_msgid(conn); ++ if (rcv_msgid == -1) { ++ slapi_log_error(SLAPI_LOG_FATAL, repl_plugin_name, ++ "%s: check_flow_control_tot_init no callback data [ msgid sent: %d]\n", ++ agmt_get_long_name(conn->agmt), ++ sent_msgid); ++ } else if (sent_msgid < rcv_msgid) { ++ slapi_log_error(SLAPI_LOG_REPL, repl_plugin_name, ++ "%s: check_flow_control_tot_init invalid message ids [ msgid sent: %d, rcv: %d]\n", ++ agmt_get_long_name(conn->agmt), ++ sent_msgid, ++ rcv_msgid); ++ } else if ((sent_msgid - rcv_msgid) > agmt_get_flowcontrolwindow(conn->agmt)) { ++ int totalUpdatePause; ++ ++ totalUpdatePause = agmt_get_flowcontrolpause(conn->agmt); ++ if (totalUpdatePause) { ++ /* The consumer is late. Last sent entry compare to last acknowledged entry ++ * overpass the allowed limit (flowcontrolwindow) ++ * Give some time to the consumer to catch up ++ */ ++ once = repl5_tot_flowcontrol_detection(conn, 1); ++ PR_Unlock(conn->lock); ++ if (once == 1) { ++ /* This is the first time we hit total update flow control. ++ * Log it at least once to inform administrator there is ++ * a potential configuration issue here ++ */ ++ slapi_log_error(SLAPI_LOG_FATAL, repl_plugin_name, ++ "%s: Total update flow control gives time (%d msec) to the consumer before sending more entries [ msgid sent: %d, rcv: %d])\n" ++ "If total update fails you can try to increase %s and/or decrease %s in the replica agreement configuration\n", ++ agmt_get_long_name(conn->agmt), ++ totalUpdatePause, ++ sent_msgid, ++ rcv_msgid, ++ type_nsds5ReplicaFlowControlPause, ++ type_nsds5ReplicaFlowControlWindow); ++ } ++ DS_Sleep(PR_MillisecondsToInterval(totalUpdatePause)); ++ PR_Lock(conn->lock); ++ } ++ } ++ } ++ ++} ++/* ++ * Test if the connection is available to do a write. ++ * This function is doing a periodic polling of the connection. ++ * If the polling times out: ++ * - it releases the connection lock (to let other thread ,i.e. ++ * replication result thread, the opportunity to use the connection) ++ * - Sleeps for a short period (100ms) ++ * - acquires the connection lock ++ * ++ * It loops until ++ * - it is available ++ * - exceeds RA complete timeout ++ * - server is shutdown ++ * - connection is disconnected (Disable, stop, delete the RA ++ * 'terminate' the replication protocol and disconnect the connection) ++ * ++ * Return: ++ * - CONN_OPERATION_SUCCESS if the connection is available ++ * - CONN_TIMEOUT if the overall polling/sleeping delay exceeds RA timeout ++ * - CONN_NOT_CONNECTED if the replication connection state is disconnected ++ * - other ConnResult ++ * ++ * Caller must hold conn->Lock. At the exit, conn->lock is held ++ */ ++static ConnResult ++conn_is_available(Repl_Connection *conn) ++{ ++ time_t poll_timeout_sec = 1; /* Polling for 1sec */ ++ time_t yield_delay_msec = 100; /* Delay to wait */ ++ time_t start_time = time( NULL ); ++ time_t time_now; ++ ConnResult return_value = CONN_OPERATION_SUCCESS; ++ ++ while (!slapi_is_shutting_down() && (conn->state != STATE_DISCONNECTED)) { ++ return_value = see_if_write_available(conn, PR_SecondsToInterval(poll_timeout_sec)); ++ if (return_value == CONN_TIMEOUT) { ++ /* in case of timeout we return CONN_TIMEOUT only ++ * if the RA.timeout is exceeded ++ */ ++ time_now = time(NULL); ++ if (conn->timeout.tv_sec <= (time_now - start_time)) { ++ break; ++ } else { ++ /* Else give connection to others threads */ ++ PR_Unlock(conn->lock); ++ slapi_log_error(SLAPI_LOG_REPL, repl_plugin_name, ++ "%s: perform_operation transient timeout. retry)\n", ++ agmt_get_long_name(conn->agmt)); ++ DS_Sleep(PR_MillisecondsToInterval(yield_delay_msec)); ++ PR_Lock(conn->lock); ++ } ++ } else { ++ break; ++ } ++ } ++ if (conn->state == STATE_DISCONNECTED) { ++ return_value = CONN_NOT_CONNECTED; ++ } ++ return return_value; ++} + /* + * Common code to send an LDAPv3 operation and collect the result. + * Return values: +@@ -683,10 +836,13 @@ perform_operation(Repl_Connection *conn, int optype, const char *dn, + + Slapi_Eq_Context eqctx = repl5_start_debug_timeout(&setlevel); + +- return_value = see_if_write_available( +- conn, PR_SecondsToInterval(conn->timeout.tv_sec)); ++ return_value = conn_is_available(conn); + if (return_value != CONN_OPERATION_SUCCESS) { + PR_Unlock(conn->lock); ++ slapi_log_error(SLAPI_LOG_FATAL, repl_plugin_name, ++ "%s: perform_operation connection is not available (%d)\n", ++ agmt_get_long_name(conn->agmt), ++ return_value); + return return_value; + } + conn->last_operation = optype; +@@ -758,6 +914,9 @@ perform_operation(Repl_Connection *conn, int optype, const char *dn, + */ + return_value = CONN_NOT_CONNECTED; + } ++ ++ check_flow_control_tot_init(conn, optype, extop_oid, msgid); ++ + PR_Unlock(conn->lock); /* release the lock */ + if (message_id) + { +diff --git a/ldap/servers/plugins/replication/repl5_inc_protocol.c b/ldap/servers/plugins/replication/repl5_inc_protocol.c +index 3bb68e7..b867fc4 100644 +--- a/ldap/servers/plugins/replication/repl5_inc_protocol.c ++++ b/ldap/servers/plugins/replication/repl5_inc_protocol.c +@@ -108,6 +108,7 @@ typedef struct result_data + int stop_result_thread; /* Flag used to tell the result thread to exit */ + int last_message_id_sent; + int last_message_id_received; ++ int flowcontrol_detection; + int result; /* The UPDATE_TRANSIENT_ERROR etc */ + } result_data; + +@@ -460,6 +461,23 @@ repl5_inc_destroy_async_result_thread(result_data *rd) + return retval; + } + ++/* The interest of this routine is to give time to the consumer ++ * to apply the sent updates and return the acks. ++ * So the caller should not hold the replication connection lock ++ * to let the RA.reader receives the acks. ++ */ ++static void ++repl5_inc_flow_control_results(Repl_Agmt *agmt, result_data *rd) ++{ ++ PR_Lock(rd->lock); ++ if ((rd->last_message_id_received <= rd->last_message_id_sent) && ++ ((rd->last_message_id_sent - rd->last_message_id_received) >= agmt_get_flowcontrolwindow(agmt))) { ++ rd->flowcontrol_detection++; ++ DS_Sleep(PR_MillisecondsToInterval(agmt_get_flowcontrolpause(agmt))); ++ } ++ PR_Unlock(rd->lock); ++} ++ + static void + repl5_inc_waitfor_async_results(result_data *rd) + { +@@ -1683,7 +1701,7 @@ send_updates(Private_Repl_Protocol *prp, RUV *remote_update_vector, PRUint32 *nu + { + int finished = 0; + ConnResult replay_crc; +- char csn_str[CSN_STRSIZE]; ++ char csn_str[CSN_STRSIZE]; + + /* Start the results reading thread */ + rd = repl5_inc_rd_new(prp); +@@ -1818,6 +1836,7 @@ send_updates(Private_Repl_Protocol *prp, RUV *remote_update_vector, PRUint32 *nu + sop->replica_id = replica_id; + PL_strncpyz(sop->uniqueid, uniqueid, sizeof(sop->uniqueid)); + repl5_int_push_operation(rd,sop); ++ repl5_inc_flow_control_results(prp->agmt, rd); + } else { + slapi_log_error(SLAPI_LOG_REPL, repl_plugin_name, + "%s: Skipping update operation with no message_id (uniqueid %s, CSN %s):\n", +@@ -1906,6 +1925,17 @@ send_updates(Private_Repl_Protocol *prp, RUV *remote_update_vector, PRUint32 *nu + } + *num_changes_sent = rd->num_changes_sent; + } ++ PR_Lock(rd->lock); ++ if (rd->flowcontrol_detection) { ++ slapi_log_error(SLAPI_LOG_REPL, repl_plugin_name, ++ "%s: Incremental update flow control triggered %d times\n" ++ "You may increase %s and/or decrease %s in the replica agreement configuration\n", ++ agmt_get_long_name(prp->agmt), ++ rd->flowcontrol_detection, ++ type_nsds5ReplicaFlowControlPause, ++ type_nsds5ReplicaFlowControlWindow); ++ } ++ PR_Unlock(rd->lock); + repl5_inc_rd_destroy(&rd); + + cl5_operation_parameters_done ( entry.op ); +diff --git a/ldap/servers/plugins/replication/repl5_prot_private.h b/ldap/servers/plugins/replication/repl5_prot_private.h +index 586e1eb..1b1c00b 100644 +--- a/ldap/servers/plugins/replication/repl5_prot_private.h ++++ b/ldap/servers/plugins/replication/repl5_prot_private.h +@@ -79,6 +79,8 @@ typedef struct private_repl_protocol + + extern Private_Repl_Protocol *Repl_5_Inc_Protocol_new(); + extern Private_Repl_Protocol *Repl_5_Tot_Protocol_new(); ++extern int repl5_tot_last_rcv_msgid(Repl_Connection *conn); ++extern int repl5_tot_flowcontrol_detection(Repl_Connection *conn, int increment); + extern Private_Repl_Protocol *Windows_Inc_Protocol_new(); + extern Private_Repl_Protocol *Windows_Tot_Protocol_new(); + +diff --git a/ldap/servers/plugins/replication/repl5_tot_protocol.c b/ldap/servers/plugins/replication/repl5_tot_protocol.c +index d4f0fcc..adadd44 100644 +--- a/ldap/servers/plugins/replication/repl5_tot_protocol.c ++++ b/ldap/servers/plugins/replication/repl5_tot_protocol.c +@@ -82,6 +82,7 @@ typedef struct callback_data + int stop_result_thread; /* Flag used to tell the result thread to exit */ + int last_message_id_sent; + int last_message_id_received; ++ int flowcontrol_detection; + } callback_data; + + /* +@@ -428,13 +429,19 @@ repl5_tot_run(Private_Repl_Protocol *prp) + LDAP_SCOPE_SUBTREE, "(|(objectclass=ldapsubentry)(objectclass=nstombstone)(nsuniqueid=*))", NULL, 0, ctrls, NULL, + repl_get_plugin_identity (PLUGIN_MULTIMASTER_REPLICATION), 0); + +- cb_data.prp = prp; +- cb_data.rc = 0; ++ cb_data.prp = prp; ++ cb_data.rc = 0; + cb_data.num_entries = 0UL; + cb_data.sleep_on_busy = 0UL; + cb_data.last_busy = current_time (); ++ cb_data.flowcontrol_detection = 0; + cb_data.lock = PR_NewLock(); + ++ /* This allows during perform_operation to check the callback data ++ * especially to do flow contol on delta send msgid / recv msgid ++ */ ++ conn_set_tot_update_cb(prp->conn, (void *) &cb_data); ++ + /* Before we get started on sending entries to the replica, we need to + * setup things for async propagation: + * 1. Create a thread that will read the LDAP results from the connection. +@@ -506,6 +513,17 @@ repl5_tot_run(Private_Repl_Protocol *prp) + done: + slapi_sdn_free(&area_sdn); + slapi_ch_free_string(&hostname); ++ if (cb_data.flowcontrol_detection > 1) ++ { ++ slapi_log_error(SLAPI_LOG_FATAL, repl_plugin_name, ++ "%s: Total update flow control triggered %d times\n" ++ "You may increase %s and/or decrease %s in the replica agreement configuration\n", ++ agmt_get_long_name(prp->agmt), ++ cb_data.flowcontrol_detection, ++ type_nsds5ReplicaFlowControlPause, ++ type_nsds5ReplicaFlowControlWindow); ++ } ++ conn_set_tot_update_cb(prp->conn, NULL); + if (cb_data.lock) + { + PR_DestroyLock(cb_data.lock); +@@ -645,6 +663,37 @@ void get_result (int rc, void *cb_data) + ((callback_data*)cb_data)->rc = rc; + } + ++/* Call must hold the connection lock */ ++int ++repl5_tot_last_rcv_msgid(Repl_Connection *conn) ++{ ++ struct callback_data *cb_data; ++ ++ conn_get_tot_update_cb_nolock(conn, (void **) &cb_data); ++ if (cb_data == NULL) { ++ return -1; ++ } else { ++ return cb_data->last_message_id_received; ++ } ++} ++ ++/* Increase the flowcontrol counter ++ * Call must hold the connection lock ++ */ ++int ++repl5_tot_flowcontrol_detection(Repl_Connection *conn, int increment) ++{ ++ struct callback_data *cb_data; ++ ++ conn_get_tot_update_cb_nolock(conn, (void **) &cb_data); ++ if (cb_data == NULL) { ++ return -1; ++ } else { ++ cb_data->flowcontrol_detection += increment; ++ return cb_data->flowcontrol_detection; ++ } ++} ++ + static + int send_entry (Slapi_Entry *e, void *cb_data) + { +diff --git a/ldap/servers/plugins/replication/repl_globals.c b/ldap/servers/plugins/replication/repl_globals.c +index 5609def..e2157fa 100644 +--- a/ldap/servers/plugins/replication/repl_globals.c ++++ b/ldap/servers/plugins/replication/repl_globals.c +@@ -139,6 +139,8 @@ const char *type_nsds5ReplicaBusyWaitTime = "nsds5ReplicaBusyWaitTime"; + const char *type_nsds5ReplicaSessionPauseTime = "nsds5ReplicaSessionPauseTime"; + const char *type_nsds5ReplicaEnabled = "nsds5ReplicaEnabled"; + const char *type_nsds5ReplicaStripAttrs = "nsds5ReplicaStripAttrs"; ++const char* type_nsds5ReplicaFlowControlWindow = "nsds5ReplicaFlowControlWindow"; ++const char* type_nsds5ReplicaFlowControlPause = "nsds5ReplicaFlowControlPause"; + + /* windows sync specific attributes */ + const char *type_nsds7WindowsReplicaArea = "nsds7WindowsReplicaSubtree"; +-- +1.9.3 + diff --git a/SOURCES/0032-Ticket-53-Need-to-update-supported-locales.patch b/SOURCES/0032-Ticket-53-Need-to-update-supported-locales.patch deleted file mode 100644 index 8ec5503..0000000 --- a/SOURCES/0032-Ticket-53-Need-to-update-supported-locales.patch +++ /dev/null @@ -1,126 +0,0 @@ -From 0fa2d7f968c90adebae14fcf3dac14962e80fd79 Mon Sep 17 00:00:00 2001 -From: Noriko Hosoi <nhosoi@redhat.com> -Date: Mon, 7 Oct 2013 14:08:25 -0700 -Subject: [PATCH 32/39] Ticket #53 - Need to update supported locales - Cleaning up typos and format. - -https://fedorahosted.org/389/ticket/53 - -Reviewed by rmeggins (Thank you, Rich!!) -(cherry picked from commit 4a1dac27fbc0b46b3a68c19658ba41731b80c575) -(cherry picked from commit 4b105d06e99aa8a0adb902a34cc843795569301a) ---- - ldap/schema/slapd-collations.conf | 80 ++++++++++++++++++------------------ - 1 files changed, 40 insertions(+), 40 deletions(-) - -diff --git a/ldap/schema/slapd-collations.conf b/ldap/schema/slapd-collations.conf -index 55fe893..e8d05fe 100644 ---- a/ldap/schema/slapd-collations.conf -+++ b/ldap/schema/slapd-collations.conf -@@ -119,8 +119,8 @@ collation az "" "" 1 3 2.16.840.1.113730.3.3.2.73.1 az - collation az Latn "" 1 3 2.16.840.1.113730.3.3.2.74.1 az-Latn - collation az Latn_AZ "" 1 3 2.16.840.1.113730.3.3.2.75.1 az-Latn-AZ - collation bn "" "" 1 3 2.16.840.1.113730.3.3.2.76.1 bn --collation bn BD "" 1 3 2.16.840.1.113730.3.3.2.77.1 bn bn-BD --collation bn IN "" 1 3 2.16.840.1.113730.3.3.2.78.1 bn bn-IN -+collation bn BD "" 1 3 2.16.840.1.113730.3.3.2.77.1 bn-BD -+collation bn IN "" 1 3 2.16.840.1.113730.3.3.2.78.1 bn-IN - collation bs "" "" 1 3 2.16.840.1.113730.3.3.2.79.1 bs bs-BA - collation chr "" "" 1 3 2.16.840.1.113730.3.3.2.80.1 chr - collation chr US "" 1 3 2.16.840.1.113730.3.3.2.81.1 chr-US -@@ -136,7 +136,7 @@ collation en BE "" 1 3 2.16.840.1.113730.3.3.2.90.1 en-BE - collation en BW "" 1 3 2.16.840.1.113730.3.3.2.91.1 en-BW - collation en BZ "" 1 3 2.16.840.1.113730.3.3.2.92.1 en-BZ - collation en GU "" 1 3 2.16.840.1.113730.3.3.2.93.1 en-GU --collation en HK "" 1 3 2.16.840.1.113730.3.3.2.94.1 en-HK -+collation en GY "" 1 3 2.16.840.1.113730.3.3.2.94.1 en-GY - collation en HK "" 1 3 2.16.840.1.113730.3.3.2.95.1 en-HK - collation en IN "" 1 3 2.16.840.1.113730.3.3.2.96.1 en-IN - collation en JM "" 1 3 2.16.840.1.113730.3.3.2.97.1 en-JM -@@ -180,46 +180,46 @@ collation es VE "" 1 3 2.16.840.1.113730.3.3.2.134.1 es-VE - collation fa "" "" 1 3 2.16.840.1.113730.3.3.2.135.1 fa fa-IR - collation fil "" "" 1 3 2.16.840.1.113730.3.3.2.136.1 fil fil-PH - collation fo "" "" 1 3 2.16.840.1.113730.3.3.2.137.1 fo fo-FO --collation fr BF "" 1 3 2.16.840.1.113730.3.3.2.138.1 fr fr-BF --collation fr BI "" 1 3 2.16.840.1.113730.3.3.2.139.1 fr fr-BI --collation fr BJ "" 1 3 2.16.840.1.113730.3.3.2.140.1 fr fr-BJ --collation fr BL "" 1 3 2.16.840.1.113730.3.3.2.141.1 fr fr-BL --collation fr CD "" 1 3 2.16.840.1.113730.3.3.2.142.1 fr fr-CD --collation fr CF "" 1 3 2.16.840.1.113730.3.3.2.143.1 fr fr-CF --collation fr CG "" 1 3 2.16.840.1.113730.3.3.2.144.1 fr fr-CG --collation fr CI "" 1 3 2.16.840.1.113730.3.3.2.145.1 fr fr-CI --collation fr CM "" 1 3 2.16.840.1.113730.3.3.2.146.1 fr fr-CM --collation fr DJ "" 1 3 2.16.840.1.113730.3.3.2.147.1 fr fr-DJ --collation fr GA "" 1 3 2.16.840.1.113730.3.3.2.148.1 fr fr-GA --collation fr GN "" 1 3 2.16.840.1.113730.3.3.2.149.1 fr fr-GN --collation fr GP "" 1 3 2.16.840.1.113730.3.3.2.150.1 fr fr-GP --collation fr GQ "" 1 3 2.16.840.1.113730.3.3.2.151.1 fr fr-GQ --collation fr KM "" 1 3 2.16.840.1.113730.3.3.2.152.1 fr fr-KM --collation fr LU "" 1 3 2.16.840.1.113730.3.3.2.153.1 fr fr-LU --collation fr MC "" 1 3 2.16.840.1.113730.3.3.2.154.1 fr fr-MC --collation fr MF "" 1 3 2.16.840.1.113730.3.3.2.155.1 fr fr-MF --collation fr MG "" 1 3 2.16.840.1.113730.3.3.2.156.1 fr fr-MG --collation fr ML "" 1 3 2.16.840.1.113730.3.3.2.157.1 fr fr-ML --collation fr MQ "" 1 3 2.16.840.1.113730.3.3.2.158.1 fr fr-MQ --collation fr NE "" 1 3 2.16.840.1.113730.3.3.2.159.1 fr fr-NE --collation fr RE "" 1 3 2.16.840.1.113730.3.3.2.160.1 fr fr-RE --collation fr RW "" 1 3 2.16.840.1.113730.3.3.2.161.1 fr fr-RW --collation fr SN "" 1 3 2.16.840.1.113730.3.3.2.162.1 fr fr-SN --collation fr TD "" 1 3 2.16.840.1.113730.3.3.2.163.1 fr fr-TD --collation fr TG "" 1 3 2.16.840.1.113730.3.3.2.164.1 fr fr-TG -+collation fr BF "" 1 3 2.16.840.1.113730.3.3.2.138.1 fr-BF -+collation fr BI "" 1 3 2.16.840.1.113730.3.3.2.139.1 fr-BI -+collation fr BJ "" 1 3 2.16.840.1.113730.3.3.2.140.1 fr-BJ -+collation fr BL "" 1 3 2.16.840.1.113730.3.3.2.141.1 fr-BL -+collation fr CD "" 1 3 2.16.840.1.113730.3.3.2.142.1 fr-CD -+collation fr CF "" 1 3 2.16.840.1.113730.3.3.2.143.1 fr-CF -+collation fr CG "" 1 3 2.16.840.1.113730.3.3.2.144.1 fr-CG -+collation fr CI "" 1 3 2.16.840.1.113730.3.3.2.145.1 fr-CI -+collation fr CM "" 1 3 2.16.840.1.113730.3.3.2.146.1 fr-CM -+collation fr DJ "" 1 3 2.16.840.1.113730.3.3.2.147.1 fr-DJ -+collation fr GA "" 1 3 2.16.840.1.113730.3.3.2.148.1 fr-GA -+collation fr GN "" 1 3 2.16.840.1.113730.3.3.2.149.1 fr-GN -+collation fr GP "" 1 3 2.16.840.1.113730.3.3.2.150.1 fr-GP -+collation fr GQ "" 1 3 2.16.840.1.113730.3.3.2.151.1 fr-GQ -+collation fr KM "" 1 3 2.16.840.1.113730.3.3.2.152.1 fr-KM -+collation fr LU "" 1 3 2.16.840.1.113730.3.3.2.153.1 fr-LU -+collation fr MC "" 1 3 2.16.840.1.113730.3.3.2.154.1 fr-MC -+collation fr MF "" 1 3 2.16.840.1.113730.3.3.2.155.1 fr-MF -+collation fr MG "" 1 3 2.16.840.1.113730.3.3.2.156.1 fr-MG -+collation fr ML "" 1 3 2.16.840.1.113730.3.3.2.157.1 fr-ML -+collation fr MQ "" 1 3 2.16.840.1.113730.3.3.2.158.1 fr-MQ -+collation fr NE "" 1 3 2.16.840.1.113730.3.3.2.159.1 fr-NE -+collation fr RE "" 1 3 2.16.840.1.113730.3.3.2.160.1 fr-RE -+collation fr RW "" 1 3 2.16.840.1.113730.3.3.2.161.1 fr-RW -+collation fr SN "" 1 3 2.16.840.1.113730.3.3.2.162.1 fr-SN -+collation fr TD "" 1 3 2.16.840.1.113730.3.3.2.163.1 fr-TD -+collation fr TG "" 1 3 2.16.840.1.113730.3.3.2.164.1 fr-TG - collation ga "" "" 1 3 2.16.840.1.113730.3.3.2.165.1 ga - collation ga IE "" 1 3 2.16.840.1.113730.3.3.2.166.1 ga-IE - collation ga IN "" 1 3 2.16.840.1.113730.3.3.2.167.1 ga-IN --collation ha Latn "" 1 3 2.16.840.1.113730.3.3.2.168.1 ha-Latn --collation ha Latn GH 1 3 2.16.840.1.113730.3.3.2.169.1 ha-Latn-GH --collation ha Latn NE 1 3 2.16.840.1.113730.3.3.2.170.1 ha-Latn-NE --collation ha Latn NG 1 3 2.16.840.1.113730.3.3.2.171.1 ha-Latn-NG --collation he "" "" 1 3 2.16.840.1.113730.3.3.2.172.1 he he-IL --collation hi "" "" 1 3 2.16.840.1.113730.3.3.2.173.1 hi hi-IN --collation hy "" "" 1 3 2.16.840.1.113730.3.3.2.174.1 hy hy-AM --collation id "" "" 1 3 2.16.840.1.113730.3.3.2.175.1 id --collation id ID "" 1 3 2.16.840.1.113730.3.3.2.176.1 id-ID --collation ig "" "" 1 3 2.16.840.1.113730.3.3.2.177.1 ig ig-NG -+collation ha "" "" 1 3 2.16.840.1.113730.3.3.2.168.1 ha -+collation ha Latn "" 1 3 2.16.840.1.113730.3.3.2.169.1 ha-Latn -+collation ha Latn GH 1 3 2.16.840.1.113730.3.3.2.170.1 ha-Latn-GH -+collation ha Latn NE 1 3 2.16.840.1.113730.3.3.2.171.1 ha-Latn-NE -+collation ha Latn NG 1 3 2.16.840.1.113730.3.3.2.172.1 ha-Latn-NG -+collation he "" "" 1 3 2.16.840.1.113730.3.3.2.173.1 he he-IL -+collation hi "" "" 1 3 2.16.840.1.113730.3.3.2.174.1 hi hi-IN -+collation hy "" "" 1 3 2.16.840.1.113730.3.3.2.175.1 hy hy-AM -+collation id "" "" 1 3 2.16.840.1.113730.3.3.2.176.1 id-ID -+collation id ID "" 1 3 2.16.840.1.113730.3.3.2.177.1 ig-NG - collation it IT "" 1 3 2.16.840.1.113730.3.3.2.178.1 it-IT - collation ka "" "" 1 3 2.16.840.1.113730.3.3.2.179.1 ka - collation ka GE "" 1 3 2.16.840.1.113730.3.3.2.180.1 ka-GE --- -1.7.1 - diff --git a/SOURCES/0033-Fix-for-CVE-2014-8105.patch b/SOURCES/0033-Fix-for-CVE-2014-8105.patch new file mode 100644 index 0000000..cc52f96 --- /dev/null +++ b/SOURCES/0033-Fix-for-CVE-2014-8105.patch @@ -0,0 +1,117 @@ +From 4b812a1af367ed409e21abe73a77e57092e5a5f3 Mon Sep 17 00:00:00 2001 +From: Mark Reynolds <mreynolds@redhat.com> +Date: Tue, 16 Dec 2014 16:53:07 -0500 +Subject: [PATCH 33/53] Fix for CVE-2014-8105 + +Description: At server startup check for the Retro Changelog default ACI + on cn=changelog, if present delete it. + +Reviewed by: lkrispenz(Thanks!) +--- + ldap/servers/plugins/retrocl/retrocl.c | 67 ++++++++++++++++++++++++++- + ldap/servers/plugins/retrocl/retrocl_create.c | 4 -- + 2 files changed, 66 insertions(+), 5 deletions(-) + +diff --git a/ldap/servers/plugins/retrocl/retrocl.c b/ldap/servers/plugins/retrocl/retrocl.c +index 0d2a6dc..8a0f350 100644 +--- a/ldap/servers/plugins/retrocl/retrocl.c ++++ b/ldap/servers/plugins/retrocl/retrocl.c +@@ -308,6 +308,68 @@ char *retrocl_get_config_str(const char *attrt) + return ma; + } + ++static void ++retrocl_remove_legacy_default_aci(void) ++{ ++ Slapi_PBlock *pb = NULL; ++ Slapi_Entry **entries; ++ char **aci_vals = NULL; ++ char *attrs[] = {"aci", NULL}; ++ int rc; ++ ++ pb = slapi_pblock_new(); ++ slapi_search_internal_set_pb(pb, RETROCL_CHANGELOG_DN, LDAP_SCOPE_BASE, "objectclass=*", ++ attrs, 0, NULL, NULL, g_plg_identity[PLUGIN_RETROCL] , 0); ++ slapi_search_internal_pb(pb); ++ slapi_pblock_get(pb, SLAPI_PLUGIN_INTOP_RESULT, &rc); ++ if (rc == LDAP_SUCCESS) { ++ slapi_pblock_get(pb, SLAPI_PLUGIN_INTOP_SEARCH_ENTRIES, &entries); ++ if(entries && entries[0]){ ++ if((aci_vals = slapi_entry_attr_get_charray(entries[0], "aci"))){ ++ if(charray_inlist(aci_vals, RETROCL_ACL)){ ++ /* ++ * Okay, we need to remove the aci ++ */ ++ LDAPMod mod; ++ LDAPMod *mods[2]; ++ char *val[2]; ++ Slapi_PBlock *mod_pb = 0; ++ ++ mod_pb = slapi_pblock_new(); ++ mods[0] = &mod; ++ mods[1] = 0; ++ val[0] = RETROCL_ACL; ++ val[1] = 0; ++ mod.mod_op = LDAP_MOD_DELETE; ++ mod.mod_type = "aci"; ++ mod.mod_values = val; ++ ++ slapi_modify_internal_set_pb_ext(mod_pb, slapi_entry_get_sdn(entries[0]), ++ mods, 0, 0, g_plg_identity[PLUGIN_RETROCL], 0); ++ slapi_modify_internal_pb(mod_pb); ++ slapi_pblock_get(mod_pb, SLAPI_PLUGIN_INTOP_RESULT, &rc); ++ if(rc == LDAP_SUCCESS){ ++ slapi_log_error( SLAPI_LOG_FATAL, RETROCL_PLUGIN_NAME, ++ "Successfully removed vulnerable legacy default aci \"%s\". " ++ "If the aci removal was not desired please use a different \"acl " ++ "name\" so it is not removed at the next plugin startup.\n", ++ RETROCL_ACL); ++ } else { ++ slapi_log_error( SLAPI_LOG_FATAL, RETROCL_PLUGIN_NAME, ++ "Failed to removed vulnerable legacy default aci (%s) error %d\n", ++ RETROCL_ACL, rc); ++ } ++ slapi_pblock_destroy(mod_pb); ++ } ++ slapi_ch_array_free(aci_vals); ++ } ++ } ++ } ++ slapi_free_search_results_internal(pb); ++ slapi_pblock_destroy(pb); ++} ++ ++ + /* + * Function: retrocl_start + * +@@ -333,7 +395,10 @@ static int retrocl_start (Slapi_PBlock *pb) + LDAPDebug1Arg(LDAP_DEBUG_TRACE,"Couldnt find backend, not trimming retro changelog (%d).\n",rc); + return rc; + } +- ++ ++ /* Remove the old default aci as it exposes passwords changes to anonymous users */ ++ retrocl_remove_legacy_default_aci(); ++ + retrocl_init_trimming(); + + if (slapi_pblock_get(pb, SLAPI_ADD_ENTRY, &e) != 0) { +diff --git a/ldap/servers/plugins/retrocl/retrocl_create.c b/ldap/servers/plugins/retrocl/retrocl_create.c +index 1ffdaae..870421c 100644 +--- a/ldap/servers/plugins/retrocl/retrocl_create.c ++++ b/ldap/servers/plugins/retrocl/retrocl_create.c +@@ -344,10 +344,6 @@ void retrocl_create_cle (void) + val.bv_len = strlen(val.bv_val); + slapi_entry_add_values( e, "cn", vals ); + +- val.bv_val = RETROCL_ACL; +- val.bv_len = strlen(val.bv_val); +- slapi_entry_add_values( e, "aci", vals ); +- + pb = slapi_pblock_new (); + slapi_add_entry_internal_set_pb( pb, e, NULL /* controls */, + g_plg_identity[PLUGIN_RETROCL], +-- +1.9.3 + diff --git a/SOURCES/0033-Ticket-47517-memory-leak-in-range-searches-and-other.patch b/SOURCES/0033-Ticket-47517-memory-leak-in-range-searches-and-other.patch deleted file mode 100644 index 400b657..0000000 --- a/SOURCES/0033-Ticket-47517-memory-leak-in-range-searches-and-other.patch +++ /dev/null @@ -1,121 +0,0 @@ -From 5f89494625af13a9e23a620d973eb11120495ab3 Mon Sep 17 00:00:00 2001 -From: Mark Reynolds <mreynolds@redhat.com> -Date: Mon, 7 Oct 2013 09:57:47 -0400 -Subject: [PATCH 33/39] Ticket 47517 - memory leak in range searches and other various leaks - -Bug Description: Range searches leak memory - -Fix Description: Free the db key, if the key changed between calls to c_get. - - Also fixed a leak when doing a delete operation(retrieving the - parent id), and fixed a leak in replication incremental protocol - when getting the hostname control. - -https://fedorahosted.org/389/ticket/47517 - -Reviewed by: nhosoi & richm(Thanks!) -(cherry picked from commit b737882146e709aa75771168ffd9db63af23e005) -(cherry picked from commit 98dd62e4a9ed6696a3becfda3ccb456de587601f) ---- - ldap/servers/slapd/back-ldbm/idl_new.c | 16 +++++++++++++++- - ldap/servers/slapd/back-ldbm/index.c | 2 -- - ldap/servers/slapd/back-ldbm/ldbm_delete.c | 1 + - ldap/servers/slapd/ldaputil.c | 3 ++- - 4 files changed, 18 insertions(+), 4 deletions(-) - -diff --git a/ldap/servers/slapd/back-ldbm/idl_new.c b/ldap/servers/slapd/back-ldbm/idl_new.c -index 50ad5cb..f0410f9 100644 ---- a/ldap/servers/slapd/back-ldbm/idl_new.c -+++ b/ldap/servers/slapd/back-ldbm/idl_new.c -@@ -576,6 +576,11 @@ idl_new_range_fetch( - } - #endif - ret = cursor->c_get(cursor, &cur_key, &data, DB_NEXT_DUP|DB_MULTIPLE); -+ if (saved_key != cur_key.data) { -+ /* key was allocated in c_get */ -+ slapi_ch_free(&saved_key); -+ saved_key = cur_key.data; -+ } - if (ret) { - if (upperkey && upperkey->data && DBT_EQ(&cur_key, upperkey)) { - /* this is the last key */ -@@ -583,6 +588,11 @@ idl_new_range_fetch( - } - /* First set the cursor (DB_NEXT_NODUP does not take DB_MULTIPLE) */ - ret = cursor->c_get(cursor, &cur_key, &data, DB_NEXT_NODUP); -+ if (saved_key != cur_key.data) { -+ /* key was allocated in c_get */ -+ slapi_ch_free(&saved_key); -+ saved_key = cur_key.data; -+ } - if (ret) { - break; - } -@@ -633,13 +643,17 @@ idl_new_range_fetch( - } - } - ret = cursor->c_get(cursor,&cur_key,&data,DB_NEXT_DUP); -+ if (saved_key != cur_key.data) { -+ /* key was allocated in c_get */ -+ slapi_ch_free(&saved_key); -+ saved_key = cur_key.data; -+ } - count++; - if (ret) { - if (upperkey && upperkey->data && DBT_EQ(&cur_key, upperkey)) { - /* this is the last key */ - break; - } -- DBT_FREE_PAYLOAD(cur_key); - ret = cursor->c_get(cursor, &cur_key, &data, DB_NEXT_NODUP); - if (saved_key != cur_key.data) { - /* key was allocated in c_get */ -diff --git a/ldap/servers/slapd/back-ldbm/index.c b/ldap/servers/slapd/back-ldbm/index.c -index f4de2fa..1504fa8 100644 ---- a/ldap/servers/slapd/back-ldbm/index.c -+++ b/ldap/servers/slapd/back-ldbm/index.c -@@ -1401,8 +1401,6 @@ index_range_read_ext( - type, prefix, *err ); - } - } else if (DBTcmp (&upperkey, &cur_key, ai->ai_key_cmp_fn) > 0) { -- tmpbuf = slapi_ch_realloc (tmpbuf, cur_key.dsize); -- memcpy (tmpbuf, cur_key.dptr, cur_key.dsize); - DBT_FREE_PAYLOAD(upperkey); - upperkey.dptr = NULL; /* x >= a :no need to check upper bound */ - upperkey.dsize = 0; -diff --git a/ldap/servers/slapd/back-ldbm/ldbm_delete.c b/ldap/servers/slapd/back-ldbm/ldbm_delete.c -index c174c18..6725123 100644 ---- a/ldap/servers/slapd/back-ldbm/ldbm_delete.c -+++ b/ldap/servers/slapd/back-ldbm/ldbm_delete.c -@@ -457,6 +457,7 @@ ldbm_back_delete( Slapi_PBlock *pb ) - * and numsubordinate count could get confused. - */ - ID pid = (ID)strtol(pid_str, (char **)NULL, 10); -+ slapi_ch_free_string(&pid_str); - parent = id2entry(be, pid ,NULL, &retval); - if (parent && cache_lock_entry(&inst->inst_cache, parent)) { - /* Failed to obtain parent entry's entry lock */ -diff --git a/ldap/servers/slapd/ldaputil.c b/ldap/servers/slapd/ldaputil.c -index e56c392..edc8267 100644 ---- a/ldap/servers/slapd/ldaputil.c -+++ b/ldap/servers/slapd/ldaputil.c -@@ -1096,6 +1096,7 @@ slapi_ldap_bind( - if (ptr) { - copy = slapi_ch_strdup(myhostname); - *(copy + (ptr - myhostname)) = '\0'; -+ slapi_ch_free_string(&myhostname); - myhostname = copy; - } - } -@@ -1119,7 +1120,7 @@ slapi_ldap_bind( - myerrno ? myerrno : gaierr, - myerrno ? slapd_system_strerror(myerrno) : gai_strerror(gaierr), - myhostname ? myhostname : "unknown host"); -- slapi_ch_free_string(©); -+ slapi_ch_free_string(&myhostname); - goto done; - } - --- -1.7.1 - diff --git a/SOURCES/0034-Additional-fix-for-ticket-47526-v3.patch b/SOURCES/0034-Additional-fix-for-ticket-47526-v3.patch new file mode 100644 index 0000000..9c52246 --- /dev/null +++ b/SOURCES/0034-Additional-fix-for-ticket-47526-v3.patch @@ -0,0 +1,119 @@ +From b046f03c6a7b828152246f44bcacfee6347e5337 Mon Sep 17 00:00:00 2001 +From: Ludwig Krispenz <lkrispen@redhat.com> +Date: Wed, 17 Dec 2014 18:11:44 +0100 +Subject: [PATCH 34/53] Additional fix for ticket 47526 v3 + + In modrdn we need to distinguish if the entry is changed is a group or a + regular memebr of a group. for the group case do the same as when deleting a group + For the modrdn of an user entry, the case where no memberof attribute exists has + to succeed. + + Reviewed by: noriko, thanks + + https://fedorahosted.org/389/ticket/47526 + +(cherry picked from commit c8951669b3a74cb9fda013ffe914031b76e2e452) +--- + ldap/servers/plugins/memberof/memberof.c | 46 +++++++++++++++++++++++++------- + 1 file changed, 36 insertions(+), 10 deletions(-) + +diff --git a/ldap/servers/plugins/memberof/memberof.c b/ldap/servers/plugins/memberof/memberof.c +index bd87ee9..80b52ab 100644 +--- a/ldap/servers/plugins/memberof/memberof.c ++++ b/ldap/servers/plugins/memberof/memberof.c +@@ -566,7 +566,7 @@ int memberof_postop_del(Slapi_PBlock *pb) + } + + /* is the entry of interest as a group? */ +- if(e && configCopy.group_filter && !slapi_filter_test_simple(e, configCopy.group_filter)) ++ if(e && configCopy.group_filter && 0 == slapi_filter_test_simple(e, configCopy.group_filter)) + { + int i = 0; + Slapi_Attr *attr = 0; +@@ -664,6 +664,12 @@ memberof_del_dn_type_callback(Slapi_Entry *e, void *callback_data) + + slapi_pblock_destroy(mod_pb); + ++ if (rc == LDAP_NO_SUCH_ATTRIBUTE && val[0] == NULL) { ++ /* if no memberof attribut exists ++ * handle as success ++ */ ++ rc = LDAP_SUCCESS; ++ } + return rc; + } + +@@ -861,7 +867,7 @@ int memberof_postop_modrdn(Slapi_PBlock *pb) + + /* update any downstream members */ + if(pre_sdn && post_sdn && configCopy.group_filter && +- !slapi_filter_test_simple(post_e, configCopy.group_filter)) ++ 0 == slapi_filter_test_simple(post_e, configCopy.group_filter)) + { + int i = 0; + Slapi_Attr *attr = 0; +@@ -890,17 +896,37 @@ int memberof_postop_modrdn(Slapi_PBlock *pb) + if (ret == LDAP_SUCCESS && pre_sdn && post_sdn) { + if ((entry_scope && !slapi_sdn_issuffix(post_sdn, entry_scope)) || + (entry_scope_exclude_subtree && slapi_sdn_issuffix(post_sdn, entry_scope_exclude_subtree))) { +- memberof_del_dn_data del_data = {0, configCopy.memberof_attr}; + if((ret = memberof_del_dn_from_groups(pb, &configCopy, pre_sdn))){ + slapi_log_error( SLAPI_LOG_FATAL, MEMBEROF_PLUGIN_SUBSYSTEM, + "memberof_postop_modrdn - delete dn failed for (%s), error (%d)\n", + slapi_sdn_get_dn(pre_sdn), ret); + } +- if(ret == LDAP_SUCCESS && (ret = memberof_del_dn_type_callback(post_e, &del_data))){ +- slapi_log_error( SLAPI_LOG_FATAL, MEMBEROF_PLUGIN_SUBSYSTEM, +- "memberof_postop_modrdn - delete dn callback failed for (%s), error (%d)\n", +- slapi_entry_get_dn(post_e), ret); +- } ++ if(ret == LDAP_SUCCESS && pre_e && configCopy.group_filter && ++ 0 == slapi_filter_test_simple(pre_e, configCopy.group_filter)) { ++ /* is the entry of interest as a group? */ ++ int i = 0; ++ Slapi_Attr *attr = 0; ++ ++ /* Loop through to find each grouping attribute separately. */ ++ for (i = 0; configCopy.groupattrs[i] && ret == LDAP_SUCCESS; i++) { ++ if (0 == slapi_entry_attr_find(pre_e, configCopy.groupattrs[i], &attr)) { ++ if((ret = memberof_del_attr_list(pb, &configCopy, pre_sdn, attr))){ ++ slapi_log_error( SLAPI_LOG_FATAL, MEMBEROF_PLUGIN_SUBSYSTEM, ++ "memberof_postop_modrdn: error deleting attr list - dn (%s). Error (%d)\n", ++ slapi_sdn_get_dn(pre_sdn),ret); ++ } ++ ++ } ++ } ++ } ++ if(ret == LDAP_SUCCESS) { ++ memberof_del_dn_data del_data = {0, configCopy.memberof_attr}; ++ if(ret = memberof_del_dn_type_callback(post_e, &del_data)){ ++ slapi_log_error( SLAPI_LOG_FATAL, MEMBEROF_PLUGIN_SUBSYSTEM, ++ "memberof_postop_modrdn - delete dn callback failed for (%s), error (%d)\n", ++ slapi_entry_get_dn(post_e), ret); ++ } ++ } + } else { + if((ret = memberof_replace_dn_from_groups(pb, &configCopy, pre_sdn, post_sdn))){ + slapi_log_error( SLAPI_LOG_FATAL, MEMBEROF_PLUGIN_SUBSYSTEM, +@@ -1261,7 +1287,7 @@ int memberof_postop_add(Slapi_PBlock *pb) + memberof_rlock_config(); + mainConfig = memberof_get_config(); + if(e && mainConfig && mainConfig->group_filter && +- !slapi_filter_test_simple(e, mainConfig->group_filter)) ++ 0 == slapi_filter_test_simple(e, mainConfig->group_filter)) + { + interested = 1; + /* copy config so it doesn't change out from under us */ +@@ -1554,7 +1580,7 @@ memberof_modop_one_replace_r(Slapi_PBlock *pb, MemberOfConfig *config, + "memberof_modop_one_replace_r: %s %s in %s\n" + ,op_str, op_this, op_to); + +- if(config->group_filter && !slapi_filter_test_simple(e, config->group_filter)) ++ if(config->group_filter && 0 == slapi_filter_test_simple(e, config->group_filter)) + { + /* group */ + Slapi_Value *ll_dn_val = 0; +-- +1.9.3 + diff --git a/SOURCES/0034-Ticket-53-Need-to-update-supported-locales.patch b/SOURCES/0034-Ticket-53-Need-to-update-supported-locales.patch deleted file mode 100644 index 45a6e85..0000000 --- a/SOURCES/0034-Ticket-53-Need-to-update-supported-locales.patch +++ /dev/null @@ -1,93 +0,0 @@ -From 5b782cffd0c2779dc7d156aec9e9e5f970e6bf40 Mon Sep 17 00:00:00 2001 -From: Noriko Hosoi <nhosoi@redhat.com> -Date: Fri, 4 Oct 2013 11:38:33 -0700 -Subject: [PATCH 34/39] Ticket #53 - Need to update supported locales - commit e0c78d5b87d4d798a936eba9c90f5db5347bcb3c did not include - the upgreade script: 60upgradeconfigfiles.pl. - Note: This is a part of 389-ds-base-1.3.2.0. - (cherry picked from commit 64e0b3799971fa17aae7260ae238e9f68f66c3bd) - (cherry picked from commit 5950daa74ef929d6543b04baf2255c65e606a97d) - ---- - ldap/admin/src/scripts/60upgradeconfigfiles.pl | 69 ++++++++++++++++++++++++ - 1 files changed, 69 insertions(+), 0 deletions(-) - create mode 100644 ldap/admin/src/scripts/60upgradeconfigfiles.pl - -diff --git a/ldap/admin/src/scripts/60upgradeconfigfiles.pl b/ldap/admin/src/scripts/60upgradeconfigfiles.pl -new file mode 100644 -index 0000000..4b37353 ---- /dev/null -+++ b/ldap/admin/src/scripts/60upgradeconfigfiles.pl -@@ -0,0 +1,69 @@ -+use File::Copy; -+use Mozilla::LDAP::LDIF; -+use DSCreate qw(installSchema); -+ -+sub runinst { -+ my ($inf, $inst, $dseldif, $conn) = @_; -+ -+ if (!$inf->{slapd}->{config_dir} or (! -d $inf->{slapd}->{config_dir})) { -+ return ('error_reading_config_dir', $inf->{slapd}->{config_dir}); -+ } -+ -+ # these files are obsolete, or we want to replace -+ # them with newer versions -+ my @toremove = qw(slapd-collations.conf); -+ -+ # make a backup directory to store the deleted config file, then -+ # don't really delete it, just move it to that directory -+ my $mode = (stat($inf->{slapd}->{config_dir}))[2]; -+ my $bakdir = $inf->{slapd}->{bak_dir} . ".bak"; -+ if (! -d $bakdir) { -+ $! = 0; # clear -+ mkdir $bakdir, $mode; -+ if ($!) { -+ return ('error_creating_directory', $bakdir, $!); -+ } -+ } -+ -+ my @errs; -+ for my $file (@toremove) { -+ my $oldname = $inf->{slapd}->{config_dir} . "/" . $file; -+ next if (! -f $oldname); # does not exist - skip - already (re)moved -+ my $newname = "$bakdir/$file"; -+ $! = 0; # clear -+ rename $oldname, $newname; -+ if ($!) { -+ push @errs, ["error_renaming_config", $oldname, $newname, $!]; -+ } -+ } -+ -+ my $configsrcdir = $inf->{slapd}->{config_dir} . "/../config"; -+ for my $file (@toremove) { -+ my $srcname = "$configsrcdir/$file"; -+ my $newname = $inf->{slapd}->{config_dir} . "/" . $file; -+ -+ copy $srcname, $newname; -+ if ($!) { -+ push @errs, ["error_renaming_config", $srcname, $newname, $!]; -+ } -+ } -+ -+ # If we've encountered any errors up to this point, restore -+ # the original file. -+ if (@errs) { -+ # restore the original files -+ for my $file (@toremove) { -+ my $oldname = "$bakdir/$file"; -+ next if (! -f $oldname); # does not exist - not backed up -+ my $newname = $inf->{slapd}->{config_dir} . "/" . $file; -+ next if (-f $newname); # not removed -+ rename $oldname, $newname; -+ } -+ return @errs; -+ } -+ -+ if (-d $bakdir) { -+ system("rm -rf $bakdir"); -+ } -+ return (); -+} --- -1.7.1 - diff --git a/SOURCES/0035-Ticket-47513-tmpfiles.d-references-var-lock-when-the.patch b/SOURCES/0035-Ticket-47513-tmpfiles.d-references-var-lock-when-the.patch deleted file mode 100644 index 52aebc0..0000000 --- a/SOURCES/0035-Ticket-47513-tmpfiles.d-references-var-lock-when-the.patch +++ /dev/null @@ -1,35 +0,0 @@ -From a11be5cc2bbf57f646d2ddb1554d0ce1416dbe33 Mon Sep 17 00:00:00 2001 -From: Nathan Kinder <nkinder@redhat.com> -Date: Thu, 10 Oct 2013 16:50:51 -0700 -Subject: [PATCH 35/39] Ticket 47513 - tmpfiles.d references /var/lock when they should reference /run/lock - -The previous patch was using numeric comparison instead of string -comparison to check if localrundir was empty. This was causing our -tmpfiles.d configuration to use the settings from the inf file, -which evaluates to /var/run when using --with-fhs. - -This patch uses a proper string comparison which results in using -/run in the tmpfiles.d config as desired. -(cherry picked from commit 0394b2bb9cae3016eeb975ed194e8c7258ed868b) -(cherry picked from commit 0bd980dcc8068c5922ad7ec750622685ed612e48) -(cherry picked from commit 848f5c8eed60573fc52ee58595510af6e8d0eb2b) ---- - ldap/admin/src/scripts/DSCreate.pm.in | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) - -diff --git a/ldap/admin/src/scripts/DSCreate.pm.in b/ldap/admin/src/scripts/DSCreate.pm.in -index fb834df..d37cd7b 100644 ---- a/ldap/admin/src/scripts/DSCreate.pm.in -+++ b/ldap/admin/src/scripts/DSCreate.pm.in -@@ -1094,7 +1094,7 @@ sub updateTmpfilesDotD { - # d /var/run/user 0755 root root 10d - # we don't use age - my $localrundir = set_localrundir("@localrundir@", $inf->{General}->{prefix}); -- if( $localrundir != "" && -d "$localrundir"){ -+ if( $localrundir ne "" && -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/0035-fix-jenkins-warning.patch b/SOURCES/0035-fix-jenkins-warning.patch new file mode 100644 index 0000000..c65e3ff --- /dev/null +++ b/SOURCES/0035-fix-jenkins-warning.patch @@ -0,0 +1,26 @@ +From 841e1bb9dc9ae1e5ab0897a339f647baaf51524e Mon Sep 17 00:00:00 2001 +From: Ludwig Krispenz <lkrispen@redhat.com> +Date: Wed, 17 Dec 2014 19:54:33 +0100 +Subject: [PATCH 35/53] fix jenkins warning + +(cherry picked from commit 4760dc6c66249a793c8485a23c147954265f6fd3) +--- + ldap/servers/plugins/memberof/memberof.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/ldap/servers/plugins/memberof/memberof.c b/ldap/servers/plugins/memberof/memberof.c +index 80b52ab..ce48f01 100644 +--- a/ldap/servers/plugins/memberof/memberof.c ++++ b/ldap/servers/plugins/memberof/memberof.c +@@ -921,7 +921,7 @@ int memberof_postop_modrdn(Slapi_PBlock *pb) + } + if(ret == LDAP_SUCCESS) { + memberof_del_dn_data del_data = {0, configCopy.memberof_attr}; +- if(ret = memberof_del_dn_type_callback(post_e, &del_data)){ ++ if((ret = memberof_del_dn_type_callback(post_e, &del_data))){ + slapi_log_error( SLAPI_LOG_FATAL, MEMBEROF_PLUGIN_SUBSYSTEM, + "memberof_postop_modrdn - delete dn callback failed for (%s), error (%d)\n", + slapi_entry_get_dn(post_e), ret); +-- +1.9.3 + diff --git a/SOURCES/0036-Ticket-47550-logconv-failed-logins-Use-of-uninitiali.patch b/SOURCES/0036-Ticket-47550-logconv-failed-logins-Use-of-uninitiali.patch deleted file mode 100644 index 2821206..0000000 --- a/SOURCES/0036-Ticket-47550-logconv-failed-logins-Use-of-uninitiali.patch +++ /dev/null @@ -1,35 +0,0 @@ -From e2a880b2ff070573151b6ffaf78137710259b26c Mon Sep 17 00:00:00 2001 -From: Rich Megginson <rmeggins@redhat.com> -Date: Thu, 10 Oct 2013 15:55:29 -0600 -Subject: [PATCH 36/39] Ticket #47550 logconv: failed logins: Use of uninitialized value in numeric comparison at logconv.pl line 949 - -https://fedorahosted.org/389/ticket/47550 -Reviewed by: nhosoi (Thanks!) -Branch: 389-ds-base-1.3.1 -Fix Description: Copy/paste error. Changed badPassword to badPasswordIp. -Platforms tested: RHEL6 x86_64 -Flag Day: no -Doc impact: no -(cherry picked from commit 322fd7996aa810db1b51882d8d1103e11a36cc62) -(cherry picked from commit 86000e43d69267d0b6b8110dcdba43352868c173) -(cherry picked from commit 5844c565267cf23f8a1c4ca5177d26cd82809392) ---- - ldap/admin/src/logconv.pl | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) - -diff --git a/ldap/admin/src/logconv.pl b/ldap/admin/src/logconv.pl -index 7381a66..8b423ca 100755 ---- a/ldap/admin/src/logconv.pl -+++ b/ldap/admin/src/logconv.pl -@@ -946,7 +946,7 @@ if ($verb eq "yes" || $usage =~ /f/ ){ - } - print "\nFrom the IP address(s) :\n\n"; - $bpCount = 0; -- foreach my $ip (sort {$badPassword{$b} <=> $badPassword{$a} } keys %badPasswordIp){ -+ foreach my $ip (sort {$badPasswordIp{$b} <=> $badPasswordIp{$a} } keys %badPasswordIp){ - if ($bpCount > $sizeCount){ last;} - $bpCount++; - printf "%-4s %-16s\n", $badPasswordIp{$ip}, $ip; --- -1.7.1 - diff --git a/SOURCES/0036-Ticket-47950-Bind-DN-tracking-unable-to-write-to-int.patch b/SOURCES/0036-Ticket-47950-Bind-DN-tracking-unable-to-write-to-int.patch new file mode 100644 index 0000000..943ed9a --- /dev/null +++ b/SOURCES/0036-Ticket-47950-Bind-DN-tracking-unable-to-write-to-int.patch @@ -0,0 +1,534 @@ +From 7ad3f7283e41f3d690626db5b38a9fb63fa8e005 Mon Sep 17 00:00:00 2001 +From: Mark Reynolds <mreynolds@redhat.com> +Date: Tue, 18 Nov 2014 09:24:21 -0500 +Subject: [PATCH 36/53] Ticket 47950 - Bind DN tracking unable to write to + internalModifiersName without special permissions + +Bug Description: When a non-rootDN entry makes an update when plugin bind dn tracking + is enabled, it is incorrectly rejected with an error 50. + +Fix Description: Create a function to check if an attribute is one of last mod attributes, + including the internalModfieresname/internalModifytimestamp. Use this + new function wherever we are checking for last mod attributes. + +https://fedorahosted.org/389/ticket/47950 + +Reviewed by: rmeggins(Thanks!) + +(cherry picked from commit c973e7150cf1e7fb3f61a76cf1baf3c0fa91f756) +(cherry picked from commit fa8f7dc3d1ab508c762fc2e18de0cb860ed84657) +--- + dirsrvtests/tickets/ticket47950_test.py | 273 +++++++++++++++++++++ + ldap/servers/plugins/acl/acl.c | 4 +- + ldap/servers/plugins/replication/cl5_config.c | 9 +- + ldap/servers/plugins/replication/repl5_agmtlist.c | 3 +- + .../plugins/replication/repl5_replica_config.c | 3 +- + ldap/servers/slapd/add.c | 4 +- + ldap/servers/slapd/back-ldbm/ldbm_config.c | 3 +- + ldap/servers/slapd/configdse.c | 5 +- + ldap/servers/slapd/opshared.c | 17 ++ + ldap/servers/slapd/result.c | 2 + + ldap/servers/slapd/slapi-plugin.h | 2 + + ldap/servers/slapd/task.c | 4 +- + ldap/servers/slapd/tools/mmldif.c | 12 +- + 13 files changed, 309 insertions(+), 32 deletions(-) + create mode 100644 dirsrvtests/tickets/ticket47950_test.py + +diff --git a/dirsrvtests/tickets/ticket47950_test.py b/dirsrvtests/tickets/ticket47950_test.py +new file mode 100644 +index 0000000..976f964 +--- /dev/null ++++ b/dirsrvtests/tickets/ticket47950_test.py +@@ -0,0 +1,273 @@ ++import os ++import sys ++import time ++import ldap ++import logging ++import socket ++import pytest ++from lib389 import DirSrv, Entry, tools, tasks ++from lib389.tools import DirSrvTools ++from lib389._constants import * ++from lib389.properties import * ++from lib389.tasks import * ++from constants import * ++ ++log = logging.getLogger(__name__) ++ ++installation_prefix = None ++ ++USER1_DN = "uid=user1,%s" % DEFAULT_SUFFIX ++USER2_DN = "uid=user2,%s" % DEFAULT_SUFFIX ++ ++ ++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_ticket47950(topology): ++ """ ++ Testing nsslapd-plugin-binddn-tracking does not cause issues around ++ access control and reconfiguring replication/repl agmt. ++ """ ++ ++ log.info('Testing Ticket 47950 - Testing nsslapd-plugin-binddn-tracking') ++ ++ # ++ # Turn on bind dn tracking ++ # ++ try: ++ topology.standalone.modify_s("cn=config", [(ldap.MOD_REPLACE, 'nsslapd-plugin-binddn-tracking', 'on')]) ++ log.info('nsslapd-plugin-binddn-tracking enabled.') ++ except ldap.LDAPError, e: ++ log.error('Failed to enable bind dn tracking: ' + e.message['desc']) ++ assert False ++ ++ # ++ # Add two users ++ # ++ try: ++ topology.standalone.add_s(Entry((USER1_DN, { ++ 'objectclass': "top person inetuser".split(), ++ 'userpassword': "password", ++ 'sn': "1", ++ 'cn': "user 1"}))) ++ log.info('Added test user %s' % USER1_DN) ++ except ldap.LDAPError, e: ++ log.error('Failed to add %s: %s' % (USER1_DN, e.message['desc'])) ++ assert False ++ ++ try: ++ topology.standalone.add_s(Entry((USER2_DN, { ++ 'objectclass': "top person inetuser".split(), ++ 'sn': "2", ++ 'cn': "user 2"}))) ++ log.info('Added test user %s' % USER2_DN) ++ except ldap.LDAPError, e: ++ log.error('Failed to add user1: ' + e.message['desc']) ++ assert False ++ ++ # ++ # Add an aci ++ # ++ try: ++ acival = '(targetattr ="cn")(version 3.0;acl "Test bind dn tracking"' + \ ++ ';allow (all) (userdn = "ldap:///%s");)' % USER1_DN ++ ++ topology.standalone.modify_s(DEFAULT_SUFFIX, [(ldap.MOD_ADD, 'aci', acival)]) ++ log.info('Added aci') ++ except ldap.LDAPError, e: ++ log.error('Failed to add aci: ' + e.message['desc']) ++ assert False ++ ++ # ++ # Make modification as user ++ # ++ try: ++ topology.standalone.simple_bind_s(USER1_DN, "password") ++ log.info('Bind as user %s successful' % USER1_DN) ++ except ldap.LDAPError, e: ++ log.error('Failed to bind as user1: ' + e.message['desc']) ++ assert False ++ ++ try: ++ topology.standalone.modify_s(USER2_DN, [(ldap.MOD_REPLACE, 'cn', 'new value')]) ++ log.info('%s successfully modified user %s' % (USER1_DN, USER2_DN)) ++ except ldap.LDAPError, e: ++ log.error('Failed to update user2: ' + e.message['desc']) ++ assert False ++ ++ # ++ # Setup replica and create a repl agmt ++ # ++ try: ++ topology.standalone.simple_bind_s(DN_DM, PASSWORD) ++ log.info('Bind as %s successful' % DN_DM) ++ except ldap.LDAPError, e: ++ log.error('Failed to bind as rootDN: ' + e.message['desc']) ++ assert False ++ ++ try: ++ topology.standalone.replica.enableReplication(suffix=DEFAULT_SUFFIX, role=REPLICAROLE_MASTER, ++ replicaId=REPLICAID_MASTER) ++ log.info('Successfully enabled replication.') ++ except ValueError: ++ log.error('Failed to enable replication') ++ assert False ++ ++ properties = {RA_NAME: r'test plugin internal bind dn', ++ RA_BINDDN: defaultProperties[REPLICATION_BIND_DN], ++ RA_BINDPW: defaultProperties[REPLICATION_BIND_PW], ++ RA_METHOD: defaultProperties[REPLICATION_BIND_METHOD], ++ RA_TRANSPORT_PROT: defaultProperties[REPLICATION_TRANSPORT]} ++ ++ try: ++ repl_agreement = topology.standalone.agreement.create(suffix=DEFAULT_SUFFIX, host="127.0.0.1", ++ port="7777", properties=properties) ++ log.info('Successfully created replication agreement') ++ except InvalidArgumentError, e: ++ log.error('Failed to create replication agreement: ' + e.message['desc']) ++ assert False ++ ++ # ++ # modify replica ++ # ++ try: ++ properties = {REPLICA_ID: "7"} ++ topology.standalone.replica.setProperties(DEFAULT_SUFFIX, None, None, properties) ++ log.info('Successfully modified replica') ++ except ldap.LDAPError, e: ++ log.error('Failed to update replica config: ' + e.message['desc']) ++ assert False ++ ++ # ++ # modify repl agmt ++ # ++ try: ++ properties = {RA_CONSUMER_PORT: "8888"} ++ topology.standalone.agreement.setProperties(None, repl_agreement, None, properties) ++ log.info('Successfully modified replication agreement') ++ except ValueError: ++ log.error('Failed to update replica agreement: ' + repl_agreement) ++ assert False ++ ++ # We passed ++ log.info("Test Passed.") ++ ++ ++def test_ticket47953_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_ticket47950(topo) ++ ++if __name__ == '__main__': ++ run_isolated() +\ No newline at end of file +diff --git a/ldap/servers/plugins/acl/acl.c b/ldap/servers/plugins/acl/acl.c +index 5416330..403c5b3 100644 +--- a/ldap/servers/plugins/acl/acl.c ++++ b/ldap/servers/plugins/acl/acl.c +@@ -1450,9 +1450,7 @@ acl_check_mods( + if (be != NULL) + slapi_pblock_get ( pb, SLAPI_BE_LASTMOD, &lastmod ); + } +- if (lastmod && +- (strcmp (mod->mod_type, "modifiersname")== 0 || +- strcmp (mod->mod_type, "modifytimestamp")== 0)) { ++ if (lastmod && slapi_attr_is_last_mod(mod->mod_type)) { + /* skip pseudo attr(s) */ + continue; + } +diff --git a/ldap/servers/plugins/replication/cl5_config.c b/ldap/servers/plugins/replication/cl5_config.c +index 55727c2..a3a0fb3 100644 +--- a/ldap/servers/plugins/replication/cl5_config.c ++++ b/ldap/servers/plugins/replication/cl5_config.c +@@ -357,15 +357,10 @@ changelog5_config_modify (Slapi_PBlock *pb, Slapi_Entry* entryBefore, Slapi_Entr + config_attr = (char *) mods[i]->mod_type; + config_attr_value = (char *) mods[i]->mod_bvalues[j]->bv_val; + +-#define ATTR_MODIFIERSNAME "modifiersname" +-#define ATTR_MODIFYTIMESTAMP "modifytimestamp" +- +- if ( strcasecmp ( config_attr, ATTR_MODIFIERSNAME ) == 0 ) { +- continue; +- } +- if ( strcasecmp ( config_attr, ATTR_MODIFYTIMESTAMP ) == 0 ) { ++ if ( slapi_attr_is_last_mod(config_attr)){ + continue; + } ++ + /* replace existing value */ + if ( strcasecmp (config_attr, CONFIG_CHANGELOG_DIR_ATTRIBUTE ) == 0 ) + { +diff --git a/ldap/servers/plugins/replication/repl5_agmtlist.c b/ldap/servers/plugins/replication/repl5_agmtlist.c +index 5eead07..4a1ff5d 100644 +--- a/ldap/servers/plugins/replication/repl5_agmtlist.c ++++ b/ldap/servers/plugins/replication/repl5_agmtlist.c +@@ -524,8 +524,7 @@ agmtlist_modify_callback(Slapi_PBlock *pb, Slapi_Entry *entryBefore, Slapi_Entry + repl5_set_debug_timeout(val); + slapi_ch_free_string(&val); + } +- else if (strcasecmp (mods[i]->mod_type, "modifytimestamp") == 0 || +- strcasecmp (mods[i]->mod_type, "modifiersname") == 0 || ++ else if (slapi_attr_is_last_mod(mods[i]->mod_type) || + strcasecmp (mods[i]->mod_type, "description") == 0) + { + /* ignore modifier's name and timestamp attributes and the description. */ +diff --git a/ldap/servers/plugins/replication/repl5_replica_config.c b/ldap/servers/plugins/replication/repl5_replica_config.c +index 2810b11..3bc3916 100644 +--- a/ldap/servers/plugins/replication/repl5_replica_config.c ++++ b/ldap/servers/plugins/replication/repl5_replica_config.c +@@ -534,8 +534,7 @@ replica_config_modify (Slapi_PBlock *pb, Slapi_Entry* entryBefore, Slapi_Entry* + } + } + /* ignore modifiers attributes added by the server */ +- else if (strcasecmp (config_attr, "modifytimestamp") == 0 || +- strcasecmp (config_attr, "modifiersname") == 0) ++ else if (slapi_attr_is_last_mod(config_attr)) + { + *returncode = LDAP_SUCCESS; + } +diff --git a/ldap/servers/slapd/add.c b/ldap/servers/slapd/add.c +index 875ad22..28fae32 100644 +--- a/ldap/servers/slapd/add.c ++++ b/ldap/servers/slapd/add.c +@@ -911,8 +911,8 @@ static int check_rdn_for_created_attrs(Slapi_Entry *e) + int i, rc = 0; + Slapi_RDN *rdn = NULL; + char *value = NULL; +- char *type[] = {SLAPI_ATTR_UNIQUEID, "modifytimestamp", "createtimestamp", +- "creatorsname", "modifiersname", 0}; ++ char *type[] = {SLAPI_ATTR_UNIQUEID, "modifytimestamp", "modifiersname", "internalmodifytimestamp", ++ "internalmodifiersname", "createtimestamp", "creatorsname", 0}; + + if ((rdn = slapi_rdn_new())) { + slapi_rdn_init_dn(rdn, slapi_entry_get_dn_const(e)); +diff --git a/ldap/servers/slapd/back-ldbm/ldbm_config.c b/ldap/servers/slapd/back-ldbm/ldbm_config.c +index 0f8cc76..294999c 100644 +--- a/ldap/servers/slapd/back-ldbm/ldbm_config.c ++++ b/ldap/servers/slapd/back-ldbm/ldbm_config.c +@@ -1849,10 +1849,9 @@ int ldbm_config_ignored_attr(char *attr_name) + if (!strcasecmp("objectclass", attr_name) || + !strcasecmp("cn", attr_name) || + !strcasecmp("creatorsname", attr_name) || +- !strcasecmp("modifiersname", attr_name) || + !strcasecmp("createtimestamp", attr_name) || + !strcasecmp(LDBM_NUMSUBORDINATES_STR, attr_name) || +- !strcasecmp("modifytimestamp", attr_name)) { ++ slapi_attr_is_last_mod(attr_name)){ + return 1; + } else { + return 0; +diff --git a/ldap/servers/slapd/configdse.c b/ldap/servers/slapd/configdse.c +index 339be42..e70e340 100644 +--- a/ldap/servers/slapd/configdse.c ++++ b/ldap/servers/slapd/configdse.c +@@ -116,10 +116,9 @@ ignore_attr_type(const char *attr_type) + (strcasecmp (attr_type, "aci") == 0) || + (strcasecmp (attr_type, "objectclass") == 0) || + (strcasecmp (attr_type, "numsubordinates") == 0) || +- (strcasecmp (attr_type, "internalModifiersname") == 0) || + (strcasecmp (attr_type, "internalCreatorsname") == 0) || +- (strcasecmp (attr_type, "modifytimestamp") == 0) || +- (strcasecmp (attr_type, "modifiersname") == 0)) { ++ slapi_attr_is_last_mod((char *)attr_type)) ++ { + return 1; + } + +diff --git a/ldap/servers/slapd/opshared.c b/ldap/servers/slapd/opshared.c +index 4e06652..ebd4fdf 100644 +--- a/ldap/servers/slapd/opshared.c ++++ b/ldap/servers/slapd/opshared.c +@@ -218,6 +218,23 @@ modify_update_last_modified_attr(Slapi_PBlock *pb, Slapi_Mods *smods) + } + + /* ++ * If the attribute is one of the last mod attributes return 1, ++ * otherwise return 0; ++ */ ++int ++slapi_attr_is_last_mod(char *attr) ++{ ++ if(strcasecmp (attr, "modifytimestamp") == 0 || ++ strcasecmp (attr, "modifiersname") == 0 || ++ strcasecmp (attr, "internalmodifytimestamp") == 0 || ++ strcasecmp (attr, "internalmodifiersname") == 0) ++ { ++ return 1; ++ } ++ return 0; ++} ++ ++/* + * Returns: 0 - if the operation is successful + * < 0 - if operation fails. + * Note that an operation is considered "failed" if a result is sent +diff --git a/ldap/servers/slapd/result.c b/ldap/servers/slapd/result.c +index 92573d5..ca2fa43 100644 +--- a/ldap/servers/slapd/result.c ++++ b/ldap/servers/slapd/result.c +@@ -1059,6 +1059,8 @@ encode_attr( + + #define LASTMODATTR( x ) (strcasecmp( x, "modifytimestamp" ) == 0 \ + || strcasecmp( x, "modifiersname" ) == 0 \ ++ || strcasecmp( x, "internalmodifytimestamp" ) == 0 \ ++ || strcasecmp( x, "internalmodifiersname" ) == 0 \ + || strcasecmp( x, "createtimestamp" ) == 0 \ + || strcasecmp( x, "creatorsname" ) == 0) + +diff --git a/ldap/servers/slapd/slapi-plugin.h b/ldap/servers/slapd/slapi-plugin.h +index f1ecfe8..8ffc582 100644 +--- a/ldap/servers/slapd/slapi-plugin.h ++++ b/ldap/servers/slapd/slapi-plugin.h +@@ -5278,6 +5278,8 @@ int slapi_filter_compare(struct slapi_filter *f1, struct slapi_filter *f2); + Slapi_Filter *slapi_filter_dup(Slapi_Filter *f); + int slapi_filter_changetype(Slapi_Filter *f, const char *newtype); + ++int slapi_attr_is_last_mod(char *attr); ++ + /** + * Normalize in-place the given filter. Normalizes the attribute types always. + * If norm_values is true, will also normalize the values. +diff --git a/ldap/servers/slapd/task.c b/ldap/servers/slapd/task.c +index a4d85a8..2a0cb82 100644 +--- a/ldap/servers/slapd/task.c ++++ b/ldap/servers/slapd/task.c +@@ -802,8 +802,8 @@ static int task_modify(Slapi_PBlock *pb, Slapi_Entry *e, + * stuck in by the server */ + if ((strcasecmp(mods[i]->mod_type, "ttl") != 0) && + (strcasecmp(mods[i]->mod_type, "nsTaskCancel") != 0) && +- (strcasecmp(mods[i]->mod_type, "modifiersName") != 0) && +- (strcasecmp(mods[i]->mod_type, "modifyTimestamp") != 0)) { ++ !slapi_attr_is_last_mod(mods[i]->mod_type)) ++ { + /* you aren't allowed to change this! */ + *returncode = LDAP_UNWILLING_TO_PERFORM; + return SLAPI_DSE_CALLBACK_ERROR; +diff --git a/ldap/servers/slapd/tools/mmldif.c b/ldap/servers/slapd/tools/mmldif.c +index bf20945..156d892 100644 +--- a/ldap/servers/slapd/tools/mmldif.c ++++ b/ldap/servers/slapd/tools/mmldif.c +@@ -1009,9 +1009,7 @@ addnew(FILE * edf3, const char *changetype, record_t * first) + for (attnum = 1, att = &first->data; + attnum <= first->nattrs; + attnum++, att = attribnext(att)) { +- if (!stricmp(attribname(att), "modifytimestamp")) +- continue; +- if (!stricmp(attribname(att), "modifiersname")) ++ if (slapi_attr_is_last_mod(attribname(att))) + continue; + if (!putvalue(edf3, NULL, attribname(att), att->namelen, + attribvalue(att), att->valuelen)) { +@@ -1066,15 +1064,11 @@ addmodified(FILE * edf3, attrib1_t * attrib, record_t * first) + */ + while (a != NULL || num_b <= tot_b) { + /* ignore operational attrs */ +- if (num_b <= tot_b && +- (stricmp(attribname(b), "modifytimestamp") == 0 || +- stricmp(attribname(b), "modifiersname") == 0)) { ++ if ( num_b <= tot_b && slapi_attr_is_last_mod(attribname(b)) ){ + b = attribnext(b); num_b++; + continue; + } +- if (a != NULL && +- (stricmp(a->name, "modifytimestamp") == 0 || +- stricmp(a->name, "modifiersname") == 0)) { ++ if (a != NULL && slapi_attr_is_last_mod(a->name)) { + a = a->next; + continue; + } +-- +1.9.3 + diff --git a/SOURCES/0037-Ticket-47329-Improve-slapi_back_transaction_begin-re.patch b/SOURCES/0037-Ticket-47329-Improve-slapi_back_transaction_begin-re.patch deleted file mode 100644 index 0411c81..0000000 --- a/SOURCES/0037-Ticket-47329-Improve-slapi_back_transaction_begin-re.patch +++ /dev/null @@ -1,94 +0,0 @@ -From f786600c593a78c8f1cd96a12ac6059f41837dd9 Mon Sep 17 00:00:00 2001 -From: Mark Reynolds <mreynolds@redhat.com> -Date: Fri, 21 Jun 2013 10:47:09 -0400 -Subject: [PATCH 37/39] Ticket 47329 - Improve slapi_back_transaction_begin() return code when transactions are not available - - Bug Description: The slapi_back_transaction_begin() function needs it's return codes - to be changed to be more friendly for plug-in writers when - transactions are not available. - - Fix Description: Added new error code SLAPI_BACK_TRANSACTION_NOT_SUPPORTED, and - updated the slapi_plugin.h - - https://fedorahosted.org/389/ticket/47329 - - Reviewed by: Noriko, Ludwig, and Rich(Thanks!!!) -(cherry picked from commit 8879ed2efa48e96f2b920a3ab83036b07e3b3ae4) -(cherry picked from commit badcb1ac60bfb4c54fe264088a3c730b2ce2ac11) ---- - ldap/servers/slapd/backend.c | 26 +++++++++++++++++++++----- - ldap/servers/slapd/slapi-plugin.h | 2 ++ - 2 files changed, 23 insertions(+), 5 deletions(-) - -diff --git a/ldap/servers/slapd/backend.c b/ldap/servers/slapd/backend.c -index ad253f1..ead251e 100644 ---- a/ldap/servers/slapd/backend.c -+++ b/ldap/servers/slapd/backend.c -@@ -648,8 +648,13 @@ int - slapi_back_transaction_begin(Slapi_PBlock *pb) - { - IFP txn_begin; -- slapi_pblock_get(pb, SLAPI_PLUGIN_DB_BEGIN_FN, (void*)&txn_begin); -- return txn_begin(pb); -+ if(slapi_pblock_get(pb, SLAPI_PLUGIN_DB_BEGIN_FN, (void*)&txn_begin) || -+ !txn_begin) -+ { -+ return SLAPI_BACK_TRANSACTION_NOT_SUPPORTED; -+ } else { -+ return txn_begin(pb); -+ } - } - - /* API to expose DB transaction commit */ -@@ -657,7 +662,13 @@ int - slapi_back_transaction_commit(Slapi_PBlock *pb) - { - IFP txn_commit; -- slapi_pblock_get(pb, SLAPI_PLUGIN_DB_COMMIT_FN, (void*)&txn_commit); -+ if(slapi_pblock_get(pb, SLAPI_PLUGIN_DB_COMMIT_FN, (void*)&txn_commit) || -+ !txn_commit) -+ { -+ return SLAPI_BACK_TRANSACTION_NOT_SUPPORTED; -+ } else { -+ return txn_commit(pb); -+ } - return txn_commit(pb); - } - -@@ -666,6 +677,11 @@ int - slapi_back_transaction_abort(Slapi_PBlock *pb) - { - IFP txn_abort; -- slapi_pblock_get(pb, SLAPI_PLUGIN_DB_ABORT_FN, (void*)&txn_abort); -- return txn_abort(pb); -+ if(slapi_pblock_get(pb, SLAPI_PLUGIN_DB_ABORT_FN, (void*)&txn_abort) || -+ !txn_abort) -+ { -+ return SLAPI_BACK_TRANSACTION_NOT_SUPPORTED; -+ } else { -+ return txn_abort(pb); -+ } - } -diff --git a/ldap/servers/slapd/slapi-plugin.h b/ldap/servers/slapd/slapi-plugin.h -index 2f2152b..d456af8 100644 ---- a/ldap/servers/slapd/slapi-plugin.h -+++ b/ldap/servers/slapd/slapi-plugin.h -@@ -6067,6 +6067,7 @@ const char * slapi_be_gettype(Slapi_Backend *be); - * - * \param pb Pblock which is supposed to set (Slapi_Backend *) to SLAPI_BACKEND - * \return 0 if successful -+ * \return SLAPI_BACK_TRANSACTION_NOT_SUPPORTED if transaction support is not available for this backend - * \return Non-zero if an error occurred - * - * \see slapi_back_transaction_commit -@@ -6904,6 +6905,7 @@ typedef struct slapi_plugindesc { - #define SLAPI_PARENT_TXN 190 - #define SLAPI_TXN 191 - #define SLAPI_TXN_RUV_MODS_FN 1901 -+#define SLAPI_BACK_TRANSACTION_NOT_SUPPORTED 1902 - - /* - * The following are used to pass information back and forth --- -1.7.1 - diff --git a/SOURCES/0037-Ticket-47949-logconv.pl-support-parsing-showing-repo.patch b/SOURCES/0037-Ticket-47949-logconv.pl-support-parsing-showing-repo.patch new file mode 100644 index 0000000..11ba18e --- /dev/null +++ b/SOURCES/0037-Ticket-47949-logconv.pl-support-parsing-showing-repo.patch @@ -0,0 +1,141 @@ +From b4a38681279529caab2c221ed19ead5636c41071 Mon Sep 17 00:00:00 2001 +From: Mark Reynolds <mreynolds@redhat.com> +Date: Fri, 5 Dec 2014 15:42:45 -0500 +Subject: [PATCH 37/53] Ticket 47949 - logconv.pl -- support + parsing/showing/reporting different protocol versions + +Description: Update script to report on the secure protocol versions that are now available + in the access log. + + Also, revised the connection section output, cleaned up the SASL bind report, + and handled issue with log(s) that only span 1 second(0 elapsed time) + +https://fedorahosted.org/389/ticket/47949 + +Reviewed by: nhosoi & rmeggins(Thanks!!) + +(cherry picked from commit 7aeeb7c968a03f4a75c8338ffbd7cbbaa73e102d) +(cherry picked from commit 8b7ae6d930927171c7976fe9093f2f765714c8ac) +--- + ldap/admin/src/logconv.pl | 69 ++++++++++++++++++++++++++++++++++++----------- + 1 file changed, 53 insertions(+), 16 deletions(-) + +diff --git a/ldap/admin/src/logconv.pl b/ldap/admin/src/logconv.pl +index 0611755..e4bbfbc 100755 +--- a/ldap/admin/src/logconv.pl ++++ b/ldap/admin/src/logconv.pl +@@ -69,7 +69,7 @@ if ($#ARGV < 0){; + + my $file_count = 0; + my $arg_count = 0; +-my $logversion = "8.0"; ++my $logversion = "8.1"; + my $sizeCount = "20"; + my $startFlag = 0; + my $startTime = 0; +@@ -262,7 +262,14 @@ my $startTLSCount = 0; + my $ldapiCount = 0; + my $autobindCount = 0; + my $limit = 25000; # number of lines processed to trigger output +- ++my $searchStat; ++my $modStat; ++my $addStat; ++my $deleteStat; ++my $modrdnStat; ++my $compareStat; ++my $bindCountStat; ++my %cipher = (); + my @removefiles = (); + + my @conncodes = qw(A1 B1 B4 T1 T2 B2 B3 R1 P1 P2 U1); +@@ -680,27 +687,45 @@ if($reportStats ne ""){ + + print "Restarts: $serverRestartCount\n"; + print "Total Connections: $connectionCount\n"; +-print " - StartTLS Connections: $startTLSCount\n"; +-print " - LDAPS Connections: $sslCount\n"; ++print " - LDAP Connections: " . ($connectionCount - $sslCount - $ldapiCount) . "\n"; + print " - LDAPI Connections: $ldapiCount\n"; ++print " - LDAPS Connections: $sslCount\n"; ++print " - StartTLS Extended Ops: $startTLSCount\n"; ++if(%cipher){ ++ print " Secure Protocol Versions:\n"; ++ foreach my $key (sort { $b cmp $a } keys %cipher) { ++ print " - $key - $cipher{$key}\n"; ++ } ++ print "\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) ; +- } +-else { +- print "Overall Performance: No Operations to evaluate\n\n"; ++ 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"; + } + +-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); ++if ($totalTimeInSecs == 0){ ++ $searchStat = sprintf "(%.2f/sec) (%.2f/min)\n","0", "0"; ++ $modStat = sprintf "(%.2f/sec) (%.2f/min)\n","0", "0"; ++ $addStat = sprintf "(%.2f/sec) (%.2f/min)\n","0", "0"; ++ $deleteStat = sprintf "(%.2f/sec) (%.2f/min)\n","0", "0"; ++ $modrdnStat = sprintf "(%.2f/sec) (%.2f/min)\n","0", "0"; ++ $compareStat = sprintf "(%.2f/sec) (%.2f/min)\n","0", "0"; ++ $bindCountStat = sprintf "(%.2f/sec) (%.2f/min)\n","0", "0"; ++} else { ++ $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); ++} + + format STDOUT = + Searches: @<<<<<<<<<<<< @<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< +@@ -973,7 +998,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 - %s\n",$saslb, $saslmech->{$saslb}; + } + } + +@@ -1908,6 +1933,18 @@ sub parseLineNormal + handleRestart(); + } + if (m/ SSL connection from/){$sslCount++; if($reportStats){ inc_stats('sslconns',$s_stats,$m_stats); }} ++ # Gather TLS and SSL version info ++ if ($_ =~ /conn= *([0-9A-Z]+) TLS *(.*)/){ ++ $cipher{"TLS" . $2}++; ++ } ++ if ($_ =~ /conn= *([0-9A-Z]+) SSL *(.*)/){ ++ my $sslversion = $2; ++ if(/SSL /){ ++ $cipher{"SSL " . $sslversion}++; ++ } else { ++ $cipher{"SSL" . $sslversion}++; ++ } ++ } + if (m/ connection from local to /){$ldapiCount++;} + if($_ =~ /AUTOBIND dn=\"(.*)\"/){ + $autobindCount++; +-- +1.9.3 + diff --git a/SOURCES/0038-Coverity-Fixes.patch b/SOURCES/0038-Coverity-Fixes.patch deleted file mode 100644 index 6a6a8ee..0000000 --- a/SOURCES/0038-Coverity-Fixes.patch +++ /dev/null @@ -1,346 +0,0 @@ -From b67e23018d0be5de44e709d2cc7c074b42aae586 Mon Sep 17 00:00:00 2001 -From: Mark Reynolds <mreynolds@redhat.com> -Date: Tue, 25 Jun 2013 10:38:26 -0400 -Subject: [PATCH 38/39] Coverity Fixes - -13177 - Unreachable code (backend.c) -13175 - Resource leak (repl5_ruv.c) - -Did code cleanup in libaccess/oneval.cpp before I do the fix for 13176(resource leak). -This is will be a separate commit. - -https://bugzilla.redhat.com/show_bug.cgi?id=970221 - -Reviewed by: richm(Thanks!) -(cherry picked from commit 6e07f4df6c1963f40368d0ae17e0775aa33362af) -removed the repl5_ruv.c changes because they do not apply to 1.3.1 -(cherry picked from commit 21dccd37e7883ff3b9ace01350e3123dc42b3b82) ---- - ldap/servers/slapd/backend.c | 1 - - lib/libaccess/oneeval.cpp | 259 +++++++++++++++++++++--------------------- - 2 files changed, 128 insertions(+), 132 deletions(-) - -diff --git a/ldap/servers/slapd/backend.c b/ldap/servers/slapd/backend.c -index ead251e..8a72b13 100644 ---- a/ldap/servers/slapd/backend.c -+++ b/ldap/servers/slapd/backend.c -@@ -669,7 +669,6 @@ slapi_back_transaction_commit(Slapi_PBlock *pb) - } else { - return txn_commit(pb); - } -- return txn_commit(pb); - } - - /* API to expose DB transaction abort */ -diff --git a/lib/libaccess/oneeval.cpp b/lib/libaccess/oneeval.cpp -index fbaa6d8..8077969 100644 ---- a/lib/libaccess/oneeval.cpp -+++ b/lib/libaccess/oneeval.cpp -@@ -358,8 +358,8 @@ ACLEvalBuildContext( - /* Allocate the cache context and link it into the ACLListHandle */ - cache = (ACLListCache_t *)PERM_CALLOC(sizeof(ACLListCache_t)); - if (cache == NULL) { -- nserrGenerate(errp, ACLERRNOMEM, ACLERR4010, ACL_Program, 0); -- goto error; -+ nserrGenerate(errp, ACLERRNOMEM, ACLERR4010, ACL_Program, 0); -+ goto error; - } - - /* Allocate the access rights hash table */ -@@ -371,9 +371,9 @@ ACLEvalBuildContext( - NULL); - - if (cache->Table == NULL) { -- nserrGenerate(errp, ACLERRNOMEM, ACLERR4000, ACL_Program, 1, -- XP_GetAdminStr(DBT_EvalBuildContextUnableToCreateHash)); -- goto error; -+ nserrGenerate(errp, ACLERRNOMEM, ACLERR4000, ACL_Program, 1, -+ XP_GetAdminStr(DBT_EvalBuildContextUnableToCreateHash)); -+ goto error; - } - - wrapper = acleval->acllist->acl_list_head; -@@ -395,162 +395,159 @@ ACLEvalBuildContext( - XP_GetAdminStr(DBT_EvalBuildContextUnableToAllocAceEntry)); - goto error; - } -- new_ace->acep = ace; -+ new_ace->acep = ace; - ace_cnt++; - - if (cache->acelist == NULL) -- cache->acelist = acelast = new_ace; -+ cache->acelist = acelast = new_ace; - else { - if(acelast) -- acelast->next = new_ace; -- acelast = new_ace; -- new_ace->acep = ace; -+ acelast->next = new_ace; -+ acelast = new_ace; -+ new_ace->acep = ace; - } -- new_ace->next = NULL; -+ new_ace->next = NULL; - -- argp = ace->expr_argv; -+ argp = ace->expr_argv; - -- switch (ace->expr_type) -- { -- case ACL_EXPR_TYPE_ALLOW: -- case ACL_EXPR_TYPE_DENY: -- -- /* Add this ACE to the appropriate entries in the access rights -- * hash table -- */ -- while (*argp) -- { -- entry = -- (ACLAceNumEntry_t *)PERM_CALLOC(sizeof(ACLAceNumEntry_t)); -- if (entry == (ACLAceNumEntry_t *)NULL) { -- nserrGenerate(errp, ACLERRNOMEM, ACLERR4030, ACL_Program, 1, -- XP_GetAdminStr(DBT_EvalBuildContextUnableToAllocAceEntry)); -- goto error; -- } -- if (cache->chain_head == NULL) -- cache->chain_head = cache->chain_tail = entry; -- else { -- cache->chain_tail->chain = entry; -- cache->chain_tail = entry; -+ switch (ace->expr_type) -+ { -+ case ACL_EXPR_TYPE_ALLOW: -+ case ACL_EXPR_TYPE_DENY: -+ -+ /* Add this ACE to the appropriate entries in the access rights -+ * hash table -+ */ -+ while (*argp) -+ { -+ entry = (ACLAceNumEntry_t *)PERM_CALLOC(sizeof(ACLAceNumEntry_t)); -+ if (entry == (ACLAceNumEntry_t *)NULL) { -+ nserrGenerate(errp, ACLERRNOMEM, ACLERR4030, ACL_Program, 1, -+ XP_GetAdminStr(DBT_EvalBuildContextUnableToAllocAceEntry)); -+ goto error; -+ } -+ if (cache->chain_head == NULL) -+ cache->chain_head = cache->chain_tail = entry; -+ else { -+ cache->chain_tail->chain = entry; -+ cache->chain_tail = entry; -+ } -+ entry->acenum = ace_cnt; -+ -+ /* -+ * OK to call PL_HasTableLookup() even though it mods -+ * the Table as this routine is called in critical section. -+ */ -+ temp_entry = (ACLAceNumEntry_t *)PL_HashTableLookup(cache->Table, *argp); -+ /* the first ACE for this right? */ -+ if (temp_entry) { -+ /* Link it in at the end */ -+ while (temp_entry->next) { -+ temp_entry = temp_entry->next; -+ } -+ temp_entry->next = entry; -+ } else /* just link it in */ -+ PR_HashTableAdd(cache->Table, *argp, entry); -+ argp++; - } -- entry->acenum = ace_cnt; -- -- /* -- * OK to call PL_HasTableLookup() even though it mods -- * the Table as this routine is called in critical section. -- */ -- temp_entry = (ACLAceNumEntry_t *)PL_HashTableLookup(cache->Table, *argp); -- /* the first ACE for this right? */ -- if (temp_entry) { -- /* Link it in at the end */ -- while (temp_entry->next) { -- temp_entry = temp_entry->next; -- } -- temp_entry->next = entry; -- } else /* just link it in */ -- PR_HashTableAdd(cache->Table, *argp, entry); -- -- argp++; - -- } -- -- /* See if any of the clauses require authentication. */ -- if (curauthplist) { -- for (i = 0; i < ace->expr_term_index; i++) { -- expr = &ace->expr_arry[i]; -- rv = PListFindValue(curauthplist, expr->attr_name, -- NULL, &authplist); -- if (rv > 0) { -- /* First one for this ACE? */ -- if (!new_ace->autharray) { -- new_ace->autharray = (PList_t *)PERM_CALLOC(sizeof(PList_t) * ace->expr_term_index); -+ /* See if any of the clauses require authentication. */ -+ if (curauthplist) { -+ for (i = 0; i < ace->expr_term_index; i++) { -+ expr = &ace->expr_arry[i]; -+ rv = PListFindValue(curauthplist, expr->attr_name, -+ NULL, &authplist); -+ if (rv > 0) { -+ /* First one for this ACE? */ - if (!new_ace->autharray) { -- nserrGenerate(errp, ACLERRNOMEM, ACLERR4040, ACL_Program, 1, XP_GetAdminStr(DBT_EvalBuildContextUnableToAllocAuthPointerArray)); -- goto error; -- } -- } -- new_ace->autharray[i] = authplist; -- } -- } -- } -- break; -- -- case ACL_EXPR_TYPE_AUTH: -+ new_ace->autharray = (PList_t *)PERM_CALLOC(sizeof(PList_t) * ace->expr_term_index); -+ if (!new_ace->autharray) { -+ nserrGenerate(errp, ACLERRNOMEM, ACLERR4040, ACL_Program, 1, -+ XP_GetAdminStr(DBT_EvalBuildContextUnableToAllocAuthPointerArray)); -+ goto error; -+ } -+ } -+ new_ace->autharray[i] = authplist; -+ } -+ } -+ } -+ break; - -- /* Allocate the running auth tables if none yet */ -- if (!curauthplist) { -- curauthplist = PListNew(NULL); -- if (!curauthplist) { -- nserrGenerate(errp, ACLERRNOMEM, ACLERR4050, ACL_Program, 1, XP_GetAdminStr(DBT_EvalBuildContextUnableToAllocAuthPlist)); -- goto error; -- } -- absauthplist = PListNew(NULL); -- if (!absauthplist) { -- nserrGenerate(errp, ACLERRNOMEM, ACLERR4050, ACL_Program, 1, XP_GetAdminStr(DBT_EvalBuildContextUnableToAllocAuthPlist)); -- goto error; -- } -- } else { /* duplicate the existing auth table */ -- curauthplist = PListDuplicate(curauthplist, NULL, 0); -- if (!curauthplist) { -- nserrGenerate(errp, ACLERRNOMEM, ACLERR4050, ACL_Program, 1, XP_GetAdminStr(DBT_EvalBuildContextUnableToAllocAuthPlist)); -- goto error; -- } -- } -+ case ACL_EXPR_TYPE_AUTH: -+ -+ /* Allocate the running auth tables if none yet */ -+ if (!curauthplist) { -+ curauthplist = PListNew(NULL); -+ if (!curauthplist) { -+ nserrGenerate(errp, ACLERRNOMEM, ACLERR4050, ACL_Program, 1, -+ XP_GetAdminStr(DBT_EvalBuildContextUnableToAllocAuthPlist)); -+ goto error; -+ } -+ absauthplist = PListNew(NULL); -+ if (!absauthplist) { -+ nserrGenerate(errp, ACLERRNOMEM, ACLERR4050, ACL_Program, 1, -+ XP_GetAdminStr(DBT_EvalBuildContextUnableToAllocAuthPlist)); -+ goto error; -+ } -+ } else { /* duplicate the existing auth table */ -+ curauthplist = PListDuplicate(curauthplist, NULL, 0); -+ if (!curauthplist) { -+ nserrGenerate(errp, ACLERRNOMEM, ACLERR4050, ACL_Program, 1, -+ XP_GetAdminStr(DBT_EvalBuildContextUnableToAllocAuthPlist)); -+ goto error; -+ } -+ } - -- /* For each listed attribute */ -- while (*argp) -- { -- /* skip any attributes that were absoluted */ -- if (PListFindValue(absauthplist, *argp, NULL, NULL) < 0) -- { -- /* Save pointer to the property list */ -- PListInitProp(curauthplist, 0, *argp, ace->expr_auth, -- ace->expr_auth); -- if (IS_ABSOLUTE(ace->expr_flags)) -- PListInitProp(absauthplist, 0, *argp, NULL, -- NULL); -- } -+ /* For each listed attribute */ -+ while (*argp) { -+ /* skip any attributes that were absoluted */ -+ if (PListFindValue(absauthplist, *argp, NULL, NULL) < 0){ -+ /* Save pointer to the property list */ -+ PListInitProp(curauthplist, 0, *argp, ace->expr_auth, ace->expr_auth); -+ if (IS_ABSOLUTE(ace->expr_flags)) -+ PListInitProp(absauthplist, 0, *argp, NULL, NULL); -+ } -+ argp++; -+ } - -- argp++; -- } -+ break; - -- break; -+ case ACL_EXPR_TYPE_RESPONSE: -+ (void) ACL_ExprGetDenyWith(NULL, ace, &cache->deny_type, -+ &cache->deny_response); -+ break; - -- case ACL_EXPR_TYPE_RESPONSE: -- (void) ACL_ExprGetDenyWith(NULL, ace, &cache->deny_type, -- &cache->deny_response); -- break; -+ default: -+ PR_ASSERT(0); - -- default: -- PR_ASSERT(0); -- -- } /* switch expr_type */ -+ } /* switch expr_type */ - -- new_ace->global_auth = curauthplist; -- ace = ace->expr_next; -- } -+ new_ace->global_auth = curauthplist; -+ ace = ace->expr_next; -+ } /* while (ace) */ - -- /* Next ACL please */ -+ /* Next ACL please */ - wrapper = wrapper->wrap_next; - } - - if (absauthplist) -- PListDestroy(absauthplist); -+ PListDestroy(absauthplist); - - /* This must be done last to avoid a race in initialization */ -- acleval->acllist->cache = (void *)cache; -+ acleval->acllist->cache = (void *)cache; - - return 0; - - error: - if (curauthplist) -- PListDestroy(curauthplist); -+ PListDestroy(curauthplist); - if (absauthplist) -- PListDestroy(absauthplist); -+ PListDestroy(absauthplist); - if (cache) { - ACL_EvalDestroyContext(cache); - } - acleval->acllist->cache = NULL; -+ - return ACL_RES_ERROR; - } - --- -1.7.1 - diff --git a/SOURCES/0038-Ticket-47947-start-dirsrv-after-chrony-on-RHEL7-and-.patch b/SOURCES/0038-Ticket-47947-start-dirsrv-after-chrony-on-RHEL7-and-.patch new file mode 100644 index 0000000..a1134b9 --- /dev/null +++ b/SOURCES/0038-Ticket-47947-start-dirsrv-after-chrony-on-RHEL7-and-.patch @@ -0,0 +1,37 @@ +From 30877169647515a43ae9a1a7a1873e890c7798cc Mon Sep 17 00:00:00 2001 +From: Noriko Hosoi <nhosoi@redhat.com> +Date: Tue, 16 Dec 2014 13:42:56 -0800 +Subject: [PATCH 38/53] Ticket #47947 - start dirsrv after chrony on RHEL7 and + Fedora + +Description: After=chronyd.service to systemd.template.service.in, +which is installed as this file: + /usr/lib/systemd/system/dirsrv@.service +and pointed by each server's service file: + /etc/systemd/system/dirsrv.target.wants/dirsrv@YOURID.service + +https://fedorahosted.org/389/ticket/47947 + +Reviewed by rmeggins@redhat.com (Thank you, Rich!!) + +(cherry picked from commit c3389a46c584fa39b2278a295f8b2b6dad726d31) +(cherry picked from commit 6e4e21ff010041eb636cc06b23bb3ed0de78ef1d) +--- + wrappers/systemd.template.service.in | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/wrappers/systemd.template.service.in b/wrappers/systemd.template.service.in +index 42c7c23..9432cb0 100644 +--- a/wrappers/systemd.template.service.in ++++ b/wrappers/systemd.template.service.in +@@ -15,6 +15,7 @@ + [Unit] + Description=@capbrand@ Directory Server %i. + PartOf=@systemdgroupname@ ++After=chronyd.service + + [Service] + Type=forking +-- +1.9.3 + diff --git a/SOURCES/0039-Ticket-47967-cos_cache_build_definition_list-does-no.patch b/SOURCES/0039-Ticket-47967-cos_cache_build_definition_list-does-no.patch new file mode 100644 index 0000000..070a463 --- /dev/null +++ b/SOURCES/0039-Ticket-47967-cos_cache_build_definition_list-does-no.patch @@ -0,0 +1,86 @@ +From 28027d3f0d3f6df742c1a8360c75c7a922cb1819 Mon Sep 17 00:00:00 2001 +From: Mark Reynolds <mreynolds@redhat.com> +Date: Thu, 4 Dec 2014 11:11:13 -0500 +Subject: [PATCH 39/53] Ticket 47967 - cos_cache_build_definition_list does not + stop during server shutdown + +Bug Description: If the COS cache is being rebuilt (where there are many COS + definitions/templates), attempting to stop the server can + take take a very long time. + +Fix Description: In the callback functions check for server shutdown to abort + out of the search callback loops. + +https://fedorahosted.org/389/ticket/47967 + +Reviewed by: nhosoi(Thanks!) + +(cherry picked from commit 99f99743617c1d082e748e7d3e83adf953d2ad05) +(cherry picked from commit f2df95ea7a78e95535eaf798fdf3edff9cb33b72) +--- + ldap/servers/plugins/cos/cos_cache.c | 20 ++++++++++---------- + 1 file changed, 10 insertions(+), 10 deletions(-) + +diff --git a/ldap/servers/plugins/cos/cos_cache.c b/ldap/servers/plugins/cos/cos_cache.c +index 3f3841f..a7993c8 100644 +--- a/ldap/servers/plugins/cos/cos_cache.c ++++ b/ldap/servers/plugins/cos/cos_cache.c +@@ -725,7 +725,7 @@ struct dn_defs_info { + /* + * Currently, always returns 0 to continue the search for definitions, even + * if a particular attempt to add a definition fails: info.ret gets set to +- * zero only if we succed to add a def. ++ * zero only if we succeed to add a def. + */ + static int + cos_dn_defs_cb (Slapi_Entry* e, void *callback_data) +@@ -1056,10 +1056,10 @@ bail: + /* This particular definition may not have yielded anything + * worth caching (eg. no template was found for it) but + * that should not cause us to abort the search for other more well behaved +- * definitions. ++ * definitions unless we are shutting down. + * return info->ret; +- */ +- return (0); ++ */ ++ return slapi_is_shutting_down(); + + } + +@@ -1116,7 +1116,7 @@ struct tmpl_info { + /* + * Currently, always returns 0 to continue the search for templates, even + * if a particular attempt to add a template fails: info.ret gets set to +- * zero only if we succed to add at least one tmpl. ++ * zero only if we succeed to add at least one tmpl. + */ + static int cos_dn_tmpl_entries_cb (Slapi_Entry* e, void *callback_data) { + cosAttrValue *pDn = 0; +@@ -1166,7 +1166,7 @@ static int cos_dn_tmpl_entries_cb (Slapi_Entry* e, void *callback_data) { + + if(pSneakyVal == NULL) + { +- /* look for the atrribute in the dynamic attributes */ ++ /* look for the attribute in the dynamic attributes */ + if(cos_cache_attrval_exists(info->pAttrs, attrType)) + { + pSneakyVal = &pCosAttribute; +@@ -1269,10 +1269,10 @@ static int cos_dn_tmpl_entries_cb (Slapi_Entry* e, void *callback_data) { + } + } + /* +- * Always contine the search even if a particular attempt +- * to add a template failed. +- */ +- return 0; ++ * Always continue the search even if a particular attempt ++ * to add a template failed unless we are shutting down ++ */ ++ return slapi_is_shutting_down(); + } + + /* +-- +1.9.3 + diff --git a/SOURCES/0039-ticket-47550-wip.patch b/SOURCES/0039-ticket-47550-wip.patch deleted file mode 100644 index 3b7c4be..0000000 --- a/SOURCES/0039-ticket-47550-wip.patch +++ /dev/null @@ -1,28 +0,0 @@ -From c2eced0f1f3db24daf4b86b280d78ddcc0170184 Mon Sep 17 00:00:00 2001 -From: Rich Megginson <rmeggins@redhat.com> -Date: Tue, 8 Oct 2013 13:59:59 -0600 -Subject: [PATCH 39/39] ticket #47550 wip - (cherry picked from commit 82377636267787be5182457d619d5a0b662d2658) - (cherry picked from commit 181fde98aee96868189bc5557c5f33fefa026952) - (cherry picked from commit 13dd9625b01d820526d7187e524669ee83edfe62) - ---- - ldap/admin/src/logconv.pl | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) - -diff --git a/ldap/admin/src/logconv.pl b/ldap/admin/src/logconv.pl -index 8b423ca..e7d7507 100755 ---- a/ldap/admin/src/logconv.pl -+++ b/ldap/admin/src/logconv.pl -@@ -1911,7 +1911,7 @@ sub parseLineNormal - elsif (m/- U1/){ $hashes->{rsrc}->{"U1"}++; } - else { $hashes->{rsrc}->{"other"}++; } - } -- if ($usage =~ /g/ || $usage =~ /c/ || $usage =~ /i/ || $verb eq "yes"){ -+ if ($usage =~ /g/ || $usage =~ /c/ || $usage =~ /i/ || $usage =~ /f/ || $verb eq "yes"){ - $exc = "no"; - if ($_ =~ /connection from *([0-9A-fa-f\.\:]+)/i ) { - for (my $xxx = 0; $xxx < $#excludeIP; $xxx++){ --- -1.7.1 - diff --git a/SOURCES/0040-Ticket-47559-hung-server-related-to-sasl-and-initial.patch b/SOURCES/0040-Ticket-47559-hung-server-related-to-sasl-and-initial.patch deleted file mode 100644 index be82f6c..0000000 --- a/SOURCES/0040-Ticket-47559-hung-server-related-to-sasl-and-initial.patch +++ /dev/null @@ -1,153 +0,0 @@ -From a9870f937ae83728326957c408608eff3b9b7b26 Mon Sep 17 00:00:00 2001 -From: Rich Megginson <rmeggins@redhat.com> -Date: Mon, 14 Oct 2013 12:43:51 -0600 -Subject: [PATCH 40/41] Ticket #47559 hung server - related to sasl and initialize - -https://fedorahosted.org/389/ticket/47559 -Reviewed by: nhosoi (Thanks!) -Branch: rhel-7.0 -Fix Description: Use a mutex to protect calls to openldap functions that do -anything with crypto - bind, unbind, start_tls, other calls. -Platforms tested: RHEL6 x86_64 -Flag Day: no -Doc impact: no -(cherry picked from commit da3e4aa40b04094d0e77052b894b0f0c335ea1ef) -(cherry picked from commit 7b3b2fe9d4a7f73a12b4f2d499b2e6a2f80e454b) -(cherry picked from commit 8a7ee90d6a770f1732bcd03b20471de3a6162b2b) ---- - ldap/servers/slapd/ldaputil.c | 51 +++++++++++++++++++++++++++++++++++++--- - 1 files changed, 47 insertions(+), 4 deletions(-) - -diff --git a/ldap/servers/slapd/ldaputil.c b/ldap/servers/slapd/ldaputil.c -index edc8267..aa78d3d 100644 ---- a/ldap/servers/slapd/ldaputil.c -+++ b/ldap/servers/slapd/ldaputil.c -@@ -99,10 +99,16 @@ - #if !defined(USE_OPENLDAP) - #include <ldap_ssl.h> - #include <ldappr.h> -+#define BIND_LOCK (void)0 -+#define BIND_UNLOCK (void)0 - #else - /* need mutex around ldap_initialize - see https://fedorahosted.org/389/ticket/348 */ - static PRCallOnceType ol_init_callOnce = {0,0}; - static PRLock *ol_init_lock = NULL; -+/* need mutex around ldap_sasl_bind - see https://fedorahosted.org/389/ticket/47599 */ -+static PRLock *ol_bind_lock = NULL; -+#define BIND_LOCK PR_Lock(ol_bind_lock) -+#define BIND_UNLOCK PR_Unlock(ol_bind_lock) - - static PRStatus - internal_ol_init_init(void) -@@ -110,12 +116,20 @@ internal_ol_init_init(void) - PR_ASSERT(NULL == ol_init_lock); - if ((ol_init_lock = PR_NewLock()) == NULL) { - PRErrorCode errorCode = PR_GetError(); -- slapi_log_error(SLAPI_LOG_FATAL, "internal_ol_init_init", "PR_NewLock failed %d:%s\n", -+ slapi_log_error(SLAPI_LOG_FATAL, "internal_ol_init_init", "PR_NewLock init_lock failed %d:%s\n", - errorCode, slapd_pr_strerror(errorCode)); - return PR_FAILURE; - } - -- return PR_SUCCESS; -+ PR_ASSERT(NULL == ol_bind_lock); -+ if ((ol_bind_lock = PR_NewLock()) == NULL) { -+ PRErrorCode errorCode = PR_GetError(); -+ slapi_log_error(SLAPI_LOG_FATAL, "internal_ol_init_init", "PR_NewLock bind_lock failed %d:%s\n", -+ errorCode, slapd_pr_strerror(errorCode)); -+ return PR_FAILURE; -+ } -+ -+ return PR_SUCCESS; - } - #endif - -@@ -145,7 +159,16 @@ void - slapi_ldap_unbind( LDAP *ld ) - { - if ( ld != NULL ) { -+#if defined(USE_OPENLDAP) -+ if (PR_SUCCESS != PR_CallOnce(&ol_init_callOnce, internal_ol_init_init)) { -+ slapi_log_error(SLAPI_LOG_FATAL, "slapi_ldap_unbind", -+ "Could not perform internal ol_init init\n"); -+ return; -+ } -+#endif -+ BIND_LOCK; - ldap_unbind_ext( ld, NULL, NULL ); -+ BIND_UNLOCK; - } - } - -@@ -1031,11 +1054,22 @@ slapi_ldap_bind( - ldap_controls_free(clientctrls); - ldap_set_option(ld, LDAP_OPT_CLIENT_CONTROLS, NULL); - -+#if defined(USE_OPENLDAP) -+ if (PR_SUCCESS != PR_CallOnce(&ol_init_callOnce, internal_ol_init_init)) { -+ slapi_log_error(SLAPI_LOG_FATAL, "slapi_ldap_bind", -+ "Could not perform internal ol_init init\n"); -+ rc = -1; -+ goto done; -+ } -+#endif -+ - if ((secure > 0) && mech && !strcmp(mech, LDAP_SASL_EXTERNAL)) { - #if defined(USE_OPENLDAP) - /* we already set up a tls context in slapi_ldap_init_ext() - this will - free those old settings and context and create a new one */ -+ PR_Lock(ol_bind_lock); - rc = setup_ol_tls_conn(ld, 1); -+ PR_Unlock(ol_bind_lock); - #else - /* SSL connections will use the server's security context - and cert for client auth */ -@@ -1060,7 +1094,9 @@ slapi_ldap_bind( - } - - if (secure == 2) { /* send start tls */ -+ BIND_LOCK; - rc = ldap_start_tls_s(ld, NULL /* serverctrls?? */, NULL); -+ BIND_UNLOCK; - if (LDAP_SUCCESS != rc) { - slapi_log_error(SLAPI_LOG_FATAL, "slapi_ldap_bind", - "Error: could not send startTLS request: " -@@ -1082,8 +1118,11 @@ slapi_ldap_bind( - "attempting %s bind with id [%s] creds [%s]\n", - mech ? mech : "SIMPLE", - bindid, creds); -- if ((rc = ldap_sasl_bind(ld, bindid, mech, &bvcreds, serverctrls, -- NULL /* clientctrls */, &mymsgid))) { -+ BIND_LOCK; -+ rc = ldap_sasl_bind(ld, bindid, mech, &bvcreds, serverctrls, -+ NULL /* clientctrls */, &mymsgid); -+ BIND_UNLOCK; -+ if (rc) { - char *myhostname = NULL; - char *copy = NULL; - char *ptr = NULL; -@@ -1139,7 +1178,9 @@ slapi_ldap_bind( - /* take the one provided by the caller. It should be the one defined in the protocol */ - bind_timeout = timeout; - } -+ BIND_LOCK; - rc = ldap_result(ld, mymsgid, LDAP_MSG_ALL, bind_timeout, &result); -+ BIND_UNLOCK; - if (-1 == rc) { /* error */ - rc = slapi_ldap_get_lderrno(ld, NULL, NULL); - slapi_log_error(SLAPI_LOG_FATAL, "slapi_ldap_bind", -@@ -1203,9 +1244,11 @@ slapi_ldap_bind( - ldap_set_option(ld, LDAP_OPT_X_SASL_SSF_MAX, &max_ssf); - } - #endif -+ BIND_LOCK; - rc = slapd_ldap_sasl_interactive_bind(ld, bindid, creds, mech, - serverctrls, returnedctrls, - msgidp); -+ BIND_UNLOCK; - if (LDAP_SUCCESS != rc) { - slapi_log_error(SLAPI_LOG_FATAL, "slapi_ldap_bind", - "Error: could not perform interactive bind for id " --- -1.7.1 - diff --git a/SOURCES/0040-Ticket-47969-COS-memory-leak-when-rebuilding-the-cac.patch b/SOURCES/0040-Ticket-47969-COS-memory-leak-when-rebuilding-the-cac.patch new file mode 100644 index 0000000..1fd571c --- /dev/null +++ b/SOURCES/0040-Ticket-47969-COS-memory-leak-when-rebuilding-the-cac.patch @@ -0,0 +1,41 @@ +From cedd8dde2e4e16c883569fe900da317e9d0d69e9 Mon Sep 17 00:00:00 2001 +From: Mark Reynolds <mreynolds@redhat.com> +Date: Tue, 2 Dec 2014 13:38:06 -0500 +Subject: [PATCH 40/53] Ticket 47969 - COS memory leak when rebuilding the + cache + +Bug Description: When the COS cache is released, not all of the schema + objectclasses are freed. So every time we rebuild the + COS cache we leak memory. + +Fix Description: After we free the schema attributes, the very first + attribute still needs to be freed. It is not freed + initially because of the duplicate checking logic, so + it is now done after the loop. + +https://fedorahosted.org/389/ticket/47969 + +Reviewed by: nhosoi(Thanks!) + +(cherry picked from commit d2dfda95c543f106443f898436151b00c68e4270) +(cherry picked from commit bc47239c5c7e6d19564fcd2839c6f2bd81a5b540) +--- + ldap/servers/plugins/cos/cos_cache.c | 2 ++ + 1 file changed, 2 insertions(+) + +diff --git a/ldap/servers/plugins/cos/cos_cache.c b/ldap/servers/plugins/cos/cos_cache.c +index a7993c8..fd163f9 100644 +--- a/ldap/servers/plugins/cos/cos_cache.c ++++ b/ldap/servers/plugins/cos/cos_cache.c +@@ -1864,6 +1864,8 @@ static void cos_cache_del_schema(cosCache *pCache) + } + } + } ++ /* Finally, remove the first attribute's objectclass list */ ++ cos_cache_del_attrval_list(&(pCache->ppAttrIndex[0]->pObjectclasses)); + + LDAPDebug( LDAP_DEBUG_TRACE, "<-- cos_cache_del_schema\n",0,0,0); + } +-- +1.9.3 + diff --git a/SOURCES/0041-Ticket-47560-fixup-memberof-task-does-not-work-task-.patch b/SOURCES/0041-Ticket-47560-fixup-memberof-task-does-not-work-task-.patch deleted file mode 100644 index bb387e9..0000000 --- a/SOURCES/0041-Ticket-47560-fixup-memberof-task-does-not-work-task-.patch +++ /dev/null @@ -1,44 +0,0 @@ -From e250f9a05bb089fc35c2ec2340aa9ca00711e5b0 Mon Sep 17 00:00:00 2001 -From: Thierry bordaz (tbordaz) <tbordaz@redhat.com> -Date: Mon, 21 Oct 2013 16:55:11 +0200 -Subject: [PATCH 41/41] Ticket 47560: fixup memberof task does not work: task entry not added - -Bug Description: - - The fixup memberof tasks is triggered by ADD of entry like: - cn=memberOf_fixup_YYYY_MM_DD_HH_MM_SS, cn=memberOf task, cn=tasks, cn=config - - the script fixup-memberof.pl does not add this entry - -Fix Description: - Initialize the $entry variable - -https://fedorahosted.org/389/ticket/47560 - -Reviewed by: Noriko Hosoi - -Platforms tested: F17 - -Flag Day: no - -Doc impact: no -(cherry picked from commit 05950d062b866fb7f590b19734b2eedccd1a2a2a) ---- - ldap/admin/src/scripts/fixup-memberof.pl.in | 1 + - 1 files changed, 1 insertions(+), 0 deletions(-) - -diff --git a/ldap/admin/src/scripts/fixup-memberof.pl.in b/ldap/admin/src/scripts/fixup-memberof.pl.in -index c7038f6..2355455 100644 ---- a/ldap/admin/src/scripts/fixup-memberof.pl.in -+++ b/ldap/admin/src/scripts/fixup-memberof.pl.in -@@ -135,6 +135,7 @@ if ( $filter_arg ne "" ) - $filter = "filter: $filter_arg\n"; - } - -+$entry = "${dn}${misc}${cn}${basedn}${filter}"; - $rc = DSUtil::ldapmod($entry, %info); - - $dn =~ s/^dn: //; --- -1.7.1 - diff --git a/SOURCES/0041-Ticket-47969-Fix-coverity-issue.patch b/SOURCES/0041-Ticket-47969-Fix-coverity-issue.patch new file mode 100644 index 0000000..a99e54a --- /dev/null +++ b/SOURCES/0041-Ticket-47969-Fix-coverity-issue.patch @@ -0,0 +1,36 @@ +From 64010b34bb2ca9c62c6cfff70ce406bcaacef8b0 Mon Sep 17 00:00:00 2001 +From: Mark Reynolds <mreynolds@redhat.com> +Date: Mon, 8 Dec 2014 09:57:50 -0500 +Subject: [PATCH 41/53] Ticket 47969 - Fix coverity issue + +Description: Fix coverity issue 12948 & 12949 (NULL pointer dereference) + +https://fedorahosted.org/389/ticket/47969 + +Reviewed by: mreynolds + +(cherry picked from commit 1553b665bfecbbccd54c439442d9a22c5d35d4a1) +(cherry picked from commit af163d345b4524c121296626cb2e9da26d6d061e) +--- + ldap/servers/plugins/cos/cos_cache.c | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/ldap/servers/plugins/cos/cos_cache.c b/ldap/servers/plugins/cos/cos_cache.c +index fd163f9..a74389d 100644 +--- a/ldap/servers/plugins/cos/cos_cache.c ++++ b/ldap/servers/plugins/cos/cos_cache.c +@@ -1863,9 +1863,9 @@ static void cos_cache_del_schema(cosCache *pCache) + cos_cache_del_attrval_list(&(pCache->ppAttrIndex[attr_index]->pObjectclasses)); + } + } ++ /* Finally, remove the first attribute's objectclass list */ ++ cos_cache_del_attrval_list(&(pCache->ppAttrIndex[0]->pObjectclasses)); + } +- /* Finally, remove the first attribute's objectclass list */ +- cos_cache_del_attrval_list(&(pCache->ppAttrIndex[0]->pObjectclasses)); + + LDAPDebug( LDAP_DEBUG_TRACE, "<-- cos_cache_del_schema\n",0,0,0); + } +-- +1.9.3 + diff --git a/SOURCES/0042-Ticket-47379-DNA-plugin-failed-to-fetch-replication-.patch b/SOURCES/0042-Ticket-47379-DNA-plugin-failed-to-fetch-replication-.patch deleted file mode 100644 index 8b755f1..0000000 --- a/SOURCES/0042-Ticket-47379-DNA-plugin-failed-to-fetch-replication-.patch +++ /dev/null @@ -1,540 +0,0 @@ -From e5a913283852fd3f7074127076ef648c74fb8388 Mon Sep 17 00:00:00 2001 -From: Mark Reynolds <mreynolds@redhat.com> -Date: Fri, 14 Jun 2013 11:05:46 -0400 -Subject: [PATCH 42/44] Ticket 47379 - DNA plugin failed to fetch replication - agreement - -Bug Description: When trying to get the next range of available values, if a shared config - server does not have a replication agreement that points to itself then - it can not obtain the bind credentials/info to successfully contact that - server when trying to get the next range. - -Fix Description: Extend the shared config server to allow for bind information, such as bind - method, and connection protocol. For the bind DN and pw(for SIMPLE and DIGEST-MD5 - bind methods), we store this in the plugin config entry. As each bind pw needs to - use DES pw storage scheme, and this must be local to each server (not replicated - with the shared config server entry). - - Fixed infinite loop in dna_fix_maxval() - we did not advance the server list if - there was a error. Also improved config validation to make sure the shared config - entry is not within the scope & filter of the DNA config. - -https://fedorahosted.org/389/ticket/47379 - -Reviewed by: richm & nkinder(Thanks!!) -(cherry picked from commit 3e2262e1c0410bdf4f9b9211aef13deb28f174d1) -(cherry picked from commit 5010f508203df08984500fdc3ac878611c0ac05b) ---- - ldap/schema/10dna-plugin.ldif | 38 +++++- - ldap/servers/plugins/dna/dna.c | 263 +++++++++++++++++++++++++++++++++++++---- - 2 files changed, 278 insertions(+), 23 deletions(-) - -diff --git a/ldap/schema/10dna-plugin.ldif b/ldap/schema/10dna-plugin.ldif -index c89c6b5..ac9b5f4 100644 ---- a/ldap/schema/10dna-plugin.ldif -+++ b/ldap/schema/10dna-plugin.ldif -@@ -170,6 +170,38 @@ attributeTypes: ( 2.16.840.1.113730.3.1.2130 NAME 'dnaRangeRequestTimeout' - # - ################################################################################ - # -+attributeTypes: ( 2.16.840.1.113730.3.1.2157 NAME 'dnaRemoteBindCred' -+ DESC 'Remote bind credentials' -+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 -+ SINGLE-VALUE -+ X-ORIGIN '389 Directory Server' ) -+# -+################################################################################ -+# -+attributeTypes: ( 2.16.840.1.113730.3.1.2158 NAME 'dnaRemoteBindDN' -+ DESC 'Remote bind DN' -+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 -+ SINGLE-VALUE -+ X-ORIGIN '389 Directory Server' ) -+# -+################################################################################ -+# -+attributeTypes: ( 2.16.840.1.113730.3.1.2159 NAME 'dnaRemoteConnProtocol' -+ DESC 'Connection protocol: LDAP, TLS, or SSL' -+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 -+ SINGLE-VALUE -+ X-ORIGIN '389 Directory Server' ) -+# -+################################################################################ -+# -+attributeTypes: ( 2.16.840.1.113730.3.1.2160 NAME 'dnaRemoteBindMethod' -+ DESC 'Remote bind method: SIMPLE, SSL, SASL/DIGEST-MD5, or SASL/GSSAPI' -+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 -+ SINGLE-VALUE -+ X-ORIGIN '389 Directory Server' ) -+# -+################################################################################ -+# - objectClasses: ( 2.16.840.1.113730.3.2.324 NAME 'dnaPluginConfig' - DESC 'DNA plugin configuration' - SUP top -@@ -185,7 +217,9 @@ objectClasses: ( 2.16.840.1.113730.3.2.324 NAME 'dnaPluginConfig' - dnaSharedCfgDN $ - dnaThreshold $ - dnaNextRange $ -- dnaRangeRequestTimeout $ -+ dnaRangeRequestTimeout $ -+ dnaRemoteBindDN $ -+ dnaRemoteBindCred $ - cn - ) - X-ORIGIN '389 Directory Server' ) -@@ -199,6 +233,8 @@ objectClasses: ( 2.16.840.1.113730.3.2.325 NAME 'dnaSharedConfig' - MAY ( dnaHostname $ - dnaPortNum $ - dnaSecurePortNum $ -+ dnaRemoteBindMethod $ -+ dnaRemoteConnProtocol $ - dnaRemainingValues - ) - X-ORIGIN '389 Directory Server' ) -diff --git a/ldap/servers/plugins/dna/dna.c b/ldap/servers/plugins/dna/dna.c -index f3abb40..40522a6 100644 ---- a/ldap/servers/plugins/dna/dna.c -+++ b/ldap/servers/plugins/dna/dna.c -@@ -87,18 +87,31 @@ - #define DNA_GENERATE "dnaMagicRegen" - #define DNA_FILTER "dnaFilter" - #define DNA_SCOPE "dnaScope" -+#define DNA_REMOTE_BIND_DN "dnaRemoteBindDN" -+#define DNA_REMOTE_BIND_PW "dnaRemoteBindCred" - - /* since v2 */ - #define DNA_MAXVAL "dnaMaxValue" - #define DNA_SHARED_CFG_DN "dnaSharedCfgDN" - - /* Shared Config */ --#define DNA_SHAREDCONFIG "dnaSharedConfig" --#define DNA_REMAINING "dnaRemainingValues" --#define DNA_THRESHOLD "dnaThreshold" --#define DNA_HOSTNAME "dnaHostname" --#define DNA_PORTNUM "dnaPortNum" --#define DNA_SECURE_PORTNUM "dnaSecurePortNum" -+#define DNA_SHAREDCONFIG "dnaSharedConfig" -+#define DNA_REMAINING "dnaRemainingValues" -+#define DNA_THRESHOLD "dnaThreshold" -+#define DNA_HOSTNAME "dnaHostname" -+#define DNA_PORTNUM "dnaPortNum" -+#define DNA_SECURE_PORTNUM "dnaSecurePortNum" -+#define DNA_REMOTE_BIND_METHOD "dnaRemoteBindMethod" -+#define DNA_REMOTE_CONN_PROT "dnaRemoteConnProtocol" -+ -+/* Bind Methods & Protocols */ -+#define DNA_METHOD_SIMPLE "SIMPLE" -+#define DNA_METHOD_SSL "SSL" -+#define DNA_METHOD_GSSAPI "SASL/GSSAPI" -+#define DNA_METHOD_DIGESTMD5 "SASL/DIGEST-MD5" -+#define DNA_PROT_LDAP "LDAP" -+#define DNA_PROT_TLS "TLS" -+#define DNA_PROT_SSL "SSL" - - /* For transferred ranges */ - #define DNA_NEXT_RANGE "dnaNextRange" -@@ -154,6 +167,8 @@ struct configEntry { - PRUint64 threshold; - char *shared_cfg_base; - char *shared_cfg_dn; -+ char *remote_binddn; -+ char *remote_bindpw; - PRUint64 timeout; - /* This lock protects the 5 members below. All - * of the above members are safe to read as long -@@ -195,6 +210,12 @@ struct dnaServer { - unsigned int port; - unsigned int secureport; - PRUint64 remaining; -+ /* Remote replica settings from config */ -+ PRUint64 remote_defined; -+ char *remote_bind_method; -+ char *remote_conn_prot; -+ char *remote_binddn; /* contains pointer to main config binddn */ -+ char *remote_bindpw; /* contains pointer to main config bindpw */ - }; - - static char *dna_extend_exop_oid_list[] = { -@@ -220,8 +241,8 @@ static int dna_be_txn_preop_init(Slapi_PBlock *pb); - * Local operation functions - * - */ --static int dna_load_plugin_config(int use_eventq); --static int dna_parse_config_entry(Slapi_Entry * e, int apply); -+static int dna_load_plugin_config(Slapi_PBlock *pb, int use_eventq); -+static int dna_parse_config_entry(Slapi_PBlock *pb, Slapi_Entry * e, int apply); - static void dna_delete_config(); - static void dna_free_config_entry(struct configEntry ** entry); - static int dna_load_host_port(); -@@ -264,6 +285,8 @@ static void dna_list_remove_type(char **list, char *type); - static int dna_is_multitype_range(struct configEntry *config_entry); - static void dna_create_valcheck_filter(struct configEntry *config_entry, PRUint64 value, char **filter); - static int dna_isrepl(Slapi_PBlock *pb); -+static int dna_get_remote_config_info( struct dnaServer *server, char **bind_dn, char **bind_passwd, -+ char **bind_method, int *is_ssl, int *port); - - /** - * -@@ -572,7 +595,7 @@ dna_start(Slapi_PBlock * pb) - slapi_ch_calloc(1, sizeof(struct configEntry)); - PR_INIT_CLIST(dna_global_config); - -- if (dna_load_plugin_config(1/* use eventq */) != DNA_SUCCESS) { -+ if (dna_load_plugin_config(pb, 1/* use eventq */) != DNA_SUCCESS) { - slapi_log_error(SLAPI_LOG_FATAL, DNA_PLUGIN_SUBSYSTEM, - "dna_start: unable to load plug-in configuration\n"); - return DNA_FAILURE; -@@ -640,7 +663,7 @@ done: - * ------ cn=etc etc - */ - static int --dna_load_plugin_config(int use_eventq) -+dna_load_plugin_config(Slapi_PBlock *pb, int use_eventq) - { - int status = DNA_SUCCESS; - int result; -@@ -682,7 +705,7 @@ dna_load_plugin_config(int use_eventq) - /* We don't care about the status here because we may have - * some invalid config entries, but we just want to continue - * looking for valid ones. */ -- dna_parse_config_entry(entries[i], 1); -+ dna_parse_config_entry(pb, entries[i], 1); - } - dna_unlock(); - -@@ -719,7 +742,7 @@ cleanup: - * if it is invalid. - */ - static int --dna_parse_config_entry(Slapi_Entry * e, int apply) -+dna_parse_config_entry(Slapi_PBlock *pb, Slapi_Entry * e, int apply) - { - char *value; - struct configEntry *entry = NULL; -@@ -885,6 +908,45 @@ dna_parse_config_entry(Slapi_Entry * e, int apply) - "----------> %s [%" NSPRIu64 "]\n", DNA_MAXVAL, - (long long unsigned int)entry->maxval); - -+ /* get the global bind dn and password(if any) */ -+ value = slapi_entry_attr_get_charptr(e, DNA_REMOTE_BIND_DN); -+ if (value) { -+ Slapi_DN *sdn = NULL; -+ char *normdn = NULL; -+ -+ sdn = slapi_sdn_new_dn_passin(value); -+ if (!sdn) { -+ slapi_log_error(SLAPI_LOG_FATAL, DNA_PLUGIN_SUBSYSTEM, -+ "dna_parse_config_entry: Unable to create " -+ "slapi_dn from dnaRemoteBindDN (%s)\n", value); -+ ret = DNA_FAILURE; -+ slapi_ch_free_string(&value); -+ goto bail; -+ } -+ normdn = (char *)slapi_sdn_get_dn(sdn); -+ if (NULL == normdn) { -+ slapi_log_error(SLAPI_LOG_FATAL, DNA_PLUGIN_SUBSYSTEM, -+ "dna_parse_config_entry: failed to normalize dn: " -+ "%s\n", value); -+ ret = DNA_FAILURE; -+ slapi_sdn_free(&sdn); -+ goto bail; -+ } -+ entry->remote_binddn = slapi_ch_strdup(normdn); -+ slapi_sdn_free(&sdn); -+ } -+ /* now grab the password */ -+ entry->remote_bindpw = slapi_entry_attr_get_charptr(e, DNA_REMOTE_BIND_PW); -+ -+ /* validate that we have both a bind dn or password, or we have none */ -+ if((entry->remote_bindpw != NULL && entry->remote_binddn == NULL) || -+ (entry->remote_binddn != NULL && entry->remote_bindpw == NULL)){ -+ slapi_log_error(SLAPI_LOG_FATAL, DNA_PLUGIN_SUBSYSTEM, -+ "dna_parse_config_entry: Invalid remote bind DN and password settings.\n"); -+ ret = DNA_FAILURE; -+ goto bail; -+ } -+ - value = slapi_entry_attr_get_charptr(e, DNA_SHARED_CFG_DN); - if (value) { - Slapi_Entry *shared_e = NULL; -@@ -1060,6 +1122,21 @@ dna_parse_config_entry(Slapi_Entry * e, int apply) - goto bail; - } - -+ /* Check if the shared config base matches the config scope and filter */ -+ if (entry->scope && slapi_dn_issuffix(entry->shared_cfg_base, entry->scope)){ -+ if (entry->slapi_filter) { -+ ret = slapi_vattr_filter_test(pb, e, entry->slapi_filter, 0); -+ if (LDAP_SUCCESS == ret) { -+ slapi_log_error(SLAPI_LOG_FATAL, DNA_PLUGIN_SUBSYSTEM, "dna_parse_config_entry: " -+ "Error: shared config entry (%s) matches scope \"%s\", and filter \"%s\" " -+ "of the DNA config entry (%s).\n", entry->shared_cfg_base, -+ entry->scope, entry->filter, entry->dn); -+ ret = DNA_FAILURE; -+ goto bail; -+ } -+ } -+ } -+ - /** - * Finally add the entry to the list. - * We sort by scope dn length with longer -@@ -1143,6 +1220,8 @@ dna_free_config_entry(struct configEntry ** entry) - slapi_ch_free_string(&e->scope); - slapi_ch_free_string(&e->shared_cfg_base); - slapi_ch_free_string(&e->shared_cfg_dn); -+ slapi_ch_free_string(&e->remote_binddn); -+ slapi_ch_free_string(&e->remote_bindpw); - - slapi_destroy_mutex(e->lock); - -@@ -1173,13 +1252,14 @@ static void - dna_free_shared_server(struct dnaServer **server) - { - struct dnaServer *s; -+ - if ((NULL == server) || (NULL == *server)) { - return; - } -- - s = *server; - slapi_ch_free_string(&s->host); -- -+ slapi_ch_free_string(&s->remote_bind_method); -+ slapi_ch_free_string(&s->remote_conn_prot); - slapi_ch_free((void **)server); - } - -@@ -1383,6 +1463,7 @@ static int dna_fix_maxval(struct configEntry *config_entry, - if ((ret = dna_update_next_range(config_entry, lower, upper)) == 0) { - break; - } -+ server = PR_NEXT_LINK(server); - } - } - -@@ -1459,7 +1540,7 @@ dna_get_shared_servers(struct configEntry *config_entry, PRCList **servers) - int ret = LDAP_SUCCESS; - Slapi_PBlock *pb = NULL; - Slapi_Entry **entries = NULL; -- char *attrs[5]; -+ char *attrs[7]; - - /* First do a search in the shared config area for this - * range to find other servers who are managing this range. */ -@@ -1467,7 +1548,9 @@ dna_get_shared_servers(struct configEntry *config_entry, PRCList **servers) - attrs[1] = DNA_PORTNUM; - attrs[2] = DNA_SECURE_PORTNUM; - attrs[3] = DNA_REMAINING; -- attrs[4] = NULL; -+ attrs[4] = DNA_REMOTE_BIND_METHOD; -+ attrs[5] = DNA_REMOTE_CONN_PROT; -+ attrs[6] = NULL; - - pb = slapi_pblock_new(); - if (NULL == pb) { -@@ -1515,9 +1598,16 @@ dna_get_shared_servers(struct configEntry *config_entry, PRCList **servers) - server->secureport = slapi_entry_attr_get_uint(entries[i], DNA_SECURE_PORTNUM); - server->remaining = slapi_entry_attr_get_ulonglong(entries[i], - DNA_REMAINING); -+ server->remote_binddn = config_entry->remote_binddn; -+ server->remote_bindpw = config_entry->remote_bindpw; -+ server->remote_bind_method = slapi_entry_attr_get_charptr(entries[i], -+ DNA_REMOTE_BIND_METHOD); -+ server->remote_conn_prot = slapi_entry_attr_get_charptr(entries[i], -+ DNA_REMOTE_CONN_PROT); - - /* validate the entry */ -- if (!server->host || server->port == 0 || server->remaining == 0) { -+ if (!server->host || (server->port == 0 && server->secureport == 0) || server->remaining == 0) -+ { - /* free and skip this one */ - slapi_log_error(SLAPI_LOG_PLUGIN, DNA_PLUGIN_SUBSYSTEM, - "dna_get_shared_servers: skipping invalid " -@@ -1525,6 +1615,40 @@ dna_get_shared_servers(struct configEntry *config_entry, PRCList **servers) - dna_free_shared_server(&server); - continue; - } -+ /* see if we defined a server manually */ -+ if(server->remote_bind_method){ -+ char *reason; -+ int err = 0; -+ -+ if(strcasecmp(server->remote_bind_method, DNA_METHOD_DIGESTMD5) == 0 || -+ strcasecmp(server->remote_bind_method, DNA_METHOD_SIMPLE) == 0){ -+ /* requires a DN and password */ -+ if(!server->remote_binddn || !server->remote_bindpw){ -+ reason = "missing bind DN and/or password."; -+ err = 1; -+ } -+ } -+ if(strcasecmp(server->remote_bind_method, DNA_METHOD_SSL) == 0){ -+ /* requires a bind DN */ -+ if(strcasecmp(server->remote_conn_prot, DNA_PROT_SSL) != 0 && -+ strcasecmp(server->remote_conn_prot, DNA_PROT_TLS) != 0 ) -+ { -+ reason = "bind method (SSL) requires either SSL or TLS connection " -+ "protocol."; -+ err = 1; -+ } -+ } -+ if(err){ -+ slapi_log_error(SLAPI_LOG_PLUGIN, DNA_PLUGIN_SUBSYSTEM, -+ "dna_get_shared_servers: skipping invalid " -+ "shared config entry (%s). Reason: %s\n", -+ slapi_entry_get_dn(entries[i]), reason); -+ dna_free_shared_server(&server); -+ continue; -+ } -+ /* everything is ok */ -+ server->remote_defined = 1; -+ } - - /* add a server entry to the list */ - if (*servers == NULL) { -@@ -2513,7 +2637,8 @@ static int dna_get_replica_bind_creds(char *range_dn, struct dnaServer *server, - slapi_log_error(SLAPI_LOG_FATAL, DNA_PLUGIN_SUBSYSTEM, - "dna_get_replica_bind_creds: Failed to fetch replica " - "bind credentials for range %s, server %s, port %u [error %d]\n", -- range_dn, server->host, server->port, ret); -+ range_dn, server->host, -+ server->port ? server->port : server->secureport, ret); - goto bail; - } - -@@ -2521,10 +2646,18 @@ static int dna_get_replica_bind_creds(char *range_dn, struct dnaServer *server, - &entries); - - if (NULL == entries || NULL == entries[0]) { -- slapi_log_error(SLAPI_LOG_FATAL, DNA_PLUGIN_SUBSYSTEM, -+ if(server->remote_defined){ -+ /* -+ * Ok there are no replication agreements for this shared server, but we -+ * do have custom defined authentication settings we can use. -+ */ -+ ret = dna_get_remote_config_info(server, bind_dn, bind_passwd, bind_method, is_ssl, port); -+ goto bail; -+ } -+ slapi_log_error(SLAPI_LOG_PLUGIN, DNA_PLUGIN_SUBSYSTEM, - "dna_get_replica_bind_creds: Failed to fetch replication " - "agreement for range %s, server %s, port %u\n", range_dn, -- server->host, server->port); -+ server->host, server->port ? server->port : server->secureport); - ret = LDAP_OPERATIONS_ERROR; - goto bail; - } -@@ -2603,6 +2736,92 @@ bail: - return ret; - } - -+static int -+dna_get_remote_config_info( struct dnaServer *server, char **bind_dn, char **bind_passwd, -+ char **bind_method, int *is_ssl, int *port) -+{ -+ int rc = 0; -+ -+ /* populate the bind info */ -+ slapi_ch_free_string(bind_dn); -+ slapi_ch_free_string(bind_method); -+ *bind_dn = slapi_ch_strdup(server->remote_binddn); -+ *bind_method = slapi_ch_strdup(server->remote_bind_method); -+ /* fix up the bind method */ -+ if ((NULL == *bind_method) || (strcasecmp(*bind_method, DNA_METHOD_SIMPLE) == 0)) { -+ slapi_ch_free_string(bind_method); -+ *bind_method = slapi_ch_strdup(LDAP_SASL_SIMPLE); -+ } else if (strcasecmp(*bind_method, "SSLCLIENTAUTH") == 0) { -+ slapi_ch_free_string(bind_method); -+ *bind_method = slapi_ch_strdup(LDAP_SASL_EXTERNAL); -+ } else if (strcasecmp(*bind_method, DNA_METHOD_GSSAPI) == 0) { -+ slapi_ch_free_string(bind_method); -+ *bind_method = slapi_ch_strdup("GSSAPI"); -+ } else if (strcasecmp(*bind_method, DNA_METHOD_DIGESTMD5) == 0) { -+ slapi_ch_free_string(bind_method); -+ *bind_method = slapi_ch_strdup("DIGEST-MD5"); -+ } else { /* some other weird value */ -+ ; /* just use it directly */ -+ } -+ -+ if(server->remote_conn_prot && strcasecmp(server->remote_conn_prot, DNA_PROT_SSL) == 0){ -+ *is_ssl = 1; -+ } else if(server->remote_conn_prot && strcasecmp(server->remote_conn_prot, DNA_PROT_TLS) == 0){ -+ *is_ssl = 2; -+ } else { -+ *is_ssl = 0; -+ } -+ if(*is_ssl == 1){ /* SSL(covers TLS over ssl) */ -+ if (server->secureport){ -+ *port = server->secureport; -+ } else { -+ slapi_log_error(SLAPI_LOG_FATAL, DNA_PLUGIN_SUBSYSTEM, -+ "dna_get_remote_config_info: Using SSL protocol, but the secure " -+ "port is not defined.\n"); -+ return -1; -+ } -+ } else { /* LDAP/TLS(non secure port) */ -+ if(server->port){ -+ *port = server->port; -+ } else { -+ slapi_log_error(SLAPI_LOG_FATAL, DNA_PLUGIN_SUBSYSTEM, -+ "dna_get_remote_config_info: Using %s protocol, but the non-secure " -+ "port is not defined.\n", server->remote_conn_prot); -+ return -1; -+ } -+ } -+ -+ /* Decode the password */ -+ if (server->remote_bindpw) { -+ char *bind_cred = slapi_ch_strdup(server->remote_bindpw); -+ int pw_ret = 0; -+ -+ slapi_ch_free_string(bind_passwd); -+ pw_ret = pw_rever_decode(bind_cred, bind_passwd, DNA_REPL_CREDS); -+ -+ if (pw_ret == -1) { -+ slapi_log_error(SLAPI_LOG_FATAL, DNA_PLUGIN_SUBSYSTEM, -+ "dna_get_remote_config_info: Failed to decode " -+ "replica bind credentials for server %s, " -+ "port %u\n", server->host, -+ server->port ? server->port : server->secureport); -+ rc = -1; -+ } else if (pw_ret != 0) { -+ /* -+ * The password was already in clear text, so pw_rever_decode -+ * simply set bind_passwd to bind_cred. Set bind_cred to NULL -+ * to prevent a double free. The memory is now owned by -+ * bind_passwd, which is the callers responsibility to free. -+ */ -+ bind_cred = NULL; -+ } -+ slapi_ch_free_string(&bind_cred); -+ } -+ -+ return rc; -+} -+ -+ - /* - * dna_list_contains_type() - * -@@ -3339,7 +3558,7 @@ dna_pre_op(Slapi_PBlock * pb, int modtype) - * here at the pre-op stage. Applying the config - * needs to be done at the post-op stage. */ - -- if (dna_parse_config_entry(test_e, 0) != DNA_SUCCESS) { -+ if (dna_parse_config_entry(pb, test_e, 0) != DNA_SUCCESS) { - /* Refuse the operation if config parsing failed. */ - ret = LDAP_UNWILLING_TO_PERFORM; - if (LDAP_CHANGETYPE_ADD == modtype) { -@@ -3711,7 +3930,7 @@ static int dna_config_check_post_op(Slapi_PBlock * pb) - if (!slapi_op_internal(pb)) { /* If internal, no need to check. */ - if ((dn = dna_get_dn(pb))) { - if (dna_dn_is_config(dn)) { -- dna_load_plugin_config(0); -+ dna_load_plugin_config(pb, 0); - } - } - } --- -1.8.1.4 - diff --git a/SOURCES/0042-Ticket-47970-Account-lockout-attributes-incorrectly-.patch b/SOURCES/0042-Ticket-47970-Account-lockout-attributes-incorrectly-.patch new file mode 100644 index 0000000..4621245 --- /dev/null +++ b/SOURCES/0042-Ticket-47970-Account-lockout-attributes-incorrectly-.patch @@ -0,0 +1,67 @@ +From 42d118ae0f727026745d7846ffab878585bb529a Mon Sep 17 00:00:00 2001 +From: Mark Reynolds <mreynolds@redhat.com> +Date: Tue, 2 Dec 2014 14:10:46 -0500 +Subject: [PATCH 42/53] Ticket 47970 - Account lockout attributes incorrectly + updated after failed SASL Bind + +Bug Description: When a SASL bind fails, the target DN is not set. If password policy + account lockout is configured, it attempts to update the password retry + count on the dn ("") - which is the Root DSE entry, not a user entry. + + This also confuses the COS plugin, and it incorrectly triggers a COS + cache rebuild after the failed login. + +Fix Description: Do not update the password retry counters if it is a failed SASL bind. + +https://fedorahosted.org/389/ticket/47970 + +Reviewed by: nhosoi(Thanks!) + +(cherry picked from commit 17e79688e05908f7fff319bdeb5167cbeaaf922c) +(cherry picked from commit 36f0d05b15a8e984c64631fb7ed070358dd8c68f) +--- + ldap/servers/slapd/result.c | 18 ++++++++++-------- + 1 file changed, 10 insertions(+), 8 deletions(-) + +diff --git a/ldap/servers/slapd/result.c b/ldap/servers/slapd/result.c +index ca2fa43..2198337 100644 +--- a/ldap/servers/slapd/result.c ++++ b/ldap/servers/slapd/result.c +@@ -364,16 +364,18 @@ send_ldap_result_ext( + BerElement *ber + ) + { +- Connection *conn = pb->pb_conn; +- int i, rc, logit = 0; +- ber_tag_t tag; +- int flush_ber_element = 1; + Slapi_Operation *operation; +- const char *dn = NULL; ++ passwdPolicy *pwpolicy = NULL; ++ Connection *conn = pb->pb_conn; + Slapi_DN *sdn = NULL; ++ const char *dn = NULL; ++ ber_tag_t tag; ++ int flush_ber_element = 1; ++ int bind_method = 0; + int internal_op; +- passwdPolicy *pwpolicy = NULL; +- ++ int i, rc, logit = 0; ++ ++ slapi_pblock_get (pb, SLAPI_BIND_METHOD, &bind_method); + slapi_pblock_get (pb, SLAPI_OPERATION, &operation); + + if (operation->o_status == SLAPI_OP_STATUS_RESULT_SENT) { +@@ -451,7 +453,7 @@ send_ldap_result_ext( + + /* invalid password. Update the password retry here */ + /* put this here for now. It could be a send_result pre-op plugin. */ +- if (err == LDAP_INVALID_CREDENTIALS) { ++ if (err == LDAP_INVALID_CREDENTIALS && bind_method != LDAP_AUTH_SASL ) { + slapi_pblock_get( pb, SLAPI_TARGET_SDN, &sdn ); + dn = slapi_sdn_get_dn(sdn); + pwpolicy = new_passwdPolicy(pb, dn); +-- +1.9.3 + diff --git a/SOURCES/0043-Ticket-47379-DNA-plugin-failed-to-fetch-replication-.patch b/SOURCES/0043-Ticket-47379-DNA-plugin-failed-to-fetch-replication-.patch deleted file mode 100644 index c775bc1..0000000 --- a/SOURCES/0043-Ticket-47379-DNA-plugin-failed-to-fetch-replication-.patch +++ /dev/null @@ -1,32 +0,0 @@ -From 0dfb9d9e0de8288a3bfed5180a947239fcc9d5aa Mon Sep 17 00:00:00 2001 -From: Noriko Hosoi <nhosoi@redhat.com> -Date: Sat, 15 Jun 2013 16:45:23 -0700 -Subject: [PATCH 43/44] Ticket 47379 - DNA plugin failed to fetch replication - agreement - -Description : Schema file 10dna-plugin.ldif modified in the commit -3e2262e1c0410bdf4f9b9211aef13deb28f174d1 had a tab which should -be white spaces. It made the schema parsing fail and the server -uninstallable. This patch replaces the tab with white spaces. -(cherry picked from commit 5f0580abd55b4fb34a954f0314c1188c43921363) -(cherry picked from commit 0b4d359a3e1d8ae7e3ea7e00a22449eb2b1233e0) ---- - ldap/schema/10dna-plugin.ldif | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/ldap/schema/10dna-plugin.ldif b/ldap/schema/10dna-plugin.ldif -index ac9b5f4..74f5f8b 100644 ---- a/ldap/schema/10dna-plugin.ldif -+++ b/ldap/schema/10dna-plugin.ldif -@@ -218,7 +218,7 @@ objectClasses: ( 2.16.840.1.113730.3.2.324 NAME 'dnaPluginConfig' - dnaThreshold $ - dnaNextRange $ - dnaRangeRequestTimeout $ -- dnaRemoteBindDN $ -+ dnaRemoteBindDN $ - dnaRemoteBindCred $ - cn - ) --- -1.8.1.4 - diff --git a/SOURCES/0043-Ticket-47970-add-lib389-testcase.patch b/SOURCES/0043-Ticket-47970-add-lib389-testcase.patch new file mode 100644 index 0000000..7be9579 --- /dev/null +++ b/SOURCES/0043-Ticket-47970-add-lib389-testcase.patch @@ -0,0 +1,232 @@ +From b10d004f6461a8dd5d5d2766cf95e92c5d94927e Mon Sep 17 00:00:00 2001 +From: Mark Reynolds <mreynolds@redhat.com> +Date: Thu, 4 Dec 2014 15:57:40 -0500 +Subject: [PATCH 43/53] Ticket 47970 - add lib389 testcase + +https://fedorahosted.org/389/ticket/47970 + +Reviewed by: nhosoi(Thanks!) + +(cherry picked from commit f6929c9b7c24a43b019e966b1fc37d33b21274a1) +(cherry picked from commit b6cd13f49713fecf6b2c94a31e25cd726e216c65) +--- + dirsrvtests/tickets/ticket47970_test.py | 206 ++++++++++++++++++++++++++++++++ + 1 file changed, 206 insertions(+) + create mode 100644 dirsrvtests/tickets/ticket47970_test.py + +diff --git a/dirsrvtests/tickets/ticket47970_test.py b/dirsrvtests/tickets/ticket47970_test.py +new file mode 100644 +index 0000000..49d505a +--- /dev/null ++++ b/dirsrvtests/tickets/ticket47970_test.py +@@ -0,0 +1,206 @@ ++import os ++import sys ++import time ++import ldap ++import ldap.sasl ++import logging ++import socket ++import pytest ++from lib389 import DirSrv, Entry, tools, tasks ++from lib389.tools import DirSrvTools ++from lib389._constants import * ++from lib389.properties import * ++from lib389.tasks import * ++from constants import * ++ ++log = logging.getLogger(__name__) ++ ++installation_prefix = None ++ ++USER1_DN = "uid=user1,%s" % DEFAULT_SUFFIX ++USER2_DN = "uid=user2,%s" % DEFAULT_SUFFIX ++ ++ ++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_ticket47970(topology): ++ """ ++ Testing that a failed SASL bind does not trigger account lockout - ++ which would attempt to update the passwordRetryCount on the root dse entry ++ """ ++ ++ log.info('Testing Ticket 47970 - Testing that a failed SASL bind does not trigger account lockout') ++ ++ # ++ # Enable account lockout ++ # ++ try: ++ topology.standalone.modify_s("cn=config", [(ldap.MOD_REPLACE, 'passwordLockout', 'on')]) ++ log.info('account lockout enabled.') ++ except ldap.LDAPError, e: ++ log.error('Failed to enable account lockout: ' + e.message['desc']) ++ assert False ++ ++ try: ++ topology.standalone.modify_s("cn=config", [(ldap.MOD_REPLACE, 'passwordMaxFailure', '5')]) ++ log.info('passwordMaxFailure set.') ++ except ldap.LDAPError, e: ++ log.error('Failed to to set passwordMaxFailure: ' + e.message['desc']) ++ assert False ++ ++ # ++ # Perform SASL bind that should fail ++ # ++ failed_as_expected = False ++ try: ++ user_name = "mark" ++ pw = "secret" ++ auth_tokens = ldap.sasl.digest_md5(user_name, pw) ++ topology.standalone.sasl_interactive_bind_s("", auth_tokens) ++ except ldap.INVALID_CREDENTIALS, e: ++ log.info("SASL Bind failed as expected") ++ failed_as_expected = True ++ ++ if not failed_as_expected: ++ log.error("SASL bind unexpectedly succeeded!") ++ assert False ++ ++ # ++ # Check that passwordRetryCount was not set on the root dse entry ++ # ++ try: ++ entry = topology.standalone.search_s("", ldap.SCOPE_BASE, ++ "passwordRetryCount=*", ++ ['passwordRetryCount']) ++ except ldap.LDAPError, e: ++ log.error('Failed to search Root DSE entry: ' + e.message['desc']) ++ assert False ++ ++ if entry: ++ log.error('Root DSE was incorrectly updated') ++ assert False ++ ++ # We passed ++ log.info('Root DSE was correctly not updated') ++ log.info("Test Passed.") ++ ++ ++def test_ticket47970_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_ticket47970(topo) ++ ++if __name__ == '__main__': ++ run_isolated() +\ No newline at end of file +-- +1.9.3 + diff --git a/SOURCES/0044-Ticket-47577-crash-when-removing-entries-from-cache.patch b/SOURCES/0044-Ticket-47577-crash-when-removing-entries-from-cache.patch deleted file mode 100644 index 5cc5ef1..0000000 --- a/SOURCES/0044-Ticket-47577-crash-when-removing-entries-from-cache.patch +++ /dev/null @@ -1,89 +0,0 @@ -From 583eda60ede7224cea8aed5bae1bc819fab77b45 Mon Sep 17 00:00:00 2001 -From: Ludwig Krispenz <lkrispen@redhat.com> -Date: Tue, 5 Nov 2013 16:58:44 +0100 -Subject: [PATCH 44/44] Ticket 47577 - crash when removing entries from cache - -Bug Description: when the dn of an entry in the cache was adjusted to the parent dn, for soenm time - teh dn was not defined, anothe thread accessing the dn of teh chached entry could crash - -Fix Description: hold the cache mutex when modifyingthe dn of an entry in the cache - -https://fedorahosted.org/389/ticket/47577 - -Reviewed by: rmeggins -(cherry picked from commit 7272dbda7f43974eed003cbcfc0ddd57fe433687) -(cherry picked from commit 1056a6282f246a9c396b8052d726005fe8189512) -(cherry picked from commit 00b19f3b4af662341c72fa6cfd60b5e136f1428f) -(cherry picked from commit ecc210f3ca25528f5f718680409ded0021d5604c) ---- - ldap/servers/slapd/back-ldbm/back-ldbm.h | 2 ++ - ldap/servers/slapd/back-ldbm/cache.c | 8 ++++++++ - ldap/servers/slapd/back-ldbm/id2entry.c | 2 ++ - ldap/servers/slapd/back-ldbm/proto-back-ldbm.h | 2 ++ - 4 files changed, 14 insertions(+) - -diff --git a/ldap/servers/slapd/back-ldbm/back-ldbm.h b/ldap/servers/slapd/back-ldbm/back-ldbm.h -index 970f3c2..5f8a05a 100644 ---- a/ldap/servers/slapd/back-ldbm/back-ldbm.h -+++ b/ldap/servers/slapd/back-ldbm/back-ldbm.h -@@ -409,6 +409,8 @@ struct cache { - #define CACHE_ADD(cache, p, a) cache_add((cache), (void *)(p), (void **)(a)) - #define CACHE_RETURN(cache, p) cache_return((cache), (void **)(p)) - #define CACHE_REMOVE(cache, p) cache_remove((cache), (void *)(p)) -+#define CACHE_LOCK(cache) cache_lock((cache)) -+#define CACHE_UNLOCK(cache) cache_unlock((cache)) - - /* various modules keep private data inside the attrinfo structure */ - typedef struct dblayer_private dblayer_private; -diff --git a/ldap/servers/slapd/back-ldbm/cache.c b/ldap/servers/slapd/back-ldbm/cache.c -index 5fa06fb..a73ae6a 100644 ---- a/ldap/servers/slapd/back-ldbm/cache.c -+++ b/ldap/servers/slapd/back-ldbm/cache.c -@@ -1472,6 +1472,14 @@ 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_Lock(cache->c_mutex); -+} -+void cache_unlock(struct cache *cache) -+{ -+ PR_Unlock(cache->c_mutex); -+} - - /* locks an entry so that it can be modified (you should have gotten the - * entry via cache_find_*). -diff --git a/ldap/servers/slapd/back-ldbm/id2entry.c b/ldap/servers/slapd/back-ldbm/id2entry.c -index dae558c..7a3b19e 100644 ---- a/ldap/servers/slapd/back-ldbm/id2entry.c -+++ b/ldap/servers/slapd/back-ldbm/id2entry.c -@@ -167,10 +167,12 @@ id2entry_add_ext(backend *be, struct backentry *e, back_txn *txn, - if (myparentdn && PL_strcmp(parentdn, myparentdn)) { - Slapi_DN *sdn = slapi_entry_get_sdn(e->ep_entry); - char *newdn = NULL; -+ CACHE_LOCK(&inst->inst_cache); - slapi_sdn_done(sdn); - newdn = slapi_ch_smprintf("%s,%s", myrdn, parentdn); - slapi_sdn_init_dn_passin(sdn, newdn); - slapi_sdn_get_ndn(sdn); /* to set ndn */ -+ CACHE_UNLOCK(&inst->inst_cache); - } - slapi_ch_free_string(&myparentdn); - } -diff --git a/ldap/servers/slapd/back-ldbm/proto-back-ldbm.h b/ldap/servers/slapd/back-ldbm/proto-back-ldbm.h -index 3b2e586..d168714 100644 ---- a/ldap/servers/slapd/back-ldbm/proto-back-ldbm.h -+++ b/ldap/servers/slapd/back-ldbm/proto-back-ldbm.h -@@ -76,6 +76,8 @@ void cache_get_stats(struct cache *cache, PRUint64 *hits, PRUint64 *tries, - void cache_debug_hash(struct cache *cache, char **out); - int cache_remove(struct cache *cache, void *e); - void cache_return(struct cache *cache, void **bep); -+void cache_lock(struct cache *cache); -+void cache_unlock(struct cache *cache); - struct backentry *cache_find_dn(struct cache *cache, const char *dn, unsigned long ndnlen); - struct backentry *cache_find_id(struct cache *cache, ID id); - struct backentry *cache_find_uuid(struct cache *cache, const char *uuid); --- -1.8.1.4 - diff --git a/SOURCES/0044-Ticket-47960-cookie_change_info-returns-random-negat.patch b/SOURCES/0044-Ticket-47960-cookie_change_info-returns-random-negat.patch new file mode 100644 index 0000000..aefa76f --- /dev/null +++ b/SOURCES/0044-Ticket-47960-cookie_change_info-returns-random-negat.patch @@ -0,0 +1,88 @@ +From bf2263bac10b890cdfc1fb7cd37f868785190cce Mon Sep 17 00:00:00 2001 +From: Noriko Hosoi <nhosoi@redhat.com> +Date: Wed, 10 Dec 2014 17:12:00 -0800 +Subject: [PATCH 44/53] Ticket #47960 - cookie_change_info returns random + negative number if there was no change in a tree + +Description: When no changes had not been made, Retro Changelog db +was empty and the search callback sync_handle_cnum_entry in the +Content Synchronization had no chance to be called. If it was not +called, an uninitialized garbage value in Sync_CallBackData was set +to cookie_change_info. + +This patch checks if the search callback sync_handle_cnum_entry is +called or not. If it is not called, set 0 to cookie_change_info. + +https://fedorahosted.org/389/ticket/47960 + +Reviewed by rmeggins@redhat.com and tbordaz@redhat.com (Thank you, +Rich and Thierry!!) + +(cherry picked from commit a908c6b57cd77ff2f6e2fe0fe1fa2e0eccba77e0) +(cherry picked from commit b7a472c71db4671c127584fcf7bfd8c75930bc8c) +--- + ldap/servers/plugins/sync/sync.h | 2 ++ + ldap/servers/plugins/sync/sync_util.c | 14 ++++++++++---- + 2 files changed, 12 insertions(+), 4 deletions(-) + +diff --git a/ldap/servers/plugins/sync/sync.h b/ldap/servers/plugins/sync/sync.h +index 9c2d8be..0bcec7a 100644 +--- a/ldap/servers/plugins/sync/sync.h ++++ b/ldap/servers/plugins/sync/sync.h +@@ -76,6 +76,8 @@ typedef struct sync_update { + Slapi_Entry *upd_e; + } Sync_UpdateNode; + ++#define SYNC_CALLBACK_PREINIT (-1) ++ + typedef struct sync_callback { + Slapi_PBlock *orig_pb; + int changenr; +diff --git a/ldap/servers/plugins/sync/sync_util.c b/ldap/servers/plugins/sync/sync_util.c +index de65b99..af22bcb 100644 +--- a/ldap/servers/plugins/sync/sync_util.c ++++ b/ldap/servers/plugins/sync/sync_util.c +@@ -373,6 +373,7 @@ sync_handle_cnum_entry(Slapi_Entry *e, void *cb_data) + if( NULL != value && NULL != value->bv_val && + '\0' != value->bv_val[0]) { + cb->changenr = sync_number2int(value->bv_val); ++ cb->cb_err = 0; /* changenr successfully set */ + } + } + } +@@ -500,7 +501,7 @@ sync_cookie_get_change_info(Sync_CallBackData *scbd) + slapi_pblock_init(seq_pb); + + slapi_seq_internal_set_pb(seq_pb, base, SLAPI_SEQ_LAST, attrname, NULL, NULL, 0, 0, +- plugin_get_default_component_id(), 0); ++ plugin_get_default_component_id(), 0); + + rc = slapi_seq_internal_callback_pb (seq_pb, scbd, NULL, sync_handle_cnum_entry, NULL); + slapi_pblock_destroy(seq_pb); +@@ -518,15 +519,20 @@ sync_cookie_create (Slapi_PBlock *pb) + + Sync_CallBackData scbd; + int rc; +- Sync_Cookie *sc = (Sync_Cookie *)slapi_ch_malloc(sizeof(Sync_Cookie)); +- ++ Sync_Cookie *sc = (Sync_Cookie *)slapi_ch_calloc(1, sizeof(Sync_Cookie)); + ++ scbd.cb_err = SYNC_CALLBACK_PREINIT; + rc = sync_cookie_get_change_info (&scbd); + + if (rc == 0) { + sc->cookie_server_signature = sync_cookie_get_server_info(pb); + sc->cookie_client_signature = sync_cookie_get_client_info(pb); +- sc->cookie_change_info = scbd.changenr; ++ if (scbd.cb_err == SYNC_CALLBACK_PREINIT) { ++ /* changenr is not initialized. */ ++ sc->cookie_change_info = 0; ++ } else { ++ sc->cookie_change_info = scbd.changenr; ++ } + } else { + slapi_ch_free ((void **)&sc); + sc = NULL; +-- +1.9.3 + diff --git a/SOURCES/0045-Ticket-47379-DNA-plugin-failed-to-fetch-replication-.patch b/SOURCES/0045-Ticket-47379-DNA-plugin-failed-to-fetch-replication-.patch deleted file mode 100644 index 049ce91..0000000 --- a/SOURCES/0045-Ticket-47379-DNA-plugin-failed-to-fetch-replication-.patch +++ /dev/null @@ -1,29 +0,0 @@ -From 98f1dd2ac6a367de42bb12a8c3d69f8cc434ebce Mon Sep 17 00:00:00 2001 -From: Noriko Hosoi <nhosoi@redhat.com> -Date: Fri, 8 Nov 2013 13:50:41 -0800 -Subject: [PATCH 45/49] Ticket 47379 - DNA plugin failed to fetch replication - agreement - -Jenkins error: dna.c - -(partially cherry picked from commit 23063fc5844873d44ad2021aaabfbc1472ef981a) ---- - 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 40522a6..90a66c6 100644 ---- a/ldap/servers/plugins/dna/dna.c -+++ b/ldap/servers/plugins/dna/dna.c -@@ -1617,7 +1617,7 @@ dna_get_shared_servers(struct configEntry *config_entry, PRCList **servers) - } - /* see if we defined a server manually */ - if(server->remote_bind_method){ -- char *reason; -+ char *reason = NULL; - int err = 0; - - if(strcasecmp(server->remote_bind_method, DNA_METHOD_DIGESTMD5) == 0 || --- -1.8.1.4 - diff --git a/SOURCES/0045-Ticket-47960-cookie_change_info-returns-random-negat.patch b/SOURCES/0045-Ticket-47960-cookie_change_info-returns-random-negat.patch new file mode 100644 index 0000000..d739ea3 --- /dev/null +++ b/SOURCES/0045-Ticket-47960-cookie_change_info-returns-random-negat.patch @@ -0,0 +1,251 @@ +From 254ba1f6adf1575f5992ccc1a228ecd10ce96cc5 Mon Sep 17 00:00:00 2001 +From: Noriko Hosoi <nhosoi@redhat.com> +Date: Fri, 12 Dec 2014 15:41:36 -0800 +Subject: [PATCH 45/53] Ticket #47960 - cookie_change_info returns random + negative number if there was no change in a tree + +Description: An additional fix for the type mismatch for the change +numbers. Change Number is declared as "unsigned long" in the Retro +Changelog plugin, while cookie_change_info in the Content Sync plugin +is "int", which could end up with a negative number when the change +number passes (2^31 - 1). + +Changing the type of cookie_change_info to "unsigned long". + +https://fedorahosted.org/389/ticket/47960 + +Reviewed by rmeggins@redhat.com and tbordaz@redhat.com (Thank you, +Rich and Thierry!!) + +(cherry picked from commit 96c130b432ce0b15028e325c0e337679291aef9f) +(cherry picked from commit 61a4e7035742612a1a8bf42b16e93cc55776dc31) +--- + ldap/servers/plugins/sync/sync.h | 9 +++-- + ldap/servers/plugins/sync/sync_refresh.c | 32 +++++++++++++----- + ldap/servers/plugins/sync/sync_util.c | 56 ++++++++++++++++++++------------ + 3 files changed, 65 insertions(+), 32 deletions(-) + +diff --git a/ldap/servers/plugins/sync/sync.h b/ldap/servers/plugins/sync/sync.h +index 0bcec7a..803c656 100644 +--- a/ldap/servers/plugins/sync/sync.h ++++ b/ldap/servers/plugins/sync/sync.h +@@ -64,10 +64,12 @@ + #define CL_ATTR_NEWSUPERIOR "newsuperior" + #define CL_SRCH_BASE "cn=changelog" + ++#define SYNC_INVALID_CHANGENUM ((unsigned long)-1) ++ + typedef struct sync_cookie { + char *cookie_client_signature; + char *cookie_server_signature; +- int cookie_change_info; ++ unsigned long cookie_change_info; + } Sync_Cookie; + + typedef struct sync_update { +@@ -80,8 +82,8 @@ typedef struct sync_update { + + typedef struct sync_callback { + Slapi_PBlock *orig_pb; +- int changenr; +- int change_start; ++ unsigned long changenr; ++ unsigned long change_start; + int cb_err; + Sync_UpdateNode *cb_updates; + } Sync_CallBackData; +@@ -112,6 +114,7 @@ int sync_cookie_isvalid (Sync_Cookie *testcookie, Sync_Cookie *refcookie); + void sync_cookie_free (Sync_Cookie **freecookie); + char * sync_cookie2str(Sync_Cookie *cookie); + int sync_number2int(char *nrstr); ++unsigned long sync_number2ulong(char *nrstr); + char *sync_nsuniqueid2uuid(const char *nsuniqueid); + + int sync_is_active (Slapi_Entry *e, Slapi_PBlock *pb); +diff --git a/ldap/servers/plugins/sync/sync_refresh.c b/ldap/servers/plugins/sync/sync_refresh.c +index 4e256e6..bfff77b 100644 +--- a/ldap/servers/plugins/sync/sync_refresh.c ++++ b/ldap/servers/plugins/sync/sync_refresh.c +@@ -293,9 +293,9 @@ sync_refresh_update_content(Slapi_PBlock *pb, Sync_Cookie *client_cookie, Sync_C + cb_data.orig_pb = pb; + cb_data.change_start = client_cookie->cookie_change_info; + +- filter = slapi_ch_smprintf("(&(changenumber>=%d)(changenumber<=%d))", +- client_cookie->cookie_change_info, +- server_cookie->cookie_change_info); ++ filter = slapi_ch_smprintf("(&(changenumber>=%lu)(changenumber<=%lu))", ++ client_cookie->cookie_change_info, ++ server_cookie->cookie_change_info); + slapi_search_internal_set_pb( + seq_pb, + CL_SRCH_BASE, +@@ -305,7 +305,7 @@ sync_refresh_update_content(Slapi_PBlock *pb, Sync_Cookie *client_cookie, Sync_C + 0, + NULL, NULL, + plugin_get_default_component_id(), +- 0); ++ 0); + + rc = slapi_search_internal_callback_pb ( + seq_pb, &cb_data, NULL, sync_read_entry_from_changelog, NULL); +@@ -460,6 +460,7 @@ sync_read_entry_from_changelog( Slapi_Entry *cl_entry, void *cb_data) + int chg_req; + int prev = 0; + int index = 0; ++ unsigned long chgnum = 0; + Sync_CallBackData *cb = (Sync_CallBackData *) cb_data; + + if (cb == NULL) { +@@ -470,13 +471,28 @@ sync_read_entry_from_changelog( Slapi_Entry *cl_entry, void *cb_data) + if (uniqueid == NULL) { + slapi_log_error (SLAPI_LOG_FATAL, SYNC_PLUGIN_SUBSYSTEM, + "Retro Changelog does not provied nsuniquedid." +- "Check RCL plugin configuration." ); ++ "Check RCL plugin configuration.\n" ); + return(1); + } +- chgtype = sync_get_attr_value_from_entry (cl_entry, CL_ATTR_CHGTYPE); + chgnr = sync_get_attr_value_from_entry (cl_entry, CL_ATTR_CHANGENUMBER); +- +- index = sync_number2int(chgnr) - cb->change_start; ++ chgnum = sync_number2ulong(chgnr); ++ if (SYNC_INVALID_CHANGENUM == chgnum) { ++ slapi_log_error (SLAPI_LOG_FATAL, SYNC_PLUGIN_SUBSYSTEM, ++ "Change number provided by Retro Changelog is invalid: %s\n", chgnr); ++ slapi_ch_free_string(&chgnr); ++ slapi_ch_free_string(&uniqueid); ++ return(1); ++ } ++ if (chgnum < cb->change_start) { ++ slapi_log_error (SLAPI_LOG_FATAL, SYNC_PLUGIN_SUBSYSTEM, ++ "Change number provided by Retro Changelog %s is less than the initial number %lu\n", ++ chgnr, cb->change_start); ++ slapi_ch_free_string(&chgnr); ++ slapi_ch_free_string(&uniqueid); ++ return(1); ++ } ++ index = chgnum - cb->change_start; ++ chgtype = sync_get_attr_value_from_entry (cl_entry, CL_ATTR_CHGTYPE); + chg_req = sync_str2chgreq(chgtype); + switch (chg_req){ + case LDAP_REQ_ADD: +diff --git a/ldap/servers/plugins/sync/sync_util.c b/ldap/servers/plugins/sync/sync_util.c +index af22bcb..67cb453 100644 +--- a/ldap/servers/plugins/sync/sync_util.c ++++ b/ldap/servers/plugins/sync/sync_util.c +@@ -266,10 +266,10 @@ sync_cookie2str(Sync_Cookie *cookie) + char *cookiestr = NULL; + + if (cookie) { +- cookiestr = slapi_ch_smprintf("%s#%s#%d", +- cookie->cookie_server_signature, +- cookie->cookie_client_signature, +- cookie->cookie_change_info); ++ cookiestr = slapi_ch_smprintf("%s#%s#%lu", ++ cookie->cookie_server_signature, ++ cookie->cookie_client_signature, ++ cookie->cookie_change_info); + } + return(cookiestr); + } +@@ -370,10 +370,11 @@ sync_handle_cnum_entry(Slapi_Entry *e, void *cb_data) + slapi_attr_first_value( chattr,&sval ); + if ( NULL != sval ) { + value = slapi_value_get_berval ( sval ); +- if( NULL != value && NULL != value->bv_val && +- '\0' != value->bv_val[0]) { +- cb->changenr = sync_number2int(value->bv_val); +- cb->cb_err = 0; /* changenr successfully set */ ++ if (value && value->bv_val && ('\0' != value->bv_val[0])) { ++ cb->changenr = sync_number2ulong(value->bv_val); ++ if (SYNC_INVALID_CHANGENUM != cb->changenr) { ++ cb->cb_err = 0; /* changenr successfully set */ ++ } + } + } + } +@@ -452,31 +453,30 @@ sync_cookie_get_client_info(Slapi_PBlock *pb) + clientinfo = slapi_ch_smprintf("%s:%s:%s",clientdn,targetdn,strfilter); + return (clientinfo); + } +-static int ++static unsigned long + sync_cookie_get_change_number(int lastnr, const char *uniqueid) + { + Slapi_PBlock *srch_pb; + Slapi_Entry **entries; + Slapi_Entry *cl_entry; + int rv; +- int newnr = -1; ++ unsigned long newnr = SYNC_INVALID_CHANGENUM; + char *filter = slapi_ch_smprintf("(&(changenumber>=%d)(targetuniqueid=%s))",lastnr,uniqueid); + + srch_pb = slapi_pblock_new(); +- slapi_search_internal_set_pb(srch_pb, CL_SRCH_BASE, +- LDAP_SCOPE_SUBTREE, filter, +- NULL, 0, NULL, NULL, plugin_get_default_component_id(), 0); +- slapi_search_internal_pb(srch_pb); ++ slapi_search_internal_set_pb(srch_pb, CL_SRCH_BASE, LDAP_SCOPE_SUBTREE, filter, ++ NULL, 0, NULL, NULL, plugin_get_default_component_id(), 0); ++ slapi_search_internal_pb(srch_pb); + slapi_pblock_get(srch_pb, SLAPI_PLUGIN_INTOP_RESULT, &rv); +- if ( rv == LDAP_SUCCESS) { ++ if (rv == LDAP_SUCCESS) { + slapi_pblock_get(srch_pb, SLAPI_PLUGIN_INTOP_SEARCH_ENTRIES, &entries); +- if (entries && *entries) { ++ if (entries && *entries) { + Slapi_Attr *attr; + Slapi_Value *val; + cl_entry = *entries; /* only use teh first one */ + slapi_entry_attr_find(cl_entry, CL_ATTR_CHANGENUMBER, &attr); + slapi_attr_first_value(attr, &val); +- newnr = sync_number2int((char *)slapi_value_get_string(val)); ++ newnr = sync_number2ulong((char *)slapi_value_get_string(val)); + } + } + +@@ -579,8 +579,8 @@ sync_cookie_parse (char *cookie) + if (p) { + *p = '\0'; + sc->cookie_client_signature = slapi_ch_strdup(q); +- sc->cookie_change_info = sync_number2int(p+1); +- if (sc->cookie_change_info < 0) { ++ sc->cookie_change_info = sync_number2ulong(p+1); ++ if (SYNC_INVALID_CHANGENUM == sc->cookie_change_info) { + goto error_return; + } + } else { +@@ -716,14 +716,28 @@ sync_pblock_copy(Slapi_PBlock *src) + return dest; + } + +-int sync_number2int(char *chgnrstr) ++int ++sync_number2int(char *chgnrstr) + { + char *end; + int nr; +- nr = strtoul(chgnrstr, &end, 10); ++ nr = (int)strtoul(chgnrstr, &end, 10); + if ( *end == '\0') { + return (nr); + } else { + return (-1); + } + } ++ ++unsigned long ++sync_number2ulong(char *chgnrstr) ++{ ++ char *end; ++ unsigned long nr; ++ nr = strtoul(chgnrstr, &end, 10); ++ if ( *end == '\0') { ++ return (nr); ++ } else { ++ return SYNC_INVALID_CHANGENUM; ++ } ++} +-- +1.9.3 + diff --git a/SOURCES/0046-Ticket-47589-Winsync-replica-initialization-and-incr.patch b/SOURCES/0046-Ticket-47589-Winsync-replica-initialization-and-incr.patch deleted file mode 100644 index 65f28a9..0000000 --- a/SOURCES/0046-Ticket-47589-Winsync-replica-initialization-and-incr.patch +++ /dev/null @@ -1,36 +0,0 @@ -From ba632fde62d50cb2641010b29e6f11bf62862922 Mon Sep 17 00:00:00 2001 -From: Noriko Hosoi <nhosoi@redhat.com> -Date: Fri, 8 Nov 2013 13:58:14 -0800 -Subject: [PATCH 46/49] Ticket #47589 - Winsync replica initialization and - incremental updates from DS to AD fails on RHEL7 - -Bug description: Cherry-picking the fix for "Ticket #47492 - PassSync -removes User must change password flag on the Windows side" (commit -8d34f77f6d8d3c83dce1f29e6df709df1adef09d) dropped one line to set -suffix in map_entry_dn_outbound. - -Fix description: This patch recovers the suffix setting code. - -Reviewed by rmeggins (Thank you, Rich!) - -(cherry picked from commit 9df31ed14bf8c9e2224a21e0fc544fffec637a58) ---- - ldap/servers/plugins/replication/windows_protocol_util.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/ldap/servers/plugins/replication/windows_protocol_util.c b/ldap/servers/plugins/replication/windows_protocol_util.c -index 69db5a0..5559f7e 100644 ---- a/ldap/servers/plugins/replication/windows_protocol_util.c -+++ b/ldap/servers/plugins/replication/windows_protocol_util.c -@@ -3502,7 +3502,7 @@ map_entry_dn_outbound(Slapi_Entry *e, - char *guid = NULL; - Slapi_DN *new_dn = NULL; - int is_nt4 = windows_private_get_isnt4(prp->agmt); -- const char *suffix = NULL; -+ const char *suffix = slapi_sdn_get_dn(windows_private_get_windows_subtree(prp->agmt)); - Slapi_Entry *remote_entry = NULL; - - if (NULL == e) { --- -1.8.1.4 - diff --git a/SOURCES/0046-Ticket-47636-Error-log-levels-not-displayed-correctl.patch b/SOURCES/0046-Ticket-47636-Error-log-levels-not-displayed-correctl.patch new file mode 100644 index 0000000..84b2784 --- /dev/null +++ b/SOURCES/0046-Ticket-47636-Error-log-levels-not-displayed-correctl.patch @@ -0,0 +1,79 @@ +From cac085393e5d3ea996b9dd19811088f675c15b5f Mon Sep 17 00:00:00 2001 +From: Mark Reynolds <mreynolds@redhat.com> +Date: Mon, 8 Dec 2014 15:50:53 -0500 +Subject: [PATCH 46/53] Ticket 47636 - Error log levels not displayed correctly + +Bug Description: Searching for nsslapd-errorlog-level returns an + unexpected value (the level plus 16384). + +Fix Description: This is a regression from the first fix for this + ticket. The fix is to only adjust the level zero, + to its full default value of 16384. + +https://fedorahosted.org/389/ticket/47636 + +Reviewed by: rmeggins(Thanks!) + +(cherry picked from commit f12e1216cc7baf128911d519cc8758c1c9277957) +(cherry picked from commit 7b32ab042511f69e544f91b318387edd00129292) +--- + ldap/servers/slapd/libglobs.c | 22 ++++++++++++++++++++-- + 1 file changed, 20 insertions(+), 2 deletions(-) + +diff --git a/ldap/servers/slapd/libglobs.c b/ldap/servers/slapd/libglobs.c +index b437112..b2b40d3 100644 +--- a/ldap/servers/slapd/libglobs.c ++++ b/ldap/servers/slapd/libglobs.c +@@ -118,6 +118,7 @@ typedef enum { + CONFIG_CONSTANT_STRING, /* for #define values, e.g. */ + CONFIG_SPECIAL_REFERRALLIST, /* this is a berval list */ + CONFIG_SPECIAL_SSLCLIENTAUTH, /* maps strings to an enumeration */ ++ CONFIG_SPECIAL_ERRORLOGLEVEL, /* requires & with LDAP_DEBUG_ANY */ + CONFIG_STRING_OR_EMPTY, /* use an empty string */ + CONFIG_SPECIAL_ANON_ACCESS_SWITCH, /* maps strings to an enumeration */ + CONFIG_SPECIAL_VALIDATE_CERT_SWITCH, /* maps strings to an enumeration */ +@@ -289,7 +290,7 @@ slapi_onoff_t init_mempool_switch; + static int + isInt(ConfigVarType type) + { +- return type == CONFIG_INT || type == CONFIG_ON_OFF || type == CONFIG_SPECIAL_SSLCLIENTAUTH; ++ return type == CONFIG_INT || type == CONFIG_ON_OFF || type == CONFIG_SPECIAL_SSLCLIENTAUTH || type == CONFIG_SPECIAL_ERRORLOGLEVEL; + } + + /* the caller will typically have to cast the result based on the ConfigVarType */ +@@ -339,7 +340,7 @@ static struct config_get_and_set { + {CONFIG_LOGLEVEL_ATTRIBUTE, config_set_errorlog_level, + NULL, 0, + (void**)&global_slapdFrontendConfig.errorloglevel, +- CONFIG_INT, NULL, STRINGIFYDEFINE(SLAPD_DEFAULT_ERRORLOG_LEVEL)}, ++ CONFIG_SPECIAL_ERRORLOGLEVEL, NULL, NULL}, + {CONFIG_ERRORLOG_LOGGING_ENABLED_ATTRIBUTE, NULL, + log_set_logging, SLAPD_ERROR_LOG, + (void**)&global_slapdFrontendConfig.errorlog_logging_enabled, +@@ -7563,6 +7564,23 @@ config_set_value( + *((char **)value) : "unknown"); + break; + ++ case CONFIG_SPECIAL_ERRORLOGLEVEL: ++ if (value) { ++ int ival = *(int *)value; ++ ival &= ~LDAP_DEBUG_ANY; ++ if (ival == 0) { ++ /* ++ * Don't store the default value as zero, ++ * but as its real value. ++ */ ++ ival = LDAP_DEBUG_ANY; ++ } ++ slapi_entry_attr_set_int(e, cgas->attr_name, ival); ++ } ++ else ++ slapi_entry_attr_set_charptr(e, cgas->attr_name, ""); ++ break; ++ + case CONFIG_SPECIAL_ANON_ACCESS_SWITCH: + if (!value) { + slapi_entry_attr_set_charptr(e, cgas->attr_name, "off"); +-- +1.9.3 + diff --git a/SOURCES/0047-Ticket-47585-Replication-Failures-related-to-skipped.patch b/SOURCES/0047-Ticket-47585-Replication-Failures-related-to-skipped.patch deleted file mode 100644 index a656a6d..0000000 --- a/SOURCES/0047-Ticket-47585-Replication-Failures-related-to-skipped.patch +++ /dev/null @@ -1,157 +0,0 @@ -From e98e41731051b7bf4a443b51a9d3563fc1853773 Mon Sep 17 00:00:00 2001 -From: Rich Megginson <rmeggins@redhat.com> -Date: Wed, 6 Nov 2013 14:22:31 -0700 -Subject: [PATCH 47/49] Ticket #47585 Replication Failures related to skipped - entries due to cleaned rids - -https://fedorahosted.org/389/ticket/47585 -Reviewed by: nhosoi (Thanks!) -Branch: 389-ds-base-1.3.1 -Fix Description: If a change was found in the changelog buffer that is -skipped due to having an unknown replica ID (rid), the entire buffer was -marked as CLC_STATE_NEW_RID. When the buffer is exhausted and the iterator -code goes to read in the new buffer, it would not read in the new buffer -because it only loads a new buffer if the current buffer state is -CLC_STATE_READY. I don't know why the entire buffer would be marked as -CLC_STATE_NEW_RID and stop iteration. It seems to me that just the update -should be skipped, but new buffers should be loaded in order to keep sending -non-skipped updates to the consumer. -It is possible for a CSN with an unknown RID to get into the changelog if -the server with that RID had been removed by cleanruv/cleanallruv. In that -case, the CSN should be skipped. It is assumed that the change was already -sent - cleanallruv is supposed to wait until all known changes have been -seen before removing the RID from the RUV - so it is safe to skip it. -Added additional debugging, so that we can better tell why changelog entries -were skipped. -Platforms tested: RHEL6 x86_64 -Flag Day: no -Doc impact: no -(cherry picked from commit cf08f1274404e4796966011a98a6a0acbbfd6070) -(cherry picked from commit 30bb98fb693ea1aac9774bdc43b923eacd72570a) -(cherry picked from commit fc70e4ac6accaa14d140e333829e98897f6ff164) ---- - ldap/servers/plugins/replication/cl5_clcache.c | 48 ++++++++++++++++++++++---- - 1 file changed, 42 insertions(+), 6 deletions(-) - -diff --git a/ldap/servers/plugins/replication/cl5_clcache.c b/ldap/servers/plugins/replication/cl5_clcache.c -index 7a6a446..8218312 100644 ---- a/ldap/servers/plugins/replication/cl5_clcache.c -+++ b/ldap/servers/plugins/replication/cl5_clcache.c -@@ -120,6 +120,11 @@ struct clc_buffer { - int buf_load_cnt; /* number of loads for session */ - int buf_record_cnt; /* number of changes for session */ - int buf_record_skipped; /* number of changes skipped */ -+ int buf_skipped_new_rid; /* number of changes skipped due to new_rid */ -+ int buf_skipped_csn_gt_cons_maxcsn; /* number of changes skipped due to csn greater than consumer maxcsn */ -+ int buf_skipped_up_to_date; /* number of changes skipped due to consumer being up-to-date for the given rid */ -+ int buf_skipped_csn_gt_ruv; /* number of changes skipped due to preceedents are not covered by local RUV snapshot */ -+ int buf_skipped_csn_covered; /* number of changes skipped due to CSNs already covered by consumer RUV */ - - /* - * fields that should be accessed via bl_lock or pl_lock -@@ -252,6 +257,11 @@ clcache_get_buffer ( CLC_Buffer **buf, DB *db, ReplicaId consumer_rid, const RUV - (*buf)->buf_record_skipped = 0; - (*buf)->buf_cursor = NULL; - (*buf)->buf_num_cscbs = 0; -+ (*buf)->buf_skipped_new_rid = 0; -+ (*buf)->buf_skipped_csn_gt_cons_maxcsn = 0; -+ (*buf)->buf_skipped_up_to_date = 0; -+ (*buf)->buf_skipped_csn_gt_ruv = 0; -+ (*buf)->buf_skipped_csn_covered = 0; - } - else { - *buf = clcache_new_buffer ( consumer_rid ); -@@ -287,11 +297,16 @@ clcache_return_buffer ( CLC_Buffer **buf ) - int i; - - slapi_log_error ( SLAPI_LOG_REPL, (*buf)->buf_agmt_name, -- "session end: state=%d load=%d sent=%d skipped=%d\n", -- (*buf)->buf_state, -- (*buf)->buf_load_cnt, -- (*buf)->buf_record_cnt - (*buf)->buf_record_skipped, -- (*buf)->buf_record_skipped ); -+ "session end: state=%d load=%d sent=%d skipped=%d skipped_new_rid=%d " -+ "skipped_csn_gt_cons_maxcsn=%d skipped_up_to_date=%d " -+ "skipped_csn_gt_ruv=%d skipped_csn_covered=%d\n", -+ (*buf)->buf_state, -+ (*buf)->buf_load_cnt, -+ (*buf)->buf_record_cnt - (*buf)->buf_record_skipped, -+ (*buf)->buf_record_skipped, (*buf)->buf_skipped_new_rid, -+ (*buf)->buf_skipped_csn_gt_cons_maxcsn, -+ (*buf)->buf_skipped_up_to_date, (*buf)->buf_skipped_csn_gt_ruv, -+ (*buf)->buf_skipped_csn_covered); - - for ( i = 0; i < (*buf)->buf_num_cscbs; i++ ) { - clcache_free_cscb ( &(*buf)->buf_cscbs[i] ); -@@ -676,6 +691,8 @@ clcache_skip_change ( CLC_Buffer *buf ) - ReplicaId rid; - int skip = 1; - int i; -+ char buf_cur_csn_str[CSN_STRSIZE]; -+ char oth_csn_str[CSN_STRSIZE]; - - do { - -@@ -697,6 +714,14 @@ clcache_skip_change ( CLC_Buffer *buf ) - * The consumer must have been "restored" and needs this newer update. - */ - skip = 0; -+ } else if (slapi_is_loglevel_set(SLAPI_LOG_REPL)) { -+ csn_as_string(buf->buf_current_csn, 0, buf_cur_csn_str); -+ csn_as_string(cons_maxcsn, 0, oth_csn_str); -+ slapi_log_error(SLAPI_LOG_REPL, buf->buf_agmt_name, -+ "Skipping update because the changelog buffer current csn [%s] is " -+ "less than or equal to the consumer max csn [%s]\n", -+ buf_cur_csn_str, oth_csn_str); -+ buf->buf_skipped_csn_gt_cons_maxcsn++; - } - csn_free(&cons_maxcsn); - break; -@@ -714,7 +739,14 @@ clcache_skip_change ( CLC_Buffer *buf ) - - /* Skip CSN whose RID is unknown to the local RUV snapshot */ - if ( i >= buf->buf_num_cscbs ) { -- buf->buf_state = CLC_STATE_NEW_RID; -+ if (slapi_is_loglevel_set(SLAPI_LOG_REPL)) { -+ csn_as_string(buf->buf_current_csn, 0, buf_cur_csn_str); -+ slapi_log_error(SLAPI_LOG_REPL, buf->buf_agmt_name, -+ "Skipping update because the changelog buffer current csn [%s] rid " -+ "[%d] is not in the list of changelog csn buffers (length %d)\n", -+ buf_cur_csn_str, rid, buf->buf_num_cscbs); -+ } -+ buf->buf_skipped_new_rid++; - break; - } - -@@ -722,17 +754,20 @@ clcache_skip_change ( CLC_Buffer *buf ) - - /* Skip if the consumer is already up-to-date for the RID */ - if ( cscb->state == CLC_STATE_UP_TO_DATE ) { -+ buf->buf_skipped_up_to_date++; - break; - } - - /* Skip CSN whose preceedents are not covered by local RUV snapshot */ - if ( cscb->state == CLC_STATE_CSN_GT_RUV ) { -+ buf->buf_skipped_csn_gt_ruv++; - break; - } - - /* Skip CSNs already covered by consumer RUV */ - if ( cscb->consumer_maxcsn && - csn_compare ( buf->buf_current_csn, cscb->consumer_maxcsn ) <= 0 ) { -+ buf->buf_skipped_csn_covered++; - break; - } - -@@ -762,6 +797,7 @@ clcache_skip_change ( CLC_Buffer *buf ) - - /* Skip CSNs not covered by local RUV snapshot */ - cscb->state = CLC_STATE_CSN_GT_RUV; -+ buf->buf_skipped_csn_gt_ruv++; - - } while (0); - --- -1.8.1.4 - diff --git a/SOURCES/0047-Ticket-47722-Using-the-filter-file-does-not-work.patch b/SOURCES/0047-Ticket-47722-Using-the-filter-file-does-not-work.patch new file mode 100644 index 0000000..ea339f2 --- /dev/null +++ b/SOURCES/0047-Ticket-47722-Using-the-filter-file-does-not-work.patch @@ -0,0 +1,36 @@ +From 325de7ba798d0f1b7ab4b6e607653306032cd8cd Mon Sep 17 00:00:00 2001 +From: Mark Reynolds <mreynolds@redhat.com> +Date: Tue, 9 Dec 2014 15:29:07 -0500 +Subject: [PATCH 47/53] Ticket 47722 - Using the filter file does not work + +Bug Description: Using a filter file does not work correctly. rsearch fails to + to use the filters from the file. + +Fix Description: There was a bug where we incorrectly freed each filter right after + we added it to the local list. This left the list empty. + +https://fedorahosted.org/389/ticket/47722 + +Reviewed by: nhosoi(Thanks!) + +(cherry picked from commit fb22b387e4376caae35121a645a5879dbac7b4fb) +(cherry picked from commit 4002f3b946f567994de6c32c6ff713b1d341a975) +--- + ldap/servers/slapd/tools/rsearch/nametable.c | 1 - + 1 file changed, 1 deletion(-) + +diff --git a/ldap/servers/slapd/tools/rsearch/nametable.c b/ldap/servers/slapd/tools/rsearch/nametable.c +index 9d56a34..03a6ae1 100644 +--- a/ldap/servers/slapd/tools/rsearch/nametable.c ++++ b/ldap/servers/slapd/tools/rsearch/nametable.c +@@ -160,7 +160,6 @@ int nt_load(NameTable *nt, const char *filename) + free(s); + break; + } +- free(s); + } + PR_Close(fd); + return nt->size; +-- +1.9.3 + diff --git a/SOURCES/0048-Ticket-47451-Need-to-unregister-tasks-created-by-plu.patch b/SOURCES/0048-Ticket-47451-Need-to-unregister-tasks-created-by-plu.patch new file mode 100644 index 0000000..58a9168 --- /dev/null +++ b/SOURCES/0048-Ticket-47451-Need-to-unregister-tasks-created-by-plu.patch @@ -0,0 +1,188 @@ +From d9e460db38763e81f1065777dd54f95efd108017 Mon Sep 17 00:00:00 2001 +From: Mark Reynolds <mreynolds@redhat.com> +Date: Thu, 13 Nov 2014 17:22:24 -0500 +Subject: [PATCH 48/53] Ticket 47451 - Need to unregister tasks created by + plugins + +Bug Description: Tasks created by plugins are not unregistered when a plugin + is stopped or deleted. Repeated stopping/starting a plugin + that registers tasks will corrupt the dse callback linked list + and will crash the server if a task is invoked. + +Fix Description: Create a plugin task unregister function, and call it in the + clsoe functions of plugins that register functions. + +https://fedorahosted.org/389/ticket/47451 + +Reviewed by: nhosoi(Thanks!) + +(cherry picked from commit 005c4c9be360a7ebba38b61f934ace94224eef3f) +(cherry picked from commit fb7eef1c08a2d15c94eaedaabec2b07e970ffb3a) +--- + ldap/servers/plugins/automember/automember.c | 8 ++++++++ + ldap/servers/plugins/linkedattrs/linked_attrs.c | 2 ++ + ldap/servers/plugins/memberof/memberof.c | 1 + + .../plugins/posix-winsync/posix-winsync-config.c | 1 + + ldap/servers/plugins/schema_reload/schema_reload.c | 2 ++ + ldap/servers/plugins/usn/usn.c | 1 + + ldap/servers/plugins/usn/usn.h | 1 + + ldap/servers/plugins/usn/usn_cleanup.c | 8 ++++++++ + ldap/servers/slapd/slapi-plugin.h | 1 + + ldap/servers/slapd/task.c | 19 +++++++++++++++++++ + 10 files changed, 44 insertions(+) + +diff --git a/ldap/servers/plugins/automember/automember.c b/ldap/servers/plugins/automember/automember.c +index c5bb0ae..c443a65 100644 +--- a/ldap/servers/plugins/automember/automember.c ++++ b/ldap/servers/plugins/automember/automember.c +@@ -397,6 +397,14 @@ automember_close(Slapi_PBlock * pb) + slapi_log_error(SLAPI_LOG_TRACE, AUTOMEMBER_PLUGIN_SUBSYSTEM, + "--> automember_close\n"); + ++ /* unregister the tasks */ ++ slapi_plugin_task_unregister_handler("automember rebuild membership", ++ automember_task_add); ++ slapi_plugin_task_unregister_handler("automember export updates", ++ automember_task_add_export_updates); ++ slapi_plugin_task_unregister_handler("automember map updates", ++ automember_task_add_map_entries); ++ + automember_delete_config(); + slapi_ch_free((void **)&g_automember_config); + slapi_sdn_free(&_PluginDN); +diff --git a/ldap/servers/plugins/linkedattrs/linked_attrs.c b/ldap/servers/plugins/linkedattrs/linked_attrs.c +index 20bb9fa..e302867 100644 +--- a/ldap/servers/plugins/linkedattrs/linked_attrs.c ++++ b/ldap/servers/plugins/linkedattrs/linked_attrs.c +@@ -383,6 +383,8 @@ linked_attrs_close(Slapi_PBlock * pb) + slapi_log_error(SLAPI_LOG_TRACE, LINK_PLUGIN_SUBSYSTEM, + "--> linked_attrs_close\n"); + ++ slapi_plugin_task_unregister_handler("fixup linked attributes", linked_attrs_fixup_task_add); ++ + linked_attrs_delete_config(); + slapi_destroy_rwlock(g_config_lock); + g_config_lock = NULL; +diff --git a/ldap/servers/plugins/memberof/memberof.c b/ldap/servers/plugins/memberof/memberof.c +index ce48f01..cb4ef75 100644 +--- a/ldap/servers/plugins/memberof/memberof.c ++++ b/ldap/servers/plugins/memberof/memberof.c +@@ -454,6 +454,7 @@ int memberof_postop_close(Slapi_PBlock *pb) + slapi_log_error( SLAPI_LOG_TRACE, MEMBEROF_PLUGIN_SUBSYSTEM, + "--> memberof_postop_close\n" ); + ++ slapi_plugin_task_unregister_handler("memberof task", memberof_task_add); + memberof_release_config(); + slapi_sdn_free(&_ConfigAreaDN); + slapi_sdn_free(&_pluginDN); +diff --git a/ldap/servers/plugins/posix-winsync/posix-winsync-config.c b/ldap/servers/plugins/posix-winsync/posix-winsync-config.c +index 4234080..50e3a61 100644 +--- a/ldap/servers/plugins/posix-winsync/posix-winsync-config.c ++++ b/ldap/servers/plugins/posix-winsync/posix-winsync-config.c +@@ -237,6 +237,7 @@ posix_winsync_config(Slapi_Entry *config_e) + void + posix_winsync_config_free() + { ++ slapi_plugin_task_unregister_handler("memberuid task", posix_group_task_add); + slapi_entry_free(theConfig.config_e); + theConfig.config_e = NULL; + slapi_destroy_mutex(theConfig.lock); +diff --git a/ldap/servers/plugins/schema_reload/schema_reload.c b/ldap/servers/plugins/schema_reload/schema_reload.c +index 6cf1181..3ff4c4d 100644 +--- a/ldap/servers/plugins/schema_reload/schema_reload.c ++++ b/ldap/servers/plugins/schema_reload/schema_reload.c +@@ -131,6 +131,8 @@ schemareload_start(Slapi_PBlock *pb) + static int + schemareload_close(Slapi_PBlock *pb) + { ++ ++ slapi_plugin_task_unregister_handler("schema reload task", schemareload_add); + PR_DestroyLock(schemareload_lock); + + return 0; +diff --git a/ldap/servers/plugins/usn/usn.c b/ldap/servers/plugins/usn/usn.c +index 837dc2e..6b34bf4 100644 +--- a/ldap/servers/plugins/usn/usn.c ++++ b/ldap/servers/plugins/usn/usn.c +@@ -300,6 +300,7 @@ usn_close(Slapi_PBlock *pb) + { + slapi_log_error(SLAPI_LOG_TRACE, USN_PLUGIN_SUBSYSTEM, "--> usn_close\n"); + ++ usn_cleanup_close(); + slapi_config_remove_callback(SLAPI_OPERATION_SEARCH, DSE_FLAG_PREOP, + "", LDAP_SCOPE_BASE, "(objectclass=*)", usn_rootdse_search); + +diff --git a/ldap/servers/plugins/usn/usn.h b/ldap/servers/plugins/usn/usn.h +index 8e6c5c8..4bc9e97 100644 +--- a/ldap/servers/plugins/usn/usn.h ++++ b/ldap/servers/plugins/usn/usn.h +@@ -54,4 +54,5 @@ void *usn_get_identity(); + + /* usn_cleanup.c */ + int usn_cleanup_start(Slapi_PBlock *pb); ++int usn_cleanup_close(); + +diff --git a/ldap/servers/plugins/usn/usn_cleanup.c b/ldap/servers/plugins/usn/usn_cleanup.c +index 2b1371d..c12dfd2 100644 +--- a/ldap/servers/plugins/usn/usn_cleanup.c ++++ b/ldap/servers/plugins/usn/usn_cleanup.c +@@ -58,6 +58,14 @@ usn_cleanup_start(Slapi_PBlock *pb) + return rc; + } + ++int ++usn_cleanup_close() ++{ ++ int rc = slapi_plugin_task_unregister_handler("USN tombstone cleanup task", ++ usn_cleanup_add); ++ return rc; ++} ++ + /* + * Task thread + */ +diff --git a/ldap/servers/slapd/slapi-plugin.h b/ldap/servers/slapd/slapi-plugin.h +index 8ffc582..0ae3601 100644 +--- a/ldap/servers/slapd/slapi-plugin.h ++++ b/ldap/servers/slapd/slapi-plugin.h +@@ -6604,6 +6604,7 @@ int slapi_config_remove_callback(int operation, int flags, const char *base, int + + int slapi_task_register_handler(const char *name, dseCallbackFn func); + int slapi_plugin_task_register_handler(const char *name, dseCallbackFn func, Slapi_PBlock *plugin_pb); ++int slapi_plugin_task_unregister_handler(const char *name, dseCallbackFn func); + void slapi_task_begin(Slapi_Task *task, int total_work); + void slapi_task_inc_progress(Slapi_Task *task); + void slapi_task_finish(Slapi_Task *task, int rc); +diff --git a/ldap/servers/slapd/task.c b/ldap/servers/slapd/task.c +index 2a0cb82..006ae53 100644 +--- a/ldap/servers/slapd/task.c ++++ b/ldap/servers/slapd/task.c +@@ -461,6 +461,25 @@ int slapi_task_get_refcount(Slapi_Task *task) + } + + int ++slapi_plugin_task_unregister_handler(const char *name, dseCallbackFn func) ++{ ++ char *base = NULL; ++ int rc = 0; ++ ++ base = slapi_create_dn_string("cn=%s,%s", name, TASK_BASE_DN); ++ ++ slapi_config_remove_callback(SLAPI_OPERATION_ADD, DSE_FLAG_PREOP, base, ++ LDAP_SCOPE_SUBTREE, "(objectclass=*)", func); ++ slapi_config_remove_callback(SLAPI_OPERATION_MODIFY, DSE_FLAG_PREOP, ++ base, LDAP_SCOPE_BASE, "(objectclass=*)", task_deny); ++ slapi_config_remove_callback(SLAPI_OPERATION_DELETE, DSE_FLAG_PREOP, ++ base, LDAP_SCOPE_BASE, "(objectclass=*)", task_deny); ++ slapi_ch_free_string(&base); ++ ++ return rc; ++} ++ ++int + slapi_plugin_task_register_handler(const char *name, dseCallbackFn func, Slapi_PBlock *plugin_pb) + { + Slapi_PBlock *add_pb = NULL; +-- +1.9.3 + diff --git a/SOURCES/0048-Ticket-47581-Winsync-plugin-segfault-during-incremen.patch b/SOURCES/0048-Ticket-47581-Winsync-plugin-segfault-during-incremen.patch deleted file mode 100644 index 18ba4c4..0000000 --- a/SOURCES/0048-Ticket-47581-Winsync-plugin-segfault-during-incremen.patch +++ /dev/null @@ -1,135 +0,0 @@ -From 7f82657dcf6661c51b5fa85d9581724d27941686 Mon Sep 17 00:00:00 2001 -From: Noriko Hosoi <nhosoi@redhat.com> -Date: Fri, 1 Nov 2013 14:24:55 -0700 -Subject: [PATCH 48/49] Ticket #47581 - Winsync plugin segfault during - incremental backoff - -Bug description: Once WinSync backoff timer is set, even if the -protocol that the backoff timer belongs to is deleted by removing -the windows sync agreement, the timer is not deleted from the event -queue. Thus the timer is expired and backoff is called, it crashes -the server since the protocol handle is already freed, then. - -Fix description: Make sure to delete the backoff timer when -1) a windows sync agreement is removed and the protocol is deleted, and -2) a new backoff timer set and there is already a backoff timer set up. - -https://fedorahosted.org/389/ticket/47581 - -Reviewed by rmeggins (Thank you, Rich!!) -(cherry picked from commit d70e66b2157ce3ba40c5e1cb074c2d5c150ddc5b) -(cherry picked from commit 59846f7247bae47f8fbcfc808c4cb6e6e96e2dc9) -(cherry picked from commit be0e47009a44af34f8dc0dd38f1a1ae1a49c42ce) ---- - .../plugins/replication/windows_inc_protocol.c | 66 ++++++++++++++-------- - 1 file changed, 41 insertions(+), 25 deletions(-) - -diff --git a/ldap/servers/plugins/replication/windows_inc_protocol.c b/ldap/servers/plugins/replication/windows_inc_protocol.c -index 58f48f2..29fa20f 100644 ---- a/ldap/servers/plugins/replication/windows_inc_protocol.c -+++ b/ldap/servers/plugins/replication/windows_inc_protocol.c -@@ -157,27 +157,34 @@ static Slapi_Eq_Context dirsync = NULL; - static void - windows_inc_delete(Private_Repl_Protocol **prpp) - { -- LDAPDebug0Args( LDAP_DEBUG_TRACE, "=> windows_inc_delete\n" ); -- /* First, stop the protocol if it isn't already stopped */ -- /* Then, delete all resources used by the protocol */ -- slapi_eq_cancel(dirsync); -- -- if (!(*prpp)->stopped) { -- (*prpp)->stopped = 1; -- (*prpp)->stop(*prpp); -- } -- if ((*prpp)->lock) { -- PR_DestroyLock((*prpp)->lock); -- (*prpp)->lock = NULL; -- } -- if ((*prpp)->cvar) { -- PR_DestroyCondVar((*prpp)->cvar); -- (*prpp)->cvar = NULL; -- } -- slapi_ch_free((void **)&(*prpp)->private); -- slapi_ch_free((void **)prpp); -- -- LDAPDebug0Args( LDAP_DEBUG_TRACE, "<= windows_inc_delete\n" ); -+ int rc; -+ windows_inc_private *prp_priv = (windows_inc_private *)(*prpp)->private; -+ LDAPDebug0Args( LDAP_DEBUG_TRACE, "=> windows_inc_delete\n" ); -+ /* First, stop the protocol if it isn't already stopped */ -+ /* Then, delete all resources used by the protocol */ -+ rc = slapi_eq_cancel(dirsync); -+ slapi_log_error(SLAPI_LOG_REPL, windows_repl_plugin_name, -+ "windows_inc_delete: dirsync: %p, rval: %d\n", dirsync, rc); -+ /* if backoff is set, delete it (from EQ, as well) */ -+ if (prp_priv->backoff) { -+ backoff_delete(&prp_priv->backoff); -+ } -+ if (!(*prpp)->stopped) { -+ (*prpp)->stopped = 1; -+ (*prpp)->stop(*prpp); -+ } -+ if ((*prpp)->lock) { -+ PR_DestroyLock((*prpp)->lock); -+ (*prpp)->lock = NULL; -+ } -+ if ((*prpp)->cvar) { -+ PR_DestroyCondVar((*prpp)->cvar); -+ (*prpp)->cvar = NULL; -+ } -+ slapi_ch_free((void **)&(*prpp)->private); -+ slapi_ch_free((void **)prpp); -+ -+ LDAPDebug0Args( LDAP_DEBUG_TRACE, "<= windows_inc_delete\n" ); - } - - /* helper function */ -@@ -362,9 +369,14 @@ windows_inc_run(Private_Repl_Protocol *prp) - if(interval != current_interval){ - current_interval = interval; - if(dirsync){ -- slapi_eq_cancel(dirsync); -+ int rc = slapi_eq_cancel(dirsync); -+ slapi_log_error(SLAPI_LOG_REPL, windows_repl_plugin_name, -+ "windows_inc_runs: cancelled dirsync: %p, rval: %d\n", -+ dirsync, rc); - } - dirsync = slapi_eq_repeat(periodic_dirsync, (void*) prp, (time_t)0 , interval); -+ slapi_log_error(SLAPI_LOG_REPL, windows_repl_plugin_name, -+ "windows_inc_runs: new dirsync: %p\n", dirsync); - } - - break; -@@ -605,7 +617,11 @@ windows_inc_run(Private_Repl_Protocol *prp) - } - else - { -- /* Set up the backoff timer to wake us up at the appropriate time */ -+ /* Set up the backoff timer to wake us up at the appropriate time */ -+ /* if previous backoff set up, delete it. */ -+ if (prp_priv->backoff) { -+ backoff_delete(&prp_priv->backoff); -+ } - if (use_busy_backoff_timer) - { - /* we received a busy signal from the consumer, wait for a while */ -@@ -648,14 +664,14 @@ windows_inc_run(Private_Repl_Protocol *prp) - run_dirsync = PR_TRUE; - - windows_conn_set_agmt_changed(prp->conn); -- /* Destroy the backoff timer, since we won't need it anymore */ -+ /* Destroy the backoff timer, since we won't need it anymore */ - if (prp_priv->backoff) - backoff_delete(&prp_priv->backoff); - } - else if (event_occurred(prp, EVENT_WINDOW_CLOSED)) - { - next_state = STATE_WAIT_WINDOW_OPEN; -- /* Destroy the backoff timer, since we won't need it anymore */ -+ /* Destroy the backoff timer, since we won't need it anymore */ - if (prp_priv->backoff) - backoff_delete(&prp_priv->backoff); - } --- -1.8.1.4 - diff --git a/SOURCES/0049-Ticket-47451-Running-a-plugin-task-can-crash-the-ser.patch b/SOURCES/0049-Ticket-47451-Running-a-plugin-task-can-crash-the-ser.patch new file mode 100644 index 0000000..057e0d8 --- /dev/null +++ b/SOURCES/0049-Ticket-47451-Running-a-plugin-task-can-crash-the-ser.patch @@ -0,0 +1,54 @@ +From 511ee2b326c8110678c34f66d1d043770afc5900 Mon Sep 17 00:00:00 2001 +From: Mark Reynolds <mreynolds@redhat.com> +Date: Wed, 26 Nov 2014 16:23:00 -0500 +Subject: [PATCH 49/53] Ticket 47451 - Running a plugin task can crash the + server + +Bug Description: When a plugin task completes it attempts to update a counter, + but the wrong structure is accessed which can lead to a crash. + +Fix Description: When creating a new task, make sure to store the plugin structure, + not the pblock in the task structure. + +https://fedorahosted.org/389/ticket/47451 + +Reviewed by: rmeggins(Thanks!) + +(cherry picked from commit 0e0848a8385463532d53db94c0c8cae912c30eb4) +(cherry picked from commit d34b0ced2ed3ed81c6c487e90d4c372939da4677) +--- + ldap/servers/slapd/task.c | 8 +++++--- + 1 file changed, 5 insertions(+), 3 deletions(-) + +diff --git a/ldap/servers/slapd/task.c b/ldap/servers/slapd/task.c +index 006ae53..b1f7652 100644 +--- a/ldap/servers/slapd/task.c ++++ b/ldap/servers/slapd/task.c +@@ -131,9 +131,9 @@ slapi_new_task(const char *dn) + } + + Slapi_Task * +-slapi_plugin_new_task(const char *dn, void *plugin) ++slapi_plugin_new_task(const char *dn, void *plugin_pb) + { +- return new_task(dn, plugin); ++ return new_task(dn, plugin_pb); + } + + /* slapi_destroy_task: destroy a task +@@ -583,9 +583,11 @@ void slapi_task_set_cancel_fn(Slapi_Task *task, TaskCallbackFn func) + ***********************************/ + /* create a new task, fill in DN, and setup modify callback */ + static Slapi_Task * +-new_task(const char *rawdn, void *plugin) ++new_task(const char *rawdn, void *plugin_pb) + { + Slapi_Task *task = NULL; ++ Slapi_PBlock *pb = (Slapi_PBlock *)plugin_pb; ++ void *plugin = pb ? pb->pb_plugin : NULL; + char *dn = NULL; + + if (rawdn == NULL) { +-- +1.9.3 + diff --git a/SOURCES/0049-Ticket-47581-Winsync-plugin-segfault-during-incremen.patch b/SOURCES/0049-Ticket-47581-Winsync-plugin-segfault-during-incremen.patch deleted file mode 100644 index f520528..0000000 --- a/SOURCES/0049-Ticket-47581-Winsync-plugin-segfault-during-incremen.patch +++ /dev/null @@ -1,52 +0,0 @@ -From f8e95c2189dca53daf98d3ae7249c20ca9fc4541 Mon Sep 17 00:00:00 2001 -From: Noriko Hosoi <nhosoi@redhat.com> -Date: Fri, 1 Nov 2013 18:22:47 -0700 -Subject: [PATCH 49/49] Ticket #47581 - Winsync plugin segfault during - incremental backoff (phase 2) - -Fix description: Apply the previous patch Ticket #47581 against the -replication plug-in (repl5_inc_protocol.c): -Make sure to delete the backoff timer when -1) a replication agreement is removed and the protocol is deleted, and -2) a new backoff timer set and there is already a backoff timer set up. - -https://fedorahosted.org/389/ticket/47581 - -Reviewed by rmeggins (Thank you, Rich!!) -(cherry picked from commit 8eecc43e0160e132949ed504162b4536d6040620) -(cherry picked from commit 962fc45a15a4bc2e0d13d3d8b12225105ef43dbb) -(cherry picked from commit 0df4c665401db297f303ad91f5e892b1e604e63a) ---- - ldap/servers/plugins/replication/repl5_inc_protocol.c | 9 +++++++++ - 1 file changed, 9 insertions(+) - -diff --git a/ldap/servers/plugins/replication/repl5_inc_protocol.c b/ldap/servers/plugins/replication/repl5_inc_protocol.c -index fa442fe..612fe46 100644 ---- a/ldap/servers/plugins/replication/repl5_inc_protocol.c -+++ b/ldap/servers/plugins/replication/repl5_inc_protocol.c -@@ -509,6 +509,11 @@ repl5_inc_waitfor_async_results(result_data *rd) - static void - repl5_inc_delete(Private_Repl_Protocol **prpp) - { -+ repl5_inc_private *prp_priv = (repl5_inc_private *)(*prpp)->private; -+ /* if backoff is set, delete it (from EQ, as well) */ -+ if (prp_priv->backoff) { -+ backoff_delete(&prp_priv->backoff); -+ } - /* First, stop the protocol if it isn't already stopped */ - if (!(*prpp)->stopped) { - (*prpp)->stopped = 1; -@@ -837,6 +842,10 @@ repl5_inc_run(Private_Repl_Protocol *prp) - state2name(current_state)); - } else { - /* Set up the backoff timer to wake us up at the appropriate time */ -+ /* if previous backoff set up, delete it. */ -+ if (prp_priv->backoff) { -+ backoff_delete(&prp_priv->backoff); -+ } - if (use_busy_backoff_timer){ - /* we received a busy signal from the consumer, wait for a while */ - if (!busywaittime){ --- -1.8.1.4 - diff --git a/SOURCES/0050-Revert-Ticket-47559-hung-server-related-to-sasl-and-.patch b/SOURCES/0050-Revert-Ticket-47559-hung-server-related-to-sasl-and-.patch deleted file mode 100644 index 5d6219e..0000000 --- a/SOURCES/0050-Revert-Ticket-47559-hung-server-related-to-sasl-and-.patch +++ /dev/null @@ -1,143 +0,0 @@ -From 14e54f973c6f5e949ba2dd54890e2f3eadce3fc5 Mon Sep 17 00:00:00 2001 -From: Rich Megginson <rmeggins@redhat.com> -Date: Tue, 12 Nov 2013 13:00:04 -0700 -Subject: [PATCH] Revert "Ticket #47559 hung server - related to sasl and initialize" - -This reverts commit a9870f937ae83728326957c408608eff3b9b7b26. ---- - ldap/servers/slapd/ldaputil.c | 51 +++------------------------------------- - 1 files changed, 4 insertions(+), 47 deletions(-) - -diff --git a/ldap/servers/slapd/ldaputil.c b/ldap/servers/slapd/ldaputil.c -index aa78d3d..edc8267 100644 ---- a/ldap/servers/slapd/ldaputil.c -+++ b/ldap/servers/slapd/ldaputil.c -@@ -99,16 +99,10 @@ - #if !defined(USE_OPENLDAP) - #include <ldap_ssl.h> - #include <ldappr.h> --#define BIND_LOCK (void)0 --#define BIND_UNLOCK (void)0 - #else - /* need mutex around ldap_initialize - see https://fedorahosted.org/389/ticket/348 */ - static PRCallOnceType ol_init_callOnce = {0,0}; - static PRLock *ol_init_lock = NULL; --/* need mutex around ldap_sasl_bind - see https://fedorahosted.org/389/ticket/47599 */ --static PRLock *ol_bind_lock = NULL; --#define BIND_LOCK PR_Lock(ol_bind_lock) --#define BIND_UNLOCK PR_Unlock(ol_bind_lock) - - static PRStatus - internal_ol_init_init(void) -@@ -116,20 +110,12 @@ internal_ol_init_init(void) - PR_ASSERT(NULL == ol_init_lock); - if ((ol_init_lock = PR_NewLock()) == NULL) { - PRErrorCode errorCode = PR_GetError(); -- slapi_log_error(SLAPI_LOG_FATAL, "internal_ol_init_init", "PR_NewLock init_lock failed %d:%s\n", -+ slapi_log_error(SLAPI_LOG_FATAL, "internal_ol_init_init", "PR_NewLock failed %d:%s\n", - errorCode, slapd_pr_strerror(errorCode)); - return PR_FAILURE; - } - -- PR_ASSERT(NULL == ol_bind_lock); -- if ((ol_bind_lock = PR_NewLock()) == NULL) { -- PRErrorCode errorCode = PR_GetError(); -- slapi_log_error(SLAPI_LOG_FATAL, "internal_ol_init_init", "PR_NewLock bind_lock failed %d:%s\n", -- errorCode, slapd_pr_strerror(errorCode)); -- return PR_FAILURE; -- } -- -- return PR_SUCCESS; -+ return PR_SUCCESS; - } - #endif - -@@ -159,16 +145,7 @@ void - slapi_ldap_unbind( LDAP *ld ) - { - if ( ld != NULL ) { --#if defined(USE_OPENLDAP) -- if (PR_SUCCESS != PR_CallOnce(&ol_init_callOnce, internal_ol_init_init)) { -- slapi_log_error(SLAPI_LOG_FATAL, "slapi_ldap_unbind", -- "Could not perform internal ol_init init\n"); -- return; -- } --#endif -- BIND_LOCK; - ldap_unbind_ext( ld, NULL, NULL ); -- BIND_UNLOCK; - } - } - -@@ -1054,22 +1031,11 @@ slapi_ldap_bind( - ldap_controls_free(clientctrls); - ldap_set_option(ld, LDAP_OPT_CLIENT_CONTROLS, NULL); - --#if defined(USE_OPENLDAP) -- if (PR_SUCCESS != PR_CallOnce(&ol_init_callOnce, internal_ol_init_init)) { -- slapi_log_error(SLAPI_LOG_FATAL, "slapi_ldap_bind", -- "Could not perform internal ol_init init\n"); -- rc = -1; -- goto done; -- } --#endif -- - if ((secure > 0) && mech && !strcmp(mech, LDAP_SASL_EXTERNAL)) { - #if defined(USE_OPENLDAP) - /* we already set up a tls context in slapi_ldap_init_ext() - this will - free those old settings and context and create a new one */ -- PR_Lock(ol_bind_lock); - rc = setup_ol_tls_conn(ld, 1); -- PR_Unlock(ol_bind_lock); - #else - /* SSL connections will use the server's security context - and cert for client auth */ -@@ -1094,9 +1060,7 @@ slapi_ldap_bind( - } - - if (secure == 2) { /* send start tls */ -- BIND_LOCK; - rc = ldap_start_tls_s(ld, NULL /* serverctrls?? */, NULL); -- BIND_UNLOCK; - if (LDAP_SUCCESS != rc) { - slapi_log_error(SLAPI_LOG_FATAL, "slapi_ldap_bind", - "Error: could not send startTLS request: " -@@ -1118,11 +1082,8 @@ slapi_ldap_bind( - "attempting %s bind with id [%s] creds [%s]\n", - mech ? mech : "SIMPLE", - bindid, creds); -- BIND_LOCK; -- rc = ldap_sasl_bind(ld, bindid, mech, &bvcreds, serverctrls, -- NULL /* clientctrls */, &mymsgid); -- BIND_UNLOCK; -- if (rc) { -+ if ((rc = ldap_sasl_bind(ld, bindid, mech, &bvcreds, serverctrls, -+ NULL /* clientctrls */, &mymsgid))) { - char *myhostname = NULL; - char *copy = NULL; - char *ptr = NULL; -@@ -1178,9 +1139,7 @@ slapi_ldap_bind( - /* take the one provided by the caller. It should be the one defined in the protocol */ - bind_timeout = timeout; - } -- BIND_LOCK; - rc = ldap_result(ld, mymsgid, LDAP_MSG_ALL, bind_timeout, &result); -- BIND_UNLOCK; - if (-1 == rc) { /* error */ - rc = slapi_ldap_get_lderrno(ld, NULL, NULL); - slapi_log_error(SLAPI_LOG_FATAL, "slapi_ldap_bind", -@@ -1244,11 +1203,9 @@ slapi_ldap_bind( - ldap_set_option(ld, LDAP_OPT_X_SASL_SSF_MAX, &max_ssf); - } - #endif -- BIND_LOCK; - rc = slapd_ldap_sasl_interactive_bind(ld, bindid, creds, mech, - serverctrls, returnedctrls, - msgidp); -- BIND_UNLOCK; - if (LDAP_SUCCESS != rc) { - slapi_log_error(SLAPI_LOG_FATAL, "slapi_ldap_bind", - "Error: could not perform interactive bind for id " --- -1.7.1 - diff --git a/SOURCES/0050-Ticket-47451-Dynamic-Plugin-various-fixes.patch b/SOURCES/0050-Ticket-47451-Dynamic-Plugin-various-fixes.patch new file mode 100644 index 0000000..97583e7 --- /dev/null +++ b/SOURCES/0050-Ticket-47451-Dynamic-Plugin-various-fixes.patch @@ -0,0 +1,610 @@ +From 78b344ff88f488aa63ccccf464e83ad55ee9e96d Mon Sep 17 00:00:00 2001 +From: Mark Reynolds <mreynolds@redhat.com> +Date: Tue, 16 Dec 2014 15:25:35 -0500 +Subject: [PATCH 50/53] Ticket 47451 - Dynamic Plugin - various fixes + +Description: The previous commit 0e0848a8385463532d53db94c0c8cae912c30eb4 on + master branch was wrong, and broke the other plugin tasks. + + Upon further testing, some memory leaks and crashes were detected + and fixed: + + automember.c - Fix memory leak, and PRCList corruption + dna.c - Fix crash caused by event context not being freed at plugin stop + memberof.c - pass in the correct function argument, not the pblock + rootdn_access.c - Fix memory leak + plugins/uiduniq/uid.c - Add start and close functions to properly handle plugin restarts + dse.c - Improve plugin restart handling, and properly handle plugin registration + plugin.c - Properly wait for a plugin to finish before restarting it. + task.c - Proprely handle the task function arguments + +https://fedorahosted.org/389/ticket/47451 + +Reviewed by: nhosoi(Thanks!) + +(cherry picked from commit ff023a48b7fc78711eed8ae11e67057597acdeb3) +(cherry picked from commit f17159e73ba0851599c4e50c1bf52d3d10f2711f) +--- + ldap/servers/plugins/automember/automember.c | 4 +- + ldap/servers/plugins/dna/dna.c | 14 ++- + ldap/servers/plugins/memberof/memberof.c | 2 +- + ldap/servers/plugins/rootdn_access/rootdn_access.c | 4 +- + ldap/servers/plugins/schema_reload/schema_reload.c | 2 +- + ldap/servers/plugins/uiduniq/uid.c | 63 ++++++++---- + ldap/servers/slapd/dse.c | 74 +++++++------- + ldap/servers/slapd/plugin.c | 110 ++++++++++++--------- + ldap/servers/slapd/task.c | 10 +- + 9 files changed, 161 insertions(+), 122 deletions(-) + +diff --git a/ldap/servers/plugins/automember/automember.c b/ldap/servers/plugins/automember/automember.c +index c443a65..6a8fd22 100644 +--- a/ldap/servers/plugins/automember/automember.c ++++ b/ldap/servers/plugins/automember/automember.c +@@ -406,7 +406,6 @@ automember_close(Slapi_PBlock * pb) + automember_task_add_map_entries); + + automember_delete_config(); +- slapi_ch_free((void **)&g_automember_config); + slapi_sdn_free(&_PluginDN); + slapi_sdn_free(&_ConfigAreaDN); + slapi_destroy_rwlock(g_automember_config_lock); +@@ -449,6 +448,8 @@ automember_load_config() + /* Clear out any old config. */ + automember_config_write_lock(); + automember_delete_config(); ++ g_automember_config = (PRCList *)slapi_ch_calloc(1, sizeof(struct configEntry)); ++ PR_INIT_CLIST(g_automember_config); + + search_pb = slapi_pblock_new(); + +@@ -866,6 +867,7 @@ automember_delete_config() + list = PR_LIST_HEAD(g_automember_config); + automember_delete_configEntry(list); + } ++ slapi_ch_free((void **)&g_automember_config); + + return; + } +diff --git a/ldap/servers/plugins/dna/dna.c b/ldap/servers/plugins/dna/dna.c +index 75edca8..ded0bbb 100644 +--- a/ldap/servers/plugins/dna/dna.c ++++ b/ldap/servers/plugins/dna/dna.c +@@ -202,6 +202,7 @@ static char *hostname = NULL; + static char *portnum = NULL; + static char *secureportnum = NULL; + ++static Slapi_Eq_Context eq_ctx = {0}; + + /** + * server struct for shared ranges +@@ -708,6 +709,7 @@ dna_close(Slapi_PBlock * pb) + slapi_log_error(SLAPI_LOG_TRACE, DNA_PLUGIN_SUBSYSTEM, + "--> dna_close\n"); + ++ slapi_eq_cancel(eq_ctx); + dna_delete_config(NULL); + slapi_ch_free((void **)&dna_global_config); + slapi_destroy_rwlock(g_dna_cache_lock); +@@ -869,7 +871,7 @@ dna_load_plugin_config(Slapi_PBlock *pb, int use_eventq) + * starting up would cause the change to not + * get changelogged. */ + time(&now); +- slapi_eq_once(dna_update_config_event, NULL, now + 30); ++ eq_ctx = slapi_eq_once(dna_update_config_event, NULL, now + 30); + } else { + dna_update_config_event(0, NULL); + } +@@ -2404,7 +2406,7 @@ static int dna_get_next_value(struct configEntry *config_entry, + } else { + /* dna_first_free_value() failed for some unknown reason */ + slapi_log_error(SLAPI_LOG_FATAL, DNA_PLUGIN_SUBSYSTEM, +- "dna_get_next_value: failed to allocate a new ID!!\n"); ++ "dna_get_next_value: failed to allocate a new ID!! (set(%d) (max: %d)\n",setval,config_entry->maxval); + goto done; + } + } +@@ -3401,7 +3403,7 @@ _dna_pre_op_add(Slapi_PBlock *pb, Slapi_Entry *e, char **errstr) + ret = dna_first_free_value(config_entry, &setval); + if (LDAP_SUCCESS != ret){ + slapi_log_error(SLAPI_LOG_FATAL, DNA_PLUGIN_SUBSYSTEM, +- "dna_pre_op: failed to allocate a new ID\n"); ++ "dna_pre_op: failed to allocate a new ID 1\n"); + /* Set an error string to be returned to the client. */ + *errstr = slapi_ch_smprintf("Allocation of a new value for range" + " %s failed! Unable to proceed.", +@@ -3412,7 +3414,9 @@ _dna_pre_op_add(Slapi_PBlock *pb, Slapi_Entry *e, char **errstr) + } else { + /* dna_first_free_value() failed for some unknown reason */ + slapi_log_error(SLAPI_LOG_FATAL, DNA_PLUGIN_SUBSYSTEM, +- "dna_pre_op: failed to allocate a new ID!!\n"); ++ "dna_pre_op: failed to allocate a new ID!! 2\n"); ++ slapi_log_error(SLAPI_LOG_FATAL, DNA_PLUGIN_SUBSYSTEM, ++ "dna_get_next_value: failed to allocate a new ID!! (set(%d) (max: %d)\n",setval,config_entry->maxval); + /* Set an error string to be returned to the client. */ + *errstr = slapi_ch_smprintf("Allocation of a new value for range" + " %s failed! Unable to proceed.", +@@ -3678,6 +3682,8 @@ _dna_pre_op_modify(Slapi_PBlock *pb, Slapi_Entry *e, Slapi_Mods *smods, char **e + /* dna_first_free_value() failed for some unknown reason */ + slapi_log_error(SLAPI_LOG_FATAL, DNA_PLUGIN_SUBSYSTEM, + "dna_pre_op: failed to allocate a new ID!!\n"); ++ slapi_log_error(SLAPI_LOG_FATAL, DNA_PLUGIN_SUBSYSTEM, ++ "dna_get_next_value: failed to allocate a new ID!! (set(%d) (max: %d)\n",setval,config_entry->maxval); + /* Set an error string to be returned to the client. */ + *errstr = slapi_ch_smprintf("Allocation of a new value for range" + " %s failed! Unable to proceed.", +diff --git a/ldap/servers/plugins/memberof/memberof.c b/ldap/servers/plugins/memberof/memberof.c +index cb4ef75..bfa733a 100644 +--- a/ldap/servers/plugins/memberof/memberof.c ++++ b/ldap/servers/plugins/memberof/memberof.c +@@ -2764,7 +2764,7 @@ int memberof_task_add(Slapi_PBlock *pb, Slapi_Entry *e, + mytaskdata->bind_dn = slapi_ch_strdup(bind_dn); + + /* allocate new task now */ +- task = slapi_plugin_new_task(slapi_entry_get_ndn(e), pb); ++ task = slapi_plugin_new_task(slapi_entry_get_ndn(e), arg); + + /* register our destructor for cleaning up our private data */ + slapi_task_set_destructor_fn(task, memberof_task_destructor); +diff --git a/ldap/servers/plugins/rootdn_access/rootdn_access.c b/ldap/servers/plugins/rootdn_access/rootdn_access.c +index 9122f9b..3045e9f 100644 +--- a/ldap/servers/plugins/rootdn_access/rootdn_access.c ++++ b/ldap/servers/plugins/rootdn_access/rootdn_access.c +@@ -217,7 +217,7 @@ rootdn_close(Slapi_PBlock *pb) + slapi_ch_array_free(hosts); + slapi_ch_array_free(hosts_to_deny); + slapi_ch_array_free(ips); +- slapi_ch_array_free(ips); ++ slapi_ch_array_free(ips_to_deny); + + return 0; + } +@@ -416,6 +416,8 @@ rootdn_load_config(Slapi_PBlock *pb) + } + } else { + /* failed to get the plugin entry */ ++ slapi_log_error(SLAPI_LOG_FATAL, ROOTDN_PLUGIN_SUBSYSTEM, "rootdn_load_config: " ++ "Failed to get plugin entry\n"); + result = -1; + } + +diff --git a/ldap/servers/plugins/schema_reload/schema_reload.c b/ldap/servers/plugins/schema_reload/schema_reload.c +index 3ff4c4d..b1a5bb8 100644 +--- a/ldap/servers/plugins/schema_reload/schema_reload.c ++++ b/ldap/servers/plugins/schema_reload/schema_reload.c +@@ -273,7 +273,7 @@ schemareload_add(Slapi_PBlock *pb, Slapi_Entry *e, + schemadir = fetch_attr(e, "schemadir", NULL); + + /* allocate new task now */ +- task = slapi_plugin_new_task(slapi_entry_get_ndn(e), pb); ++ task = slapi_plugin_new_task(slapi_entry_get_ndn(e), arg); + if (task == NULL) { + slapi_log_error(SLAPI_LOG_FATAL, "schemareload", "unable to allocate new task!\n"); + *returncode = LDAP_OPERATIONS_ERROR; +diff --git a/ldap/servers/plugins/uiduniq/uid.c b/ldap/servers/plugins/uiduniq/uid.c +index 07ff0ec..f37ab8c 100644 +--- a/ldap/servers/plugins/uiduniq/uid.c ++++ b/ldap/servers/plugins/uiduniq/uid.c +@@ -1265,6 +1265,38 @@ preop_modrdn(Slapi_PBlock *pb) + + } + ++static int ++uiduniq_start(Slapi_PBlock *pb) ++{ ++ Slapi_Entry *plugin_entry = NULL; ++ struct attr_uniqueness_config *config = NULL; ++ ++ if (slapi_pblock_get(pb, SLAPI_ADD_ENTRY, &plugin_entry) == 0){ ++ /* load the config into the config list */ ++ if ((config = uniqueness_entry_to_config(pb, plugin_entry)) == NULL) { ++ return SLAPI_PLUGIN_FAILURE; ++ } ++ slapi_pblock_set(pb, SLAPI_PLUGIN_PRIVATE, (void*) config); ++ } ++ ++ return 0; ++} ++ ++static int ++uiduniq_close(Slapi_PBlock *pb) ++{ ++ Slapi_Entry *plugin_entry = NULL; ++ struct attr_uniqueness_config *config = NULL; ++ ++ slapi_pblock_get(pb, SLAPI_PLUGIN_PRIVATE, &config); ++ if (config) { ++ slapi_pblock_set(pb, SLAPI_PLUGIN_PRIVATE, NULL); ++ free_uniqueness_config(config); ++ slapi_ch_free((void **) &config); ++ } ++ return 0; ++} ++ + /* ------------------------------------------------------------ */ + /* + * Initialize the plugin +@@ -1307,13 +1339,6 @@ NSUniqueAttr_Init(Slapi_PBlock *pb) + } + slapi_ch_free_string(&plugin_type); + +- /* load the config into the config list */ +- if ((config = uniqueness_entry_to_config(pb, plugin_entry)) == NULL) { +- err = SLAPI_PLUGIN_FAILURE; +- break; +- } +- slapi_pblock_set(pb, SLAPI_PLUGIN_PRIVATE, (void*) config); +- + /* Provide descriptive information */ + err = slapi_pblock_set(pb, SLAPI_PLUGIN_DESCRIPTION, + (void*)&pluginDesc); +@@ -1329,30 +1354,26 @@ NSUniqueAttr_Init(Slapi_PBlock *pb) + err = slapi_pblock_set(pb, premdn, (void*)preop_modrdn); + if (err) break; + ++ err = slapi_pblock_set(pb, SLAPI_PLUGIN_START_FN, (void *) uiduniq_start); ++ if (err) break; ++ ++ err = slapi_pblock_set(pb, SLAPI_PLUGIN_CLOSE_FN, (void *) uiduniq_close); ++ if (err) break; ++ ++ + END + + if (err) { +- slapi_log_error(SLAPI_LOG_PLUGIN, "NSUniqueAttr_Init", +- "Error: %d\n", err); +- if (config) { +- slapi_pblock_set(pb, SLAPI_PLUGIN_PRIVATE, NULL); +- free_uniqueness_config(config); +- slapi_ch_free((void **) &config); +- } ++ slapi_log_error(SLAPI_LOG_PLUGIN, "NSUniqueAttr_Init", "Error: %d\n", err); + err = -1; + } + else +- slapi_log_error(SLAPI_LOG_PLUGIN, "NSUniqueAttr_Init", +- "plugin loaded\n"); ++ slapi_log_error(SLAPI_LOG_PLUGIN, "NSUniqueAttr_Init", "plugin loaded\n"); + + return err; + } + +-int +-uidunique_init(Slapi_PBlock *pb) +-{ +- return NSUniqueAttr_Init(pb); +-} ++ + + + /* ------------------------------------------------------------ */ +diff --git a/ldap/servers/slapd/dse.c b/ldap/servers/slapd/dse.c +index fc5f492..f0ce255 100644 +--- a/ldap/servers/slapd/dse.c ++++ b/ldap/servers/slapd/dse.c +@@ -1827,6 +1827,7 @@ dse_modify(Slapi_PBlock *pb) /* JCM There should only be one exit point from thi + int retval = -1; + int need_be_postop = 0; + int plugin_started = 0; ++ int internal_op = 0; + + PR_ASSERT(pb); + if (slapi_pblock_get( pb, SLAPI_PLUGIN_PRIVATE, &pdse ) < 0 || +@@ -1843,6 +1844,8 @@ dse_modify(Slapi_PBlock *pb) /* JCM There should only be one exit point from thi + return retval; + } + ++ internal_op = operation_is_flag_set(pb->pb_op, OP_FLAG_INTERNAL); ++ + /* Find the entry we are about to modify. */ + ec = dse_get_entry_copy(pdse, sdn, DSE_USE_LOCK); + if ( ec == NULL ) { +@@ -2039,20 +2042,22 @@ dse_modify(Slapi_PBlock *pb) /* JCM There should only be one exit point from thi + } + } + /* +- * Perform postop plugin configuration changes ++ * Perform postop plugin configuration changes unless this is an internal operation + */ +- if(returncode == LDAP_SUCCESS){ +- dse_post_modify_plugin(ec, ecc, mods); +- } else if(plugin_started){ +- if(plugin_started == 1){ +- /* the op failed, turn the plugin off */ +- plugin_delete(ecc, returntext, 0 /* not locked */); +- } else if (plugin_started == 2){ +- /* +- * This probably can't happen, but... +- * the op failed, turn the plugin back on. +- */ +- plugin_add(ecc, returntext, 0 /* not locked */); ++ if(!internal_op){ ++ if(returncode == LDAP_SUCCESS){ ++ dse_post_modify_plugin(ec, ecc, mods); ++ } else if(plugin_started){ ++ if(plugin_started == 1){ ++ /* the op failed, turn the plugin off */ ++ plugin_delete(ecc, returntext, 0 /* not locked */); ++ } else if (plugin_started == 2){ ++ /* ++ * This probably can't happen, but... ++ * the op failed, turn the plugin back on. ++ */ ++ plugin_add(ecc, returntext, 0 /* not locked */); ++ } + } + } + +@@ -2065,6 +2070,7 @@ static void + dse_post_modify_plugin(Slapi_Entry *entryBefore, Slapi_Entry *entryAfter, LDAPMod **mods) + { + char *enabled = NULL; ++ int restart_plugin = 1; + int i; + + if (!slapi_entry_attr_hasvalue(entryBefore, SLAPI_ATTR_OBJECTCLASS, "nsSlapdPlugin") || +@@ -2080,31 +2086,18 @@ dse_post_modify_plugin(Slapi_Entry *entryBefore, Slapi_Entry *entryAfter, LDAPMo + !strcasecmp(enabled, "on")) + { + for(i = 0; mods && mods[i]; i++){ +- /* Check if we are modifying a plugin's config, if so restart the plugin */ +- if (strcasecmp(mods[i]->mod_type, ATTR_PLUGIN_PATH) == 0 || +- strcasecmp(mods[i]->mod_type, ATTR_PLUGIN_INITFN) == 0 || +- strcasecmp(mods[i]->mod_type, ATTR_PLUGIN_TYPE) == 0 || +- strcasecmp(mods[i]->mod_type, ATTR_PLUGIN_DEPENDS_ON_TYPE) == 0 || +- strcasecmp(mods[i]->mod_type, ATTR_PLUGIN_DEPENDS_ON_NAMED) == 0 || +- strcasecmp(mods[i]->mod_type, ATTR_PLUGIN_SCHEMA_CHECK) == 0 || +- strcasecmp(mods[i]->mod_type, ATTR_PLUGIN_BE_TXN) == 0 || +- strcasecmp(mods[i]->mod_type, ATTR_PLUGIN_TARGET_SUBTREE) == 0 || +- strcasecmp(mods[i]->mod_type, ATTR_PLUGIN_EXCLUDE_TARGET_SUBTREE) == 0 || +- strcasecmp(mods[i]->mod_type, ATTR_PLUGIN_BIND_SUBTREE) == 0 || +- strcasecmp(mods[i]->mod_type, ATTR_PLUGIN_EXCLUDE_BIND_SUBTREE) == 0 || +- strcasecmp(mods[i]->mod_type, ATTR_PLUGIN_LOAD_NOW) == 0 || +- strcasecmp(mods[i]->mod_type, ATTR_PLUGIN_LOAD_GLOBAL) == 0 || +- strcasecmp(mods[i]->mod_type, ATTR_PLUGIN_PRECEDENCE) == 0 || +- strcasecmp(mods[i]->mod_type, ATTR_PLUGIN_LOG_ACCESS) == 0 || +- strcasecmp(mods[i]->mod_type, ATTR_PLUGIN_LOG_AUDIT) == 0 ) +- { +- /* for all other plugin config changes, restart the plugin */ +- if(plugin_restart(entryBefore, entryAfter) != LDAP_SUCCESS){ +- slapi_log_error(SLAPI_LOG_FATAL,"dse_post_modify_plugin", "The configuration change " +- "for plugin (%s) could not be applied dynamically, and will be ignored until " +- "the server is restarted.\n", +- slapi_entry_get_dn(entryBefore)); +- } ++ if (strcasecmp(mods[i]->mod_type, ATTR_PLUGIN_ENABLED) == 0){ ++ /* we already stop/started the pugin - don't do it again */ ++ restart_plugin = 0; ++ break; ++ } ++ } ++ if(restart_plugin){ /* for all other plugin config changes, restart the plugin */ ++ if(plugin_restart(entryBefore, entryAfter) != LDAP_SUCCESS){ ++ slapi_log_error(SLAPI_LOG_FATAL,"dse_post_modify_plugin", "The configuration change " ++ "for plugin (%s) could not be applied dynamically, and will be ignored until " ++ "the server is restarted.\n", ++ slapi_entry_get_dn(entryBefore)); + } + } + } +@@ -2690,7 +2683,10 @@ slapi_config_register_callback_plugin(int operation, + Slapi_DN dn; + + slapi_sdn_init_dn_byref(&dn,base); +- rc = (NULL != dse_register_callback(pdse, operation, flags, &dn, scope, filter, fn, fn_arg, pb ? pb->pb_plugin: NULL)); ++ /* if a pblock was passed, this is a plugin, so set the f_arg as the plugin */ ++ rc = (NULL != dse_register_callback(pdse, operation, flags, &dn, scope, filter, fn, ++ pb ? (void*)pb->pb_plugin : fn_arg, ++ pb ? pb->pb_plugin: NULL)); + slapi_sdn_done(&dn); + } + } +diff --git a/ldap/servers/slapd/plugin.c b/ldap/servers/slapd/plugin.c +index dde3ce5..820c25f 100644 +--- a/ldap/servers/slapd/plugin.c ++++ b/ldap/servers/slapd/plugin.c +@@ -58,6 +58,11 @@ + #define CHECK_ALL 0 + #define CHECK_TYPE 1 + ++/* plugin removal flags */ ++#define PLUGIN_NOT_FOUND 0 ++#define PLUGIN_REMOVED 1 ++#define PLUGIN_BUSY 2 ++ + static char *critical_plugins[] = { "cn=ldbm database,cn=plugins,cn=config", + "cn=ACL Plugin,cn=plugins,cn=config", + "cn=ACL preoperation,cn=plugins,cn=config", +@@ -3294,7 +3299,7 @@ plugin_remove_plugins(struct slapdplugin *plugin_entry, char *plugin_type) + struct slapdplugin *plugin = NULL; + struct slapdplugin *plugin_next = NULL; + struct slapdplugin *plugin_prev = NULL; +- int removed = 0; ++ int removed = PLUGIN_NOT_FOUND; + int type; + + /* look everywhere for other plugin functions with the plugin id */ +@@ -3315,7 +3320,13 @@ plugin_remove_plugins(struct slapdplugin *plugin_entry, char *plugin_type) + + pblock_init(&pb); + plugin_set_stopped(plugin); +- plugin_op_all_finished(plugin); ++ if (slapi_counter_get_value(plugin->plg_op_counter) > 0){ ++ /* ++ * Plugin is still busy, and we might be blocking it ++ * by holding global plugin lock so return for now. ++ */ ++ return PLUGIN_BUSY; ++ } + plugin_call_one( plugin, SLAPI_PLUGIN_CLOSE_FN, &pb); + + if(plugin_prev){ +@@ -3332,7 +3343,7 @@ plugin_remove_plugins(struct slapdplugin *plugin_entry, char *plugin_type) + plugin_remove_from_shutdown(plugin); + plugin->plg_removed = 1; + plugin->plg_started = 0; +- removed = 1; ++ removed = PLUGIN_REMOVED; + } else { + plugin_prev = plugin; + } +@@ -3362,15 +3373,10 @@ plugin_delete(Slapi_Entry *plugin_entry, char *returntext, int locked) + const char *plugin_dn = slapi_entry_get_dn_const(plugin_entry); + char *value = NULL; + int td_locked = 1; +- int removed = 0; ++ int removed = PLUGIN_BUSY; + int type = 0; + int rc = LDAP_SUCCESS; + +- if(!locked){ +- slapi_rwlock_wrlock(global_rwlock); +- } +- slapi_td_set_plugin_locked(&td_locked); +- + /* Critical server plugins can not be disabled */ + if(plugin_is_critical(plugin_entry)){ + LDAPDebug(LDAP_DEBUG_ANY, "plugin_delete: plugin \"%s\" is critical to server operations, and can not be disabled\n", +@@ -3390,54 +3396,62 @@ plugin_delete(Slapi_Entry *plugin_entry, char *returntext, int locked) + rc = -1; + goto done; + } else { +- rc = plugin_get_type_and_list(value, &type, &plugin_list); +- if ( rc != 0 ) { +- /* error: unknown plugin type */ +- LDAPDebug(LDAP_DEBUG_ANY, "plugin_delete: unknown plugin type \"%s\" in entry \"%s\"\n", +- value, slapi_entry_get_dn_const(plugin_entry), 0); +- PR_snprintf (returntext, SLAPI_DSE_RETURNTEXT_SIZE, "Plugin delete failed: unknown plugin type " ++ while(removed == PLUGIN_BUSY){ ++ removed = PLUGIN_NOT_FOUND; ++ if(!locked){ ++ slapi_rwlock_wrlock(global_rwlock); ++ } ++ slapi_td_set_plugin_locked(&td_locked); ++ ++ rc = plugin_get_type_and_list(value, &type, &plugin_list); ++ if ( rc != 0 ) { ++ /* error: unknown plugin type */ ++ LDAPDebug(LDAP_DEBUG_ANY, "plugin_delete: unknown plugin type \"%s\" in entry \"%s\"\n", ++ value, slapi_entry_get_dn_const(plugin_entry), 0); ++ PR_snprintf (returntext, SLAPI_DSE_RETURNTEXT_SIZE, "Plugin delete failed: unknown plugin type " + "\"%s\" in entry.",value); +- rc = -1; +- goto done; +- } ++ rc = -1; ++ goto unlock; ++ } + +- /* +- * Skip syntax/matching rule/database plugins - these can not be disabled as it +- * could break existing schema. We allow the update to occur, but it will +- * not take effect until the next server restart. +- */ +- if(type == SLAPI_PLUGIN_SYNTAX || type == SLAPI_PLUGIN_MATCHINGRULE || type == SLAPI_PLUGIN_DATABASE){ +- removed = 1; /* avoids error check below */ +- goto done; +- } ++ /* ++ * Skip syntax/matching rule/database plugins - these can not be disabled as it ++ * could break existing schema. We allow the update to occur, but it will ++ * not take effect until the next server restart. ++ */ ++ if(type == SLAPI_PLUGIN_SYNTAX || type == SLAPI_PLUGIN_MATCHINGRULE || type == SLAPI_PLUGIN_DATABASE){ ++ removed = PLUGIN_REMOVED; /* avoids error check below */ ++ goto unlock; ++ } + +- /* +- * Now remove the plugin from the list and the hashtable +- */ +- for(plugin = *plugin_list; plugin ; plugin = plugin->plg_next){ +- if(strcasecmp(plugin->plg_dn, plugin_dn) == 0){ +- /* +- * Make sure there are no other plugins that depend on this one before removing it +- */ +- if(plugin_delete_check_dependency(plugin, CHECK_ALL, returntext) != LDAP_SUCCESS){ +- LDAPDebug(LDAP_DEBUG_ANY, "plugin_delete: failed to disable/delete plugin (%s)\n", +- plugin->plg_dn,0,0); +- rc = -1; +- goto done; ++ /* ++ * Now remove the plugin from the list and the hashtable ++ */ ++ for(plugin = *plugin_list; plugin ; plugin = plugin->plg_next){ ++ if(strcasecmp(plugin->plg_dn, plugin_dn) == 0){ ++ /* ++ * Make sure there are no other plugins that depend on this one before removing it ++ */ ++ if(plugin_delete_check_dependency(plugin, CHECK_ALL, returntext) != LDAP_SUCCESS){ ++ LDAPDebug(LDAP_DEBUG_ANY, "plugin_delete: failed to disable/delete plugin (%s)\n", ++ plugin->plg_dn,0,0); ++ rc = -1; ++ break; ++ } ++ removed = plugin_remove_plugins(plugin, value); ++ break; + } +- removed = plugin_remove_plugins(plugin, value); +- break; + } ++unlock: ++ if(!locked){ ++ slapi_rwlock_unlock(global_rwlock); ++ } ++ td_locked = 0; ++ slapi_td_set_plugin_locked(&td_locked); + } + } + + done: +- if(!locked){ +- slapi_rwlock_unlock(global_rwlock); +- } +- td_locked = 0; +- slapi_td_set_plugin_locked(&td_locked); +- + slapi_ch_free_string(&value); + + if(!removed && rc == 0){ +diff --git a/ldap/servers/slapd/task.c b/ldap/servers/slapd/task.c +index b1f7652..98ec88c 100644 +--- a/ldap/servers/slapd/task.c ++++ b/ldap/servers/slapd/task.c +@@ -131,9 +131,9 @@ slapi_new_task(const char *dn) + } + + Slapi_Task * +-slapi_plugin_new_task(const char *dn, void *plugin_pb) ++slapi_plugin_new_task(const char *dn, void *plugin) + { +- return new_task(dn, plugin_pb); ++ return new_task(dn, plugin); + } + + /* slapi_destroy_task: destroy a task +@@ -540,7 +540,7 @@ slapi_plugin_task_register_handler(const char *name, dseCallbackFn func, Slapi_P + + /* register add callback */ + slapi_config_register_callback_plugin(SLAPI_OPERATION_ADD, DSE_FLAG_PREOP, +- dn, LDAP_SCOPE_SUBTREE, "(objectclass=*)", func, NULL, plugin_pb); ++ dn, LDAP_SCOPE_SUBTREE, "(objectclass=*)", func, plugin_pb, plugin_pb); + /* deny modify/delete of the root task entry */ + slapi_config_register_callback(SLAPI_OPERATION_MODIFY, DSE_FLAG_PREOP, + dn, LDAP_SCOPE_BASE, "(objectclass=*)", task_deny, NULL); +@@ -583,11 +583,9 @@ void slapi_task_set_cancel_fn(Slapi_Task *task, TaskCallbackFn func) + ***********************************/ + /* create a new task, fill in DN, and setup modify callback */ + static Slapi_Task * +-new_task(const char *rawdn, void *plugin_pb) ++new_task(const char *rawdn, void *plugin) + { + Slapi_Task *task = NULL; +- Slapi_PBlock *pb = (Slapi_PBlock *)plugin_pb; +- void *plugin = pb ? pb->pb_plugin : NULL; + char *dn = NULL; + + if (rawdn == NULL) { +-- +1.9.3 + diff --git a/SOURCES/0051-Ticket-47451-Fix-jenkins-errors.patch b/SOURCES/0051-Ticket-47451-Fix-jenkins-errors.patch new file mode 100644 index 0000000..6e44fad --- /dev/null +++ b/SOURCES/0051-Ticket-47451-Fix-jenkins-errors.patch @@ -0,0 +1,69 @@ +From 7602bd4138d78c7df9479b3f760895cecd10d7d9 Mon Sep 17 00:00:00 2001 +From: Mark Reynolds <mreynolds@redhat.com> +Date: Tue, 16 Dec 2014 16:10:05 -0500 +Subject: [PATCH 51/53] Ticket 47451 - Fix jenkins errors + +Description: Fix compiler warnings + +https://fedorahosted.org/389/ticket/47451 +(cherry picked from commit 3e1d97624f390b96c1de21b115619822b72ebf98) +(cherry picked from commit 15e1cdd7d01933d42b83b00e1e8c01c16fd36e8e) +--- + ldap/servers/plugins/dna/dna.c | 6 +----- + ldap/servers/plugins/uiduniq/uid.c | 2 -- + 2 files changed, 1 insertion(+), 7 deletions(-) + +diff --git a/ldap/servers/plugins/dna/dna.c b/ldap/servers/plugins/dna/dna.c +index ded0bbb..f4a36f0 100644 +--- a/ldap/servers/plugins/dna/dna.c ++++ b/ldap/servers/plugins/dna/dna.c +@@ -2406,7 +2406,7 @@ static int dna_get_next_value(struct configEntry *config_entry, + } else { + /* dna_first_free_value() failed for some unknown reason */ + slapi_log_error(SLAPI_LOG_FATAL, DNA_PLUGIN_SUBSYSTEM, +- "dna_get_next_value: failed to allocate a new ID!! (set(%d) (max: %d)\n",setval,config_entry->maxval); ++ "dna_get_next_value: failed to allocate a new ID!!\n"); + goto done; + } + } +@@ -3415,8 +3415,6 @@ _dna_pre_op_add(Slapi_PBlock *pb, Slapi_Entry *e, char **errstr) + /* dna_first_free_value() failed for some unknown reason */ + slapi_log_error(SLAPI_LOG_FATAL, DNA_PLUGIN_SUBSYSTEM, + "dna_pre_op: failed to allocate a new ID!! 2\n"); +- slapi_log_error(SLAPI_LOG_FATAL, DNA_PLUGIN_SUBSYSTEM, +- "dna_get_next_value: failed to allocate a new ID!! (set(%d) (max: %d)\n",setval,config_entry->maxval); + /* Set an error string to be returned to the client. */ + *errstr = slapi_ch_smprintf("Allocation of a new value for range" + " %s failed! Unable to proceed.", +@@ -3682,8 +3680,6 @@ _dna_pre_op_modify(Slapi_PBlock *pb, Slapi_Entry *e, Slapi_Mods *smods, char **e + /* dna_first_free_value() failed for some unknown reason */ + slapi_log_error(SLAPI_LOG_FATAL, DNA_PLUGIN_SUBSYSTEM, + "dna_pre_op: failed to allocate a new ID!!\n"); +- slapi_log_error(SLAPI_LOG_FATAL, DNA_PLUGIN_SUBSYSTEM, +- "dna_get_next_value: failed to allocate a new ID!! (set(%d) (max: %d)\n",setval,config_entry->maxval); + /* Set an error string to be returned to the client. */ + *errstr = slapi_ch_smprintf("Allocation of a new value for range" + " %s failed! Unable to proceed.", +diff --git a/ldap/servers/plugins/uiduniq/uid.c b/ldap/servers/plugins/uiduniq/uid.c +index f37ab8c..2120b4f 100644 +--- a/ldap/servers/plugins/uiduniq/uid.c ++++ b/ldap/servers/plugins/uiduniq/uid.c +@@ -1285,7 +1285,6 @@ uiduniq_start(Slapi_PBlock *pb) + static int + uiduniq_close(Slapi_PBlock *pb) + { +- Slapi_Entry *plugin_entry = NULL; + struct attr_uniqueness_config *config = NULL; + + slapi_pblock_get(pb, SLAPI_PLUGIN_PRIVATE, &config); +@@ -1312,7 +1311,6 @@ NSUniqueAttr_Init(Slapi_PBlock *pb) + int preadd = SLAPI_PLUGIN_PRE_ADD_FN; + int premod = SLAPI_PLUGIN_PRE_MODIFY_FN; + int premdn = SLAPI_PLUGIN_PRE_MODRDN_FN; +- struct attr_uniqueness_config *config = NULL; + + BEGIN + +-- +1.9.3 + diff --git a/SOURCES/0051-Ticket-47605-CVE-2013-4485-DoS-due-to-improper-handl.patch b/SOURCES/0051-Ticket-47605-CVE-2013-4485-DoS-due-to-improper-handl.patch deleted file mode 100644 index b04ee47..0000000 --- a/SOURCES/0051-Ticket-47605-CVE-2013-4485-DoS-due-to-improper-handl.patch +++ /dev/null @@ -1,136 +0,0 @@ -From 896091407c244ed151f2fad39a82881a6e991d26 Mon Sep 17 00:00:00 2001 -From: Rich Megginson <rmeggins@redhat.com> -Date: Tue, 29 Oct 2013 13:47:35 -0600 -Subject: [PATCH] Ticket #47605 CVE-2013-4485: DoS due to improper handling of ger attr searches - -https://fedorahosted.org/389/ticket/47605 -Reviewed by: nhosoi (Thanks!) -Branch: 389-ds-base-1.3.1 -Fix Description: The traversal of the attr list looking for GER objectclasses -was modifying the same attribute twice, removing the "@" from it. The second -time, since there was no "@" in the string, the strchr would return NULL, and -the code would not check for it. -The code was simplified and rewritten to use charray_merge_nodup -to build the gerattrs list with unique objectclass values, which I believe was -the intention of the original code. I also added some error checking to look -for invalid attributes like "@name" "name@" and "name@name@name". -Platforms tested: RHEL6 x86_64 -Flag Day: no -Doc impact: no -(cherry picked from commit 7e03702932546e74f0044d11832e7e7e395cbb36) -(cherry picked from commit 12e54af6982ab5406f4bba6a02dd0724a0415501) -(cherry picked from commit 8c5e74b291d08c66e0afbf766f77f955725b9bf4) ---- - ldap/servers/slapd/search.c | 79 +++++++++---------------------------------- - 1 files changed, 16 insertions(+), 63 deletions(-) - -diff --git a/ldap/servers/slapd/search.c b/ldap/servers/slapd/search.c -index da1772f..59c4afb 100644 ---- a/ldap/servers/slapd/search.c -+++ b/ldap/servers/slapd/search.c -@@ -246,8 +246,6 @@ do_search( Slapi_PBlock *pb ) - } - - if ( attrs != NULL ) { -- int gerattrsiz = 1; -- int gerattridx = 0; - int aciin = 0; - /* - * . store gerattrs if any -@@ -257,66 +255,25 @@ do_search( Slapi_PBlock *pb ) - { - char *p = NULL; - /* check if @<objectclass> is included */ -- p = strchr(attrs[i], '@'); -- if ( p && '\0' != *(p+1) ) /* don't store "*@", e.g. */ -+ p = strchr(attrs[i], '@'); -+ if ( p ) - { -- int j = 0; -- if (gerattridx + 1 >= gerattrsiz) -+ char *dummyary[2]; /* need a char ** for charray_merge_nodup */ -+ if ((*(p + 1) == '\0') || (p == attrs[i]) || (strchr(p+1, '@'))) /* e.g. "foo@" or "@objectclassname" or "foo@bar@baz" */ - { -- char **tmpgerattrs; -- gerattrsiz *= 2; -- tmpgerattrs = -- (char **)slapi_ch_calloc(1, gerattrsiz*sizeof(char *)); -- if (NULL != gerattrs) -- { -- memcpy(tmpgerattrs, gerattrs, gerattrsiz*sizeof(char *)); -- slapi_ch_free((void **)&gerattrs); -- } -- gerattrs = tmpgerattrs; -- } -- for ( j = 0; gerattrs; j++ ) -- { -- char *attri = NULL; -- if ( NULL == gerattrs[j] ) -- { -- if (0 == j) -- { -- /* first time */ -- gerattrs[gerattridx++] = attrs[i]; -- /* get rid of "@<objectclass>" part from the attr -- list, which is needed only in gerattr list */ -- *p = '\0'; -- attri = slapi_ch_strdup(attrs[i]); -- attrs[i] = attri; -- *p = '@'; -- } -- else -- { -- break; /* done */ -- } -- } -- else if ( 0 == strcasecmp( attrs[i], gerattrs[j] )) -- { -- /* skip if attrs[i] is already in gerattrs */ -- continue; -- } -- else -- { -- char *q = strchr(gerattrs[j], '@'); /* q never be 0 */ -- if ( 0 != strcasecmp( p+1, q+1 )) -- { -- /* you don't want to display the same template -- entry multiple times */ -- gerattrs[gerattridx++] = attrs[i]; -- } -- /* get rid of "@<objectclass>" part from the attr -- list, which is needed only in gerattr list */ -- *p = '\0'; -- attri = slapi_ch_strdup(attrs[i]); -- attrs[i] = attri; -- *p = '@'; -- } -+ slapi_log_error( SLAPI_LOG_ARGS, "do_search", -+ "invalid attribute [%s] in list - must be of the form " -+ "attributename@objectclassname where attributename is the " -+ "name of an attribute or \"*\" or \"+\" and objectclassname " -+ "is the name of an objectclass\n", attrs[i] ); -+ continue; - } -+ dummyary[0] = p; /* p = @objectclassname */ -+ dummyary[1] = NULL; -+ /* copy string to gerattrs with leading @ - disallow dups */ -+ charray_merge_nodup(&gerattrs, dummyary, 1); -+ /* null terminate the attribute name at the @ after it has been copied */ -+ *p = '\0'; - } - else if ( !aciin && strcasecmp(attrs[i], LDAP_ALL_USER_ATTRS) == 0 ) - { -@@ -324,10 +281,6 @@ do_search( Slapi_PBlock *pb ) - aciin = 1; - } - } -- if (NULL != gerattrs) -- { -- gerattrs[gerattridx] = NULL; -- } - - if (config_get_return_orig_type_switch()) { - /* return the original type, e.g., "sn (surname)" */ --- -1.7.1 - diff --git a/SOURCES/0052-Ticket-47451-Add-Dynamic-Plugin-CI-Suite.patch b/SOURCES/0052-Ticket-47451-Add-Dynamic-Plugin-CI-Suite.patch new file mode 100644 index 0000000..399e1d9 --- /dev/null +++ b/SOURCES/0052-Ticket-47451-Add-Dynamic-Plugin-CI-Suite.patch @@ -0,0 +1,2590 @@ +From c038b581bdcabcc86a33f9a3eae446b684825698 Mon Sep 17 00:00:00 2001 +From: Mark Reynolds <mreynolds@redhat.com> +Date: Tue, 16 Dec 2014 16:44:33 -0500 +Subject: [PATCH 52/53] Ticket 47451 - Add Dynamic Plugin CI Suite + +Description: Add lib389(CI) testsuite for Dynamic Plugins + + Perform functional tests for plugins that have configuration settings + - Restart the plugin + - Make condfig change + - Test the plugin + - Make another config change + - Test plugin + - Test plugin dependency + - Cleanup + + Perform memory corruption test + - This test forces the global plugin linked list, DSE callbacks, + and task handlers to be rewritten in various orders while + testing all the plugins. + + Perform Stress tests + - Perform a series of operations that engage two plugins. While + there operations are being performed restart various plugins. + - Verify the server does not crash, and that hte plugins work + correctly. + +https://fedorahosted.org/389/ticket/47451 + +Reviewed by: nhosoi(Thanks!) + +(cherry picked from commit 4e39dbbfde56ca68f5a26d0bf2ac3a261234c8cd) +(cherry picked from commit 2ace01377aec2872579f9f892361946f1d5b07d2) +--- + dirsrvtests/suites/dynamic-plugins/constants.py | 33 + + dirsrvtests/suites/dynamic-plugins/finalizer.py | 57 + + dirsrvtests/suites/dynamic-plugins/plugin_tests.py | 1973 ++++++++++++++++++++ + dirsrvtests/suites/dynamic-plugins/stress_tests.py | 133 ++ + .../suites/dynamic-plugins/test_dynamic_plugins.py | 315 ++++ + 5 files changed, 2511 insertions(+) + create mode 100644 dirsrvtests/suites/dynamic-plugins/constants.py + create mode 100644 dirsrvtests/suites/dynamic-plugins/finalizer.py + create mode 100644 dirsrvtests/suites/dynamic-plugins/plugin_tests.py + create mode 100644 dirsrvtests/suites/dynamic-plugins/stress_tests.py + create mode 100644 dirsrvtests/suites/dynamic-plugins/test_dynamic_plugins.py + +diff --git a/dirsrvtests/suites/dynamic-plugins/constants.py b/dirsrvtests/suites/dynamic-plugins/constants.py +new file mode 100644 +index 0000000..cbc310e +--- /dev/null ++++ b/dirsrvtests/suites/dynamic-plugins/constants.py +@@ -0,0 +1,33 @@ ++''' ++Created on Dec 09, 2014 ++ ++@author: mreynolds ++''' ++import os ++from lib389 import DN_DM ++from lib389._constants import * ++from lib389.properties import * ++ ++SUFFIX = 'dc=example,dc=com' ++PASSWORD = 'password' ++ ++# Used for standalone topology ++HOST_STANDALONE = LOCALHOST ++PORT_STANDALONE = 33389 ++SERVERID_STANDALONE = 'dynamic-plugins' ++ ++# Each defined instance above must be added in that list ++ALL_INSTANCES = [ {SER_HOST: HOST_STANDALONE, SER_PORT: PORT_STANDALONE, SER_SERVERID_PROP: SERVERID_STANDALONE}, ++ ] ++# This is a template ++args_instance = { ++ SER_DEPLOYED_DIR: os.environ.get('PREFIX', None), ++ SER_BACKUP_INST_DIR: os.environ.get('BACKUPDIR', DEFAULT_BACKUPDIR), ++ SER_ROOT_DN: DN_DM, ++ SER_ROOT_PW: PASSWORD, ++ SER_HOST: LOCALHOST, ++ SER_PORT: DEFAULT_PORT, ++ SER_SERVERID_PROP: "template", ++ SER_CREATION_SUFFIX: DEFAULT_SUFFIX} ++ ++ +diff --git a/dirsrvtests/suites/dynamic-plugins/finalizer.py b/dirsrvtests/suites/dynamic-plugins/finalizer.py +new file mode 100644 +index 0000000..eb02332 +--- /dev/null ++++ b/dirsrvtests/suites/dynamic-plugins/finalizer.py +@@ -0,0 +1,57 @@ ++''' ++Created on Nov 5, 2013 ++ ++@author: tbordaz ++''' ++import os ++import sys ++import time ++import ldap ++import logging ++import socket ++import time ++import logging ++import pytest ++from lib389 import DirSrv, Entry, tools ++from lib389.tools import DirSrvTools ++from lib389._constants import DN_DM ++from lib389.properties import * ++from constants import * ++ ++log = logging.getLogger(__name__) ++ ++global installation_prefix ++installation_prefix=os.getenv('PREFIX') ++ ++def test_finalizer(): ++ global installation_prefix ++ ++ # for each defined instance, remove it ++ for args_instance in ALL_INSTANCES: ++ if installation_prefix: ++ # overwrite the environment setting ++ args_instance[SER_DEPLOYED_DIR] = installation_prefix ++ ++ instance = DirSrv(verbose=True) ++ instance.allocate(args_instance) ++ if instance.exists(): ++ instance.delete() ++ ++ # remove any existing backup for this instance ++ instance.clearBackupFS() ++ ++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 ++ - set the installation prefix ++ - run this program ++ ''' ++ global installation_prefix ++ installation_prefix = None ++ ++ test_finalizer() ++ ++if __name__ == '__main__': ++ run_isolated() ++ +diff --git a/dirsrvtests/suites/dynamic-plugins/plugin_tests.py b/dirsrvtests/suites/dynamic-plugins/plugin_tests.py +new file mode 100644 +index 0000000..fa88145 +--- /dev/null ++++ b/dirsrvtests/suites/dynamic-plugins/plugin_tests.py +@@ -0,0 +1,1973 @@ ++''' ++Created on Dec 09, 2014 ++ ++@author: mreynolds ++''' ++import os ++import sys ++import time ++import ldap ++import time ++import logging ++import socket ++import pytest ++from lib389 import DirSrv, Entry, tools, tasks ++from lib389.tools import DirSrvTools ++from lib389._constants import * ++from lib389.properties import * ++from lib389.tasks import * ++from constants import * ++ ++log = logging.getLogger(__name__) ++ ++USER1_DN = 'uid=user1,' + DEFAULT_SUFFIX ++USER2_DN = 'uid=user2,' + DEFAULT_SUFFIX ++USER3_DN = 'uid=user3,' + DEFAULT_SUFFIX ++BUSER1_DN = 'uid=user1,ou=branch1,' + DEFAULT_SUFFIX ++BUSER2_DN = 'uid=user2,ou=branch2,' + DEFAULT_SUFFIX ++BUSER3_DN = 'uid=user3,ou=branch2,' + DEFAULT_SUFFIX ++BRANCH1_DN = 'ou=branch1,' + DEFAULT_SUFFIX ++BRANCH2_DN = 'ou=branch2,' + DEFAULT_SUFFIX ++GROUP_OU = 'ou=groups,' + DEFAULT_SUFFIX ++PEOPLE_OU = 'ou=people,' + DEFAULT_SUFFIX ++GROUP_DN = 'cn=group,' + DEFAULT_SUFFIX ++ ++''' ++ Functional tests for each plugin ++ ++ Test: ++ plugin restarts (test when on and off) ++ plugin config validation ++ plugin dependencies ++ plugin functionality (including plugin tasks) ++''' ++ ++ ++################################################################################ ++# ++# Test Plugin Dependency ++# ++################################################################################ ++def test_dependency(inst, plugin): ++ """ ++ Set the "account usabilty" plugin to depend on this plugin. This plugin ++ is generic, always enabled, and perfect for our testing ++ """ ++ ++ try: ++ inst.modify_s('cn=' + PLUGIN_ACCT_USABILITY + ',cn=plugins,cn=config', ++ [(ldap.MOD_REPLACE, 'nsslapd-plugin-depends-on-named', plugin)]) ++ ++ except ldap.LDAPError, e: ++ log.error('test_dependency: Failed to modify ' + PLUGIN_ACCT_USABILITY + ': error ' + e.message['desc']) ++ assert False ++ ++ try: ++ inst.modify_s('cn=' + plugin + ',cn=plugins,cn=config', ++ [(ldap.MOD_REPLACE, 'nsslapd-pluginenabled', 'off')]) ++ ++ except ldap.UNWILLING_TO_PERFORM: ++ # failed as expected ++ pass ++ else: ++ # Incorrectly succeeded ++ log.error('test_dependency: Plugin dependency check failed (%s)' % plugin) ++ assert False ++ ++ # Now undo the change ++ try: ++ inst.modify_s('cn=' + PLUGIN_ACCT_USABILITY + ',cn=plugins,cn=config', ++ [(ldap.MOD_DELETE, 'nsslapd-plugin-depends-on-named', None)]) ++ except ldap.LDAPError, e: ++ log.error('test_dependency: Failed to reset ' + plugin + ': error ' + e.message['desc']) ++ assert False ++ ++ ++################################################################################ ++# ++# Test Account Policy Plugin (0) ++# ++################################################################################ ++def test_acctpolicy(inst, args=None): ++ # stop the plugin, and start it ++ inst.plugins.disable(name=PLUGIN_ACCT_POLICY) ++ inst.plugins.enable(name=PLUGIN_ACCT_POLICY) ++ ++ if args == "restart": ++ return True ++ ++ CONFIG_DN = 'cn=config,cn=Account Policy Plugin,cn=plugins,cn=config' ++ log.info('Testing ' + PLUGIN_ACCT_POLICY + '...') ++ ++ ############################################################################ ++ # Configure plugin ++ ############################################################################ ++ ++ # Add the config entry ++ try: ++ inst.add_s(Entry((CONFIG_DN, { ++ 'objectclass': 'top extensibleObject'.split(), ++ 'cn': 'config', ++ 'alwaysrecordlogin': 'yes', ++ 'stateattrname': 'lastLoginTime' ++ }))) ++ except ldap.ALREADY_EXISTS: ++ try: ++ inst.modify_s(CONFIG_DN, ++ [(ldap.MOD_REPLACE, 'alwaysrecordlogin', 'yes'), ++ (ldap.MOD_REPLACE, 'stateattrname', 'lastLoginTime')]) ++ except ldap.LDAPError, e: ++ log.error('test_acctpolicy: Failed to modify config entry: error ' + e.message['desc']) ++ assert False ++ except ldap.LDAPError, e: ++ log.error('test_acctpolicy: Failed to add config entry: error ' + e.message['desc']) ++ assert False ++ ++ # Now set the config entry in the plugin entry ++ #try: ++ # inst.modify_s('cn=' + PLUGIN_ACCT_POLICY + ',cn=plugins,cn=config', ++ # [(ldap.MOD_REPLACE, 'nsslapd-pluginarg0', CONFIG_DN)]) ++ #except ldap.LDAPError, e: ++ # log.error('test_acctpolicy: Failed to set config entry in plugin entry: error ' + e.message['desc']) ++ # assert False ++ ++ ############################################################################ ++ # Test plugin ++ ############################################################################ ++ ++ # !!!! acctpolicy does have have a dse callabck to check for live updates - restart plugin for now !!!! ++ inst.plugins.disable(name=PLUGIN_ACCT_POLICY) ++ inst.plugins.enable(name=PLUGIN_ACCT_POLICY) ++ ++ # Add an entry ++ try: ++ inst.add_s(Entry((USER1_DN, {'objectclass': "top extensibleObject".split(), ++ 'sn': '1', ++ 'cn': 'user 1', ++ 'uid': 'user1', ++ 'userpassword': 'password'}))) ++ except ldap.LDAPError, e: ++ log.error('test_acctpolicy: Failed to add test user' + USER1_DN + ': error ' + e.message['desc']) ++ assert False ++ ++ # bind as user ++ try: ++ inst.simple_bind_s(USER1_DN, "password") ++ except ldap.LDAPError, e: ++ log.error('test_acctpolicy:Failed to bind as user1: ' + e.message['desc']) ++ assert False ++ ++ # Bind as Root DN ++ try: ++ inst.simple_bind_s(DN_DM, PASSWORD) ++ except ldap.LDAPError, e: ++ log.error('test_acctpolicy: Failed to bind as rootDN: ' + e.message['desc']) ++ assert False ++ ++ # Check lastLoginTime of USER1 ++ try: ++ entries = inst.search_s(DEFAULT_SUFFIX, ldap.SCOPE_SUBTREE, 'lastLoginTime=*') ++ if not entries: ++ log.fatal('test_acctpolicy: Search failed to find an entry with lastLoginTime.') ++ assert False ++ except ldap.LDAPError, e: ++ log.fatal('test_acctpolicy: Search failed: ' + e.message['desc']) ++ assert False ++ ++ ############################################################################ ++ # Change config - change the stateAttrName to a new attribute ++ ############################################################################ ++ ++ try: ++ inst.modify_s(CONFIG_DN, [(ldap.MOD_REPLACE, 'stateattrname', 'testLastLoginTime')]) ++ ++ except ldap.LDAPError, e: ++ log.error('test_acctpolicy: Failed to modify config entry: error ' + e.message['desc']) ++ assert False ++ ++ # !!!! must restart for now !!!!! ++ inst.plugins.disable(name=PLUGIN_ACCT_POLICY) ++ inst.plugins.enable(name=PLUGIN_ACCT_POLICY) ++ ++ ############################################################################ ++ # Test plugin ++ ############################################################################ ++ ++ # login as user ++ try: ++ inst.simple_bind_s(USER1_DN, "password") ++ except ldap.LDAPError, e: ++ log.error('test_acctpolicy: Failed to bind(2nd) as user1: ' + e.message['desc']) ++ assert False ++ ++ # Bind as Root DN ++ try: ++ inst.simple_bind_s(DN_DM, PASSWORD) ++ except ldap.LDAPError, e: ++ log.error('test_acctpolicy: Failed to bind as rootDN: ' + e.message['desc']) ++ assert False ++ ++ # Check testLastLoginTime was added to USER1 ++ try: ++ entries = inst.search_s(DEFAULT_SUFFIX, ldap.SCOPE_SUBTREE, '(testLastLoginTime=*)') ++ if not entries: ++ log.fatal('test_acctpolicy: Search failed to find an entry with testLastLoginTime.') ++ assert False ++ except ldap.LDAPError, e: ++ log.fatal('test_acctpolicy: Search failed: ' + e.message['desc']) ++ assert False ++ ++ ############################################################################ ++ # Test plugin dependency ++ ############################################################################ ++ ++ test_dependency(inst, PLUGIN_ACCT_POLICY) ++ ++ ############################################################################ ++ # Cleanup ++ ############################################################################ ++ ++ try: ++ inst.delete_s(USER1_DN) ++ except ldap.LDAPError, e: ++ log.error('test_acctpolicy: Failed to delete test entry: ' + e.message['desc']) ++ assert False ++ ++ ############################################################################ ++ # Test passed ++ ############################################################################ ++ ++ log.info('test_acctpolicy: PASS\n') ++ ++ return ++ ++ ++################################################################################ ++# ++# Test Attribute Uniqueness Plugin (1) ++# ++################################################################################ ++def test_attruniq(inst, args=None): ++ # stop the plugin, and start it ++ inst.plugins.disable(name=PLUGIN_ATTR_UNIQUENESS) ++ inst.plugins.enable(name=PLUGIN_ATTR_UNIQUENESS) ++ ++ if args == "restart": ++ return ++ ++ log.info('Testing ' + PLUGIN_ATTR_UNIQUENESS + '...') ++ ++ ############################################################################ ++ # Configure plugin ++ ############################################################################ ++ ++ try: ++ inst.modify_s('cn=' + PLUGIN_ATTR_UNIQUENESS + ',cn=plugins,cn=config', ++ [(ldap.MOD_REPLACE, 'uniqueness-attribute-name', 'uid')]) ++ ++ except ldap.LDAPError, e: ++ log.error('test_attruniq: Failed to configure plugin for "uid": error ' + e.message['desc']) ++ assert False ++ ++ ############################################################################ ++ # Test plugin ++ ############################################################################ ++ ++ # Add an entry ++ try: ++ inst.add_s(Entry((USER1_DN, {'objectclass': "top extensibleObject".split(), ++ 'sn': '1', ++ 'cn': 'user 1', ++ 'uid': 'user1', ++ 'mail': 'user1@example.com', ++ 'userpassword': 'password'}))) ++ except ldap.LDAPError, e: ++ log.error('test_attruniq: Failed to add test user' + USER1_DN + ': error ' + e.message['desc']) ++ assert False ++ ++ # Add an entry with a duplicate "uid" ++ try: ++ inst.add_s(Entry((USER2_DN, {'objectclass': "top extensibleObject".split(), ++ 'sn': '2', ++ 'cn': 'user 2', ++ 'uid': 'user2', ++ 'uid': 'user1', ++ 'userpassword': 'password'}))) ++ ++ except ldap.CONSTRAINT_VIOLATION: ++ pass ++ else: ++ log.error('test_attruniq: Adding of 2nd entry(uid) incorrectly succeeded') ++ assert False ++ ++ ############################################################################ ++ # Change config to use "mail" instead of "uid" ++ ############################################################################ ++ ++ try: ++ inst.modify_s('cn=' + PLUGIN_ATTR_UNIQUENESS + ',cn=plugins,cn=config', ++ [(ldap.MOD_REPLACE, 'uniqueness-attribute-name', 'mail')]) ++ ++ except ldap.LDAPError, e: ++ log.error('test_attruniq: Failed to configure plugin for "mail": error ' + e.message['desc']) ++ assert False ++ ++ ############################################################################ ++ # Test plugin - Add an entry, that has a duplicate "mail" value ++ ############################################################################ ++ ++ try: ++ inst.add_s(Entry((USER2_DN, {'objectclass': "top extensibleObject".split(), ++ 'sn': '2', ++ 'cn': 'user 2', ++ 'uid': 'user2', ++ 'mail': 'user1@example.com', ++ 'userpassword': 'password'}))) ++ except ldap.CONSTRAINT_VIOLATION: ++ pass ++ else: ++ log.error('test_attruniq: Adding of 2nd entry(mail) incorrectly succeeded') ++ assert False ++ ++ ############################################################################ ++ # Test plugin dependency ++ ############################################################################ ++ ++ test_dependency(inst, PLUGIN_ATTR_UNIQUENESS) ++ ++ ############################################################################ ++ # Cleanup ++ ############################################################################ ++ ++ try: ++ inst.delete_s(USER1_DN) ++ except ldap.LDAPError, e: ++ log.error('test_attruniq: Failed to delete test entry: ' + e.message['desc']) ++ assert False ++ ++ ############################################################################ ++ # Test passed ++ ############################################################################ ++ ++ log.info('test_attruniq: PASS\n') ++ return ++ ++ ++################################################################################ ++# ++# Test Auto Membership Plugin (2) ++# ++################################################################################ ++def test_automember(inst, args=None): ++ # stop the plugin, and start it ++ inst.plugins.disable(name=PLUGIN_AUTOMEMBER) ++ inst.plugins.enable(name=PLUGIN_AUTOMEMBER) ++ ++ if args == "restart": ++ return ++ ++ CONFIG_DN = 'cn=config,cn=' + PLUGIN_AUTOMEMBER + ',cn=plugins,cn=config' ++ ++ log.info('Testing ' + PLUGIN_AUTOMEMBER + '...') ++ ++ ############################################################################ ++ # Configure plugin ++ ############################################################################ ++ ++ # Add the automember group ++ try: ++ inst.add_s(Entry((GROUP_DN, { ++ 'objectclass': 'top extensibleObject'.split(), ++ 'cn': 'group' ++ }))) ++ except ldap.LDAPError, e: ++ log.error('test_automember: Failed to add group: error ' + e.message['desc']) ++ assert False ++ ++ # Add ou=branch1 ++ try: ++ inst.add_s(Entry((BRANCH1_DN, { ++ 'objectclass': 'top extensibleObject'.split(), ++ 'ou': 'branch1' ++ }))) ++ except ldap.LDAPError, e: ++ log.error('test_automember: Failed to add branch1: error ' + e.message['desc']) ++ assert False ++ ++ # Add ou=branch2 ++ try: ++ inst.add_s(Entry((BRANCH2_DN, { ++ 'objectclass': 'top extensibleObject'.split(), ++ 'ou': 'branch2' ++ }))) ++ except ldap.LDAPError, e: ++ log.error('test_automember: Failed to add branch2: error ' + e.message['desc']) ++ assert False ++ ++ # Add the automember config entry ++ try: ++ inst.add_s(Entry((CONFIG_DN, { ++ 'objectclass': 'top autoMemberDefinition'.split(), ++ 'cn': 'config', ++ 'autoMemberScope': 'ou=branch1,' + DEFAULT_SUFFIX, ++ 'autoMemberFilter': 'objectclass=top', ++ 'autoMemberDefaultGroup': 'cn=group,' + DEFAULT_SUFFIX, ++ 'autoMemberGroupingAttr': 'member:dn' ++ }))) ++ except ldap.LDAPError, e: ++ log.error('test_automember: Failed to add config entry: error ' + e.message['desc']) ++ assert False ++ ++ ############################################################################ ++ # Test the plugin ++ ############################################################################ ++ ++ # Add a user that should get added to the group ++ try: ++ inst.add_s(Entry((BUSER1_DN, { ++ 'objectclass': 'top extensibleObject'.split(), ++ 'uid': 'user1' ++ }))) ++ except ldap.LDAPError, e: ++ log.error('test_automember: Failed to add user: error ' + e.message['desc']) ++ assert False ++ ++ # Check the group ++ try: ++ entries = inst.search_s(GROUP_DN, ldap.SCOPE_BASE, ++ '(member=' + BUSER1_DN + ')') ++ if not entries: ++ log.fatal('test_automember: Search failed to find member user1') ++ assert False ++ except ldap.LDAPError, e: ++ log.fatal('test_automember: Search failed: ' + e.message['desc']) ++ assert False ++ ++ ############################################################################ ++ # Change config ++ ############################################################################ ++ ++ try: ++ inst.modify_s(CONFIG_DN, ++ [(ldap.MOD_REPLACE, 'autoMemberGroupingAttr', 'uniquemember:dn'), ++ (ldap.MOD_REPLACE, 'autoMemberScope', 'ou=branch2,' + DEFAULT_SUFFIX)]) ++ ++ except ldap.LDAPError, e: ++ log.error('test_automember: Failed to modify config entry: error ' + e.message['desc']) ++ assert False ++ ++ ############################################################################ ++ # Test plugin ++ ############################################################################ ++ ++ # Add a user that should get added to the group ++ try: ++ inst.add_s(Entry((BUSER2_DN, { ++ 'objectclass': 'top extensibleObject'.split(), ++ 'uid': 'user2' ++ }))) ++ except ldap.LDAPError, e: ++ log.error('test_automember: Failed to user to branch2: error ' + e.message['desc']) ++ assert False ++ ++ # Check the group ++ try: ++ entries = inst.search_s(GROUP_DN, ldap.SCOPE_BASE, ++ '(uniquemember=' + BUSER2_DN + ')') ++ if not entries: ++ log.fatal('test_automember: Search failed to find uniquemember user2') ++ assert False ++ except ldap.LDAPError, e: ++ log.fatal('test_automember: Search failed: ' + e.message['desc']) ++ assert False ++ ++ ############################################################################ ++ # Test Task ++ ############################################################################ ++ ++ # Disable plugin ++ inst.plugins.disable(name=PLUGIN_AUTOMEMBER) ++ ++ # Add an entry that should be picked up by automember - verify it is not(yet) ++ try: ++ inst.add_s(Entry((BUSER3_DN, { ++ 'objectclass': 'top extensibleObject'.split(), ++ 'uid': 'user3' ++ }))) ++ except ldap.LDAPError, e: ++ log.error('test_automember: Failed to user3 to branch2: error ' + e.message['desc']) ++ assert False ++ ++ # Check the group - uniquemember sahould not exist ++ try: ++ entries = inst.search_s(GROUP_DN, ldap.SCOPE_BASE, ++ '(uniquemember=' + BUSER3_DN + ')') ++ if entries: ++ log.fatal('test_automember: user3 was incorrectly added to the group') ++ assert False ++ except ldap.LDAPError, e: ++ log.fatal('test_automember: Search failed: ' + e.message['desc']) ++ assert False ++ ++ # Enable plugin ++ inst.plugins.enable(name=PLUGIN_AUTOMEMBER) ++ ++ # Add the task ++ try: ++ inst.add_s(Entry(('cn=task-' + str(int(time.time())) + ',cn=automember rebuild membership,cn=tasks,cn=config', { ++ 'objectclass': 'top extensibleObject'.split(), ++ 'basedn': 'ou=branch2,' + DEFAULT_SUFFIX, ++ 'filter': 'objectclass=top'}))) ++ except ldap.LDAPError, e: ++ log.error('test_automember: Failed to add task: error ' + e.message['desc']) ++ assert False ++ ++ time.sleep(3) # Wait for the task to do its work ++ ++ # Verify the fixup task worked ++ try: ++ entries = inst.search_s(GROUP_DN, ldap.SCOPE_BASE, ++ '(uniquemember=' + BUSER3_DN + ')') ++ if not entries: ++ log.fatal('test_automember: user3 was not added to the group') ++ assert False ++ except ldap.LDAPError, e: ++ log.fatal('test_automember: Search failed: ' + e.message['desc']) ++ assert False ++ ++ ############################################################################ ++ # Test plugin dependency ++ ############################################################################ ++ ++ test_dependency(inst, PLUGIN_AUTOMEMBER) ++ ++ ############################################################################ ++ # Cleanup ++ ############################################################################ ++ ++ try: ++ inst.delete_s(BUSER1_DN) ++ except ldap.LDAPError, e: ++ log.error('test_automember: Failed to delete test entry1: ' + e.message['desc']) ++ assert False ++ ++ try: ++ inst.delete_s(BUSER2_DN) ++ except ldap.LDAPError, e: ++ log.error('test_automember: Failed to delete test entry2: ' + e.message['desc']) ++ assert False ++ ++ try: ++ inst.delete_s(BUSER3_DN) ++ except ldap.LDAPError, e: ++ log.error('test_automember: Failed to delete test entry3: ' + e.message['desc']) ++ assert False ++ ++ try: ++ inst.delete_s(BRANCH1_DN) ++ except ldap.LDAPError, e: ++ log.error('test_automember: Failed to delete branch1: ' + e.message['desc']) ++ assert False ++ ++ try: ++ inst.delete_s(BRANCH2_DN) ++ except ldap.LDAPError, e: ++ log.error('test_automember: Failed to delete test branch2: ' + e.message['desc']) ++ assert False ++ ++ try: ++ inst.delete_s(GROUP_DN) ++ except ldap.LDAPError, e: ++ log.error('test_automember: Failed to delete test group: ' + e.message['desc']) ++ assert False ++ ++ try: ++ inst.delete_s(CONFIG_DN) ++ except ldap.LDAPError, e: ++ log.error('test_automember: Failed to delete plugin config entry: ' + e.message['desc']) ++ assert False ++ ++ ############################################################################ ++ # Test passed ++ ############################################################################ ++ ++ log.info('test_automember: PASS\n') ++ return ++ ++ ++################################################################################ ++# ++# Test DNA Plugin (3) ++# ++################################################################################ ++def test_dna(inst, args=None): ++ # stop the plugin, and start it ++ inst.plugins.disable(name=PLUGIN_DNA) ++ inst.plugins.enable(name=PLUGIN_DNA) ++ ++ if args == "restart": ++ return ++ ++ CONFIG_DN = 'cn=config,cn=' + PLUGIN_DNA + ',cn=plugins,cn=config' ++ ++ log.info('Testing ' + PLUGIN_DNA + '...') ++ ++ ############################################################################ ++ # Configure plugin ++ ############################################################################ ++ ++ try: ++ inst.add_s(Entry((CONFIG_DN, { ++ 'objectclass': 'top dnaPluginConfig'.split(), ++ 'cn': 'config', ++ 'dnatype': 'uidNumber', ++ 'dnafilter': '(objectclass=top)', ++ 'dnascope': DEFAULT_SUFFIX, ++ 'dnaMagicRegen': '-1', ++ 'dnaMaxValue': '50000', ++ 'dnaNextValue': '1' ++ }))) ++ except ldap.ALREADY_EXISTS: ++ try: ++ inst.modify_s(CONFIG_DN, [(ldap.MOD_REPLACE, 'dnaNextValue', '1'), ++ (ldap.MOD_REPLACE, 'dnaMagicRegen', '-1')]) ++ except ldap.LDAPError, e: ++ log.error('test_dna: Failed to set the DNA plugin: error ' + e.message['desc']) ++ assert False ++ except ldap.LDAPError, e: ++ log.error('test_dna: Failed to add config entry: error ' + e.message['desc']) ++ assert False ++ ++ ############################################################################ ++ # Test plugin ++ ############################################################################ ++ ++ try: ++ inst.add_s(Entry((USER1_DN, { ++ 'objectclass': 'top extensibleObject'.split(), ++ 'uid': 'user1' ++ }))) ++ except ldap.LDAPError, e: ++ log.error('test_dna: Failed to user1: error ' + e.message['desc']) ++ assert False ++ ++ # See if the entry now has the new uidNumber assignment - uidNumber=1 ++ try: ++ entries = inst.search_s(USER1_DN, ldap.SCOPE_BASE, '(uidNumber=1)') ++ if not entries: ++ log.fatal('test_dna: user1 was not updated - (looking for uidNumber: 1)') ++ assert False ++ except ldap.LDAPError, e: ++ log.fatal('test_dna: Search for user1 failed: ' + e.message['desc']) ++ assert False ++ ++ # Test the magic regen value ++ try: ++ inst.modify_s(USER1_DN, [(ldap.MOD_REPLACE, 'uidNumber', '-1')]) ++ except ldap.LDAPError, e: ++ log.error('test_dna: Failed to set the magic reg value: error ' + e.message['desc']) ++ assert False ++ ++ # See if the entry now has the new uidNumber assignment - uidNumber=2 ++ try: ++ entries = inst.search_s(USER1_DN, ldap.SCOPE_BASE, '(uidNumber=2)') ++ if not entries: ++ log.fatal('test_dna: user1 was not updated (looking for uidNumber: 2)') ++ assert False ++ except ldap.LDAPError, e: ++ log.fatal('test_dna: Search for user1 failed: ' + e.message['desc']) ++ assert False ++ ++ ################################################################################ ++ # Change the config ++ ################################################################################ ++ ++ try: ++ inst.modify_s(CONFIG_DN, [(ldap.MOD_REPLACE, 'dnaMagicRegen', '-2')]) ++ except ldap.LDAPError, e: ++ log.error('test_dna: Failed to set the magic reg value to -2: error ' + e.message['desc']) ++ assert False ++ ++ ################################################################################ ++ # Test plugin ++ ################################################################################ ++ ++ # Test the magic regen value ++ try: ++ inst.modify_s(USER1_DN, [(ldap.MOD_REPLACE, 'uidNumber', '-2')]) ++ except ldap.LDAPError, e: ++ log.error('test_dna: Failed to set the magic reg value: error ' + e.message['desc']) ++ assert False ++ ++ # See if the entry now has the new uidNumber assignment - uidNumber=3 ++ try: ++ entries = inst.search_s(USER1_DN, ldap.SCOPE_BASE, '(uidNumber=3)') ++ if not entries: ++ log.fatal('test_dna: user1 was not updated (looking for uidNumber: 3)') ++ assert False ++ except ldap.LDAPError, e: ++ log.fatal('test_dna: Search for user1 failed: ' + e.message['desc']) ++ assert False ++ ++ ############################################################################ ++ # Test plugin dependency ++ ############################################################################ ++ ++ test_dependency(inst, PLUGIN_AUTOMEMBER) ++ ++ ############################################################################ ++ # Cleanup ++ ############################################################################ ++ ++ try: ++ inst.delete_s(USER1_DN) ++ except ldap.LDAPError, e: ++ log.error('test_automember: Failed to delete test entry1: ' + e.message['desc']) ++ assert False ++ ++ inst.plugins.disable(name=PLUGIN_DNA) ++ ++ ############################################################################ ++ # Test passed ++ ############################################################################ ++ ++ log.info('test_dna: PASS\n') ++ ++ return ++ ++ ++################################################################################ ++# ++# Test Linked Attrs Plugin (4) ++# ++################################################################################ ++def test_linkedattrs(inst, args=None): ++ # stop the plugin, and start it ++ inst.plugins.disable(name=PLUGIN_LINKED_ATTRS) ++ inst.plugins.enable(name=PLUGIN_LINKED_ATTRS) ++ ++ if args == "restart": ++ return ++ ++ CONFIG_DN = 'cn=config,cn=' + PLUGIN_LINKED_ATTRS + ',cn=plugins,cn=config' ++ ++ log.info('Testing ' + PLUGIN_LINKED_ATTRS + '...') ++ ++ ############################################################################ ++ # Configure plugin ++ ############################################################################ ++ ++ # Add test entries ++ try: ++ inst.add_s(Entry((USER1_DN, { ++ 'objectclass': 'top extensibleObject'.split(), ++ 'uid': 'user1' ++ }))) ++ except ldap.LDAPError, e: ++ log.error('test_linkedattrs: Failed to user1: error ' + e.message['desc']) ++ assert False ++ ++ try: ++ inst.add_s(Entry((USER2_DN, { ++ 'objectclass': 'top extensibleObject'.split(), ++ 'uid': 'user2' ++ }))) ++ except ldap.LDAPError, e: ++ log.error('test_linkedattrs: Failed to user1: error ' + e.message['desc']) ++ assert False ++ ++ # Add the linked attrs config entry ++ try: ++ inst.add_s(Entry((CONFIG_DN, { ++ 'objectclass': 'top extensibleObject'.split(), ++ 'cn': 'config', ++ 'linkType': 'directReport', ++ 'managedType': 'manager' ++ }))) ++ except ldap.LDAPError, e: ++ log.error('test_linkedattrs: Failed to add config entry: error ' + e.message['desc']) ++ assert False ++ ++ ############################################################################ ++ # Test plugin ++ ############################################################################ ++ ++ # Set "directReport" should add "manager" to the other entry ++ try: ++ inst.modify_s(USER1_DN, [(ldap.MOD_REPLACE, 'directReport', USER2_DN)]) ++ except ldap.LDAPError, e: ++ log.error('test_linkedattrs: Failed to add "directReport" to user1: error ' + e.message['desc']) ++ assert False ++ ++ # See if manager was added to the other entry ++ try: ++ entries = inst.search_s(USER2_DN, ldap.SCOPE_BASE, '(manager=*)') ++ if not entries: ++ log.fatal('test_linkedattrs: user2 missing "manager" attribute') ++ assert False ++ except ldap.LDAPError, e: ++ log.fatal('test_linkedattrs: Search for user1 failed: ' + e.message['desc']) ++ assert False ++ ++ # Remove "directReport" should remove "manager" to the other entry ++ try: ++ inst.modify_s(USER1_DN, [(ldap.MOD_DELETE, 'directReport', None)]) ++ except ldap.LDAPError, e: ++ log.error('test_linkedattrs: Failed to delete directReport: error ' + e.message['desc']) ++ assert False ++ ++ # See if manager was removed ++ try: ++ entries = inst.search_s(USER2_DN, ldap.SCOPE_BASE, '(manager=*)') ++ if entries: ++ log.fatal('test_linkedattrs: user2 "manager" attribute not removed') ++ assert False ++ except ldap.LDAPError, e: ++ log.fatal('test_linkedattrs: Search for user1 failed: ' + e.message['desc']) ++ assert False ++ ++ ############################################################################ ++ # Change the config - using linkType "indirectReport" now ++ ############################################################################ ++ ++ try: ++ inst.modify_s(CONFIG_DN, [(ldap.MOD_REPLACE, 'linkType', 'indirectReport')]) ++ except ldap.LDAPError, e: ++ log.error('test_linkedattrs: Failed to set linkTypee: error ' + e.message['desc']) ++ assert False ++ ++ ############################################################################ ++ # Test plugin ++ ############################################################################ ++ ++ # Make sure the old linkType(directManager) is not working ++ try: ++ inst.modify_s(USER1_DN, [(ldap.MOD_REPLACE, 'directReport', USER2_DN)]) ++ except ldap.LDAPError, e: ++ log.error('test_linkedattrs: Failed to add "directReport" to user1: error ' + e.message['desc']) ++ assert False ++ ++ # See if manager was added to the other entry, better not be... ++ try: ++ entries = inst.search_s(USER2_DN, ldap.SCOPE_BASE, '(manager=*)') ++ if entries: ++ log.fatal('test_linkedattrs: user2 had "manager" added unexpectedly') ++ assert False ++ except ldap.LDAPError, e: ++ log.fatal('test_linkedattrs: Search for user2 failed: ' + e.message['desc']) ++ assert False ++ ++ # Now, set the new linkType "indirectReport", which should add "manager" to the other entry ++ try: ++ inst.modify_s(USER1_DN, [(ldap.MOD_REPLACE, 'indirectReport', USER2_DN)]) ++ except ldap.LDAPError, e: ++ log.error('test_linkedattrs: Failed to add "indirectReport" to user1: error ' + e.message['desc']) ++ assert False ++ ++ # See if manager was added to the other entry, better not be ++ try: ++ entries = inst.search_s(USER2_DN, ldap.SCOPE_BASE, '(manager=*)') ++ if not entries: ++ log.fatal('test_linkedattrs: user2 missing "manager"') ++ assert False ++ except ldap.LDAPError, e: ++ log.fatal('test_linkedattrs: Search for user2 failed: ' + e.message['desc']) ++ assert False ++ ++ # Remove "indirectReport" should remove "manager" to the other entry ++ try: ++ inst.modify_s(USER1_DN, [(ldap.MOD_DELETE, 'indirectReport', None)]) ++ except ldap.LDAPError, e: ++ log.error('test_linkedattrs: Failed to delete directReport: error ' + e.message['desc']) ++ assert False ++ ++ # See if manager was removed ++ try: ++ entries = inst.search_s(USER2_DN, ldap.SCOPE_BASE, '(manager=*)') ++ if entries: ++ log.fatal('test_linkedattrs: user2 "manager" attribute not removed') ++ assert False ++ except ldap.LDAPError, e: ++ log.fatal('test_linkedattrs: Search for user1 failed: ' + e.message['desc']) ++ assert False ++ ++ ############################################################################ ++ # Test Fixup Task ++ ############################################################################ ++ ++ # Disable plugin and make some updates that would of triggered the plugin ++ inst.plugins.disable(name=PLUGIN_LINKED_ATTRS) ++ ++ try: ++ inst.modify_s(USER1_DN, [(ldap.MOD_REPLACE, 'indirectReport', USER2_DN)]) ++ except ldap.LDAPError, e: ++ log.error('test_linkedattrs: Failed to add "indirectReport" to user1: error ' + e.message['desc']) ++ assert False ++ ++ # The entry should not have a manager attribute ++ try: ++ entries = inst.search_s(USER2_DN, ldap.SCOPE_BASE, '(manager=*)') ++ if entries: ++ log.fatal('test_linkedattrs: user2 incorrectly has a "manager" attr') ++ assert False ++ except ldap.LDAPError, e: ++ log.fatal('test_linkedattrs: Search for user1 failed: ' + e.message['desc']) ++ assert False ++ ++ # Verify that the task does not work yet(not until we enable the plugin) ++ try: ++ inst.add_s(Entry(('cn=task-' + str(int(time.time())) + ',cn=fixup linked attributes,cn=tasks,cn=config', { ++ 'objectclass': 'top extensibleObject'.split(), ++ 'basedn': DEFAULT_SUFFIX, ++ 'filter': '(objectclass=top)'}))) ++ except ldap.LDAPError, e: ++ log.error('test_linkedattrs: Failed to add task: error ' + e.message['desc']) ++ assert False ++ ++ time.sleep(3) # Wait for the task to do, or not do, its work ++ ++ # The entry should still not have a manager attribute ++ try: ++ entries = inst.search_s(USER2_DN, ldap.SCOPE_BASE, '(manager=*)') ++ if entries: ++ log.fatal('test_linkedattrs: user2 incorrectly has a "manager" attr') ++ assert False ++ except ldap.LDAPError, e: ++ log.fatal('test_linkedattrs: Search for user2 failed: ' + e.message['desc']) ++ assert False ++ ++ # Enable the plugin and rerun the task entry ++ inst.plugins.enable(name=PLUGIN_LINKED_ATTRS) ++ ++ # Add the task again ++ try: ++ inst.add_s(Entry(('cn=task-' + str(int(time.time())) + ',cn=fixup linked attributes,cn=tasks,cn=config', { ++ 'objectclass': 'top extensibleObject'.split(), ++ 'basedn': DEFAULT_SUFFIX, ++ 'filter': 'objectclass=top'}))) ++ except ldap.LDAPError, e: ++ log.error('test_linkedattrs: Failed to add task: error ' + e.message['desc']) ++ assert False ++ ++ time.sleep(3) # Wait for the task to do its work ++ ++ # Check if user2 now has a manager attribute now ++ try: ++ entries = inst.search_s(USER2_DN, ldap.SCOPE_BASE, '(manager=*)') ++ if not entries: ++ log.fatal('test_linkedattrs: task failed: user2 missing "manager" attr') ++ assert False ++ except ldap.LDAPError, e: ++ log.fatal('test_linkedattrs: Search for user1 failed: ' + e.message['desc']) ++ assert False ++ ++ ############################################################################ ++ # Test plugin dependency ++ ############################################################################ ++ ++ test_dependency(inst, PLUGIN_LINKED_ATTRS) ++ ++ ############################################################################ ++ # Cleanup ++ ############################################################################ ++ ++ try: ++ inst.delete_s(USER1_DN) ++ except ldap.LDAPError, e: ++ log.error('test_linkedattrs: Failed to delete test entry1: ' + e.message['desc']) ++ assert False ++ ++ try: ++ inst.delete_s(USER2_DN) ++ except ldap.LDAPError, e: ++ log.error('test_linkedattrs: Failed to delete test entry2: ' + e.message['desc']) ++ assert False ++ ++ try: ++ inst.delete_s(CONFIG_DN) ++ except ldap.LDAPError, e: ++ log.error('test_linkedattrs: Failed to delete plugin config entry: ' + e.message['desc']) ++ assert False ++ ++ ############################################################################ ++ # Test passed ++ ############################################################################ ++ ++ log.info('test_linkedattrs: PASS\n') ++ return ++ ++ ++################################################################################ ++# ++# Test MemberOf Plugin (5) ++# ++################################################################################ ++def test_memberof(inst, args=None): ++ # stop the plugin, and start it ++ inst.plugins.disable(name=PLUGIN_MEMBER_OF) ++ inst.plugins.enable(name=PLUGIN_MEMBER_OF) ++ ++ if args == "restart": ++ return ++ ++ PLUGIN_DN = 'cn=' + PLUGIN_MEMBER_OF + ',cn=plugins,cn=config' ++ ++ log.info('Testing ' + PLUGIN_MEMBER_OF + '...') ++ ++ ############################################################################ ++ # Configure plugin ++ ############################################################################ ++ ++ try: ++ inst.modify_s(PLUGIN_DN, [(ldap.MOD_REPLACE, 'memberofgroupattr', 'member')]) ++ except ldap.LDAPError, e: ++ log.error('test_memberof: Failed to update config(member): error ' + e.message['desc']) ++ assert False ++ ++ ############################################################################ ++ # Test plugin ++ ############################################################################ ++ ++ # Add our test entries ++ try: ++ inst.add_s(Entry((USER1_DN, { ++ 'objectclass': 'top extensibleObject'.split(), ++ 'uid': 'user1' ++ }))) ++ except ldap.LDAPError, e: ++ log.error('test_memberof: Failed to add user1: error ' + e.message['desc']) ++ assert False ++ ++ try: ++ inst.add_s(Entry((GROUP_DN, { ++ 'objectclass': 'top groupOfNames groupOfUniqueNames extensibleObject'.split(), ++ 'cn': 'group', ++ 'member': USER1_DN ++ }))) ++ except ldap.LDAPError, e: ++ log.error('test_memberof: Failed to add group: error ' + e.message['desc']) ++ assert False ++ ++ # Check if the user now has a "memberOf" attribute ++ try: ++ entries = inst.search_s(USER1_DN, ldap.SCOPE_BASE, '(memberOf=*)') ++ if not entries: ++ log.fatal('test_memberof: user1 missing memberOf') ++ assert False ++ except ldap.LDAPError, e: ++ log.fatal('test_memberof: Search for user1 failed: ' + e.message['desc']) ++ assert False ++ ++ # Remove "member" should remove "memberOf" from the entry ++ try: ++ inst.modify_s(GROUP_DN, [(ldap.MOD_DELETE, 'member', None)]) ++ except ldap.LDAPError, e: ++ log.error('test_memberof: Failed to delete member: error ' + e.message['desc']) ++ assert False ++ ++ # Check that "memberOf" was removed ++ try: ++ entries = inst.search_s(USER1_DN, ldap.SCOPE_BASE, '(memberOf=*)') ++ if entries: ++ log.fatal('test_memberof: user1 incorrect has memberOf attr') ++ assert False ++ except ldap.LDAPError, e: ++ log.fatal('test_memberof: Search for user1 failed: ' + e.message['desc']) ++ assert False ++ ++ ############################################################################ ++ # Change the config ++ ############################################################################ ++ ++ try: ++ inst.modify_s(PLUGIN_DN, [(ldap.MOD_REPLACE, 'memberofgroupattr', 'uniquemember')]) ++ except ldap.LDAPError, e: ++ log.error('test_memberof: Failed to update config(uniquemember): error ' + e.message['desc']) ++ assert False ++ ++ ############################################################################ ++ # Test plugin ++ ############################################################################ ++ ++ try: ++ inst.modify_s(GROUP_DN, [(ldap.MOD_REPLACE, 'uniquemember', USER1_DN)]) ++ except ldap.LDAPError, e: ++ log.error('test_memberof: Failed to add uniquemember: error ' + e.message['desc']) ++ assert False ++ ++ # Check if the user now has a "memberOf" attribute ++ try: ++ entries = inst.search_s(USER1_DN, ldap.SCOPE_BASE, '(memberOf=*)') ++ if not entries: ++ log.fatal('test_memberof: user1 missing memberOf') ++ assert False ++ except ldap.LDAPError, e: ++ log.fatal('test_memberof: Search for user1 failed: ' + e.message['desc']) ++ assert False ++ ++ # Remove "uniquemember" should remove "memberOf" from the entry ++ try: ++ inst.modify_s(GROUP_DN, [(ldap.MOD_DELETE, 'uniquemember', None)]) ++ except ldap.LDAPError, e: ++ log.error('test_memberof: Failed to delete member: error ' + e.message['desc']) ++ assert False ++ ++ # Check that "memberOf" was removed ++ try: ++ entries = inst.search_s(USER1_DN, ldap.SCOPE_BASE, '(memberOf=*)') ++ if entries: ++ log.fatal('test_memberof: user1 incorrect has memberOf attr') ++ assert False ++ except ldap.LDAPError, e: ++ log.fatal('test_memberof: Search for user1 failed: ' + e.message['desc']) ++ assert False ++ ++ ############################################################################ ++ # Test Fixup Task ++ ############################################################################ ++ ++ inst.plugins.disable(name=PLUGIN_MEMBER_OF) ++ ++ # Add uniquemember, should not update USER1 ++ try: ++ inst.modify_s(GROUP_DN, [(ldap.MOD_REPLACE, 'uniquemember', USER1_DN)]) ++ except ldap.LDAPError, e: ++ log.error('test_memberof: Failed to add uniquemember: error ' + e.message['desc']) ++ assert False ++ ++ # Check for "memberOf" ++ try: ++ entries = inst.search_s(USER1_DN, ldap.SCOPE_BASE, '(memberOf=*)') ++ if entries: ++ log.fatal('test_memberof: user1 incorrect has memberOf attr') ++ assert False ++ except ldap.LDAPError, e: ++ log.fatal('test_memberof: Search for user1 failed: ' + e.message['desc']) ++ assert False ++ ++ # Run fixup task while plugin disabled - should not add "memberOf ++ # Verify that the task does not work yet(not until we enable the plugin) ++ try: ++ inst.add_s(Entry(('cn=task-' + str(int(time.time())) + ',' + DN_MBO_TASK, { ++ 'objectclass': 'top extensibleObject'.split(), ++ 'basedn': DEFAULT_SUFFIX, ++ 'filter': 'objectclass=top'}))) ++ except ldap.NO_SUCH_OBJECT: ++ pass ++ except ldap.LDAPError, e: ++ log.error('test_memberof: Failed to add task: error ' + e.message['desc']) ++ assert False ++ ++ time.sleep(3) # Wait for the task to do, or not do, its work ++ ++ # Check for "memberOf" ++ try: ++ entries = inst.search_s(USER1_DN, ldap.SCOPE_BASE, '(memberOf=*)') ++ if entries: ++ log.fatal('test_memberof: user1 incorrectly has memberOf attr') ++ assert False ++ except ldap.LDAPError, e: ++ log.fatal('test_memberof: Search for user1 failed: ' + e.message['desc']) ++ assert False ++ ++ # Enable the plugin, and run the task ++ inst.plugins.enable(name=PLUGIN_MEMBER_OF) ++ ++ try: ++ inst.add_s(Entry(('cn=task-' + str(int(time.time())) + ',' + DN_MBO_TASK, { ++ 'objectclass': 'top extensibleObject'.split(), ++ 'basedn': DEFAULT_SUFFIX, ++ 'filter': 'objectclass=top'}))) ++ except ldap.LDAPError, e: ++ log.error('test_memberof: Failed to add task: error ' + e.message['desc']) ++ assert False ++ ++ time.sleep(3) # Wait for the task to do its work ++ ++ # Check for "memberOf" ++ try: ++ entries = inst.search_s(USER1_DN, ldap.SCOPE_BASE, '(memberOf=*)') ++ if not entries: ++ log.fatal('test_memberof: user1 missing memberOf attr') ++ assert False ++ except ldap.LDAPError, e: ++ log.fatal('test_memberof: Search for user1 failed: ' + e.message['desc']) ++ assert False ++ ++ ############################################################################ ++ # Test plugin dependency ++ ############################################################################ ++ ++ test_dependency(inst, PLUGIN_MEMBER_OF) ++ ++ ############################################################################ ++ # Cleanup ++ ############################################################################ ++ ++ try: ++ inst.delete_s(USER1_DN) ++ except ldap.LDAPError, e: ++ log.error('test_memberof: Failed to delete test entry1: ' + e.message['desc']) ++ assert False ++ ++ try: ++ inst.delete_s(GROUP_DN) ++ except ldap.LDAPError, e: ++ log.error('test_memberof: Failed to delete test group: ' + e.message['desc']) ++ assert False ++ ++ ############################################################################ ++ # Test passed ++ ############################################################################ ++ ++ log.info('test_memberof: PASS\n') ++ ++ return ++ ++ ++################################################################################ ++# ++# Test Managed Entry Plugin (6) ++# ++################################################################################ ++def test_mep(inst, args=None): ++ # stop the plugin, and start it ++ inst.plugins.disable(name=PLUGIN_MANAGED_ENTRY) ++ inst.plugins.enable(name=PLUGIN_MANAGED_ENTRY) ++ ++ if args == "restart": ++ return ++ ++ USER_DN = 'uid=user1,ou=people,' + DEFAULT_SUFFIX ++ MEP_USER_DN = 'cn=user1,ou=groups,' + DEFAULT_SUFFIX ++ USER_DN2 = 'uid=user 1,ou=people,' + DEFAULT_SUFFIX ++ MEP_USER_DN2 = 'uid=user 1,ou=groups,' + DEFAULT_SUFFIX ++ CONFIG_DN = 'cn=config,cn=' + PLUGIN_MANAGED_ENTRY + ',cn=plugins,cn=config' ++ TEMPLATE_DN = 'cn=MEP Template,' + DEFAULT_SUFFIX ++ TEMPLATE_DN2 = 'cn=MEP Template2,' + DEFAULT_SUFFIX ++ ++ log.info('Testing ' + PLUGIN_MANAGED_ENTRY + '...') ++ ++ ############################################################################ ++ # Configure plugin ++ ############################################################################ ++ ++ # Add our org units ++ try: ++ inst.add_s(Entry((PEOPLE_OU, { ++ 'objectclass': 'top extensibleObject'.split(), ++ 'ou': 'people'}))) ++ except ldap.ALREADY_EXISTS: ++ pass ++ except ldap.LDAPError, e: ++ log.error('test_mep: Failed to add people org unit: error ' + e.message['desc']) ++ assert False ++ ++ try: ++ inst.add_s(Entry((GROUP_OU, { ++ 'objectclass': 'top extensibleObject'.split(), ++ 'ou': 'people'}))) ++ except ldap.ALREADY_EXISTS: ++ pass ++ except ldap.LDAPError, e: ++ log.error('test_mep: Failed to add people org unit: error ' + e.message['desc']) ++ assert False ++ ++ # Add the template entry ++ try: ++ inst.add_s(Entry((TEMPLATE_DN, { ++ 'objectclass': 'top mepTemplateEntry extensibleObject'.split(), ++ 'cn': 'MEP Template', ++ 'mepRDNAttr': 'cn', ++ 'mepStaticAttr': 'objectclass: posixGroup|objectclass: extensibleObject'.split('|'), ++ 'mepMappedAttr': 'cn: $cn|uid: $cn|gidNumber: $uidNumber'.split('|') ++ }))) ++ except ldap.LDAPError, e: ++ log.error('test_mep: Failed to add template entry: error ' + e.message['desc']) ++ assert False ++ ++ # log.info('geb.....') ++ # time.sleep(30) ++ ++ # Add the config entry ++ try: ++ inst.add_s(Entry((CONFIG_DN, { ++ 'objectclass': 'top extensibleObject'.split(), ++ 'cn': 'config', ++ 'originScope': PEOPLE_OU, ++ 'originFilter': 'objectclass=posixAccount', ++ 'managedBase': GROUP_OU, ++ 'managedTemplate': TEMPLATE_DN ++ }))) ++ except ldap.LDAPError, e: ++ log.error('test_mep: Failed to add config entry: error ' + e.message['desc']) ++ assert False ++ ++ ############################################################################ ++ # Test plugin ++ ############################################################################ ++ ++ # Add an entry that meets the MEP scope ++ try: ++ inst.add_s(Entry((USER_DN, { ++ 'objectclass': 'top posixAccount extensibleObject'.split(), ++ 'uid': 'user1', ++ 'cn': 'user1', ++ 'uidNumber': '1', ++ 'gidNumber': '1', ++ 'homeDirectory': '/home/user1' ++ }))) ++ except ldap.LDAPError, e: ++ log.error('test_mep: Failed to user1: error ' + e.message['desc']) ++ assert False ++ ++ # Check if a managed group entry was created ++ try: ++ inst.search_s(MEP_USER_DN, ldap.SCOPE_BASE, '(objectclass=top)') ++ except ldap.LDAPError, e: ++ log.fatal('test_mep: Unable to find MEP entry: ' + e.message['desc']) ++ assert False ++ ++ ############################################################################ ++ # Change the config ++ ############################################################################ ++ ++ # Add a new template entry ++ try: ++ inst.add_s(Entry((TEMPLATE_DN2, { ++ 'objectclass': 'top mepTemplateEntry extensibleObject'.split(), ++ 'cn': 'MEP Template2', ++ 'mepRDNAttr': 'uid', ++ 'mepStaticAttr': 'objectclass: posixGroup|objectclass: extensibleObject'.split('|'), ++ 'mepMappedAttr': 'cn: $uid|uid: $cn|gidNumber: $gidNumber'.split('|') ++ }))) ++ except ldap.LDAPError, e: ++ log.error('test_mep: Failed to add template entry2: error ' + e.message['desc']) ++ assert False ++ ++ # Set the new template dn ++ try: ++ inst.modify_s(CONFIG_DN, [(ldap.MOD_REPLACE, 'managedTemplate', TEMPLATE_DN2)]) ++ except ldap.LDAPError, e: ++ log.error('test_mep: Failed to set mep plugin config: error ' + e.message['desc']) ++ assert False ++ ++ ############################################################################ ++ # Test plugin ++ ############################################################################ ++ ++ # Add an entry that meets the MEP scope ++ try: ++ inst.add_s(Entry((USER_DN2, { ++ 'objectclass': 'top posixAccount extensibleObject'.split(), ++ 'uid': 'user 1', ++ 'cn': 'user 1', ++ 'uidNumber': '1', ++ 'gidNumber': '1', ++ 'homeDirectory': '/home/user2' ++ }))) ++ except ldap.LDAPError, e: ++ log.error('test_mep: Failed to user2: error ' + e.message['desc']) ++ assert False ++ ++ # Check if a managed group entry was created ++ try: ++ inst.search_s(MEP_USER_DN2, ldap.SCOPE_BASE, '(objectclass=top)') ++ except ldap.LDAPError, e: ++ log.fatal('test_mep: Unable to find MEP entry2: ' + e.message['desc']) ++ assert False ++ ++ ############################################################################ ++ # Test plugin dependency ++ ############################################################################ ++ ++ test_dependency(inst, PLUGIN_MANAGED_ENTRY) ++ ++ ############################################################################ ++ # Cleanup ++ ############################################################################ ++ ++ try: ++ inst.delete_s(USER_DN) ++ except ldap.LDAPError, e: ++ log.error('test_mep: Failed to delete test user1: ' + e.message['desc']) ++ assert False ++ ++ try: ++ inst.delete_s(USER_DN2) ++ except ldap.LDAPError, e: ++ log.error('test_mep: Failed to delete test user 2: ' + e.message['desc']) ++ assert False ++ ++ try: ++ inst.delete_s(TEMPLATE_DN) ++ except ldap.LDAPError, e: ++ log.error('test_mep: Failed to delete template1: ' + e.message['desc']) ++ assert False ++ ++ inst.plugins.disable(name=PLUGIN_MANAGED_ENTRY) ++ ++ try: ++ inst.delete_s(TEMPLATE_DN2) ++ except ldap.LDAPError, e: ++ log.error('test_mep: Failed to delete template2: ' + e.message['desc']) ++ assert False ++ ++ try: ++ inst.delete_s(CONFIG_DN) ++ except ldap.LDAPError, e: ++ log.error('test_mep: Failed to delete config: ' + e.message['desc']) ++ assert False ++ ++ ############################################################################ ++ # Test passed ++ ############################################################################ ++ ++ log.info('test_mep: PASS\n') ++ return ++ ++ ++################################################################################ ++# ++# Test Passthru Plugin (7) ++# ++################################################################################ ++def test_passthru(inst, args=None): ++ # Passthru is a bit picky about the state of the entry - we can't just restart it ++ if args == "restart": ++ return ++ ++ # stop the plugin ++ inst.plugins.disable(name=PLUGIN_PASSTHRU) ++ ++ PLUGIN_DN = 'cn=' + PLUGIN_PASSTHRU + ',cn=plugins,cn=config' ++ PASSTHRU_DN = 'uid=admin,dc=pass,dc=thru' ++ PASSTHRU_DN2 = 'uid=admin2,dc=pass2,dc=thru' ++ PASS_SUFFIX1 = 'dc=pass,dc=thru' ++ PASS_SUFFIX2 = 'dc=pass2,dc=thru' ++ PASS_BE2 = 'PASS2' ++ ++ log.info('Testing ' + PLUGIN_PASSTHRU + '...') ++ ++ ############################################################################ ++ # Add a new "remote" instance, and a user for auth ++ ############################################################################ ++ ++ # Create second instance ++ passthru_inst = DirSrv(verbose=False) ++ ++ #if installation1_prefix: ++ # args_instance[SER_DEPLOYED_DIR] = installation1_prefix ++ ++ # Args for the master1 instance ++ """ ++ args_instance[SER_HOST] = '127.0.0.1' ++ args_instance[SER_PORT] = '33333' ++ args_instance[SER_SERVERID_PROP] = 'passthru' ++ """ ++ args_instance[SER_HOST] = 'localhost.localdomain' ++ args_instance[SER_PORT] = 33333 ++ args_instance[SER_SERVERID_PROP] = 'passthru' ++ ++ args_instance[SER_CREATION_SUFFIX] = PASS_SUFFIX1 ++ args_passthru_inst = args_instance.copy() ++ passthru_inst.allocate(args_passthru_inst) ++ passthru_inst.create() ++ passthru_inst.open() ++ ++ # Create a second backend ++ passthru_inst.backend.create(PASS_SUFFIX2, {BACKEND_NAME: PASS_BE2}) ++ passthru_inst.mappingtree.create(PASS_SUFFIX2, bename=PASS_BE2) ++ ++ # Create the top of the tree ++ try: ++ passthru_inst.add_s(Entry((PASS_SUFFIX2, { ++ 'objectclass': 'top domain'.split(), ++ 'dc': 'pass2'}))) ++ except ldap.ALREADY_EXISTS: ++ pass ++ except ldap.LDAPError, e: ++ log.error('test_passthru: Failed to create suffix entry: error ' + e.message['desc']) ++ passthru_inst.delete() ++ assert False ++ ++ # Add user to suffix1 ++ try: ++ passthru_inst.add_s(Entry((PASSTHRU_DN, { ++ 'objectclass': 'top extensibleObject'.split(), ++ 'uid': 'admin', ++ 'userpassword': 'password' ++ }))) ++ except ldap.LDAPError, e: ++ log.error('test_passthru: Failed to admin1: error ' + e.message['desc']) ++ passthru_inst.delete() ++ assert False ++ ++ # Add user to suffix 2 ++ try: ++ passthru_inst.add_s(Entry((PASSTHRU_DN2, { ++ 'objectclass': 'top extensibleObject'.split(), ++ 'uid': 'admin2', ++ 'userpassword': 'password' ++ }))) ++ except ldap.LDAPError, e: ++ log.error('test_passthru: Failed to admin2 : error ' + e.message['desc']) ++ passthru_inst.delete() ++ assert False ++ ++ ############################################################################ ++ # Configure and start plugin ++ ############################################################################ ++ ++ try: ++ inst.modify_s(PLUGIN_DN, [(ldap.MOD_REPLACE, 'nsslapd-pluginenabled', 'on'), ++ (ldap.MOD_REPLACE, 'nsslapd-pluginarg0', 'ldap://127.0.0.1:33333/dc=pass,dc=thru')]) ++ except ldap.LDAPError, e: ++ log.error('test_passthru: Failed to set mep plugin config: error ' + e.message['desc']) ++ passthru_inst.delete() ++ assert False ++ ++ ############################################################################ ++ # Test plugin ++ ############################################################################ ++ ++ # login as user ++ try: ++ inst.simple_bind_s(PASSTHRU_DN, "password") ++ except ldap.LDAPError, e: ++ log.error('test_passthru: pass through bind failed: ' + e.message['desc']) ++ passthru_inst.delete() ++ assert False ++ ++ ############################################################################ ++ # Change the config ++ ############################################################################ ++ ++ # login as root DN ++ try: ++ inst.simple_bind_s(DN_DM, PASSWORD) ++ except ldap.LDAPError, e: ++ log.error('test_passthru: pass through bind failed: ' + e.message['desc']) ++ passthru_inst.delete() ++ assert False ++ ++ try: ++ inst.modify_s(PLUGIN_DN, [(ldap.MOD_REPLACE, 'nsslapd-pluginarg0', 'ldap://127.0.0.1:33333/dc=pass2,dc=thru')]) ++ except ldap.LDAPError, e: ++ log.error('test_passthru: Failed to set mep plugin config: error ' + e.message['desc']) ++ passthru_inst.delete() ++ assert False ++ ++ ############################################################################ ++ # Test plugin ++ ############################################################################ ++ ++ # login as user ++ try: ++ inst.simple_bind_s(PASSTHRU_DN2, "password") ++ except ldap.LDAPError, e: ++ log.error('test_passthru: pass through bind failed: ' + e.message['desc']) ++ passthru_inst.delete() ++ assert False ++ ++ # login as root DN ++ try: ++ inst.simple_bind_s(DN_DM, PASSWORD) ++ except ldap.LDAPError, e: ++ log.error('test_passthru: pass through bind failed: ' + e.message['desc']) ++ passthru_inst.delete() ++ assert False ++ ++ ############################################################################ ++ # Test plugin dependency ++ ############################################################################ ++ ++ test_dependency(inst, PLUGIN_PASSTHRU) ++ ++ ############################################################################ ++ # Cleanup ++ ############################################################################ ++ ++ # remove the passthru instance ++ passthru_inst.delete() ++ ++ ############################################################################ ++ # Test passed ++ ############################################################################ ++ ++ log.info('test_passthru: PASS\n') ++ ++ return ++ ++ ++################################################################################ ++# ++# Test Referential Integrity Plugin (8) ++# ++################################################################################ ++def test_referint(inst, args=None): ++ # stop the plugin, and start it ++ inst.plugins.disable(name=PLUGIN_REFER_INTEGRITY) ++ inst.plugins.enable(name=PLUGIN_REFER_INTEGRITY) ++ ++ if args == "restart": ++ return ++ ++ log.info('Testing ' + PLUGIN_REFER_INTEGRITY + '...') ++ PLUGIN_DN = 'cn=' + PLUGIN_REFER_INTEGRITY + ',cn=plugins,cn=config' ++ ++ ############################################################################ ++ # Configure plugin ++ ############################################################################ ++ ++ try: ++ inst.modify_s(PLUGIN_DN, [(ldap.MOD_REPLACE, 'referint-membership-attr', 'member')]) ++ except ldap.LDAPError, e: ++ log.error('test_referint: Failed to configure RI plugin: error ' + e.message['desc']) ++ assert False ++ ++ ############################################################################ ++ # Test plugin ++ ############################################################################ ++ ++ # Add some users and a group ++ try: ++ inst.add_s(Entry((USER1_DN, { ++ 'objectclass': 'top extensibleObject'.split(), ++ 'uid': 'user1' ++ }))) ++ except ldap.LDAPError, e: ++ log.error('test_referint: Failed to add user1: error ' + e.message['desc']) ++ assert False ++ ++ try: ++ inst.add_s(Entry((USER2_DN, { ++ 'objectclass': 'top extensibleObject'.split(), ++ 'uid': 'user2' ++ }))) ++ except ldap.LDAPError, e: ++ log.error('test_referint: Failed to add user2: error ' + e.message['desc']) ++ assert False ++ ++ try: ++ inst.add_s(Entry((GROUP_DN, { ++ 'objectclass': 'top extensibleObject'.split(), ++ 'cn': 'group', ++ 'member': USER1_DN, ++ 'uniquemember': USER2_DN ++ }))) ++ except ldap.LDAPError, e: ++ log.error('test_referint: Failed to add group: error ' + e.message['desc']) ++ assert False ++ ++ # Delete a user ++ try: ++ inst.delete_s(USER1_DN) ++ except ldap.LDAPError, e: ++ log.error('test_referint: Failed to delete user1: ' + e.message['desc']) ++ assert False ++ ++ # Check for integrity ++ try: ++ entry = inst.search_s(GROUP_DN, ldap.SCOPE_BASE, '(member=' + USER1_DN + ')') ++ if entry: ++ log.error('test_referint: user1 was not removed from group') ++ assert False ++ except ldap.LDAPError, e: ++ log.fatal('test_referint: Unable to search group: ' + e.message['desc']) ++ assert False ++ ++ ############################################################################ ++ # Change the config ++ ############################################################################ ++ ++ try: ++ inst.modify_s(PLUGIN_DN, [(ldap.MOD_REPLACE, 'referint-membership-attr', 'uniquemember')]) ++ except ldap.LDAPError, e: ++ log.error('test_referint: Failed to configure RI plugin: error ' + e.message['desc']) ++ assert False ++ ++ ############################################################################ ++ # Test plugin ++ ############################################################################ ++ ++ # Delete a user ++ try: ++ inst.delete_s(USER2_DN) ++ except ldap.LDAPError, e: ++ log.error('test_referint: Failed to delete user1: ' + e.message['desc']) ++ assert False ++ ++ # Check for integrity ++ try: ++ entry = inst.search_s(GROUP_DN, ldap.SCOPE_BASE, '(uniquemember=' + USER2_DN + ')') ++ if entry: ++ log.error('test_referint: user2 was not removed from group') ++ assert False ++ except ldap.LDAPError, e: ++ log.fatal('test_referint: Unable to search group: ' + e.message['desc']) ++ assert False ++ ++ ############################################################################ ++ # Test plugin dependency ++ ############################################################################ ++ ++ test_dependency(inst, PLUGIN_REFER_INTEGRITY) ++ ++ ############################################################################ ++ # Cleanup ++ ############################################################################ ++ ++ try: ++ inst.delete_s(GROUP_DN) ++ except ldap.LDAPError, e: ++ log.error('test_referint: Failed to delete user1: ' + e.message['desc']) ++ assert False ++ ++ ############################################################################ ++ # Test passed ++ ############################################################################ ++ ++ log.info('test_referint: PASS\n') ++ ++ return ++ ++ ++################################################################################ ++# ++# Test Retro Changelog Plugin (9) ++# ++################################################################################ ++def test_retrocl(inst, args=None): ++ # stop the plugin, and start it ++ inst.plugins.disable(name=PLUGIN_RETRO_CHANGELOG) ++ inst.plugins.enable(name=PLUGIN_RETRO_CHANGELOG) ++ ++ if args == "restart": ++ return ++ ++ log.info('Testing ' + PLUGIN_RETRO_CHANGELOG + '...') ++ ++ ############################################################################ ++ # Configure plugin ++ ############################################################################ ++ ++ # Gather the current change count (it's not 1 once we start the stabilty tests) ++ try: ++ entry = inst.search_s(RETROCL_SUFFIX, ldap.SCOPE_SUBTREE, '(changenumber=*)') ++ except ldap.LDAPError, e: ++ log.error('test_retrocl: Failed to get the count: error ' + e.message['desc']) ++ assert False ++ ++ entry_count = len(entry) ++ ++ ############################################################################ ++ # Test plugin ++ ############################################################################ ++ ++ # Add a user ++ try: ++ inst.add_s(Entry((USER1_DN, { ++ 'objectclass': 'top extensibleObject'.split(), ++ 'uid': 'user1' ++ }))) ++ except ldap.LDAPError, e: ++ log.error('test_retrocl: Failed to add user1: error ' + e.message['desc']) ++ assert False ++ ++ # Check we logged this in the retro cl ++ try: ++ entry = inst.search_s(RETROCL_SUFFIX, ldap.SCOPE_SUBTREE, '(changenumber=*)') ++ if not entry or len(entry) == entry_count: ++ log.error('test_retrocl: changelog not updated') ++ assert False ++ except ldap.LDAPError, e: ++ log.fatal('test_retrocl: Unable to search group: ' + e.message['desc']) ++ assert False ++ ++ entry_count += 1 ++ ++ ############################################################################ ++ # Change the config - disable plugin ++ ############################################################################ ++ ++ inst.plugins.disable(name=PLUGIN_RETRO_CHANGELOG) ++ ++ ############################################################################ ++ # Test plugin ++ ############################################################################ ++ ++ try: ++ inst.delete_s(USER1_DN) ++ except ldap.LDAPError, e: ++ log.error('test_retrocl: Failed to delete user1: ' + e.message['desc']) ++ assert False ++ ++ # Check we didn't logged this in the retro cl ++ try: ++ entry = inst.search_s(RETROCL_SUFFIX, ldap.SCOPE_SUBTREE, '(changenumber=*)') ++ if len(entry) != entry_count: ++ log.error('test_retrocl: changelog incorrectly updated - change count: ' ++ + str(len(entry)) + ' - expected 1') ++ assert False ++ except ldap.LDAPError, e: ++ log.fatal('test_retrocl: Unable to search retro changelog: ' + e.message['desc']) ++ assert False ++ ++ ############################################################################ ++ # Test plugin dependency ++ ############################################################################ ++ ++ inst.plugins.enable(name=PLUGIN_RETRO_CHANGELOG) ++ test_dependency(inst, PLUGIN_RETRO_CHANGELOG) ++ ++ ############################################################################ ++ # Cleanup ++ ############################################################################ ++ ++ # None ++ ++ ############################################################################ ++ # Test passed ++ ############################################################################ ++ ++ log.info('test_retrocl: PASS\n') ++ ++ return ++ ++ ++################################################################################ ++# ++# Test Root DN Access Control Plugin (10) ++# ++################################################################################ ++def test_rootdn(inst, args=None): ++ # stop the plugin, and start it ++ inst.plugins.disable(name=PLUGIN_ROOTDN_ACCESS) ++ inst.plugins.enable(name=PLUGIN_ROOTDN_ACCESS) ++ ++ if args == "restart": ++ return ++ ++ PLUGIN_DN = 'cn=' + PLUGIN_ROOTDN_ACCESS + ',cn=plugins,cn=config' ++ ++ ############################################################################ ++ # Configure plugin ++ ############################################################################ ++ ++ # Add an user and aci to open up cn=config ++ try: ++ inst.add_s(Entry((USER1_DN, { ++ 'objectclass': 'top extensibleObject'.split(), ++ 'uid': 'user1', ++ 'userpassword': 'password' ++ }))) ++ except ldap.LDAPError, e: ++ log.error('test_retrocl: Failed to add user1: error ' + e.message['desc']) ++ assert False ++ ++ # Set an aci so we can modify the plugin after ew deny the root dn ++ ACI = '(target ="ldap:///cn=config")(targetattr = "*")(version 3.0;acl "all access";allow (all)(userdn="ldap:///anyone");)' ++ try: ++ inst.modify_s(DN_CONFIG, [(ldap.MOD_ADD, 'aci', ACI)]) ++ except ldap.LDAPError, e: ++ log.error('test_rootdn: Failed to add aci to config: error ' + e.message['desc']) ++ assert False ++ ++ # Set allowed IP to an unknown host - blocks root dn ++ try: ++ inst.modify_s(PLUGIN_DN, [(ldap.MOD_REPLACE, 'rootdn-allow-ip', '10.10.10.10')]) ++ except ldap.LDAPError, e: ++ log.error('test_rootdn: Failed to set rootDN plugin config: error ' + e.message['desc']) ++ assert False ++ ++ ############################################################################ ++ # Test plugin ++ ############################################################################ ++ ++ # Bind as Root DN ++ failed = False ++ try: ++ inst.simple_bind_s(DN_DM, PASSWORD) ++ except ldap.LDAPError, e: ++ failed = True ++ ++ if not failed: ++ log.error('test_rootdn: Root DN was incorrectly able to bind') ++ assert False ++ ++ ############################################################################ ++ # Change the config ++ ############################################################################ ++ ++ try: ++ inst.simple_bind_s(USER1_DN, 'password') ++ except ldap.LDAPError, e: ++ log.error('test_rootdn: failed to bind as user1') ++ assert False ++ ++ # Remove the restriction ++ try: ++ inst.modify_s(PLUGIN_DN, [(ldap.MOD_DELETE, 'rootdn-allow-ip', None)]) ++ except ldap.LDAPError, e: ++ log.error('test_rootdn: Failed to set rootDN plugin config: error ' + e.message['desc']) ++ assert False ++ ++ ############################################################################ ++ # Test plugin ++ ############################################################################ ++ ++ # Bind as Root DN ++ failed = False ++ try: ++ inst.simple_bind_s(DN_DM, PASSWORD) ++ except ldap.LDAPError, e: ++ failed = True ++ ++ if failed: ++ log.error('test_rootdn: Root DN was not able to bind') ++ assert False ++ ++ ############################################################################ ++ # Test plugin dependency ++ ############################################################################ ++ ++ test_dependency(inst, PLUGIN_ROOTDN_ACCESS) ++ ++ ############################################################################ ++ # Cleanup - remove ACI from cn=config and test user ++ ############################################################################ ++ ++ try: ++ inst.modify_s(DN_CONFIG, [(ldap.MOD_DELETE, 'aci', ACI)]) ++ except ldap.LDAPError, e: ++ log.error('test_rootdn: Failed to add aci to config: error ' + e.message['desc']) ++ assert False ++ ++ try: ++ inst.delete_s(USER1_DN) ++ except ldap.LDAPError, e: ++ log.error('test_rootdn: Failed to delete user1: ' + e.message['desc']) ++ assert False ++ ++ ############################################################################ ++ # Test passed ++ ############################################################################ ++ ++ log.info('test_rootdn: PASS\n') ++ ++ return ++ ++ ++# Array of test functions ++func_tests = [test_acctpolicy, test_attruniq, test_automember, test_dna, ++ test_linkedattrs, test_memberof, test_mep, test_passthru, ++ test_referint, test_retrocl, test_rootdn] ++ ++ ++def test_all_plugins(inst, args=None): ++ for func in func_tests: ++ func(inst, args) ++ ++ return ++ +diff --git a/dirsrvtests/suites/dynamic-plugins/stress_tests.py b/dirsrvtests/suites/dynamic-plugins/stress_tests.py +new file mode 100644 +index 0000000..a1f666d +--- /dev/null ++++ b/dirsrvtests/suites/dynamic-plugins/stress_tests.py +@@ -0,0 +1,133 @@ ++''' ++Created on Dec 16, 2014 ++ ++@author: mreynolds ++''' ++import os ++import sys ++import time ++import ldap ++import time ++import logging ++import socket ++import pytest ++import threading ++from lib389 import DirSrv, Entry, tools, tasks ++from lib389.tools import DirSrvTools ++from lib389._constants import * ++from lib389.properties import * ++from constants import * ++ ++log = logging.getLogger(__name__) ++ ++NUM_USERS = 250 ++ ++ ++def openConnection(inst): ++ # Open a new connection to our LDAP server ++ server = DirSrv(verbose=False) ++ args_instance[SER_HOST] = HOST_STANDALONE ++ args_instance[SER_PORT] = PORT_STANDALONE ++ args_instance[SER_SERVERID_PROP] = SERVERID_STANDALONE ++ args_standalone = args_instance.copy() ++ server.allocate(args_standalone) ++ server.open() ++ ++ return server ++ ++ ++# Configure Referential Integrity Plugin for stress test ++def configureRI(inst): ++ inst.plugins.enable(name=PLUGIN_REFER_INTEGRITY) ++ PLUGIN_DN = 'cn=' + PLUGIN_REFER_INTEGRITY + ',cn=plugins,cn=config' ++ try: ++ inst.modify_s(PLUGIN_DN, [(ldap.MOD_REPLACE, 'referint-membership-attr', 'uniquemember')]) ++ except ldap.LDAPError, e: ++ log.error('configureRI: Failed to configure RI plugin: error ' + e.message['desc']) ++ assert False ++ ++ ++# Configure MemberOf Plugin for stress test ++def configureMO(inst): ++ inst.plugins.enable(name=PLUGIN_MEMBER_OF) ++ PLUGIN_DN = 'cn=' + PLUGIN_MEMBER_OF + ',cn=plugins,cn=config' ++ try: ++ inst.modify_s(PLUGIN_DN, [(ldap.MOD_REPLACE, 'memberofgroupattr', 'uniquemember')]) ++ except ldap.LDAPError, e: ++ log.error('configureMO: Failed to update config(uniquemember): error ' + e.message['desc']) ++ assert False ++ ++ ++class DelUsers(threading.Thread): ++ def __init__(self, inst, rdnval): ++ threading.Thread.__init__(self) ++ self.daemon = True ++ self.inst = inst ++ self.rdnval = rdnval ++ ++ def run(self): ++ conn = openConnection(self.inst) ++ idx = 0 ++ log.info('DelUsers - Deleting ' + str(NUM_USERS) + ' entries (' + self.rdnval + ')...') ++ while idx < NUM_USERS: ++ USER_DN = 'uid=' + self.rdnval + str(idx) + ',' + DEFAULT_SUFFIX ++ try: ++ conn.delete_s(USER_DN) ++ except ldap.LDAPError, e: ++ log.error('DeleteUsers: failed to delete (' + USER_DN + ') error: ' + e.message['desc']) ++ assert False ++ ++ idx += 1 ++ ++ conn.close() ++ log.info('DelUsers - Finished deleting ' + str(NUM_USERS) + ' entries (' + self.rdnval + ').') ++ ++ ++class AddUsers(threading.Thread): ++ def __init__(self, inst, rdnval, addToGroup): ++ threading.Thread.__init__(self) ++ self.daemon = True ++ self.inst = inst ++ self.addToGroup = addToGroup ++ self.rdnval = rdnval ++ ++ def run(self): ++ # Start adding users ++ conn = openConnection(self.inst) ++ idx = 0 ++ ++ if self.addToGroup: ++ GROUP_DN = 'cn=stress-group,' + DEFAULT_SUFFIX ++ try: ++ conn.add_s(Entry((GROUP_DN, ++ {'objectclass': 'top groupOfNames groupOfUniqueNames extensibleObject'.split(), ++ 'uid': 'user' + str(idx)}))) ++ except ldap.ALREADY_EXISTS: ++ pass ++ except ldap.LDAPError, e: ++ log.error('AddUsers: failed to add group (' + USER_DN + ') error: ' + e.message['desc']) ++ assert False ++ ++ log.info('AddUsers - Adding ' + str(NUM_USERS) + ' entries (' + self.rdnval + ')...') ++ ++ while idx < NUM_USERS: ++ USER_DN = 'uid=' + self.rdnval + str(idx) + ',' + DEFAULT_SUFFIX ++ try: ++ conn.add_s(Entry((USER_DN, {'objectclass': 'top extensibleObject'.split(), ++ 'uid': 'user' + str(idx)}))) ++ except ldap.LDAPError, e: ++ log.error('AddUsers: failed to add (' + USER_DN + ') error: ' + e.message['desc']) ++ assert False ++ ++ if self.addToGroup: ++ # Add the user to the group ++ try: ++ conn.modify_s(GROUP_DN, [(ldap.MOD_ADD, 'uniquemember', USER_DN)]) ++ except ldap.LDAPError, e: ++ log.error('AddUsers: Failed to add user' + USER_DN + ' to group: error ' + e.message['desc']) ++ assert False ++ ++ idx += 1 ++ ++ conn.close() ++ log.info('AddUsers - Finished adding ' + str(NUM_USERS) + ' entries (' + self.rdnval + ').') +diff --git a/dirsrvtests/suites/dynamic-plugins/test_dynamic_plugins.py b/dirsrvtests/suites/dynamic-plugins/test_dynamic_plugins.py +new file mode 100644 +index 0000000..3677fd5 +--- /dev/null ++++ b/dirsrvtests/suites/dynamic-plugins/test_dynamic_plugins.py +@@ -0,0 +1,315 @@ ++''' ++Created on Dec 09, 2014 ++ ++@author: mreynolds ++''' ++import os ++import sys ++import time ++import ldap ++import ldap.sasl ++import logging ++import socket ++import pytest ++import plugin_tests ++import stress_tests ++from lib389 import DirSrv, Entry, tools, tasks ++from lib389.tools import DirSrvTools ++from lib389._constants import * ++from lib389.properties import * ++from lib389.tasks 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) ++ ++ # ++ # 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_dynamic_plugins(topology): ++ """ ++ Test Dynamic Plugins - exercise each plugin and its main features, while ++ changing the configuration without restarting the server. ++ ++ Need to test: functionality, stability, and stress. ++ ++ Functionality - Make sure that as configuration changes are made they take ++ effect immediately. Cross plugin interaction (e.g. automember/memberOf) ++ needs to tested, as well as plugin tasks. Need to test plugin ++ config validation(dependencies, etc). ++ ++ Memory Corruption - Restart the plugins many times, and in different orders and test ++ functionality, and stability. This will excerise the internal ++ plugin linked lists, dse callabcks, and task handlers. ++ ++ Stress - Put the server under some type of load that is using a particular ++ plugin for each operation, and then make changes to that plugin. ++ The new changes should take effect, and the server should not crash. ++ ++ """ ++ ++ ############################################################################ ++ # Test plugin functionality ++ ############################################################################ ++ ++ # First enable dynamic plugins ++ try: ++ topology.standalone.modify_s(DN_CONFIG, [(ldap.MOD_REPLACE, 'nsslapd-dynamic-plugins', 'on')]) ++ except ldap.LDAPError, e: ++ ldap.error('Failed to enable dynamic plugin!' + e.message['desc']) ++ assert False ++ ++ log.info('#####################################################') ++ log.info('Testing Dynamic Plugins Functionality...') ++ log.info('#####################################################\n') ++ ++ plugin_tests.test_all_plugins(topology.standalone) ++ ++ log.info('#####################################################') ++ log.info('Successfully Tested Dynamic Plugins Functionality.') ++ log.info('#####################################################\n') ++ ++ ############################################################################ ++ # Test the stability by exercising the internal lists, callabcks, and task handlers ++ ############################################################################ ++ ++ log.info('#####################################################') ++ log.info('Testing Dynamic Plugins for Memory Corruption...') ++ log.info('#####################################################\n') ++ prev_plugin_test = None ++ prev_prev_plugin_test = None ++ for plugin_test in plugin_tests.func_tests: ++ # ++ # Restart the plugin several times (and prev plugins) - work that linked list ++ # ++ plugin_test(topology.standalone, "restart") ++ ++ if prev_prev_plugin_test: ++ prev_prev_plugin_test(topology.standalone, "restart") ++ ++ plugin_test(topology.standalone, "restart") ++ ++ if prev_plugin_test: ++ prev_plugin_test(topology.standalone, "restart") ++ ++ plugin_test(topology.standalone, "restart") ++ ++ # Now run the functional test ++ plugin_test(topology.standalone) ++ ++ # Set the previous tests ++ if prev_plugin_test: ++ prev_prev_plugin_test = prev_plugin_test ++ prev_plugin_test = plugin_test ++ ++ log.info('#####################################################') ++ log.info('Successfully Tested Dynamic Plugins for Memory Corruption.') ++ log.info('#####################################################\n') ++ ++ ############################################################################ ++ # Stress two plugins while restarting it, and while restarting other plugins. ++ # The goal is to not crash, and have the plugins work after stressing it. ++ ############################################################################ ++ ++ log.info('#####################################################') ++ log.info('Stressing Dynamic Plugins...') ++ log.info('#####################################################\n') ++ ++ # Configure the plugins ++ stress_tests.configureMO(topology.standalone) ++ stress_tests.configureRI(topology.standalone) ++ ++ # Launch three new threads to add a bunch of users ++ add_users = stress_tests.AddUsers(topology.standalone, 'user', True) ++ add_users.start() ++ add_users2 = stress_tests.AddUsers(topology.standalone, 'entry', True) ++ add_users2.start() ++ add_users3 = stress_tests.AddUsers(topology.standalone, 'person', True) ++ add_users3.start() ++ time.sleep(1) ++ ++ # While we are adding users restart the MO plugin ++ topology.standalone.plugins.disable(name=PLUGIN_MEMBER_OF) ++ topology.standalone.plugins.enable(name=PLUGIN_MEMBER_OF) ++ time.sleep(3) ++ topology.standalone.plugins.disable(name=PLUGIN_MEMBER_OF) ++ time.sleep(1) ++ topology.standalone.plugins.enable(name=PLUGIN_MEMBER_OF) ++ ++ # Restart idle plugin ++ topology.standalone.plugins.disable(name=PLUGIN_LINKED_ATTRS) ++ topology.standalone.plugins.enable(name=PLUGIN_LINKED_ATTRS) ++ ++ # Wait for the 'adding' threads to complete ++ add_users.join() ++ add_users2.join() ++ add_users3.join() ++ ++ # Now launch three threads to delete the users, and restart both the MO and RI plugins ++ del_users = stress_tests.DelUsers(topology.standalone, 'user') ++ del_users.start() ++ del_users2 = stress_tests.DelUsers(topology.standalone, 'entry') ++ del_users2.start() ++ del_users3 = stress_tests.DelUsers(topology.standalone, 'person') ++ del_users3.start() ++ time.sleep(1) ++ ++ # Restart the both the MO and RI plugins during these deletes ++ ++ topology.standalone.plugins.disable(name=PLUGIN_REFER_INTEGRITY) ++ topology.standalone.plugins.disable(name=PLUGIN_MEMBER_OF) ++ topology.standalone.plugins.enable(name=PLUGIN_MEMBER_OF) ++ topology.standalone.plugins.enable(name=PLUGIN_REFER_INTEGRITY) ++ time.sleep(3) ++ topology.standalone.plugins.disable(name=PLUGIN_REFER_INTEGRITY) ++ time.sleep(1) ++ topology.standalone.plugins.disable(name=PLUGIN_MEMBER_OF) ++ time.sleep(1) ++ topology.standalone.plugins.enable(name=PLUGIN_MEMBER_OF) ++ time.sleep(1) ++ topology.standalone.plugins.enable(name=PLUGIN_REFER_INTEGRITY) ++ ++ # Restart idle plugin ++ topology.standalone.plugins.disable(name=PLUGIN_LINKED_ATTRS) ++ topology.standalone.plugins.enable(name=PLUGIN_LINKED_ATTRS) ++ ++ # Wait for the 'deleting' threads to complete ++ del_users.join() ++ del_users2.join() ++ del_users3.join() ++ ++ # Now make sure both the MO and RI plugins still work ++ plugin_tests.func_tests[8](topology.standalone) # RI plugin ++ plugin_tests.func_tests[5](topology.standalone) # MO plugin ++ ++ log.info('#####################################################') ++ log.info('Successfully Stressed Dynamic Plugins.') ++ log.info('#####################################################\n') ++ ++ ############################################################################ ++ # We made it to the end! ++ ############################################################################ ++ ++ log.info('#####################################################') ++ log.info('#####################################################') ++ log.info("Dynamic Plugins Testsuite: Completed Successfully!") ++ log.info('#####################################################') ++ log.info('#####################################################') ++ ++def test_dynamic_plugins_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_dynamic_plugins(topo) ++ ++if __name__ == '__main__': ++ run_isolated() +-- +1.9.3 + diff --git a/SOURCES/0052-Ticket-47622-Automember-betxnpreoperation-transactio.patch b/SOURCES/0052-Ticket-47622-Automember-betxnpreoperation-transactio.patch deleted file mode 100644 index 9050947..0000000 --- a/SOURCES/0052-Ticket-47622-Automember-betxnpreoperation-transactio.patch +++ /dev/null @@ -1,497 +0,0 @@ -From e5cb97a16fa44e6944e234b9cf509ddb614559a3 Mon Sep 17 00:00:00 2001 -From: Mark Reynolds <mreynolds@redhat.com> -Date: Mon, 9 Dec 2013 16:57:35 -0500 -Subject: [PATCH 52/65] Ticket 47622 - Automember betxnpreoperation - - transaction not aborted when group entry does not exist - -Bug Description: If the group defined in the automember plugin does not exist, than any add operation - that should trigger an update, succeeds even though the automember update failed. - -Fix Description: Return an error if a automember post operation update fails - previously we always - returned success. - - Updated plugin_call_func() to check the result of betxn postop plugins. - - Also added return text to the result message when a betxn plugin fails. This is - useful for clients to explain why the operation failed. - -https://fedorahosted.org/389/ticket/47622 - -Jenkins: passed -Valgrind: passed -Coverity: passed - -Reviewed by: rmeggins(Thanks!) -(cherry picked from commit 1214168a222a35627b2bb9964600fad0246558cd) -(cherry picked from commit 6de4616f2506b4e093429cc1093e4ad21b22e6c9) ---- - ldap/servers/plugins/automember/automember.c | 151 ++++++++++++++++++++++----- - ldap/servers/slapd/back-ldbm/ldbm_add.c | 4 +- - ldap/servers/slapd/back-ldbm/ldbm_delete.c | 5 + - ldap/servers/slapd/back-ldbm/ldbm_modify.c | 2 + - ldap/servers/slapd/back-ldbm/ldbm_modrdn.c | 3 + - ldap/servers/slapd/plugin.c | 3 +- - 6 files changed, 137 insertions(+), 31 deletions(-) - -diff --git a/ldap/servers/plugins/automember/automember.c b/ldap/servers/plugins/automember/automember.c -index c7168cb..3214ea1 100644 ---- a/ldap/servers/plugins/automember/automember.c -+++ b/ldap/servers/plugins/automember/automember.c -@@ -103,8 +103,8 @@ static struct automemberRegexRule *automember_parse_regex_rule(char *rule_string - static void automember_free_regex_rule(struct automemberRegexRule *rule); - static int automember_parse_grouping_attr(char *value, char **grouping_attr, - char **grouping_value); --static void automember_update_membership(struct configEntry *config, Slapi_Entry *e, PRFileDesc *ldif_fd); --static void automember_add_member_value(Slapi_Entry *member_e, const char *group_dn, -+static int automember_update_membership(struct configEntry *config, Slapi_Entry *e, PRFileDesc *ldif_fd); -+static int automember_add_member_value(Slapi_Entry *member_e, const char *group_dn, - char *grouping_attr, char *grouping_value, PRFileDesc *ldif_fd); - const char *fetch_attr(Slapi_Entry *e, const char *attrname, const char *default_val); - -@@ -1401,7 +1401,7 @@ automember_parse_grouping_attr(char *value, char **grouping_attr, char **groupin - * Determines which target groups need to be updated according to - * the rules in config, then performs the updates. - */ --static void -+static int - automember_update_membership(struct configEntry *config, Slapi_Entry *e, PRFileDesc *ldif_fd) - { - PRCList *rule = NULL; -@@ -1412,10 +1412,11 @@ automember_update_membership(struct configEntry *config, Slapi_Entry *e, PRFileD - Slapi_DN *last = NULL; - PRCList *curr_exclusion = NULL; - char **vals = NULL; -+ int rc = 0; - int i = 0; - - if (!config || !e) { -- return; -+ return -1; - } - - slapi_log_error(SLAPI_LOG_PLUGIN, AUTOMEMBER_PLUGIN_SUBSYSTEM, -@@ -1555,15 +1556,23 @@ automember_update_membership(struct configEntry *config, Slapi_Entry *e, PRFileD - if (PR_CLIST_IS_EMPTY(&targets)) { - /* Add to each default group. */ - for (i = 0; config->default_groups && config->default_groups[i]; i++) { -- automember_add_member_value(e, config->default_groups[i], -- config->grouping_attr, config->grouping_value, ldif_fd); -+ if(automember_add_member_value(e, config->default_groups[i], config->grouping_attr, -+ config->grouping_value, ldif_fd)) -+ { -+ rc = SLAPI_PLUGIN_FAILURE; -+ goto out; -+ } - } - } else { - /* Update the target groups. */ - dnitem = (struct automemberDNListItem *)PR_LIST_HEAD(&targets); - while ((PRCList *)dnitem != &targets) { -- automember_add_member_value(e, slapi_sdn_get_dn(dnitem->dn), -- config->grouping_attr, config->grouping_value, ldif_fd); -+ if(automember_add_member_value(e, slapi_sdn_get_dn(dnitem->dn),config->grouping_attr, -+ config->grouping_value, ldif_fd)) -+ { -+ rc = SLAPI_PLUGIN_FAILURE; -+ goto out; -+ } - dnitem = (struct automemberDNListItem *)PR_NEXT_LINK((PRCList *)dnitem); - } - } -@@ -1582,6 +1591,9 @@ automember_update_membership(struct configEntry *config, Slapi_Entry *e, PRFileD - slapi_ch_free((void**)&dnitem); - } - -+out: -+ -+ return rc; - } - - /* -@@ -1589,7 +1601,7 @@ automember_update_membership(struct configEntry *config, Slapi_Entry *e, PRFileD - * - * Adds a member entry to a group. - */ --static void -+static int - automember_add_member_value(Slapi_Entry *member_e, const char *group_dn, char *grouping_attr, - char *grouping_value, PRFileDesc *ldif_fd) - { -@@ -1600,6 +1612,7 @@ automember_add_member_value(Slapi_Entry *member_e, const char *group_dn, char *g - char *vals[2]; - char *member_value = NULL; - int freeit = 0; -+ int rc = 0; - - /* If grouping_value is dn, we need to fetch the dn instead. */ - if (slapi_attr_type_cmp(grouping_value, "dn", SLAPI_TYPE_CMP_EXACT) == 0) { -@@ -1649,6 +1662,7 @@ automember_add_member_value(Slapi_Entry *member_e, const char *group_dn, char *g - "a \"%s\" value to group \"%s\" (%s).\n", - member_value, grouping_attr, group_dn, - ldap_err2string(result)); -+ rc = result; - } - } else { - slapi_log_error(SLAPI_LOG_FATAL, AUTOMEMBER_PLUGIN_SUBSYSTEM, -@@ -1662,8 +1676,9 @@ out: - if (freeit) { - slapi_ch_free_string(&member_value); - } -- - slapi_pblock_destroy(mod_pb); -+ -+ return rc; - } - - -@@ -1833,6 +1848,7 @@ automember_add_post_op(Slapi_PBlock *pb) - Slapi_DN *sdn = NULL; - struct configEntry *config = NULL; - PRCList *list = NULL; -+ int rc = SLAPI_PLUGIN_SUCCESS; - - slapi_log_error(SLAPI_LOG_TRACE, AUTOMEMBER_PLUGIN_SUBSYSTEM, - "--> automember_add_post_op\n"); -@@ -1848,8 +1864,9 @@ automember_add_post_op(Slapi_PBlock *pb) - } - } else { - slapi_log_error(SLAPI_LOG_PLUGIN, AUTOMEMBER_PLUGIN_SUBSYSTEM, -- "automember_add_post_op: Error " -- "retrieving dn\n"); -+ "automember_add_post_op: Error retrieving dn\n"); -+ -+ rc = SLAPI_PLUGIN_FAILURE; - goto bail; - } - -@@ -1863,12 +1880,11 @@ automember_add_post_op(Slapi_PBlock *pb) - - if (e) { - /* If the entry is a tombstone, just bail. */ -- Slapi_Value *tombstone = -- slapi_value_new_string(SLAPI_ATTR_VALUE_TOMBSTONE); -- int rc = slapi_entry_attr_has_syntax_value(e, SLAPI_ATTR_OBJECTCLASS, -- tombstone); -+ Slapi_Value *tombstone = slapi_value_new_string(SLAPI_ATTR_VALUE_TOMBSTONE); -+ int is_tombstone = slapi_entry_attr_has_syntax_value(e, SLAPI_ATTR_OBJECTCLASS, -+ tombstone); - slapi_value_free(&tombstone); -- if (rc) { -+ if (is_tombstone) { - return SLAPI_PLUGIN_SUCCESS; - } - -@@ -1891,7 +1907,10 @@ automember_add_post_op(Slapi_PBlock *pb) - if (slapi_dn_issuffix(slapi_sdn_get_dn(sdn), config->scope) && - (slapi_filter_test_simple(e, config->filter) == 0)) { - /* Find out what membership changes are needed and make them. */ -- automember_update_membership(config, e, NULL); -+ if(automember_update_membership(config, e, NULL)){ -+ rc = SLAPI_PLUGIN_FAILURE; -+ break; -+ } - } - - list = PR_NEXT_LINK(list); -@@ -1904,11 +1923,21 @@ automember_add_post_op(Slapi_PBlock *pb) - "automember_add_post_op: Error " - "retrieving post-op entry %s\n", slapi_sdn_get_dn(sdn)); - } -+ - bail: - slapi_log_error(SLAPI_LOG_TRACE, AUTOMEMBER_PLUGIN_SUBSYSTEM, -- "<-- automember_add_post_op\n"); -+ "<-- automember_add_post_op (%d)\n", rc); - -- return SLAPI_PLUGIN_SUCCESS; -+ if(rc){ -+ char errtxt[SLAPI_DSE_RETURNTEXT_SIZE]; -+ int result = LDAP_UNWILLING_TO_PERFORM; -+ -+ PR_snprintf(errtxt, SLAPI_DSE_RETURNTEXT_SIZE, "Automember Plugin update unexpectedly failed.\n"); -+ slapi_pblock_set(pb, SLAPI_RESULT_CODE, &result); -+ slapi_pblock_set(pb, SLAPI_PB_RESULT_TEXT, &errtxt); -+ } -+ -+ return rc; - } - - /* -@@ -2216,7 +2245,11 @@ void automember_rebuild_task_thread(void *arg){ - 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); -+ if(automember_update_membership(config, entries[i], NULL)){ -+ result = SLAPI_PLUGIN_FAILURE; -+ automember_config_unlock(); -+ goto out; -+ } - } - list = PR_NEXT_LINK(list); - } -@@ -2416,7 +2449,7 @@ void automember_export_task_thread(void *arg){ - /* make sure the plugin is still up, as this loop could run for awhile */ - if (!g_plugin_started) { - automember_config_unlock(); -- result = -1; -+ result = SLAPI_DSE_CALLBACK_ERROR; - goto out; - } - if (!PR_CLIST_IS_EMPTY(g_automember_config)) { -@@ -2426,7 +2459,11 @@ void automember_export_task_thread(void *arg){ - if (slapi_dn_issuffix(slapi_sdn_get_dn(td->base_dn), config->scope) && - (slapi_filter_test_simple(entries[i], config->filter) == 0)) - { -- automember_update_membership(config, entries[i], ldif_fd); -+ if(automember_update_membership(config, entries[i], ldif_fd)){ -+ result = SLAPI_DSE_CALLBACK_ERROR; -+ automember_config_unlock(); -+ goto out; -+ } - } - list = PR_NEXT_LINK(list); - } -@@ -2624,7 +2661,13 @@ void automember_map_task_thread(void *arg){ - if (slapi_dn_issuffix(slapi_entry_get_dn_const(e), config->scope) && - (slapi_filter_test_simple(e, config->filter) == 0)) - { -- automember_update_membership(config, e, ldif_fd_out); -+ if(automember_update_membership(config, e, ldif_fd_out)){ -+ result = SLAPI_DSE_CALLBACK_ERROR; -+ slapi_entry_free(e); -+ slapi_ch_free_string(&entrystr); -+ automember_config_unlock(); -+ goto out; -+ } - } - list = PR_NEXT_LINK(list); - } -@@ -2635,7 +2678,7 @@ void automember_map_task_thread(void *arg){ - slapi_task_log_notice(task, "Automember map task, skipping invalid entry."); - slapi_task_log_status(task, "Automember map task, skipping invalid entry."); - } -- slapi_ch_free((void **)&entrystr); -+ slapi_ch_free_string(&entrystr); - } - automember_config_unlock(); - -@@ -2666,6 +2709,9 @@ automember_modrdn_post_op(Slapi_PBlock *pb) - Slapi_DN *old_sdn = NULL; - Slapi_DN *new_sdn = NULL; - Slapi_Entry *post_e = NULL; -+ struct configEntry *config = NULL; -+ PRCList *list = NULL; -+ int rc = SLAPI_PLUGIN_SUCCESS; - - slapi_log_error(SLAPI_LOG_TRACE, AUTOMEMBER_PLUGIN_SUBSYSTEM, - "--> automember_modrdn_post_op\n"); -@@ -2684,7 +2730,7 @@ automember_modrdn_post_op(Slapi_PBlock *pb) - slapi_log_error(SLAPI_LOG_PLUGIN, AUTOMEMBER_PLUGIN_SUBSYSTEM, - "automember_modrdn_post_op: Error " - "retrieving post-op entry\n"); -- return 0; -+ return SLAPI_PLUGIN_FAILURE; - } - - if ((old_sdn = automember_get_sdn(pb))) { -@@ -2694,11 +2740,58 @@ automember_modrdn_post_op(Slapi_PBlock *pb) - slapi_log_error(SLAPI_LOG_PLUGIN, AUTOMEMBER_PLUGIN_SUBSYSTEM, - "automember_modrdn_post_op: Error " - "retrieving dn\n"); -+ return SLAPI_PLUGIN_FAILURE; - } - -- slapi_log_error(SLAPI_LOG_TRACE, AUTOMEMBER_PLUGIN_SUBSYSTEM, -- "<-- automember_modrdn_post_op\n"); -+ /* If replication, just bail. */ -+ if (automember_isrepl(pb)) { -+ return SLAPI_PLUGIN_SUCCESS; -+ } - -- return 0; -+ /* -+ * Check if a config entry applies to the entry(post modrdn) -+ */ -+ automember_config_read_lock(); -+ -+ /* Bail out if the plug-in close function was just called. */ -+ if (!g_plugin_started) { -+ automember_config_unlock(); -+ return SLAPI_PLUGIN_SUCCESS; -+ } -+ -+ if (!PR_CLIST_IS_EMPTY(g_automember_config)) { -+ list = PR_LIST_HEAD(g_automember_config); -+ 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(new_sdn), config->scope) && -+ (slapi_filter_test_simple(post_e, config->filter) == 0)) { -+ /* Find out what membership changes are needed and make them. */ -+ if(automember_update_membership(config, post_e, NULL)){ -+ rc = SLAPI_PLUGIN_FAILURE; -+ break; -+ } -+ } -+ -+ list = PR_NEXT_LINK(list); -+ } -+ } -+ -+ automember_config_unlock(); -+ -+ if(rc){ -+ char errtxt[SLAPI_DSE_RETURNTEXT_SIZE]; -+ int result = LDAP_UNWILLING_TO_PERFORM; -+ -+ PR_snprintf(errtxt, SLAPI_DSE_RETURNTEXT_SIZE, "Automember Plugin update unexpectedly failed. " -+ "Please see the server errors log for more information.\n"); -+ slapi_pblock_set(pb, SLAPI_RESULT_CODE, &result); -+ slapi_pblock_set(pb, SLAPI_PB_RESULT_TEXT, &errtxt); -+ } -+ -+ slapi_log_error(SLAPI_LOG_TRACE, AUTOMEMBER_PLUGIN_SUBSYSTEM, -+ "<-- automember_modrdn_post_op (%d)\n", rc); -+ return rc; - } - -diff --git a/ldap/servers/slapd/back-ldbm/ldbm_add.c b/ldap/servers/slapd/back-ldbm/ldbm_add.c -index fa1e9bc..e5b9eeb 100644 ---- a/ldap/servers/slapd/back-ldbm/ldbm_add.c -+++ b/ldap/servers/slapd/back-ldbm/ldbm_add.c -@@ -357,7 +357,7 @@ ldbm_back_add( Slapi_PBlock *pb ) - /* make sure opreturn is set for the postop plugins */ - slapi_pblock_set(pb, SLAPI_PLUGIN_OPRETURN, ldap_result_code ? &ldap_result_code : &rc); - } -- -+ slapi_pblock_get(pb, SLAPI_PB_RESULT_TEXT, &ldap_result_message); - goto error_return; - } - /* -@@ -795,6 +795,7 @@ ldbm_back_add( Slapi_PBlock *pb ) - if (!opreturn) { - slapi_pblock_set(pb, SLAPI_PLUGIN_OPRETURN, ldap_result_code ? &ldap_result_code : &retval); - } -+ slapi_pblock_get(pb, SLAPI_PB_RESULT_TEXT, &ldap_result_message); - goto error_return; - } - -@@ -1046,6 +1047,7 @@ ldbm_back_add( Slapi_PBlock *pb ) - if (!opreturn) { - slapi_pblock_set(pb, SLAPI_PLUGIN_OPRETURN, ldap_result_code ? &ldap_result_code : &retval); - } -+ slapi_pblock_get(pb, SLAPI_PB_RESULT_TEXT, &ldap_result_message); - goto error_return; - } - -diff --git a/ldap/servers/slapd/back-ldbm/ldbm_delete.c b/ldap/servers/slapd/back-ldbm/ldbm_delete.c -index 6725123..367ab99 100644 ---- a/ldap/servers/slapd/back-ldbm/ldbm_delete.c -+++ b/ldap/servers/slapd/back-ldbm/ldbm_delete.c -@@ -325,6 +325,7 @@ ldbm_back_delete( Slapi_PBlock *pb ) - if (!opreturn) { - slapi_pblock_set( pb, SLAPI_PLUGIN_OPRETURN, ldap_result_code ? &ldap_result_code : &rc ); - } -+ slapi_pblock_get(pb, SLAPI_PB_RESULT_TEXT, &ldap_result_message); - goto error_return; - } - /* the flag could be set in a preop plugin (e.g., USN) */ -@@ -354,6 +355,7 @@ ldbm_back_delete( Slapi_PBlock *pb ) - ldap_result_code ? - &ldap_result_code : &retval ); - } -+ slapi_pblock_get(pb, SLAPI_PB_RESULT_TEXT, &ldap_result_message); - goto error_return; - } - -@@ -603,6 +605,7 @@ ldbm_back_delete( Slapi_PBlock *pb ) - ldap_result_code ? - &ldap_result_code : &retval ); - } -+ slapi_pblock_get(pb, SLAPI_PB_RESULT_TEXT, &ldap_result_message); - goto error_return; - } - } -@@ -633,6 +636,7 @@ ldbm_back_delete( Slapi_PBlock *pb ) - &ldap_result_code : &rc ); - } - /* retval is -1 */ -+ slapi_pblock_get(pb, SLAPI_PB_RESULT_TEXT, &ldap_result_message); - goto error_return; - } - slapi_pblock_set( pb, SLAPI_DELETE_BEPREOP_ENTRY, orig_entry ); -@@ -1105,6 +1109,7 @@ ldbm_back_delete( Slapi_PBlock *pb ) - if (!opreturn) { - slapi_pblock_set( pb, SLAPI_PLUGIN_OPRETURN, &retval ); - } -+ slapi_pblock_get(pb, SLAPI_PB_RESULT_TEXT, &ldap_result_message); - goto error_return; - } - -diff --git a/ldap/servers/slapd/back-ldbm/ldbm_modify.c b/ldap/servers/slapd/back-ldbm/ldbm_modify.c -index b5bdb41..f3b099d 100644 ---- a/ldap/servers/slapd/back-ldbm/ldbm_modify.c -+++ b/ldap/servers/slapd/back-ldbm/ldbm_modify.c -@@ -582,6 +582,7 @@ ldbm_back_modify( Slapi_PBlock *pb ) - if (!opreturn) { - slapi_pblock_set(pb, SLAPI_PLUGIN_OPRETURN, ldap_result_code ? &ldap_result_code : &retval); - } -+ slapi_pblock_get(pb, SLAPI_PB_RESULT_TEXT, &ldap_result_message); - goto error_return; - } - -@@ -752,6 +753,7 @@ ldbm_back_modify( Slapi_PBlock *pb ) - if (!opreturn) { - slapi_pblock_set(pb, SLAPI_PLUGIN_OPRETURN, ldap_result_code ? &ldap_result_code : &retval); - } -+ slapi_pblock_get(pb, SLAPI_PB_RESULT_TEXT, &ldap_result_message); - goto error_return; - } - -diff --git a/ldap/servers/slapd/back-ldbm/ldbm_modrdn.c b/ldap/servers/slapd/back-ldbm/ldbm_modrdn.c -index 4908751..1162fdb 100644 ---- a/ldap/servers/slapd/back-ldbm/ldbm_modrdn.c -+++ b/ldap/servers/slapd/back-ldbm/ldbm_modrdn.c -@@ -466,6 +466,7 @@ ldbm_back_modrdn( Slapi_PBlock *pb ) - if (!opreturn) { - slapi_pblock_set( pb, SLAPI_PLUGIN_OPRETURN, ldap_result_code ? &ldap_result_code : &rc ); - } -+ slapi_pblock_get(pb, SLAPI_PB_RESULT_TEXT, &ldap_result_message); - goto error_return; - } - /* -@@ -890,6 +891,7 @@ ldbm_back_modrdn( Slapi_PBlock *pb ) - if (!opreturn) { - slapi_pblock_set( pb, SLAPI_PLUGIN_OPRETURN, ldap_result_code ? &ldap_result_code : &retval ); - } -+ slapi_pblock_get(pb, SLAPI_PB_RESULT_TEXT, &ldap_result_message); - goto error_return; - } - -@@ -1130,6 +1132,7 @@ ldbm_back_modrdn( Slapi_PBlock *pb ) - if (!opreturn) { - slapi_pblock_set( pb, SLAPI_PLUGIN_OPRETURN, ldap_result_code ? &ldap_result_code : &retval ); - } -+ slapi_pblock_get(pb, SLAPI_PB_RESULT_TEXT, &ldap_result_message); - goto error_return; - } - -diff --git a/ldap/servers/slapd/plugin.c b/ldap/servers/slapd/plugin.c -index 5f66ab2..1ca4dc5 100644 ---- a/ldap/servers/slapd/plugin.c -+++ b/ldap/servers/slapd/plugin.c -@@ -1467,7 +1467,8 @@ plugin_call_func (struct slapdplugin *list, int operation, Slapi_PBlock *pb, int - } - else if (SLAPI_PLUGIN_BEPREOPERATION == list->plg_type || - SLAPI_PLUGIN_BETXNPREOPERATION == list->plg_type || -- SLAPI_PLUGIN_BEPOSTOPERATION == list->plg_type) -+ SLAPI_PLUGIN_BEPOSTOPERATION == list->plg_type || -+ SLAPI_PLUGIN_BETXNPOSTOPERATION == list->plg_type ) - { - /* - * respect fatal error SLAPI_PLUGIN_FAILURE (-1); --- -1.8.1.4 - diff --git a/SOURCES/0053-Ticket-47525-Crash-if-setting-invalid-plugin-config-.patch b/SOURCES/0053-Ticket-47525-Crash-if-setting-invalid-plugin-config-.patch new file mode 100644 index 0000000..d136264 --- /dev/null +++ b/SOURCES/0053-Ticket-47525-Crash-if-setting-invalid-plugin-config-.patch @@ -0,0 +1,349 @@ +From e47e64776f32a0bb593d1b9b3441e080f87f36f4 Mon Sep 17 00:00:00 2001 +From: Mark Reynolds <mreynolds@redhat.com> +Date: Wed, 3 Dec 2014 16:47:59 -0500 +Subject: [PATCH 53/53] Ticket 47525 - Crash if setting invalid plugin config + area for MemberOf Plugin + +Bug Description: Setting the nsslapd-pluginconfigarea to an entry that + does not have the required config attributes causes a + crash. + +Fix Description: The plugin entry was being accidentally freed instead + of the config area entry. + + The shared config area validation was being performed + in postop - this has now been moved into the preop stage. + + Also, set the returntext when an error occurs. + +https://fedorahosted.org/389/ticket/47525 + +Reviewed by: rmeggins(Thanks!) + +(cherry picked from commit 42f935ab7406802d522f357048db1e68d729d5e5) +(cherry picked from commit d06b39743ef3b016ac25a242821a5dfc1ec67cb4) +--- + ldap/servers/plugins/memberof/memberof.c | 1 - + ldap/servers/plugins/memberof/memberof_config.c | 193 ++++++++++++++++-------- + 2 files changed, 130 insertions(+), 64 deletions(-) + +diff --git a/ldap/servers/plugins/memberof/memberof.c b/ldap/servers/plugins/memberof/memberof.c +index bfa733a..7e3e308 100644 +--- a/ldap/servers/plugins/memberof/memberof.c ++++ b/ldap/servers/plugins/memberof/memberof.c +@@ -408,7 +408,6 @@ int memberof_postop_start(Slapi_PBlock *pb) + } + } + +- memberof_set_plugin_area(slapi_entry_get_sdn(config_e)); + memberof_set_config_area(slapi_entry_get_sdn(config_e)); + if (( rc = memberof_config( config_e, pb )) != LDAP_SUCCESS ) { + slapi_log_error( SLAPI_LOG_FATAL, MEMBEROF_PLUGIN_SUBSYSTEM, +diff --git a/ldap/servers/plugins/memberof/memberof_config.c b/ldap/servers/plugins/memberof/memberof_config.c +index df8ddcb..eb83bd0 100644 +--- a/ldap/servers/plugins/memberof/memberof_config.c ++++ b/ldap/servers/plugins/memberof/memberof_config.c +@@ -342,56 +342,40 @@ memberof_apply_config (Slapi_PBlock *pb, Slapi_Entry* entryBefore, Slapi_Entry* + *returncode = LDAP_SUCCESS; + + /* +- * Apply the config settings from the shared config entry ++ * Check if this is a shared config entry + */ + sharedcfg = slapi_entry_attr_get_charptr(e, SLAPI_PLUGIN_SHARED_CONFIG_AREA); + if(sharedcfg){ +- int rc = 0; +- +- rc = slapi_dn_syntax_check(pb, sharedcfg, 1); +- if (rc) { /* syntax check failed */ +- slapi_log_error( SLAPI_LOG_FATAL, MEMBEROF_PLUGIN_SUBSYSTEM,"memberof_apply_config: " +- "%s does not contain a valid DN (%s)\n", +- SLAPI_PLUGIN_SHARED_CONFIG_AREA, sharedcfg); +- *returncode = LDAP_INVALID_DN_SYNTAX; +- goto done; +- } + if((config_sdn = slapi_sdn_new_dn_byval(sharedcfg))){ + slapi_search_internal_get_entry(config_sdn, NULL, &config_entry, memberof_get_plugin_id()); + if(config_entry){ +- char errtext[SLAPI_DSE_RETURNTEXT_SIZE]; +- int err = 0; +- /* +- * If we got here, we are updating the shared config area, so we need to +- * validate and apply the settings from that config area. +- */ +- if ( SLAPI_DSE_CALLBACK_ERROR == memberof_validate_config (pb, NULL, config_entry, &err, errtext,0)) +- { +- slapi_log_error( SLAPI_LOG_FATAL, MEMBEROF_PLUGIN_SUBSYSTEM, +- "%s", errtext); +- *returncode = LDAP_UNWILLING_TO_PERFORM; +- goto done; +- +- } ++ /* Set the entry to be the shared config entry. Validation was done in preop */ + e = config_entry; + } else { +- /* this should of been checked in preop validation */ +- slapi_log_error( SLAPI_LOG_FATAL, MEMBEROF_PLUGIN_SUBSYSTEM, "memberof_apply_config: " +- "Failed to locate shared config entry (%s)\n",sharedcfg); ++ /* This should of been checked in preop validation */ ++ PR_snprintf(returntext, SLAPI_DSE_RETURNTEXT_SIZE, ++ "memberof_apply_config: Failed to locate shared config entry (%s)", ++ sharedcfg); ++ slapi_log_error( SLAPI_LOG_FATAL, MEMBEROF_PLUGIN_SUBSYSTEM,"%s\n",returntext); + *returncode = LDAP_UNWILLING_TO_PERFORM; + goto done; + } + } + } + ++ /* ++ * Apply the config settings ++ */ + groupattrs = slapi_entry_attr_get_charray(e, MEMBEROF_GROUP_ATTR); + memberof_attr = slapi_entry_attr_get_charptr(e, MEMBEROF_ATTR); + allBackends = slapi_entry_attr_get_charptr(e, MEMBEROF_BACKEND_ATTR); + entryScope = slapi_entry_attr_get_charptr(e, MEMBEROF_ENTRY_SCOPE_ATTR); + entryScopeExcludeSubtree = slapi_entry_attr_get_charptr(e, MEMBEROF_ENTRY_SCOPE_EXCLUDE_SUBTREE); + +- /* We want to be sure we don't change the config in the middle of +- * a memberOf operation, so we obtain an exclusive lock here */ ++ /* ++ * We want to be sure we don't change the config in the middle of ++ * a memberOf operation, so we obtain an exclusive lock here ++ */ + memberof_wlock_config(); + + if (groupattrs) +@@ -402,8 +386,10 @@ memberof_apply_config (Slapi_PBlock *pb, Slapi_Entry* entryBefore, Slapi_Entry* + theConfig.groupattrs = groupattrs; + groupattrs = NULL; /* config now owns memory */ + +- /* We allocate a list of Slapi_Attr using the groupattrs for +- * convenience in our memberOf comparison functions */ ++ /* ++ * We allocate a list of Slapi_Attr using the groupattrs for ++ * convenience in our memberOf comparison functions ++ */ + for (i = 0; theConfig.group_slapiattrs && theConfig.group_slapiattrs[i]; i++) + { + slapi_attr_free(&theConfig.group_slapiattrs[i]); +@@ -412,8 +398,10 @@ memberof_apply_config (Slapi_PBlock *pb, Slapi_Entry* entryBefore, Slapi_Entry* + /* Count the number of groupattrs. */ + for (num_groupattrs = 0; theConfig.groupattrs && theConfig.groupattrs[num_groupattrs]; num_groupattrs++) + { +- /* Add up the total length of all attribute names. We need +- * to know this for building the group check filter later. */ ++ /* ++ * Add up the total length of all attribute names. We need ++ * to know this for building the group check filter later. ++ */ + groupattr_name_len += strlen(theConfig.groupattrs[num_groupattrs]); + } + +@@ -434,8 +422,7 @@ memberof_apply_config (Slapi_PBlock *pb, Slapi_Entry* entryBefore, Slapi_Entry* + /* Terminate the list. */ + theConfig.group_slapiattrs[i] = NULL; + +- /* The filter is based off of the groupattr, so we +- * update it here too. */ ++ /* The filter is based off of the groupattr, so we update it here too. */ + slapi_filter_free(theConfig.group_filter, 1); + + if (num_groupattrs > 1) +@@ -463,11 +450,13 @@ memberof_apply_config (Slapi_PBlock *pb, Slapi_Entry* entryBefore, Slapi_Entry* + filter_str = slapi_ch_smprintf("(%s=*)", theConfig.groupattrs[0]); + } + +- /* Log an error if we were unable to build the group filter for some ++ /* ++ * Log an error if we were unable to build the group filter for some + * reason. If this happens, the memberOf plugin will not be able to + * check if an entry is a group, causing it to not catch changes. This + * shouldn't happen, but there may be some garbage configuration that +- * could trigger this. */ ++ * could trigger this. ++ */ + if ((theConfig.group_filter = slapi_str2filter(filter_str)) == NULL) + { + slapi_log_error( SLAPI_LOG_FATAL, MEMBEROF_PLUGIN_SUBSYSTEM, +@@ -547,13 +536,10 @@ memberof_apply_config (Slapi_PBlock *pb, Slapi_Entry* entryBefore, Slapi_Entry* + memberof_unlock_config(); + + done: +- slapi_ch_free_string(&sharedcfg); + slapi_sdn_free(&config_sdn); +- if(config_entry){ +- /* we switched the entry pointer to the shared config entry - which needs to be freed */ +- slapi_entry_free(e); +- } ++ slapi_entry_free(config_entry); + slapi_ch_array_free(groupattrs); ++ slapi_ch_free_string(&sharedcfg); + slapi_ch_free_string(&memberof_attr); + slapi_ch_free_string(&allBackends); + +@@ -745,6 +731,7 @@ memberof_config_get_entry_scope_exclude_subtree() + + return entry_exclude_subtree; + } ++ + /* + * Check if we are modifying the config, or changing the shared config entry + */ +@@ -753,53 +740,133 @@ memberof_shared_config_validate(Slapi_PBlock *pb) + { + Slapi_Entry *e = 0; + Slapi_Entry *resulting_e = 0; +- Slapi_DN *sdn = 0; ++ Slapi_Entry *config_entry = NULL; ++ Slapi_DN *sdn = NULL; ++ Slapi_DN *config_sdn = NULL; + Slapi_Mods *smods = 0; ++ Slapi_Mod *smod = NULL, *nextmod = NULL; + LDAPMod **mods = NULL; + char returntext[SLAPI_DSE_RETURNTEXT_SIZE]; ++ char *configarea_dn = NULL; + int ret = SLAPI_PLUGIN_SUCCESS; + + slapi_pblock_get(pb, SLAPI_TARGET_SDN, &sdn); + +- if (slapi_sdn_issuffix(sdn, memberof_get_config_area()) && +- slapi_sdn_compare(sdn, memberof_get_config_area()) == 0) +- { +- /* +- * This is the shared config entry. Apply the mods and set/validate +- * the config +- */ +- int result = 0; +- ++ if (slapi_sdn_compare(sdn, memberof_get_plugin_area()) == 0 || ++ slapi_sdn_compare(sdn, memberof_get_config_area()) == 0) ++ { + slapi_pblock_get(pb, SLAPI_ENTRY_PRE_OP, &e); + if(e){ ++ /* ++ * Create a copy of the entry and apply the ++ * mods to create the resulting entry. ++ */ + slapi_pblock_get(pb, SLAPI_MODIFY_MODS, &mods); + smods = slapi_mods_new(); + slapi_mods_init_byref(smods, mods); +- +- /* Create a copy of the entry and apply the +- * mods to create the resulting entry. */ + resulting_e = slapi_entry_dup(e); + if (mods && (slapi_entry_apply_mods(resulting_e, mods) != LDAP_SUCCESS)) { + /* we don't care about this, the update is invalid and will be caught later */ + goto bail; + } + +- if ( SLAPI_DSE_CALLBACK_ERROR == memberof_validate_config (pb, NULL, resulting_e, &ret, returntext,0)) { +- slapi_log_error( SLAPI_LOG_FATAL, MEMBEROF_PLUGIN_SUBSYSTEM, +- "%s", returntext); +- ret = LDAP_UNWILLING_TO_PERFORM; ++ if (slapi_sdn_compare(sdn, memberof_get_plugin_area())){ ++ /* ++ * This entry is a plugin config area entry, validate it. ++ */ ++ if( SLAPI_DSE_CALLBACK_ERROR == memberof_validate_config (pb, NULL, resulting_e, &ret, returntext,0)) { ++ ret = LDAP_UNWILLING_TO_PERFORM; ++ } ++ } else { ++ /* ++ * This is the memberOf plugin entry, check if we are adding/replacing the ++ * plugin config area. ++ */ ++ nextmod = slapi_mod_new(); ++ for (smod = slapi_mods_get_first_smod(smods, nextmod); ++ smod != NULL; ++ smod = slapi_mods_get_next_smod(smods, nextmod) ) ++ { ++ if ( PL_strcasecmp(SLAPI_PLUGIN_SHARED_CONFIG_AREA, slapi_mod_get_type(smod)) == 0 ) ++ { ++ /* ++ * Okay, we are modifying the plugin config area, we only care about ++ * adds and replaces. ++ */ ++ if(SLAPI_IS_MOD_REPLACE(slapi_mod_get_operation(smod)) || ++ SLAPI_IS_MOD_ADD(slapi_mod_get_operation(smod))) ++ { ++ struct berval *bv = NULL; ++ int rc = 0; ++ ++ bv = slapi_mod_get_first_value(smod); ++ configarea_dn = slapi_ch_strdup(bv->bv_val); ++ if(configarea_dn){ ++ /* Check the DN syntax */ ++ rc = slapi_dn_syntax_check(pb, configarea_dn, 1); ++ if (rc) { /* syntax check failed */ ++ PR_snprintf(returntext, SLAPI_DSE_RETURNTEXT_SIZE, ++ "%s does not contain a valid DN (%s)", ++ SLAPI_PLUGIN_SHARED_CONFIG_AREA, configarea_dn); ++ ret = LDAP_UNWILLING_TO_PERFORM; ++ goto bail; ++ } ++ ++ /* Check if the plugin config area entry exists */ ++ if((config_sdn = slapi_sdn_new_dn_byval(configarea_dn))){ ++ rc = slapi_search_internal_get_entry(config_sdn, NULL, &config_entry, ++ memberof_get_plugin_id()); ++ if(config_entry){ ++ int err = 0; ++ /* ++ * Validate the settings from the new config area. ++ */ ++ if ( memberof_validate_config(pb, NULL, config_entry, &err, returntext,0) ++ == SLAPI_DSE_CALLBACK_ERROR ) ++ { ++ ret = LDAP_UNWILLING_TO_PERFORM; ++ goto bail; ++ ++ } ++ } else { ++ /* The config area does not exist */ ++ PR_snprintf(returntext, SLAPI_DSE_RETURNTEXT_SIZE, ++ "Unable to locate shared config entry (%s) error %d", ++ slapi_sdn_get_dn(memberof_get_config_area()), rc); ++ ret = LDAP_UNWILLING_TO_PERFORM; ++ goto bail; ++ } ++ } ++ } ++ slapi_ch_free_string(&configarea_dn); ++ slapi_sdn_free(&config_sdn); ++ slapi_entry_free(config_entry); ++ } ++ } ++ } + } + } else { +- slapi_log_error( SLAPI_LOG_FATAL, MEMBEROF_PLUGIN_SUBSYSTEM, "memberof_shared_config_validate: " +- "Unable to locate shared config entry (%s) error %d\n", +- slapi_sdn_get_dn(memberof_get_config_area()), result); ++ PR_snprintf(returntext, SLAPI_DSE_RETURNTEXT_SIZE,"Unable to locate shared config entry (%s)", ++ slapi_sdn_get_dn(memberof_get_config_area())); + ret = LDAP_UNWILLING_TO_PERFORM; + } + } + + bail: ++ ++ if (ret){ ++ slapi_pblock_set(pb, SLAPI_RESULT_CODE, &ret); ++ slapi_pblock_set(pb, SLAPI_PB_RESULT_TEXT, returntext); ++ slapi_log_error( SLAPI_LOG_FATAL, MEMBEROF_PLUGIN_SUBSYSTEM, "memberof_shared_config_validate: %s/n", ++ returntext); ++ } ++ slapi_sdn_free(&config_sdn); ++ if(nextmod) ++ slapi_mod_free(&nextmod); + slapi_mods_free(&smods); + slapi_entry_free(resulting_e); ++ slapi_entry_free(config_entry); ++ slapi_ch_free_string(&configarea_dn); + + return ret; + } +-- +1.9.3 + diff --git a/SOURCES/0053-Ticket-47613-Impossible-to-configure-nsslapd-allowed.patch b/SOURCES/0053-Ticket-47613-Impossible-to-configure-nsslapd-allowed.patch deleted file mode 100644 index a93d34f..0000000 --- a/SOURCES/0053-Ticket-47613-Impossible-to-configure-nsslapd-allowed.patch +++ /dev/null @@ -1,63 +0,0 @@ -From a886214ba26d9b74895269d83de62bd310b7d18c Mon Sep 17 00:00:00 2001 -From: Mark Reynolds <mreynolds@redhat.com> -Date: Mon, 2 Dec 2013 15:08:15 -0500 -Subject: [PATCH 53/65] Ticket 47613 - Impossible to configure - nsslapd-allowed-sasl-mechanisms - -Bug Description: The design doc sasy you can use comma separated list of supported mechanisms, - but in fact this was not supported. - -Fix Description: Allow comma separated lists. - -https://fedorahosted.org/389/ticket/47613 - -Reviewed by: richm(Thanks!) -(cherry picked from commit 6200f6812682760cd2a54d6a3bcbb009a0dffe79) -(cherry picked from commit f1461312fc9e221413b19d6babbdf5a886794d10) ---- - ldap/servers/slapd/libglobs.c | 18 ++++++++++++++++++ - 1 file changed, 18 insertions(+) - -diff --git a/ldap/servers/slapd/libglobs.c b/ldap/servers/slapd/libglobs.c -index f8c5b01..b925a2c 100644 ---- a/ldap/servers/slapd/libglobs.c -+++ b/ldap/servers/slapd/libglobs.c -@@ -125,6 +125,7 @@ static int config_set_onoff( const char *attrname, char *value, - int *configvalue, char *errorbuf, int apply ); - static int config_set_schemareplace ( const char *attrname, char *value, - char *errorbuf, int apply ); -+static void remove_commas(char *str); - - /* Keeping the initial values */ - /* CONFIG_INT/CONFIG_LONG */ -@@ -6764,6 +6765,9 @@ config_set_allowed_sasl_mechs(const char *attrname, char *value, char *errorbuf, - return LDAP_SUCCESS; - } - -+ /* cyrus sasl doesn't like comma separated lists */ -+ remove_commas(value); -+ - CFG_LOCK_WRITE(slapdFrontendConfig); - slapdFrontendConfig->allowed_sasl_mechs = slapi_ch_strdup(value); - CFG_UNLOCK_WRITE(slapdFrontendConfig); -@@ -7434,3 +7438,17 @@ slapi_err2string(int result) - #endif - } - -+/* replace commas with spaces */ -+static void -+remove_commas(char *str) -+{ -+ int i; -+ -+ for (i = 0; str && str[i]; i++) -+ { -+ if (str[i] == ',') -+ { -+ str[i] = ' '; -+ } -+ } -+} --- -1.8.1.4 - diff --git a/SOURCES/0054-Ticket-47587-hard-coded-limit-of-64-masters-in-agree.patch b/SOURCES/0054-Ticket-47587-hard-coded-limit-of-64-masters-in-agree.patch deleted file mode 100644 index 5454e51..0000000 --- a/SOURCES/0054-Ticket-47587-hard-coded-limit-of-64-masters-in-agree.patch +++ /dev/null @@ -1,174 +0,0 @@ -From 690fd89fb94621a4cafee1e4064d7e42ceaae6db Mon Sep 17 00:00:00 2001 -From: Mark Reynolds <mreynolds@redhat.com> -Date: Thu, 5 Dec 2013 11:58:56 -0500 -Subject: [PATCH 54/65] Ticket 47587 - hard coded limit of 64 masters in - agreement and changelog code - -Bug Description: Need to remove hardcoded limit of 64 masters. - -Fix Description: Changed the default limit to 256, and then we resize the array - as needed. - -https://fedorahosted.org/389/ticket/47587 - -Reviewed by: richm & tbordaz(Thanks!!) -(cherry picked from commit bae797c94207d15025e763cfea0634f42eeb1210) -(cherry picked from commit 457cd16908071f3faddb021c12c792d22f64ab5c) ---- - ldap/servers/plugins/replication/cl5_clcache.c | 22 +++++++++++++++++----- - ldap/servers/plugins/replication/repl5.h | 4 ++-- - ldap/servers/plugins/replication/repl5_agmt.c | 18 ++++++++++++++---- - 3 files changed, 33 insertions(+), 11 deletions(-) - -diff --git a/ldap/servers/plugins/replication/cl5_clcache.c b/ldap/servers/plugins/replication/cl5_clcache.c -index 8218312..d86620f 100644 ---- a/ldap/servers/plugins/replication/cl5_clcache.c -+++ b/ldap/servers/plugins/replication/cl5_clcache.c -@@ -113,8 +113,9 @@ struct clc_buffer { - CSN *buf_missing_csn; /* used to detect persistent missing of CSN */ - - /* fields for control the CSN sequence sent to the consumer */ -- struct csn_seq_ctrl_block *buf_cscbs [MAX_NUM_OF_MASTERS]; -+ struct csn_seq_ctrl_block **buf_cscbs; - int buf_num_cscbs; /* number of csn sequence ctrl blocks */ -+ int buf_max_cscbs; - - /* fields for debugging stat */ - int buf_load_cnt; /* number of loads for session */ -@@ -256,12 +257,15 @@ clcache_get_buffer ( CLC_Buffer **buf, DB *db, ReplicaId consumer_rid, const RUV - (*buf)->buf_record_cnt = 0; - (*buf)->buf_record_skipped = 0; - (*buf)->buf_cursor = NULL; -- (*buf)->buf_num_cscbs = 0; - (*buf)->buf_skipped_new_rid = 0; - (*buf)->buf_skipped_csn_gt_cons_maxcsn = 0; - (*buf)->buf_skipped_up_to_date = 0; - (*buf)->buf_skipped_csn_gt_ruv = 0; - (*buf)->buf_skipped_csn_covered = 0; -+ (*buf)->buf_cscbs = (struct csn_seq_ctrl_block **) slapi_ch_calloc(MAX_NUM_OF_MASTERS + 1, -+ sizeof(struct csn_seq_ctrl_block *)); -+ (*buf)->buf_num_cscbs = 0; -+ (*buf)->buf_max_cscbs = MAX_NUM_OF_MASTERS; - } - else { - *buf = clcache_new_buffer ( consumer_rid ); -@@ -311,7 +315,7 @@ clcache_return_buffer ( CLC_Buffer **buf ) - for ( i = 0; i < (*buf)->buf_num_cscbs; i++ ) { - clcache_free_cscb ( &(*buf)->buf_cscbs[i] ); - } -- (*buf)->buf_num_cscbs = 0; -+ slapi_ch_free((void **)&(*buf)->buf_cscbs); - - if ( (*buf)->buf_cursor ) { - -@@ -554,7 +558,7 @@ clcache_refresh_consumer_maxcsns ( CLC_Buffer *buf ) - static int - clcache_refresh_local_maxcsn ( const ruv_enum_data *rid_data, void *data ) - { -- CLC_Buffer *buf = (CLC_Buffer*) data; -+ struct clc_buffer *buf = (struct clc_buffer*) data; - ReplicaId rid; - int rc = 0; - int i; -@@ -575,7 +579,12 @@ clcache_refresh_local_maxcsn ( const ruv_enum_data *rid_data, void *data ) - break; - } - if ( i >= buf->buf_num_cscbs ) { -- buf->buf_cscbs[i] = clcache_new_cscb (); -+ if( i + 1 > buf->buf_max_cscbs){ -+ buf->buf_cscbs = (struct csn_seq_ctrl_block **) slapi_ch_realloc((char *)buf->buf_cscbs, -+ (i + 2) * sizeof(struct csn_seq_ctrl_block *)); -+ buf->buf_max_cscbs = i + 1; -+ } -+ buf->buf_cscbs[i] = clcache_new_cscb(); - if ( buf->buf_cscbs[i] == NULL ) { - return -1; - } -@@ -878,6 +887,9 @@ clcache_new_buffer ( ReplicaId consumer_rid ) - buf->buf_agmt_name = get_thread_private_agmtname(); - buf->buf_consumer_rid = consumer_rid; - buf->buf_num_cscbs = 0; -+ buf->buf_max_cscbs = MAX_NUM_OF_MASTERS; -+ buf->buf_cscbs = (struct csn_seq_ctrl_block **) slapi_ch_calloc(MAX_NUM_OF_MASTERS + 1, -+ sizeof(struct csn_seq_ctrl_block *)); - - welldone = 1; - -diff --git a/ldap/servers/plugins/replication/repl5.h b/ldap/servers/plugins/replication/repl5.h -index 5bec1c7..92a9229 100644 ---- a/ldap/servers/plugins/replication/repl5.h -+++ b/ldap/servers/plugins/replication/repl5.h -@@ -140,11 +140,11 @@ - - #define DEFAULT_PROTOCOL_TIMEOUT 120 - --/* To Allow Consumer Initialisation when adding an agreement - */ -+/* To Allow Consumer Initialization when adding an agreement - */ - #define STATE_PERFORMING_TOTAL_UPDATE 501 - #define STATE_PERFORMING_INCREMENTAL_UPDATE 502 - --#define MAX_NUM_OF_MASTERS 64 -+#define MAX_NUM_OF_MASTERS 256 - #define REPL_SESSION_ID_SIZE 64 - - #define REPL_GET_DN(addrp) slapi_sdn_get_dn((addrp)->sdn) -diff --git a/ldap/servers/plugins/replication/repl5_agmt.c b/ldap/servers/plugins/replication/repl5_agmt.c -index b7d107e..90d94f8 100644 ---- a/ldap/servers/plugins/replication/repl5_agmt.c -+++ b/ldap/servers/plugins/replication/repl5_agmt.c -@@ -111,8 +111,9 @@ typedef struct repl5agmt { - const Slapi_RDN *rdn; /* RDN of replication agreement entry */ - char *long_name; /* Long name (rdn + host, port) of entry, for logging */ - Repl_Protocol *protocol; /* Protocol object - manages protocol */ -- struct changecounter *changecounters[MAX_NUM_OF_MASTERS]; /* changes sent/skipped since server start up */ -+ struct changecounter **changecounters; /* changes sent/skipped since server start up */ - int num_changecounters; -+ int max_changecounters; - time_t last_update_start_time; /* Local start time of last update session */ - time_t last_update_end_time; /* Local end time of last update session */ - char last_update_status[STATUS_LEN]; /* Status of last update. Format = numeric code <space> textual description */ -@@ -435,14 +436,17 @@ agmt_new_from_entry(Slapi_Entry *e) - /* Initialize status information */ - ra->last_update_start_time = 0UL; - ra->last_update_end_time = 0UL; -- ra->num_changecounters = 0; - ra->last_update_status[0] = '\0'; - ra->update_in_progress = PR_FALSE; - ra->stop_in_progress = PR_FALSE; - ra->last_init_end_time = 0UL; - ra->last_init_start_time = 0UL; - ra->last_init_status[0] = '\0'; -- -+ ra->changecounters = (struct changecounter**) slapi_ch_calloc(MAX_NUM_OF_MASTERS + 1, -+ sizeof(struct changecounter *)); -+ ra->num_changecounters = 0; -+ ra->max_changecounters = MAX_NUM_OF_MASTERS; -+ - /* Fractional attributes */ - slapi_entry_attr_find(e, type_nsds5ReplicatedAttributeList, &sattr); - -@@ -599,6 +603,7 @@ agmt_delete(void **rap) - { - slapi_ch_free((void **)&ra->changecounters[ra->num_changecounters]); - } -+ slapi_ch_free((void **)&ra->changecounters); - - if (ra->agreement_type == REPLICA_TYPE_WINDOWS) - { -@@ -2305,7 +2310,12 @@ agmt_inc_last_update_changecount (Repl_Agmt *ra, ReplicaId rid, int skipped) - } - else - { -- ra->num_changecounters ++; -+ ra->num_changecounters++; -+ if(ra->num_changecounters > ra->max_changecounters){ -+ ra->changecounters = (struct changecounter**) slapi_ch_realloc((char *)ra->changecounters, -+ (ra->num_changecounters + 1) * sizeof(struct changecounter*)); -+ ra->max_changecounters = ra->num_changecounters; -+ } - ra->changecounters[i] = (struct changecounter*) slapi_ch_calloc(1, sizeof(struct changecounter)); - ra->changecounters[i]->rid = rid; - if ( skipped ) --- -1.8.1.4 - diff --git a/SOURCES/0054-Ticket-47965-Fix-coverity-issues-2014-11-24.patch b/SOURCES/0054-Ticket-47965-Fix-coverity-issues-2014-11-24.patch new file mode 100644 index 0000000..ddafec9 --- /dev/null +++ b/SOURCES/0054-Ticket-47965-Fix-coverity-issues-2014-11-24.patch @@ -0,0 +1,433 @@ +From 86cb4a8568160e5f5f1051506b8f24bb1312ff60 Mon Sep 17 00:00:00 2001 +From: Mark Reynolds <mreynolds@redhat.com> +Date: Mon, 24 Nov 2014 12:22:34 -0500 +Subject: [PATCH 54/55] Ticket 47965 - Fix coverity issues (2014/11/24) + +12864 - nesting level adjustment - sync_presist.c +12867 - Uninitialized pointer read - repl5_replica.c +12870 - Unused value - repl5_ruv.c +12880, 12881, 12893 - Unused value - dblayer.c +12887 - nesting level adjustment - acl.c +12894 - nesting level adjustment - acl_ext.c +12898 - Logically dead code - acllas.c +12891 - Unused value - windows_inc_protocol.c +12902 - Unused value - repl5_inc_protocol.c + +https://fedorahosted.org/389/ticket/47965 + +Reviewed by: rmeggins(Thanks!) + +(cherry picked from commit da90d57c30bf93265f06499b8ea2102378a0ed12) +(cherry picked from commit 61d1211f1721355d571d570a67f36ef6baeb4866) +--- + ldap/servers/plugins/acl/acl.c | 3 +- + ldap/servers/plugins/acl/acl_ext.c | 52 +++++++------ + ldap/servers/plugins/acl/acllas.c | 4 - + .../plugins/replication/repl5_inc_protocol.c | 1 - + ldap/servers/plugins/replication/repl5_replica.c | 2 +- + ldap/servers/plugins/replication/repl5_ruv.c | 1 - + .../plugins/replication/windows_inc_protocol.c | 89 +++++++++++----------- + ldap/servers/plugins/sync/sync_persist.c | 8 +- + ldap/servers/slapd/back-ldbm/dblayer.c | 21 +++-- + ldap/servers/slapd/pw.c | 47 +++++++----- + 10 files changed, 119 insertions(+), 109 deletions(-) + +diff --git a/ldap/servers/plugins/acl/acl.c b/ldap/servers/plugins/acl/acl.c +index 403c5b3..f04e258 100644 +--- a/ldap/servers/plugins/acl/acl.c ++++ b/ldap/servers/plugins/acl/acl.c +@@ -2106,9 +2106,10 @@ acl__resource_match_aci( Acl_PBlock *aclpb, aci_t *aci, int skip_attrEval, int * + ** acl in the entry cache list. + */ + if (!((res_right & (SLAPI_ACL_SEARCH | SLAPI_ACL_READ)) && +- (aci_right & (SLAPI_ACL_SEARCH | SLAPI_ACL_READ)))) ++ (aci_right & (SLAPI_ACL_SEARCH | SLAPI_ACL_READ)))){ + matches = ACL_FALSE; + goto acl__resource_match_aci_EXIT; ++ } + } + + +diff --git a/ldap/servers/plugins/acl/acl_ext.c b/ldap/servers/plugins/acl/acl_ext.c +index 126a234..0863de0 100644 +--- a/ldap/servers/plugins/acl/acl_ext.c ++++ b/ldap/servers/plugins/acl/acl_ext.c +@@ -334,12 +334,14 @@ acl_operation_ext_destructor ( void *ext, void *object, void *parent ) + int attr_only = 0; + PRLock *shared_lock = aclcb->aclcb_lock; + +- if (aclcb->aclcb_lock ) PR_Lock ( shared_lock ); ++ if (aclcb->aclcb_lock ) ++ PR_Lock ( shared_lock ); + else { + goto clean_aclpb; + } + if ( !aclcb->aclcb_lock ) { +- slapi_log_error (SLAPI_LOG_FATAL, plugin_name, "aclcb lock released! aclcb cache can't be refreshed\n"); ++ slapi_log_error (SLAPI_LOG_FATAL, plugin_name, ++ "aclcb lock released! aclcb cache can't be refreshed\n"); + PR_Unlock ( shared_lock ); + goto clean_aclpb; + } +@@ -347,29 +349,29 @@ acl_operation_ext_destructor ( void *ext, void *object, void *parent ) + /* We need to refresh the aclcb cache */ + if ( aclpb->aclpb_state & ACLPB_UPD_ACLCB_CACHE ) + acl_clean_aclEval_context ( &aclcb->aclcb_eval_context, 0 /* clean*/ ); +- if ( aclpb->aclpb_prev_entryEval_context.acle_numof_attrs ) { +- c_evalContext = &aclpb->aclpb_prev_entryEval_context; +- } else { +- c_evalContext = &aclpb->aclpb_curr_entryEval_context; +- } +- +- if (( aclpb->aclpb_state & ACLPB_INCR_ACLCB_CACHE ) && +- ! ( aclpb->aclpb_state & ACLPB_UPD_ACLCB_CACHE )) +- attr_only = 1; +- +- acl_copyEval_context ( NULL, c_evalContext, &aclcb->aclcb_eval_context, attr_only ); +- +- aclcb->aclcb_aclsignature = aclpb->aclpb_signature; +- if ( aclcb->aclcb_sdn && +- (0 != slapi_sdn_compare ( aclcb->aclcb_sdn, +- aclpb->aclpb_authorization_sdn ) ) ) { +- slapi_sdn_set_ndn_byval( aclcb->aclcb_sdn, +- slapi_sdn_get_ndn ( aclpb->aclpb_authorization_sdn ) ); +- } +- aclcb->aclcb_state = 0; +- aclcb->aclcb_state |= ACLCB_HAS_CACHED_EVALCONTEXT; +- +- PR_Unlock ( shared_lock ); ++ if ( aclpb->aclpb_prev_entryEval_context.acle_numof_attrs ) { ++ c_evalContext = &aclpb->aclpb_prev_entryEval_context; ++ } else { ++ c_evalContext = &aclpb->aclpb_curr_entryEval_context; ++ } ++ ++ if (( aclpb->aclpb_state & ACLPB_INCR_ACLCB_CACHE ) && ++ ! ( aclpb->aclpb_state & ACLPB_UPD_ACLCB_CACHE )) ++ attr_only = 1; ++ ++ acl_copyEval_context ( NULL, c_evalContext, &aclcb->aclcb_eval_context, attr_only ); ++ ++ aclcb->aclcb_aclsignature = aclpb->aclpb_signature; ++ if ( aclcb->aclcb_sdn && ++ (0 != slapi_sdn_compare( aclcb->aclcb_sdn, aclpb->aclpb_authorization_sdn ))) ++ { ++ slapi_sdn_set_ndn_byval( aclcb->aclcb_sdn, ++ slapi_sdn_get_ndn ( aclpb->aclpb_authorization_sdn ) ); ++ } ++ aclcb->aclcb_state = 0; ++ aclcb->aclcb_state |= ACLCB_HAS_CACHED_EVALCONTEXT; ++ ++ PR_Unlock ( shared_lock ); + } + + clean_aclpb: +diff --git a/ldap/servers/plugins/acl/acllas.c b/ldap/servers/plugins/acl/acllas.c +index 2d0dae9..439c8f1 100644 +--- a/ldap/servers/plugins/acl/acllas.c ++++ b/ldap/servers/plugins/acl/acllas.c +@@ -1726,10 +1726,6 @@ DS_LASAuthMethodEval(NSErr_t *errp, char *attr_name, CmpOp_t comparator, + } else { + rc = (matched == ACL_TRUE ? LAS_EVAL_FALSE : LAS_EVAL_TRUE); + } +- } else { +- rc = LAS_EVAL_FAIL; +- slapi_log_error( SLAPI_LOG_ACL, plugin_name, +- "Returning UNDEFINED for authmethod evaluation.\n"); + } + + return rc; +diff --git a/ldap/servers/plugins/replication/repl5_inc_protocol.c b/ldap/servers/plugins/replication/repl5_inc_protocol.c +index b867fc4..5cf170c 100644 +--- a/ldap/servers/plugins/replication/repl5_inc_protocol.c ++++ b/ldap/servers/plugins/replication/repl5_inc_protocol.c +@@ -940,7 +940,6 @@ repl5_inc_run(Private_Repl_Protocol *prp) + /* Destroy the backoff timer, since we won't need it anymore */ + backoff_delete(&prp_priv->backoff); + } +- use_busy_backoff_timer = PR_FALSE; + } else if (event_occurred(prp, EVENT_TRIGGERING_CRITERIA_MET)){ + /* changes are available */ + if ( prp_priv->backoff == NULL || backoff_expired (prp_priv->backoff, 60)){ +diff --git a/ldap/servers/plugins/replication/repl5_replica.c b/ldap/servers/plugins/replication/repl5_replica.c +index dab1c4e..77663f6 100644 +--- a/ldap/servers/plugins/replication/repl5_replica.c ++++ b/ldap/servers/plugins/replication/repl5_replica.c +@@ -2140,7 +2140,7 @@ done: + char *ridstr = NULL; + char *token = NULL; + char *repl_root; +- char *iter; ++ char *iter = NULL; + int i; + + for(i = 0; clean_vals[i]; i++){ +diff --git a/ldap/servers/plugins/replication/repl5_ruv.c b/ldap/servers/plugins/replication/repl5_ruv.c +index 500fd7a..132c641 100644 +--- a/ldap/servers/plugins/replication/repl5_ruv.c ++++ b/ldap/servers/plugins/replication/repl5_ruv.c +@@ -705,7 +705,6 @@ set_max_csn_nolock_ext(RUV *ruv, const CSN *max_csn, const char *replica_purl, P + csn_as_string(replica->csn, PR_FALSE, csn2)); + return_value = RUV_COVERS_CSN; + } +- return_value = RUV_SUCCESS; + } + return return_value; + } +diff --git a/ldap/servers/plugins/replication/windows_inc_protocol.c b/ldap/servers/plugins/replication/windows_inc_protocol.c +index d62deec..ec6ca55 100644 +--- a/ldap/servers/plugins/replication/windows_inc_protocol.c ++++ b/ldap/servers/plugins/replication/windows_inc_protocol.c +@@ -675,63 +675,64 @@ windows_inc_run(Private_Repl_Protocol *prp) + backoff_delete(&prp_priv->backoff); + } + else if (event_occurred(prp, EVENT_BACKOFF_EXPIRED)) +- { ++ { + rc = windows_acquire_replica(prp, &ruv, 1 /* check RUV for incremental */); + use_busy_backoff_timer = PR_FALSE; + if (rc == ACQUIRE_SUCCESS) +- { +- next_state = STATE_SENDING_UPDATES; +- } ++ { ++ next_state = STATE_SENDING_UPDATES; ++ } + else if (rc == ACQUIRE_REPLICA_BUSY) +- { +- next_state = STATE_BACKOFF; +- use_busy_backoff_timer = PR_TRUE; +- } ++ { ++ next_state = STATE_BACKOFF; ++ use_busy_backoff_timer = PR_TRUE; ++ } + else if (rc == ACQUIRE_CONSUMER_WAS_UPTODATE) +- { ++ { + next_state = STATE_WAIT_CHANGES; +- } ++ } + else if (rc == ACQUIRE_TRANSIENT_ERROR) +- { +- next_state = STATE_BACKOFF; +- } ++ { ++ next_state = STATE_BACKOFF; ++ } + else if (rc == ACQUIRE_FATAL_ERROR) +- { +- next_state = STATE_STOP_FATAL_ERROR; +- } ++ { ++ next_state = STATE_STOP_FATAL_ERROR; ++ } ++ + if (rc != ACQUIRE_SUCCESS) +- { +- int optype, ldaprc; +- windows_conn_get_error(prp->conn, &optype, &ldaprc); +- agmt_set_last_update_status(prp->agmt, ldaprc, ++ { ++ int optype, ldaprc; ++ windows_conn_get_error(prp->conn, &optype, &ldaprc); ++ agmt_set_last_update_status(prp->agmt, ldaprc, + prp->last_acquire_response_code, NULL); +- } +- /* +- * We either need to step the backoff timer, or +- * destroy it if we don't need it anymore. +- */ ++ } ++ ++ /* ++ * We either need to step the backoff timer, or ++ * destroy it if we don't need it anymore. ++ */ + if (STATE_BACKOFF == next_state) +- { +- time_t next_fire_time; +- time_t now; +- /* Step the backoff timer */ +- time(&now); +- next_fire_time = backoff_step(prp_priv->backoff); +- /* And go back to sleep */ +- slapi_log_error(SLAPI_LOG_REPL, windows_repl_plugin_name, +- "%s: Replication session backing off for %ld seconds\n", +- agmt_get_long_name(prp->agmt), +- next_fire_time - now); ++ { ++ time_t next_fire_time; ++ time_t now; ++ /* Step the backoff timer */ ++ time(&now); ++ next_fire_time = backoff_step(prp_priv->backoff); ++ /* And go back to sleep */ ++ slapi_log_error(SLAPI_LOG_REPL, windows_repl_plugin_name, ++ "%s: Replication session backing off for %ld seconds\n", ++ agmt_get_long_name(prp->agmt), ++ next_fire_time - now); + +- protocol_sleep(prp, PR_INTERVAL_NO_TIMEOUT); +- } ++ protocol_sleep(prp, PR_INTERVAL_NO_TIMEOUT); ++ } + else +- { +- /* Destroy the backoff timer, since we won't need it anymore */ +- backoff_delete(&prp_priv->backoff); +- } +- use_busy_backoff_timer = PR_FALSE; +- } ++ { ++ /* Destroy the backoff timer, since we won't need it anymore */ ++ backoff_delete(&prp_priv->backoff); ++ } ++ } + else if (event_occurred(prp, EVENT_TRIGGERING_CRITERIA_MET)) + { + /* changes are available */ +diff --git a/ldap/servers/plugins/sync/sync_persist.c b/ldap/servers/plugins/sync/sync_persist.c +index 8d46102..f41a10c 100644 +--- a/ldap/servers/plugins/sync/sync_persist.c ++++ b/ldap/servers/plugins/sync/sync_persist.c +@@ -661,10 +661,10 @@ sync_send_results( void *arg ) + ectrls = (LDAPControl **)slapi_ch_calloc(2, sizeof (LDAPControl *)); + if (req->req_cookie) + sync_cookie_update(req->req_cookie, ec); +- sync_create_state_control(ec, &ectrls[0], chg_type, req->req_cookie); +- rc = slapi_send_ldap_search_entry( req->req_pblock, +- ec, ectrls, +- noattrs?noattrs:attrs, attrsonly ); ++ sync_create_state_control(ec, &ectrls[0], chg_type, req->req_cookie); ++ rc = slapi_send_ldap_search_entry( req->req_pblock, ++ ec, ectrls, ++ noattrs?noattrs:attrs, attrsonly ); + if (rc) { + slapi_log_error(SLAPI_LOG_CONNS, SYNC_PLUGIN_SUBSYSTEM, + "Error %d sending entry %s\n", +diff --git a/ldap/servers/slapd/back-ldbm/dblayer.c b/ldap/servers/slapd/back-ldbm/dblayer.c +index f3159a9..2524355 100644 +--- a/ldap/servers/slapd/back-ldbm/dblayer.c ++++ b/ldap/servers/slapd/back-ldbm/dblayer.c +@@ -4805,19 +4805,18 @@ static int checkpoint_threadmain(void *param) + + for (inst_obj = objset_first_obj(li->li_instance_set); + inst_obj; +- inst_obj = objset_next_obj(li->li_instance_set, inst_obj)) { ++ inst_obj = objset_next_obj(li->li_instance_set, inst_obj)) ++ { + inst = (ldbm_instance *)object_get_data(inst_obj); + rc = dblayer_get_id2entry(inst->inst_be, &db); +- if (!db) { ++ if (!db || rc ) { + continue; + } + LDAPDebug1Arg(LDAP_DEBUG_BACKLDBM, "compactdb: Compacting DB start: %s\n", + inst->inst_name); + rc = dblayer_txn_begin(inst->inst_be, NULL, &txn); + if (rc) { +- LDAPDebug1Arg(LDAP_DEBUG_ANY, +- "compactdb: transaction begin failed: %d\n", +- rc); ++ LDAPDebug1Arg(LDAP_DEBUG_ANY, "compactdb: transaction begin failed: %d\n", rc); + break; + } + rc = db->compact(db, txn.back_txn_txn, NULL/*start*/, NULL/*stop*/, +@@ -4826,12 +4825,20 @@ static int checkpoint_threadmain(void *param) + LDAPDebug(LDAP_DEBUG_ANY, + "compactdb: failed to compact %s; db error - %d %s\n", + inst->inst_name, rc, db_strerror(rc)); +- rc = dblayer_txn_abort(inst->inst_be, &txn); ++ if((rc = dblayer_txn_abort(inst->inst_be, &txn))){ ++ LDAPDebug(LDAP_DEBUG_ANY, "compactdb: failed to abort txn (%s) db error - %d %s\n", ++ inst->inst_name, rc, db_strerror(rc)); ++ break; ++ } + } else { + LDAPDebug2Args(LDAP_DEBUG_BACKLDBM, + "compactdb: compact %s - %d pages freed\n", + inst->inst_name, c_data.compact_pages_free); +- rc = dblayer_txn_commit(inst->inst_be, &txn); ++ if((rc = dblayer_txn_commit(inst->inst_be, &txn))){ ++ LDAPDebug(LDAP_DEBUG_ANY, "compactdb: failed to commit txn (%s) db error - %d %s\n", ++ inst->inst_name, rc, db_strerror(rc)); ++ break; ++ } + } + } + time_of_last_comapctdb_completion = current_time(); /* seconds since epoch */ +diff --git a/ldap/servers/slapd/pw.c b/ldap/servers/slapd/pw.c +index a4d2dc6..7930be9 100644 +--- a/ldap/servers/slapd/pw.c ++++ b/ldap/servers/slapd/pw.c +@@ -2011,28 +2011,33 @@ slapi_pwpolicy_make_response_control (Slapi_PBlock *pb, int seconds, int logins, + } + + rc = ber_printf( ber, "{" ); +- if ( seconds >= 0 || logins >= 0 ) { +- if ( seconds >= 0 ) { +- rc = ber_printf( ber, "t{ti}", LDAP_TAG_PWP_WARNING, +- LDAP_TAG_PWP_SECSLEFT, +- seconds ); +- } +- else { +- rc = ber_printf( ber, "t{ti}", LDAP_TAG_PWP_WARNING, +- LDAP_TAG_PWP_GRCLOGINS, +- logins ); ++ if ( rc != -1){ ++ if(seconds >= 0 || logins >= 0 ) { ++ if ( seconds >= 0 ) { ++ rc = ber_printf( ber, "t{ti}", LDAP_TAG_PWP_WARNING, ++ LDAP_TAG_PWP_SECSLEFT, ++ seconds ); ++ } ++ else { ++ rc = ber_printf( ber, "t{ti}", LDAP_TAG_PWP_WARNING, ++ LDAP_TAG_PWP_GRCLOGINS, ++ logins ); ++ } ++ } ++ if (rc != -1){ ++ if ( error >= 0 ) { ++ rc = ber_printf( ber, "te", LDAP_TAG_PWP_ERROR, error ); ++ } ++ if (rc != -1){ ++ rc = ber_printf( ber, "}" ); ++ if ( rc != -1 ) ++ { ++ rc = ber_flatten( ber, &bvp ); ++ } ++ } + } + } +- if ( error >= 0 ) { +- rc = ber_printf( ber, "te", LDAP_TAG_PWP_ERROR, error ); +- } +- rc = ber_printf( ber, "}" ); + +- if ( rc != -1 ) +- { +- rc = ber_flatten( ber, &bvp ); +- } +- + ber_free( ber, 1 ); + + if ( rc != -1 ) +@@ -2041,11 +2046,11 @@ slapi_pwpolicy_make_response_control (Slapi_PBlock *pb, int seconds, int logins, + new_ctrl.ldctl_oid = LDAP_X_CONTROL_PWPOLICY_RESPONSE; + new_ctrl.ldctl_value = *bvp; + new_ctrl.ldctl_iscritical = 0; +- rc= slapi_pblock_set( pb, SLAPI_ADD_RESCONTROL, &new_ctrl ); ++ rc = slapi_pblock_set( pb, SLAPI_ADD_RESCONTROL, &new_ctrl ); + ber_bvfree(bvp); + } + +- LDAPDebug( LDAP_DEBUG_TRACE, "<= slapi_pwpolicy_make_response_control", 0, 0, 0 ); ++ LDAPDebug( LDAP_DEBUG_TRACE, "<= slapi_pwpolicy_make_response_control (%d)", rc, 0, 0 ); + + return (rc==-1?LDAP_OPERATIONS_ERROR:LDAP_SUCCESS); + } +-- +1.9.3 + diff --git a/SOURCES/0055-Ticket-47597-Convert-retro-changelog-plug-in-to-betx.patch b/SOURCES/0055-Ticket-47597-Convert-retro-changelog-plug-in-to-betx.patch deleted file mode 100644 index beaa27a..0000000 --- a/SOURCES/0055-Ticket-47597-Convert-retro-changelog-plug-in-to-betx.patch +++ /dev/null @@ -1,51 +0,0 @@ -From ef2f198a69dcd707c8101ab1e31b8360ac27c952 Mon Sep 17 00:00:00 2001 -From: Mark Reynolds <mreynolds@redhat.com> -Date: Mon, 18 Nov 2013 12:49:48 -0500 -Subject: [PATCH 55/65] Ticket 47597 - Convert retro changelog plug-in to betxn - -Retro cl plugin is already betxn aware. The template and 20betxn.pl script -needed to be updated to reflect the new default. - -https://fedorahosted.org/389/ticket/47597 - -Reviewed by: richm(Thanks!) -(cherry picked from commit 3dca85ec629be641f07ae2ecfef59609d4dc88e2) -(cherry picked from commit 229d270428dc4cfabd7d367444f1c0b10a60ef87) ---- - ldap/admin/src/scripts/20betxn.pl | 4 +++- - ldap/ldif/template-dse.ldif.in | 1 + - 2 files changed, 4 insertions(+), 1 deletion(-) - -diff --git a/ldap/admin/src/scripts/20betxn.pl b/ldap/admin/src/scripts/20betxn.pl -index 2c56707..6f9b5e1 100644 ---- a/ldap/admin/src/scripts/20betxn.pl -+++ b/ldap/admin/src/scripts/20betxn.pl -@@ -12,10 +12,12 @@ sub runinst { - # cn=Multimaster Replication Plugin - # cn=Roles Plugin,cn=plugins,cn=config - # cn=USN,cn=plugins,cn=config -+ # cn=Retro Changelog Plugin,cn=plugins,cn=config - my @objplugins = ( - "cn=Multimaster Replication Plugin,cn=plugins,cn=config", - "cn=Roles Plugin,cn=plugins,cn=config", -- "cn=USN,cn=plugins,cn=config" -+ "cn=USN,cn=plugins,cn=config", -+ "cn=Retro Changelog Plugin,cn=plugins,cn=config" - ); - foreach my $plugin (@objplugins) { - my $ent = $conn->search($plugin, "base", "(cn=*)"); -diff --git a/ldap/ldif/template-dse.ldif.in b/ldap/ldif/template-dse.ldif.in -index 95ed60c..12df7b6 100644 ---- a/ldap/ldif/template-dse.ldif.in -+++ b/ldap/ldif/template-dse.ldif.in -@@ -557,6 +557,7 @@ cn: Retro Changelog Plugin - nsslapd-pluginpath: libretrocl-plugin - nsslapd-plugininitfunc: retrocl_plugin_init - nsslapd-plugintype: object -+nsslapd-pluginbetxn: on - nsslapd-pluginenabled: off - nsslapd-pluginprecedence: 25 - nsslapd-plugin-depends-on-type: database --- -1.8.1.4 - diff --git a/SOURCES/0055-Ticket-47965-Fix-coverity-issues-2014-12-16.patch b/SOURCES/0055-Ticket-47965-Fix-coverity-issues-2014-12-16.patch new file mode 100644 index 0000000..3de1600 --- /dev/null +++ b/SOURCES/0055-Ticket-47965-Fix-coverity-issues-2014-12-16.patch @@ -0,0 +1,170 @@ +From c56a01740faa7af009eab4f009d334bb7b705f89 Mon Sep 17 00:00:00 2001 +From: Noriko Hosoi <nhosoi@redhat.com> +Date: Tue, 16 Dec 2014 11:26:04 -0800 +Subject: [PATCH 55/55] Ticket 47965 - Fix coverity issues (2014/12/16) + +12867 - Uninitialized pointer read + +Description: +The third arg for ldap_utf8strtok_r is supposed to be initialized. + +https://fedorahosted.org/389/ticket/47965 + +Reviewed by mreynolds@redhat.com (Thank you, Mark!!) + +(cherry picked from commit 62072539953d0956e0f2664ef1a3691cf8fbdac0) +(cherry picked from commit a2977b4b1839f4853594a46593ac5e2e27155bed) +--- + ldap/servers/plugins/acl/acllas.c | 6 +++--- + ldap/servers/plugins/acl/aclparse.c | 4 ++-- + ldap/servers/plugins/replication/repl5_replica.c | 2 +- + ldap/servers/plugins/replication/repl_extop.c | 4 ++-- + ldap/servers/plugins/replication/windows_connection.c | 2 +- + ldap/servers/plugins/replication/windows_private.c | 2 +- + ldap/servers/plugins/rootdn_access/rootdn_access.c | 2 +- + ldap/servers/slapd/back-ldbm/ldbm_attr.c | 2 +- + 8 files changed, 12 insertions(+), 12 deletions(-) + +diff --git a/ldap/servers/plugins/acl/acllas.c b/ldap/servers/plugins/acl/acllas.c +index 439c8f1..4738a40 100644 +--- a/ldap/servers/plugins/acl/acllas.c ++++ b/ldap/servers/plugins/acl/acllas.c +@@ -1223,7 +1223,7 @@ DS_LASUserDnAttrEval(NSErr_t *errp, char *attr_name, CmpOp_t comparator, + + /* See if we have a parent[2].attr" rule */ + if (strstr(attrName, "parent[") != NULL) { +- char *word, *str, *next; ++ char *word, *str, *next = NULL; + + numOflevels = 0; + n_currEntryDn = slapi_entry_get_ndn ( lasinfo.resourceEntry ); +@@ -1489,7 +1489,7 @@ DS_LASLdapUrlAttrEval(NSErr_t *errp, char *attr_name, CmpOp_t comparator, + + /* See if we have a parent[2].attr" rule */ + if (strstr(attrName, "parent[") != NULL) { +- char *word, *str, *next; ++ char *word, *str, *next = NULL; + + numOflevels = 0; + n_currEntryDn = slapi_entry_get_ndn ( lasinfo.resourceEntry ); +@@ -2659,7 +2659,7 @@ DS_LASGroupDnAttrEval(NSErr_t *errp, char *attr_name, CmpOp_t comparator, + + /* See if we have a parent[2].attr" rule */ + if (strstr(attrName, "parent[") != NULL) { +- char *word, *str, *next; ++ char *word, *str, *next = NULL; + + numOflevels = 0; + n_currEntryDn = slapi_entry_get_ndn ( lasinfo.resourceEntry ) ; +diff --git a/ldap/servers/plugins/acl/aclparse.c b/ldap/servers/plugins/acl/aclparse.c +index be86c8b..fd262e8 100644 +--- a/ldap/servers/plugins/acl/aclparse.c ++++ b/ldap/servers/plugins/acl/aclparse.c +@@ -600,7 +600,7 @@ __aclp__sanity_check_acltxt (aci_t *aci_item, char *str) + ACLListHandle_t *handle = NULL; + char *newstr = NULL; + char *word; +- char *next; ++ char *next = NULL; + const char *brkstr = " ;"; + int checkversion = 0; + +@@ -1367,7 +1367,7 @@ __aclp__get_aci_right (char *str) + { + + char *sav_str = slapi_ch_strdup(str); +- char *t, *tt; ++ char *t, *tt = NULL; + int type = 0; + char *delimiter = ","; + char *val = NULL; +diff --git a/ldap/servers/plugins/replication/repl5_replica.c b/ldap/servers/plugins/replication/repl5_replica.c +index 77663f6..61ae7ec 100644 +--- a/ldap/servers/plugins/replication/repl5_replica.c ++++ b/ldap/servers/plugins/replication/repl5_replica.c +@@ -2046,7 +2046,7 @@ replica_check_for_tasks(Replica *r, Slapi_Entry *e) + char *forcing; + char *csnpart; + char *ridstr; +- char *iter; ++ char *iter = NULL; + int i; + + for(i = 0; i < CLEANRIDSIZ && clean_vals[i]; i++){ +diff --git a/ldap/servers/plugins/replication/repl_extop.c b/ldap/servers/plugins/replication/repl_extop.c +index 35014a9..4fefe9f 100644 +--- a/ldap/servers/plugins/replication/repl_extop.c ++++ b/ldap/servers/plugins/replication/repl_extop.c +@@ -1463,7 +1463,7 @@ multimaster_extop_abort_cleanruv(Slapi_PBlock *pb) + char *repl_root; + char *payload = NULL; + char *certify_all; +- char *iter; ++ char *iter = NULL; + int rc = LDAP_SUCCESS; + + slapi_pblock_get(pb, SLAPI_EXT_OP_REQ_OID, &extop_oid); +@@ -1591,7 +1591,7 @@ multimaster_extop_cleanruv(Slapi_PBlock *pb) + char *force = NULL; + char *extop_oid; + char *repl_root; +- char *iter; ++ char *iter = NULL; + int release_it = 0; + int rid = 0; + int rc = LDAP_OPERATIONS_ERROR; +diff --git a/ldap/servers/plugins/replication/windows_connection.c b/ldap/servers/plugins/replication/windows_connection.c +index c7c7a98..e78c367 100644 +--- a/ldap/servers/plugins/replication/windows_connection.c ++++ b/ldap/servers/plugins/replication/windows_connection.c +@@ -595,7 +595,7 @@ windows_LDAPMessage2Entry(Slapi_Entry *e, Repl_Connection *conn, + char *dupa = slapi_ch_strdup(a); + char *newa = NULL; /* dup of 'a' with next range */ + char *p, *wp, *pp; /* work pointers */ +- char *iter; ++ char *iter = NULL; + int high = 0; + int sizea = strlen(a) + 2; + /* handling subtype(s) */ +diff --git a/ldap/servers/plugins/replication/windows_private.c b/ldap/servers/plugins/replication/windows_private.c +index cfa2704..9be6c7d 100644 +--- a/ldap/servers/plugins/replication/windows_private.c ++++ b/ldap/servers/plugins/replication/windows_private.c +@@ -946,7 +946,7 @@ create_subtree_pairs(char **pairs) + subtreePair *spp; + char **ptr; + char *p0, *p1; +- char *saveptr; ++ char *saveptr = NULL; + int cnt; + + for (cnt = 0, ptr = pairs; ptr && *ptr; cnt++, ptr++) ; +diff --git a/ldap/servers/plugins/rootdn_access/rootdn_access.c b/ldap/servers/plugins/rootdn_access/rootdn_access.c +index 3045e9f..5c530c6 100644 +--- a/ldap/servers/plugins/rootdn_access/rootdn_access.c ++++ b/ldap/servers/plugins/rootdn_access/rootdn_access.c +@@ -229,7 +229,7 @@ rootdn_load_config(Slapi_PBlock *pb) + Slapi_Entry *e = NULL; + char *openTime = NULL; + char *closeTime = NULL; +- char *token, *iter, *copy; ++ char *token, *iter = NULL, *copy; + char hour[3], min[3]; + int result = 0; + int time; +diff --git a/ldap/servers/slapd/back-ldbm/ldbm_attr.c b/ldap/servers/slapd/back-ldbm/ldbm_attr.c +index 13ab07b..7b3f664 100644 +--- a/ldap/servers/slapd/back-ldbm/ldbm_attr.c ++++ b/ldap/servers/slapd/back-ldbm/ldbm_attr.c +@@ -509,7 +509,7 @@ attr_index_parse_idlistsize(struct attrinfo *ai, const char *strval, struct inde + int rc = 0; /* assume success */ + char *mystr = slapi_ch_strdup(strval); /* copy for strtok */ + char *values = NULL; +- char *lasts, *val, *ptr; ++ char *lasts = NULL, *val, *ptr; + int seen_limit = 0, seen_type = 0, seen_flags = 0, seen_values = 0; + Slapi_Attr *attr = &ai->ai_sattr; + +-- +1.9.3 + diff --git a/SOURCES/0056-Ticket-47598-Convert-ldbm_back_seq-code-to-be-transa.patch b/SOURCES/0056-Ticket-47598-Convert-ldbm_back_seq-code-to-be-transa.patch deleted file mode 100644 index 3996d76..0000000 --- a/SOURCES/0056-Ticket-47598-Convert-ldbm_back_seq-code-to-be-transa.patch +++ /dev/null @@ -1,153 +0,0 @@ -From 88315fddb145da4d3d0601d020c61b25aed66366 Mon Sep 17 00:00:00 2001 -From: Mark Reynolds <mreynolds@redhat.com> -Date: Tue, 19 Nov 2013 09:45:03 -0500 -Subject: [PATCH 56/65] Ticket 47598 - Convert ldbm_back_seq code to be - transaction aware - -Description: Attempt to retrieve the transaction, and pass it to the db - functions, and id2entry. Also did a little code cleanup. - -https://fedorahosted.org/389/ticket/47598 - -Reviewed by: richm(Thanks!) -(cherry picked from commit 50272119bbff52c5d9b6ce5d7302aef763aa96ec) -(cherry picked from commit da9fed74c2a04dc45b4354f436e70020bcbd7cd2) ---- - ldap/servers/slapd/back-ldbm/seq.c | 61 +++++++++++++++++++++----------------- - 1 file changed, 34 insertions(+), 27 deletions(-) - -diff --git a/ldap/servers/slapd/back-ldbm/seq.c b/ldap/servers/slapd/back-ldbm/seq.c -index ab473bd..27da2a4 100644 ---- a/ldap/servers/slapd/back-ldbm/seq.c -+++ b/ldap/servers/slapd/back-ldbm/seq.c -@@ -68,20 +68,21 @@ - int - ldbm_back_seq( Slapi_PBlock *pb ) - { -- backend *be; -- ldbm_instance *inst; -- struct ldbminfo *li; -- IDList *idl = NULL; -- int err = LDAP_SUCCESS; -- DB *db; -- DBC *dbc = NULL; -- int type; -- char *attrname, *val; -- int isroot; -+ backend *be; -+ ldbm_instance *inst; -+ struct ldbminfo *li; -+ IDList *idl = NULL; -+ back_txn txn = {NULL}; - struct attrinfo *ai = NULL; -+ DB *db; -+ DBC *dbc = NULL; -+ char *attrname, *val; -+ int err = LDAP_SUCCESS; - int return_value = -1; -- int nentries = 0; -- int retry_count=0; -+ int nentries = 0; -+ int retry_count = 0; -+ int isroot; -+ int type; - - /* Decode arguments */ - slapi_pblock_get( pb, SLAPI_BACKEND, &be); -@@ -90,9 +91,15 @@ ldbm_back_seq( Slapi_PBlock *pb ) - slapi_pblock_get( pb, SLAPI_SEQ_ATTRNAME, &attrname ); - slapi_pblock_get( pb, SLAPI_SEQ_VAL, &val ); - slapi_pblock_get( pb, SLAPI_REQUESTOR_ISROOT, &isroot ); -+ slapi_pblock_get( pb, SLAPI_TXN, &txn.back_txn_txn ); - - inst = (ldbm_instance *) be->be_instance_info; - -+ if ( !txn.back_txn_txn ) { -+ dblayer_txn_init( li, &txn ); -+ slapi_pblock_set( pb, SLAPI_TXN, txn.back_txn_txn ); -+ } -+ - /* Validate arguments */ - if ( type != SLAPI_SEQ_FIRST && - type != SLAPI_SEQ_LAST && -@@ -114,7 +121,7 @@ ldbm_back_seq( Slapi_PBlock *pb ) - LDAPDebug( LDAP_DEBUG_TRACE, - "seq: caller specified un-indexed attribute %s\n", - attrname ? attrname : "", 0, 0 ); -- slapi_send_ldap_result( pb, LDAP_UNWILLING_TO_PERFORM, NULL, -+ slapi_send_ldap_result( pb, LDAP_UNWILLING_TO_PERFORM, NULL, - "Unindexed seq access type", 0, NULL ); - return -1; - } -@@ -123,13 +130,13 @@ ldbm_back_seq( Slapi_PBlock *pb ) - LDAPDebug( LDAP_DEBUG_ANY, - "<= ldbm_back_seq NULL (could not open index file for attribute %s)\n", - attrname, 0, 0 ); -- slapi_send_ldap_result( pb, LDAP_OPERATIONS_ERROR, NULL, NULL, 0, NULL ); -+ slapi_send_ldap_result( pb, LDAP_OPERATIONS_ERROR, NULL, NULL, 0, NULL ); - return -1; - } - - /* First, get a database cursor */ - -- return_value = db->cursor(db,NULL,&dbc,0); -+ return_value = db->cursor(db, txn.back_txn_txn, &dbc, 0); - - if (0 == return_value) - { -@@ -160,7 +167,7 @@ ldbm_back_seq( Slapi_PBlock *pb ) - big_buffer = slapi_ch_malloc(key_length); - if (NULL == big_buffer) { - /* memory allocation failure */ -- dblayer_release_index_file( be, ai, db ); -+ dblayer_release_index_file( be, ai, db ); - return -1; - } - key.data = big_buffer; -@@ -234,24 +241,24 @@ ldbm_back_seq( Slapi_PBlock *pb ) - /* Retrieve the idlist for this key */ - key.flags = 0; - for (retry_count = 0; retry_count < IDL_FETCH_RETRY_COUNT; retry_count++) { -- err = NEW_IDL_DEFAULT; -- idl = idl_fetch( be, db, &key, NULL, ai, &err ); -- if(err == DB_LOCK_DEADLOCK) { -- ldbm_nasty("ldbm_back_seq deadlock retry", 1600, err); -+ err = NEW_IDL_DEFAULT; -+ idl = idl_fetch( be, db, &key, txn.back_txn_txn, ai, &err ); -+ if(err == DB_LOCK_DEADLOCK) { -+ ldbm_nasty("ldbm_back_seq deadlock retry", 1600, err); - #ifdef FIX_TXN_DEADLOCKS - #error if txn != NULL, have to retry the entire transaction - #endif -- continue; -- } else { -- break; -- } -+ continue; -+ } else { -+ break; -+ } - } - } - } - if(retry_count == IDL_FETCH_RETRY_COUNT) { -- ldbm_nasty("ldbm_back_seq retry count exceeded",1645,err); -+ ldbm_nasty("ldbm_back_seq retry count exceeded",1645,err); - } else if ( err != 0 && err != DB_NOTFOUND ) { -- ldbm_nasty("ldbm_back_seq database error", 1650, err); -+ ldbm_nasty("ldbm_back_seq database error", 1650, err); - } - slapi_ch_free( &(data.data) ); - if ( key.data != little_buffer && key.data != &keystring ) { -@@ -272,7 +279,7 @@ ldbm_back_seq( Slapi_PBlock *pb ) - for ( id = idl_firstid( idl ); id != NOID; - id = idl_nextid( idl, id )) - { -- if (( e = id2entry( be, id, NULL, &err )) == NULL ) -+ if (( e = id2entry( be, id, &txn, &err )) == NULL ) - { - if ( err != LDAP_SUCCESS ) - { --- -1.8.1.4 - diff --git a/SOURCES/0056-Ticket-47750-During-delete-operation-do-not-refresh-.patch b/SOURCES/0056-Ticket-47750-During-delete-operation-do-not-refresh-.patch new file mode 100644 index 0000000..a670d02 --- /dev/null +++ b/SOURCES/0056-Ticket-47750-During-delete-operation-do-not-refresh-.patch @@ -0,0 +1,50 @@ +From 6649bbb2900841a101ab60ef43d55742ee3abb9a Mon Sep 17 00:00:00 2001 +From: Mark Reynolds <mreynolds@redhat.com> +Date: Thu, 18 Dec 2014 09:08:52 -0500 +Subject: [PATCH] Ticket 47750 - During delete operation do not refresh cache + entry if it is a tombstone + +Bug Description: After calling the betxn postop plugins do not attempt to refresh the + entry if it was converted to a tombstone. A tombstone entry does + not have its entry mutex allocated, and it will be dereferenced. + +Fix Description: If the entry is converted to a tombstone, there is no need to + refresh it in the first place. Skip the cache refresh if its a + tombstone. If its not a tombstone, we also need to return the + cache entry if it was not changed in betxn postop, because we + incremented its refcnt while checking if it was updated. + +https://fedorahosted.org/389/ticket/47750 + +Reviewed by: nhosoi(Thanks!) + +(cherry picked from commit 4ae67943e807b869aeda213dcd39b59feb5f8259) +(cherry picked from commit f63473228d05c56a096580ec5e66566b35ab4535) +--- + ldap/servers/slapd/back-ldbm/ldbm_delete.c | 10 ++++++++++ + 1 file changed, 10 insertions(+) + +diff --git a/ldap/servers/slapd/back-ldbm/ldbm_delete.c b/ldap/servers/slapd/back-ldbm/ldbm_delete.c +index 5f12ea3..56ea3df 100644 +--- a/ldap/servers/slapd/back-ldbm/ldbm_delete.c ++++ b/ldap/servers/slapd/back-ldbm/ldbm_delete.c +@@ -1261,6 +1261,16 @@ ldbm_back_delete( Slapi_PBlock *pb ) + + /* delete from cache and clean up */ + if (e) { ++ if(!create_tombstone_entry){ ++ struct backentry *old_e = e; ++ e = cache_find_id(&inst->inst_cache,e->ep_id); ++ if(e != old_e){ ++ cache_unlock_entry(&inst->inst_cache, old_e); ++ CACHE_RETURN(&inst->inst_cache, &old_e); ++ } else { ++ CACHE_RETURN(&inst->inst_cache, &e); ++ } ++ } + if (cache_is_in_cache(&inst->inst_cache, e)) { + ep_id = e->ep_id; /* Otherwise, e might have been freed. */ + CACHE_REMOVE(&inst->inst_cache, e); +-- +1.9.3 + diff --git a/SOURCES/0057-Ticket-47599-Reduce-lock-scope-in-retro-changelog-pl.patch b/SOURCES/0057-Ticket-47599-Reduce-lock-scope-in-retro-changelog-pl.patch deleted file mode 100644 index 918d98d..0000000 --- a/SOURCES/0057-Ticket-47599-Reduce-lock-scope-in-retro-changelog-pl.patch +++ /dev/null @@ -1,213 +0,0 @@ -From a111165bab37e74bcaa76b1ba6182549a785361d Mon Sep 17 00:00:00 2001 -From: Mark Reynolds <mreynolds@redhat.com> -Date: Wed, 20 Nov 2013 09:08:50 -0500 -Subject: [PATCH 57/65] Ticket 47599 - Reduce lock scope in retro changelog - plug-in - -Description: Use RW locks for protecting the change numbers. - - We still need to do the locking in retrocl_po.c as we need to - serialize the actual updates. - -https://fedorahosted.org/389/ticket/47599 - -Reviewed by: richm(Thanks!!) -(cherry picked from commit e2c42bced86bac235ac56ae98eed303f61ebd15e) -(cherry picked from commit 03f6347eb72d3cbb49ae33312f32df9f91a2fd4c) ---- - ldap/servers/plugins/retrocl/retrocl.c | 3 ++- - ldap/servers/plugins/retrocl/retrocl.h | 1 + - ldap/servers/plugins/retrocl/retrocl_cn.c | 42 +++++++++++++++++++++---------- - ldap/servers/plugins/retrocl/retrocl_po.c | 2 +- - 4 files changed, 33 insertions(+), 15 deletions(-) - -diff --git a/ldap/servers/plugins/retrocl/retrocl.c b/ldap/servers/plugins/retrocl/retrocl.c -index 90c3455..3e426a7 100644 ---- a/ldap/servers/plugins/retrocl/retrocl.c -+++ b/ldap/servers/plugins/retrocl/retrocl.c -@@ -465,7 +465,8 @@ retrocl_plugin_init(Slapi_PBlock *pb) - if (!is_betxn) { - rc= slapi_register_plugin_ext("internalpostoperation", 1 /* Enabled */, "retrocl_internalpostop_init", retrocl_internalpostop_init, "Retrocl internal postoperation plugin", NULL, identity, precedence); - } -- -+ retrocl_cn_lock = slapi_new_rwlock(); -+ if(retrocl_cn_lock == NULL) return -1; - retrocl_internal_lock = PR_NewLock(); - if (retrocl_internal_lock == NULL) return -1; - } -diff --git a/ldap/servers/plugins/retrocl/retrocl.h b/ldap/servers/plugins/retrocl/retrocl.h -index 276912b..bfebe2e 100644 ---- a/ldap/servers/plugins/retrocl/retrocl.h -+++ b/ldap/servers/plugins/retrocl/retrocl.h -@@ -130,6 +130,7 @@ extern const char *attr_nsuniqueid; - extern const char *attr_isreplicated; - - extern PRLock *retrocl_internal_lock; -+extern Slapi_RWLock *retrocl_cn_lock; - - /* Functions */ - -diff --git a/ldap/servers/plugins/retrocl/retrocl_cn.c b/ldap/servers/plugins/retrocl/retrocl_cn.c -index d2b15a4..f816730 100644 ---- a/ldap/servers/plugins/retrocl/retrocl_cn.c -+++ b/ldap/servers/plugins/retrocl/retrocl_cn.c -@@ -163,8 +163,9 @@ int retrocl_get_changenumbers(void) - NULL,NULL,0,&cr,NULL,handle_cnum_result, - handle_cnum_entry, NULL); - -- retrocl_first_cn = cr.cr_cnum; -+ slapi_rwlock_wrlock(retrocl_cn_lock); - -+ retrocl_first_cn = cr.cr_cnum; - slapi_ch_free(( void **) &cr.cr_time ); - - slapi_seq_callback(RETROCL_CHANGELOG_DN,SLAPI_SEQ_LAST, -@@ -178,6 +179,8 @@ int retrocl_get_changenumbers(void) - retrocl_first_cn, - retrocl_internal_cn); - -+ slapi_rwlock_unlock(retrocl_cn_lock); -+ - slapi_ch_free(( void **) &cr.cr_time ); - - return 0; -@@ -238,10 +241,10 @@ time_t retrocl_getchangetime( int type, int *err ) - - void retrocl_forget_changenumbers(void) - { -- PR_Lock(retrocl_internal_lock); -+ slapi_rwlock_wrlock(retrocl_cn_lock); - retrocl_first_cn = 0; - retrocl_internal_cn = 0; -- PR_Unlock(retrocl_internal_lock); -+ slapi_rwlock_unlock(retrocl_cn_lock); - } - - /* -@@ -258,9 +261,11 @@ void retrocl_forget_changenumbers(void) - changeNumber retrocl_get_first_changenumber(void) - { - changeNumber cn; -- PR_Lock(retrocl_internal_lock); -+ -+ slapi_rwlock_rdlock(retrocl_cn_lock); - cn = retrocl_first_cn; -- PR_Unlock(retrocl_internal_lock); -+ slapi_rwlock_unlock(retrocl_cn_lock); -+ - return cn; - } - -@@ -277,9 +282,9 @@ changeNumber retrocl_get_first_changenumber(void) - - void retrocl_set_first_changenumber(changeNumber cn) - { -- PR_Lock(retrocl_internal_lock); -+ slapi_rwlock_wrlock(retrocl_cn_lock); - retrocl_first_cn = cn; -- PR_Unlock(retrocl_internal_lock); -+ slapi_rwlock_unlock(retrocl_cn_lock); - } - - -@@ -297,9 +302,11 @@ void retrocl_set_first_changenumber(changeNumber cn) - changeNumber retrocl_get_last_changenumber(void) - { - changeNumber cn; -- PR_Lock(retrocl_internal_lock); -+ -+ slapi_rwlock_rdlock(retrocl_cn_lock); - cn = retrocl_internal_cn; -- PR_Unlock(retrocl_internal_lock); -+ slapi_rwlock_unlock(retrocl_cn_lock); -+ - return cn; - } - -@@ -316,9 +323,11 @@ changeNumber retrocl_get_last_changenumber(void) - - void retrocl_commit_changenumber(void) - { -+ slapi_rwlock_wrlock(retrocl_cn_lock); - if ( retrocl_first_cn == 0) { - retrocl_first_cn = retrocl_internal_cn; - } -+ slapi_rwlock_unlock(retrocl_cn_lock); - } - - /* -@@ -333,8 +342,10 @@ void retrocl_commit_changenumber(void) - */ - - void retrocl_release_changenumber(void) --{ -+{ -+ slapi_rwlock_wrlock(retrocl_cn_lock); - retrocl_internal_cn--; -+ slapi_rwlock_unlock(retrocl_cn_lock); - } - - /* -@@ -342,7 +353,7 @@ void retrocl_release_changenumber(void) - * - * Returns: 0/-1 - * -- * Arguments: none -+ * Arguments: none. The caller should have taken write lock for the change numbers - * - * Description: reads the last entry in the changelog to obtain - * the last change number. -@@ -355,6 +366,7 @@ int retrocl_update_lastchangenumber(void) - - if (retrocl_be_changelog == NULL) return -1; - -+ slapi_rwlock_unlock(retrocl_cn_lock); - cr.cr_cnum = 0; - cr.cr_time = 0; - slapi_seq_callback(RETROCL_CHANGELOG_DN,SLAPI_SEQ_LAST, -@@ -362,7 +374,7 @@ int retrocl_update_lastchangenumber(void) - NULL,NULL,0,&cr,NULL,handle_cnum_result, - handle_cnum_entry, NULL); - -- -+ slapi_rwlock_wrlock(retrocl_cn_lock); - retrocl_internal_cn = cr.cr_cnum; - slapi_log_error(SLAPI_LOG_PLUGIN,"retrocl","Refetched last changenumber = %lu \n", - retrocl_internal_cn); -@@ -394,6 +406,8 @@ changeNumber retrocl_assign_changenumber(void) - * validity of the internal assignment of retrocl_internal_cn - * we had from the startup */ - -+ slapi_rwlock_wrlock(retrocl_cn_lock); -+ - if(retrocl_internal_cn <= retrocl_first_cn){ - /* the numbers have become out of sync - retrocl_get_changenumbers - * gets called only once during startup and it may have had a problem -@@ -404,8 +418,10 @@ changeNumber retrocl_assign_changenumber(void) - */ - retrocl_update_lastchangenumber(); - } -- - retrocl_internal_cn++; - cn = retrocl_internal_cn; -+ -+ slapi_rwlock_unlock(retrocl_cn_lock); -+ - return cn; - } -diff --git a/ldap/servers/plugins/retrocl/retrocl_po.c b/ldap/servers/plugins/retrocl/retrocl_po.c -index 382c98a..cd290f2 100644 ---- a/ldap/servers/plugins/retrocl/retrocl_po.c -+++ b/ldap/servers/plugins/retrocl/retrocl_po.c -@@ -372,7 +372,7 @@ write_replog_db( - retrocl_release_changenumber(); - } else { - /* Tell the change numbering system this one's committed to disk */ -- retrocl_commit_changenumber( ); -+ retrocl_commit_changenumber(); - } - } else { - slapi_log_error( SLAPI_LOG_FATAL, RETROCL_PLUGIN_NAME, --- -1.8.1.4 - diff --git a/SOURCES/0057-Ticket-47989-Windows-Sync-accidentally-cleared-raw_e.patch b/SOURCES/0057-Ticket-47989-Windows-Sync-accidentally-cleared-raw_e.patch new file mode 100644 index 0000000..c36f08e --- /dev/null +++ b/SOURCES/0057-Ticket-47989-Windows-Sync-accidentally-cleared-raw_e.patch @@ -0,0 +1,70 @@ +From 5907e7902b3d586d6ce534c542728bd9d153f575 Mon Sep 17 00:00:00 2001 +From: Noriko Hosoi <nhosoi@redhat.com> +Date: Fri, 16 Jan 2015 16:28:06 -0800 +Subject: [PATCH 57/59] Ticket #47989 - Windows Sync accidentally cleared + raw_entry + +Description: raw_entry in the private area in Windows Agreement stores +raw_entry that is un-schema processed last entry read from AD. +The pointer was cleared before it is being accessed by the Plug-ins that +call Windows Sync API, e.g., Posix Sync. The bug was introduced by +commit f6397113666f06848412bb12f754f04258cfa5fa. + +This patch removed the raw_entry cleanup code in windows_search_entry_ext. +And in case the raw_entry is NULL, pass remote_entry for the AD entry. + +https://fedorahosted.org/389/ticket/47989 + +Reviewed by mreynolds@redhat.com (Thank you, Mark!!) + +(cherry picked from commit 3305a6b849f79a9684799bec4cc155c7147daea6) +(cherry picked from commit f6d8b2ec3dee5760826892f522c0f1e1989f9fcb) +--- + ldap/servers/plugins/replication/windows_connection.c | 4 ---- + ldap/servers/plugins/replication/windows_protocol_util.c | 8 ++++++-- + 2 files changed, 6 insertions(+), 6 deletions(-) + +diff --git a/ldap/servers/plugins/replication/windows_connection.c b/ldap/servers/plugins/replication/windows_connection.c +index e78c367..317386b 100644 +--- a/ldap/servers/plugins/replication/windows_connection.c ++++ b/ldap/servers/plugins/replication/windows_connection.c +@@ -814,10 +814,6 @@ next: + slapi_ch_free_string(&filter_copy); + ldap_controls_free(serverctrls_copy); + serverctrls_copy = NULL; +- +- /* clear it here in case the search fails and +- we are left with a bogus old entry */ +- windows_private_set_raw_entry(conn->agmt, NULL); + conn->last_ldap_error = ldap_rc; + if (NULL != res) + { +diff --git a/ldap/servers/plugins/replication/windows_protocol_util.c b/ldap/servers/plugins/replication/windows_protocol_util.c +index c424590..dabc936 100644 +--- a/ldap/servers/plugins/replication/windows_protocol_util.c ++++ b/ldap/servers/plugins/replication/windows_protocol_util.c +@@ -1689,7 +1689,9 @@ windows_replay_update(Private_Repl_Protocol *prp, slapi_operation_parameters *op + windows_map_mods_for_replay(prp,op->p.p_modify.modify_mods, &mapped_mods, is_user, &password); + if (is_user) { + winsync_plugin_call_pre_ad_mod_user_mods_cb(prp->agmt, +- windows_private_get_raw_entry(prp->agmt), ++ windows_private_get_raw_entry(prp->agmt)? ++ windows_private_get_raw_entry(prp->agmt): ++ remote_entry, + local_dn, + local_entry, + op->p.p_modify.modify_mods, +@@ -1697,7 +1699,9 @@ windows_replay_update(Private_Repl_Protocol *prp, slapi_operation_parameters *op + &mapped_mods); + } else if (is_group) { + winsync_plugin_call_pre_ad_mod_group_mods_cb(prp->agmt, +- windows_private_get_raw_entry(prp->agmt), ++ windows_private_get_raw_entry(prp->agmt)? ++ windows_private_get_raw_entry(prp->agmt): ++ remote_entry, + local_dn, + local_entry, + op->p.p_modify.modify_mods, +-- +1.9.3 + diff --git a/SOURCES/0058-Ticket-47599-Reduce-lock-scope-in-retro-changelog-pl.patch b/SOURCES/0058-Ticket-47599-Reduce-lock-scope-in-retro-changelog-pl.patch deleted file mode 100644 index 83bbf7b..0000000 --- a/SOURCES/0058-Ticket-47599-Reduce-lock-scope-in-retro-changelog-pl.patch +++ /dev/null @@ -1,33 +0,0 @@ -From 6a670438877eecc6b75407e548dbb51bb849a9ff Mon Sep 17 00:00:00 2001 -From: Rich Megginson <rmeggins@redhat.com> -Date: Fri, 22 Nov 2013 16:51:55 -0700 -Subject: [PATCH 58/65] Ticket 47599 - Reduce lock scope in retro changelog - plug-in - -Description: Forgot to add definition of retrocl_cn_lock - -https://fedorahosted.org/389/ticket/47599 - -Reviewed by: richm(Thanks!!) -(cherry picked from commit b330876a1bccd93a8e906ac56a10c002c981ecfc) -(cherry picked from commit f4d5900579c773e5cf4b69eaeba6104078512ab0) -(cherry picked from commit b19239fdca5c00865471acfd5ffc8502c66b914a) ---- - ldap/servers/plugins/retrocl/retrocl.c | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/ldap/servers/plugins/retrocl/retrocl.c b/ldap/servers/plugins/retrocl/retrocl.c -index 3e426a7..528434e 100644 ---- a/ldap/servers/plugins/retrocl/retrocl.c -+++ b/ldap/servers/plugins/retrocl/retrocl.c -@@ -77,6 +77,7 @@ void* g_plg_identity [PLUGIN_MAX]; - - Slapi_Backend *retrocl_be_changelog = NULL; - PRLock *retrocl_internal_lock = NULL; -+Slapi_RWLock *retrocl_cn_lock; - int retrocl_nattributes = 0; - char **retrocl_attributes = NULL; - char **retrocl_aliases = NULL; --- -1.8.1.4 - diff --git a/SOURCES/0058-Ticket-47991-upgrade-script-fails-if-etc-and-var-are.patch b/SOURCES/0058-Ticket-47991-upgrade-script-fails-if-etc-and-var-are.patch new file mode 100644 index 0000000..11bd5af --- /dev/null +++ b/SOURCES/0058-Ticket-47991-upgrade-script-fails-if-etc-and-var-are.patch @@ -0,0 +1,38 @@ +From 454afeaa481ee389dadc7ce62a53e6f0ff4952b1 Mon Sep 17 00:00:00 2001 +From: Ludwig Krispenz <lkrispen@redhat.com> +Date: Tue, 20 Jan 2015 10:34:41 +0100 +Subject: [PATCH 58/59] Ticket 47991 - upgrade script fails if /etc and /var + are on different file systems + +Bug Description: the script to upgrade configfiles creates a backup dir in /var + and tries to move files fro /etc to this backup dir + using the perl rename function. + this fails if /etc and /var are different fiel systems + +Fix Description: create the backup dir also in /etc + +https://fedorahosted.org/389/ticket/47991 + +Reviewed by: Mark, Thanks + +(cherry picked from commit 96850932c054edcc477d070cf619006344b1d443) +--- + ldap/admin/src/scripts/60upgradeconfigfiles.pl | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/ldap/admin/src/scripts/60upgradeconfigfiles.pl b/ldap/admin/src/scripts/60upgradeconfigfiles.pl +index 4b37353..189eb03 100644 +--- a/ldap/admin/src/scripts/60upgradeconfigfiles.pl ++++ b/ldap/admin/src/scripts/60upgradeconfigfiles.pl +@@ -16,7 +16,7 @@ sub runinst { + # make a backup directory to store the deleted config file, then + # don't really delete it, just move it to that directory + my $mode = (stat($inf->{slapd}->{config_dir}))[2]; +- my $bakdir = $inf->{slapd}->{bak_dir} . ".bak"; ++ my $bakdir = $inf->{slapd}->{config_dir} . "/bak" ; + if (! -d $bakdir) { + $! = 0; # clear + mkdir $bakdir, $mode; +-- +1.9.3 + diff --git a/SOURCES/0059-Ticket-47599-fix-memory-leak.patch b/SOURCES/0059-Ticket-47599-fix-memory-leak.patch deleted file mode 100644 index 9ecbd7f..0000000 --- a/SOURCES/0059-Ticket-47599-fix-memory-leak.patch +++ /dev/null @@ -1,32 +0,0 @@ -From bda97e4f914e18d9d7b2de9b0e9bdc4014c73855 Mon Sep 17 00:00:00 2001 -From: Mark Reynolds <mreynolds@redhat.com> -Date: Mon, 25 Nov 2013 09:36:25 -0500 -Subject: [PATCH 59/65] Ticket 47599 - fix memory leak - -Coverity 12410 - -https://fedorahosted.org/389/ticket/47599 - -Reviewed by: richm(Thanks!) -(cherry picked from commit a16bf1b3c4ff0412c2481baace9b427750c11f8c) -(cherry picked from commit c7e7c68ea4779601ec4896b1d90f3b6d347f047f) -(cherry picked from commit 08dc37dc832e1ce78d27012a60b1691dba2f6501) ---- - ldap/servers/slapd/back-ldbm/seq.c | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/ldap/servers/slapd/back-ldbm/seq.c b/ldap/servers/slapd/back-ldbm/seq.c -index 27da2a4..10484fd 100644 ---- a/ldap/servers/slapd/back-ldbm/seq.c -+++ b/ldap/servers/slapd/back-ldbm/seq.c -@@ -242,6 +242,7 @@ ldbm_back_seq( Slapi_PBlock *pb ) - key.flags = 0; - for (retry_count = 0; retry_count < IDL_FETCH_RETRY_COUNT; retry_count++) { - err = NEW_IDL_DEFAULT; -+ idl_free(idl); - idl = idl_fetch( be, db, &key, txn.back_txn_txn, ai, &err ); - if(err == DB_LOCK_DEADLOCK) { - ldbm_nasty("ldbm_back_seq deadlock retry", 1600, err); --- -1.8.1.4 - diff --git a/SOURCES/0059-Ticket-47988-Schema-learning-mechanism-in-replicatio.patch b/SOURCES/0059-Ticket-47988-Schema-learning-mechanism-in-replicatio.patch new file mode 100644 index 0000000..9dec1bf --- /dev/null +++ b/SOURCES/0059-Ticket-47988-Schema-learning-mechanism-in-replicatio.patch @@ -0,0 +1,628 @@ +From e68a455c1191bfc597d95ce1f6326a9f6397c39d Mon Sep 17 00:00:00 2001 +From: "Thierry bordaz (tbordaz)" <tbordaz@redhat.com> +Date: Thu, 22 Jan 2015 14:29:52 +0100 +Subject: [PATCH 59/59] Ticket 47988: Schema learning mechanism, in + replication, unable to extend an existing definition + +Bug Description: + At the beginning of a replication session, a supplier checks the status of remote schema vs + its own schema. If the remote schema contains new/extended definitions, the supplier learns + those definitions. + It learns through internal MOD_ADD operation on cn=schema. + For extending definition, this fails because the definition already exists. + +Fix Description: + It needs to MOD_DEL and MOD_ADD those extended definitions while it needs to do MOD_ADD for new definitions. + It uses the field 'old_value' in 'struct schema_mods_indexes' to determine if it needs to del some definitions. + Some definitions can not be deleted + - if an objectclass is standard or is a superior of others oc + - if an attribute is a standard definition or is used in objectclass + This was problematic for updating the schema, so the fix is relaxing those controls for + internal operations + +https://fedorahosted.org/389/ticket/47988 + +Reviewed by: ? + +Platforms tested: F17 + +Flag Day: no + +Doc impact: no + +(cherry picked from commit 51e05df9c37c66206041f026c9a67ec17bc9ea4a) +(cherry picked from commit 107316806d291e584028e278c9ce1e0e99ff5617) +--- + .../servers/plugins/replication/repl5_connection.c | 17 + + ldap/servers/slapd/schema.c | 365 ++++++++++++++++----- + 2 files changed, 309 insertions(+), 73 deletions(-) + +diff --git a/ldap/servers/plugins/replication/repl5_connection.c b/ldap/servers/plugins/replication/repl5_connection.c +index 2971025..eddcae8 100644 +--- a/ldap/servers/plugins/replication/repl5_connection.c ++++ b/ldap/servers/plugins/replication/repl5_connection.c +@@ -1779,6 +1779,7 @@ conn_push_schema(Repl_Connection *conn, CSN **remotecsn) + CSN *localcsn = NULL; + Slapi_PBlock *spb = NULL; + char localcsnstr[CSN_STRSIZE + 1] = {0}; ++ char remotecnsstr[CSN_STRSIZE+1] = {0}; + + if (!remotecsn) + { +@@ -1807,6 +1808,16 @@ conn_push_schema(Repl_Connection *conn, CSN **remotecsn) + } + else + { ++ if (*remotecsn) { ++ csn_as_string (*remotecsn, PR_FALSE, remotecnsstr); ++ csn_as_string (localcsn, PR_FALSE, localcsnstr); ++ slapi_log_error(SLAPI_LOG_REPL, repl_plugin_name, ++ "[S] Checking consumer schema localcsn:%s / remotecsn:%s\n", localcsnstr, remotecnsstr); ++ } else { ++ csn_as_string (localcsn, PR_FALSE, localcsnstr); ++ slapi_log_error(SLAPI_LOG_REPL, repl_plugin_name, ++ "[S] Checking consumer schema localcsn:%s / remotecsn:NULL\n", localcsnstr); ++ } + if (!update_consumer_schema(conn)) { + /* At least one schema definition (attributetypes/objectclasses) of the consumer + * is a superset of the supplier. +@@ -1815,7 +1826,11 @@ conn_push_schema(Repl_Connection *conn, CSN **remotecsn) + * So it could be possible that a second attempt (right now) of update_consumer_schema + * would be successful + */ ++ slapi_log_error(SLAPI_LOG_REPL, "schema", ++ "[S] schema definitions may have been learned\n"); + if (!update_consumer_schema(conn)) { ++ slapi_log_error(SLAPI_LOG_REPL, "schema", ++ "[S] learned definitions are not suffisant to try to push the schema \n"); + return_value = CONN_OPERATION_FAILED; + } + } +@@ -1831,6 +1846,8 @@ conn_push_schema(Repl_Connection *conn, CSN **remotecsn) + memcpy(remotecsnstr, remote_schema_csn_bervals[0]->bv_val, + remote_schema_csn_bervals[0]->bv_len); + remotecsnstr[remote_schema_csn_bervals[0]->bv_len] = '\0'; ++ slapi_log_error(SLAPI_LOG_REPL, repl_plugin_name, ++ "[S] Reread remotecsn:%s\n", remotecsnstr); + *remotecsn = csn_new_by_string(remotecsnstr); + if (*remotecsn && (csn_compare(localcsn, *remotecsn) <= 0)) { + return_value = CONN_SCHEMA_NO_UPDATE_NEEDED; +diff --git a/ldap/servers/slapd/schema.c b/ldap/servers/slapd/schema.c +index 8744a6d..05329a6 100644 +--- a/ldap/servers/slapd/schema.c ++++ b/ldap/servers/slapd/schema.c +@@ -139,6 +139,7 @@ typedef struct repl_schema_policy { + struct schema_mods_indexes { + int index; + char *new_value; ++ char *old_value; + struct schema_mods_indexes *next; + }; + +@@ -155,9 +156,9 @@ static int oc_check_required(Slapi_PBlock *, Slapi_Entry *,struct objclass *); + static int oc_check_allowed_sv(Slapi_PBlock *, Slapi_Entry *e, const char *type, struct objclass **oclist ); + static int schema_delete_objectclasses ( Slapi_Entry *entryBefore, + LDAPMod *mod, char *errorbuf, size_t errorbufsize, +- int schema_ds4x_compat ); ++ int schema_ds4x_compat, int is_internal_operation); + static int schema_delete_attributes ( Slapi_Entry *entryBefore, +- LDAPMod *mod, char *errorbuf, size_t errorbufsize); ++ LDAPMod *mod, char *errorbuf, size_t errorbufsize, int is_internal_operation); + static int schema_add_attribute ( Slapi_PBlock *pb, LDAPMod *mod, + char *errorbuf, size_t errorbufsize, int schema_ds4x_compat ); + static int schema_add_objectclass ( Slapi_PBlock *pb, LDAPMod *mod, +@@ -2074,7 +2075,9 @@ modify_schema_dse (Slapi_PBlock *pb, Slapi_Entry *entryBefore, Slapi_Entry *entr + int schema_modify_enabled = config_get_schemamod(); + int reapply_mods = 0; + int is_replicated_operation = 0; +- ++ int is_internal_operation = 0; ++ Slapi_Operation *operation = NULL; ++ + if (!schema_modify_enabled) { + *returncode = LDAP_UNWILLING_TO_PERFORM; + schema_create_errormsg( returntext, SLAPI_DSE_RETURNTEXT_SIZE, +@@ -2085,6 +2088,8 @@ modify_schema_dse (Slapi_PBlock *pb, Slapi_Entry *entryBefore, Slapi_Entry *entr + + slapi_pblock_get( pb, SLAPI_MODIFY_MODS, &mods ); + slapi_pblock_get( pb, SLAPI_IS_REPLICATED_OPERATION, &is_replicated_operation); ++ slapi_pblock_get( pb, SLAPI_OPERATION, &operation); ++ is_internal_operation = slapi_operation_is_flag_set(operation, SLAPI_OP_FLAG_INTERNAL); + + /* In case we receive a schema from a supplier, check if we can accept it + * (it is a superset of our own schema). +@@ -2153,11 +2158,11 @@ modify_schema_dse (Slapi_PBlock *pb, Slapi_Entry *entryBefore, Slapi_Entry *entr + if (SLAPI_IS_MOD_DELETE(mods[i]->mod_op)) { + if (strcasecmp (mods[i]->mod_type, "objectclasses") == 0) { + *returncode = schema_delete_objectclasses (entryBefore, mods[i], +- returntext, SLAPI_DSE_RETURNTEXT_SIZE, schema_ds4x_compat ); ++ returntext, SLAPI_DSE_RETURNTEXT_SIZE, schema_ds4x_compat, is_internal_operation); + } + else if (strcasecmp (mods[i]->mod_type, "attributetypes") == 0) { + *returncode = schema_delete_attributes (entryBefore, mods[i], +- returntext, SLAPI_DSE_RETURNTEXT_SIZE ); ++ returntext, SLAPI_DSE_RETURNTEXT_SIZE, is_internal_operation); + } + else { + *returncode= LDAP_NO_SUCH_ATTRIBUTE; +@@ -2196,6 +2201,7 @@ modify_schema_dse (Slapi_PBlock *pb, Slapi_Entry *entryBefore, Slapi_Entry *entr + schema_create_errormsg( returntext, SLAPI_DSE_RETURNTEXT_SIZE, + schema_errprefix_generic, mods[i]->mod_type, + "Replace is not allowed on the subschema subentry" ); ++ slapi_log_error(SLAPI_LOG_REPL, "schema", "modify_schema_dse: Replace is not allowed on the subschema subentry\n"); + rc = SLAPI_DSE_CALLBACK_ERROR; + } else { + if (strcasecmp (mods[i]->mod_type, "attributetypes") == 0) { +@@ -2264,7 +2270,7 @@ modify_schema_dse (Slapi_PBlock *pb, Slapi_Entry *entryBefore, Slapi_Entry *entr + * Add a new objectclass + */ + *returncode = schema_add_objectclass ( pb, mods[i], returntext, +- SLAPI_DSE_RETURNTEXT_SIZE, schema_ds4x_compat ); ++ SLAPI_DSE_RETURNTEXT_SIZE, schema_ds4x_compat); + } + else { + if ( schema_ds4x_compat ) { +@@ -2465,16 +2471,20 @@ oc_add_nolock(struct objclass *newoc) + */ + static int + schema_delete_objectclasses( Slapi_Entry *entryBefore, LDAPMod *mod, +- char *errorbuf, size_t errorbufsize, int schema_ds4x_compat ) ++ char *errorbuf, size_t errorbufsize, int schema_ds4x_compat, int is_internal_operation) + { + int i; + int rc = LDAP_SUCCESS; /* optimistic */ + struct objclass *poc, *poc2, *delete_oc = NULL; + + if ( NULL == mod->mod_bvalues ) { +- schema_create_errormsg( errorbuf, errorbufsize, schema_errprefix_oc, +- NULL, "Cannot remove all schema object classes" ); ++ if (is_internal_operation) { ++ slapi_log_error(SLAPI_LOG_REPL, "schema", "schema_delete_objectclasses: Remove all objectclass in Internal op\n"); ++ } else { ++ schema_create_errormsg(errorbuf, errorbufsize, schema_errprefix_oc, ++ NULL, "Cannot remove all schema object classes"); + return LDAP_UNWILLING_TO_PERFORM; ++ } + } + + for (i = 0; mod->mod_bvalues[i]; i++) { +@@ -2492,11 +2502,19 @@ schema_delete_objectclasses( Slapi_Entry *entryBefore, LDAPMod *mod, + for (poc2 = g_get_global_oc_nolock(); poc2 != NULL; poc2 = poc2->oc_next) { + if (poc2->oc_superior && + (strcasecmp (poc2->oc_superior, delete_oc->oc_name) == 0)) { +- schema_create_errormsg( errorbuf, errorbufsize, schema_errprefix_oc, ++ if (is_internal_operation) { ++ slapi_log_error(SLAPI_LOG_REPL, "schema", "schema_delete_objectclasses: Should not delete object class (%s) which has child object classes" ++ ". But accept it because it is internal operation\n", ++ delete_oc->oc_name); ++ } else { ++ schema_create_errormsg(errorbuf, errorbufsize, schema_errprefix_oc, + delete_oc->oc_name, "Cannot delete an object class" +- " which has child object classes" ); +- rc = LDAP_UNWILLING_TO_PERFORM; +- goto unlock_and_return; ++ " which has child object classes"); ++ slapi_log_error(SLAPI_LOG_REPL, "schema", "schema_delete_objectclasses: Cannot delete an object class (%s) which has child object classes\n", ++ delete_oc->oc_name); ++ rc = LDAP_UNWILLING_TO_PERFORM; ++ goto unlock_and_return; ++ } + } + } + +@@ -2505,10 +2523,19 @@ schema_delete_objectclasses( Slapi_Entry *entryBefore, LDAPMod *mod, + } + + else { +- schema_create_errormsg( errorbuf, errorbufsize, schema_errprefix_oc, +- delete_oc->oc_name, "Cannot delete a standard object class" ); +- rc = LDAP_UNWILLING_TO_PERFORM; +- goto unlock_and_return; ++ if (is_internal_operation) { ++ slapi_log_error(SLAPI_LOG_REPL, "schema", "schema_delete_objectclasses: Should not delete a standard object class (%s)" ++ ". But accept it because it is internal operation\n", ++ delete_oc->oc_name); ++ oc_delete_nolock (poc->oc_name); ++ } else { ++ schema_create_errormsg( errorbuf, errorbufsize, schema_errprefix_oc, ++ delete_oc->oc_name, "Cannot delete a standard object class" ); ++ slapi_log_error(SLAPI_LOG_REPL, "schema", "schema_delete_objectclasses: Cannot delete a standard object class (%s)\n", ++ delete_oc->oc_name); ++ rc = LDAP_UNWILLING_TO_PERFORM; ++ goto unlock_and_return; ++ } + } + } + else { +@@ -2552,7 +2579,7 @@ schema_return(int rc,struct sizedbuffer * psb1,struct sizedbuffer *psb2,struct s + */ + static int + schema_delete_attributes ( Slapi_Entry *entryBefore, LDAPMod *mod, +- char *errorbuf, size_t errorbufsize) ++ char *errorbuf, size_t errorbufsize, int is_internal_operation) + { + char *attr_ldif, *oc_list_type = ""; + asyntaxinfo *a; +@@ -2563,10 +2590,14 @@ schema_delete_attributes ( Slapi_Entry *entryBefore, LDAPMod *mod, + struct sizedbuffer *psbAttrSyntax= sizedbuffer_construct(BUFSIZ); + + if (NULL == mod->mod_bvalues) { +- schema_create_errormsg( errorbuf, errorbufsize, schema_errprefix_at, ++ if (is_internal_operation) { ++ slapi_log_error(SLAPI_LOG_REPL, "schema", "schema_delete_attributes: Remove all attributetypes in Internal op\n"); ++ } else { ++ schema_create_errormsg( errorbuf, errorbufsize, schema_errprefix_at, + NULL, "Cannot remove all schema attribute types" ); +- return schema_return(LDAP_UNWILLING_TO_PERFORM,psbAttrOid,psbAttrName, ++ return schema_return(LDAP_UNWILLING_TO_PERFORM,psbAttrOid,psbAttrName, + psbAttrSyntax,NULL); ++ } + } + + for (i = 0; mod->mod_bvalues[i]; i++) { +@@ -2592,12 +2623,20 @@ schema_delete_attributes ( Slapi_Entry *entryBefore, LDAPMod *mod, + if ((a = attr_syntax_get_by_name ( psbAttrName->buffer)) != NULL ) { + /* only modify attrs which were user defined */ + if (a->asi_flags & SLAPI_ATTR_FLAG_STD_ATTR) { +- schema_create_errormsg( errorbuf, errorbufsize, schema_errprefix_at, +- psbAttrName->buffer, +- "Cannot delete a standard attribute type" ); +- attr_syntax_return( a ); +- return schema_return(LDAP_UNWILLING_TO_PERFORM,psbAttrOid,psbAttrName, +- psbAttrSyntax,NULL); ++ if (is_internal_operation) { ++ slapi_log_error(SLAPI_LOG_REPL, "schema", "schema_delete_attributes: Should not delete a standard attribute type (%s)" ++ ". But accept it because it is internal operation\n", ++ psbAttrName->buffer); ++ } else { ++ schema_create_errormsg( errorbuf, errorbufsize, schema_errprefix_at, ++ psbAttrName->buffer, ++ "Cannot delete a standard attribute type"); ++ slapi_log_error(SLAPI_LOG_REPL, "schema", "schema_delete_attributes: Cannot delete a standard attribute type (%s)\n", ++ psbAttrName->buffer); ++ attr_syntax_return(a); ++ return schema_return(LDAP_UNWILLING_TO_PERFORM, psbAttrOid, psbAttrName, ++ psbAttrSyntax, NULL); ++ } + } + + /* Do not allow deletion if referenced by an object class. */ +@@ -2627,17 +2666,32 @@ schema_delete_attributes ( Slapi_Entry *entryBefore, LDAPMod *mod, + } + + if (attr_in_use_by_an_oc) { +- schema_create_errormsg( errorbuf, errorbufsize, schema_errprefix_at, +- psbAttrName->buffer, "Is included in the %s list for object class %s. Cannot delete.", +- oc_list_type, oc->oc_name ); +- break; ++ if (is_internal_operation) { ++ slapi_log_error(SLAPI_LOG_REPL, "schema", "schema_delete_attributes: Should not delete an attribute (%s) used in oc (%s)" ++ ". But accept it because it is internal operation\n", ++ oc_list_type, oc->oc_name); ++ } else { ++ schema_create_errormsg(errorbuf, errorbufsize, schema_errprefix_at, ++ psbAttrName->buffer, "Is included in the %s list for object class %s. Cannot delete.", ++ oc_list_type, oc->oc_name); ++ slapi_log_error(SLAPI_LOG_REPL, "schema", "schema_delete_attributes: Could delete an attribute (%s) used in oc (%s)" ++ ". But accept it because it is internal operation\n", ++ oc_list_type, oc->oc_name); ++ break; ++ } + } + } + oc_unlock(); + if (attr_in_use_by_an_oc) { +- attr_syntax_return( a ); +- return schema_return(LDAP_UNWILLING_TO_PERFORM,psbAttrOid,psbAttrName, +- psbAttrSyntax,NULL); ++ if (is_internal_operation) { ++ slapi_log_error(SLAPI_LOG_REPL, "schema", "schema_delete_attributes: Should not delete an attribute used in oc" ++ ". But accept it because it is internal operation\n"); ++ ++ } else { ++ attr_syntax_return(a); ++ return schema_return(LDAP_UNWILLING_TO_PERFORM, psbAttrOid, psbAttrName, ++ psbAttrSyntax, NULL); ++ } + } + + /* Delete it. */ +@@ -2744,7 +2798,10 @@ add_oc_internal(struct objclass *pnew_oc, char *errorbuf, size_t errorbufsize, + } + } + +- /* check to see if the superior oc exists */ ++ /* check to see if the superior oc exists ++ * This is not enforced for internal op (when learning new schema ++ * definitions from a replication session) ++ */ + if (!rc && pnew_oc->oc_superior && + ((psup_oc = oc_find_nolock (pnew_oc->oc_superior, NULL, PR_FALSE)) == NULL)) { + schema_create_errormsg( errorbuf, errorbufsize, schema_errprefix_oc, +@@ -2798,7 +2855,10 @@ add_oc_internal(struct objclass *pnew_oc, char *errorbuf, size_t errorbufsize, + sizedbuffer_destroy(psbOcOid); + } + +- /* check to see if the oc's attributes are valid */ ++ /* check to see if the oc's attributes are valid ++ * This is not checked if this is an internal operation (learning schema ++ * definitions from a replication session) ++ */ + if (!rc && !(flags & DSE_SCHEMA_NO_CHECK) && + schema_check_oc_attrs ( pnew_oc, errorbuf, errorbufsize, + 0 /* don't strip options */ ) == 0 ) { +@@ -6265,11 +6325,101 @@ schema_oc_superset_check(struct objclass *oc_list1, struct objclass *oc_list2, c + + return rc; + } ++ ++static char * ++schema_oc_to_string(struct objclass *oc) ++{ ++ char *oc_str; ++ int i; ++ int size = 0; ++ ++ /* Compute the size of the string that can contain ++ * the oc definition and allocates it ++ */ ++ if (oc->oc_oid) size += strlen(oc->oc_oid); ++ if (oc->oc_name) size += strlen(oc->oc_name); ++ if (oc->oc_desc) size += strlen(oc->oc_desc); ++ if (oc->oc_orig_required) { ++ for (i =0; oc->oc_orig_required[i] != NULL; i++) { ++ size += strlen(oc->oc_orig_required[i]); ++ size += 3; ++ } ++ } ++ if (oc->oc_orig_allowed) { ++ for (i =0; oc->oc_orig_allowed[i] != NULL; i++) { ++ size += strlen(oc->oc_orig_allowed[i]); ++ size += 3; ++ } ++ } ++ size += strlen(schema_oc_kind_strings_with_spaces[oc->oc_kind]); ++ ++ size += 128; /* for all keywords: NAME, DESC, SUP... */ ++ if ((oc_str = (char *) slapi_ch_calloc(1, size)) == NULL) { ++ return NULL; ++ } ++ ++ /* OID + name */ ++ sprintf(oc_str, "( %s NAME '%s'", (oc->oc_oid) ? oc->oc_oid : "", oc->oc_name); ++ ++ /* description */ ++ strcat(oc_str, " DESC '"); ++ if (oc->oc_desc) { ++ strcat(oc_str, oc->oc_desc); ++ } ++ strcat(oc_str, "'"); ++ ++ /* SUP */ ++ if (oc->oc_superior) { ++ strcat(oc_str, " SUP '"); ++ strcat(oc_str, oc->oc_superior); ++ strcat(oc_str, "'"); ++ } ++ ++ /* oc_kind */ ++ strcat(oc_str, schema_oc_kind_strings_with_spaces[oc->oc_kind]); ++ ++ /* MUST */ ++ if (oc->oc_orig_required) { ++ strcat(oc_str, " MUST ( "); ++ for ( i = 0; oc->oc_orig_required[i] != NULL; ++i ) { ++ if (i > 0) { ++ strcat(oc_str, " $ "); ++ } ++ strcat(oc_str, oc->oc_orig_required[i]); ++ } ++ strcat(oc_str, " ) "); ++ } ++ ++ /* MAY */ ++ if (oc->oc_orig_allowed) { ++ strcat(oc_str, " MAY ( "); ++ for ( i = 0; oc->oc_orig_allowed[i] != NULL; ++i ) { ++ if (i > 0) { ++ strcat(oc_str, " $ "); ++ } ++ strcat(oc_str, oc->oc_orig_allowed[i]); ++ } ++ strcat(oc_str, " ) "); ++ } ++ ++ /* flags */ ++ if (oc->oc_flags & OC_FLAG_USER_OC) { ++ strcat(oc_str, " X-ORIGIN 'blahblahblah'"); ++ } ++ ++ strcat(oc_str, " )"); ++ slapi_log_error(SLAPI_LOG_REPL, "schema", "schema_oc_to_string: replace (old[%d]=%s)\n", ++ size, oc_str); ++ ++ return(oc_str); ++ ++} + /* call must hold oc_lock at least in read */ + static struct schema_mods_indexes * + schema_list_oc2learn(struct objclass *oc_remote_list, struct objclass *oc_local_list, int replica_role) { + struct objclass *oc_remote, *oc_local; + struct schema_mods_indexes *head = NULL, *mods_index; ++ struct schema_mods_indexes *tail = NULL; + int index = 0; + int repl_schema_policy; + const char *message; +@@ -6309,11 +6459,22 @@ schema_list_oc2learn(struct objclass *oc_remote_list, struct objclass *oc_local_ + continue; + } + +- /* insert it in the list */ ++ /* insert it at the end of the list ++ * to keep the order of the original schema ++ * For example superior oc should be declared first ++ */ + mods_index->index = index; +- mods_index->next = head; ++ mods_index->next = NULL; + mods_index->new_value = NULL; +- head = mods_index; ++ if (oc_local) { ++ mods_index->old_value = schema_oc_to_string(oc_local); ++ } ++ if (head == NULL) { ++ head = mods_index; ++ } else { ++ tail->next = mods_index; ++ } ++ tail = mods_index; + } + } + slapi_rwlock_unlock( schema_policy_lock ); +@@ -7173,17 +7334,27 @@ modify_schema_internal_mod(Slapi_DN *sdn, Slapi_Mods *smods) + /* do modify */ + slapi_modify_internal_pb (newpb); + slapi_pblock_get (newpb, SLAPI_PLUGIN_INTOP_RESULT, &op_result); +- if (op_result == LDAP_SUCCESS) { +- /* Update the schema csn if the operation succeeded */ +- schema_csn = csn_new(); +- if (NULL != schema_csn) { +- csn_set_replicaid(schema_csn, 0); +- csn_set_time(schema_csn, current_time()); +- g_set_global_schema_csn(schema_csn); +- } +- } ++ if (op_result == LDAP_SUCCESS) { ++ char *type; + +- slapi_pblock_destroy(newpb); ++ if (smods && smods->mods) { ++ type = smods->mods[0]->mod_type; ++ } else { ++ type = "unknown"; ++ } ++ slapi_log_error(SLAPI_LOG_REPL, "schema", "modify_schema_internal_mod: successfully learn %s definitions\n", type); ++ /* Update the schema csn if the operation succeeded */ ++ schema_csn = csn_new(); ++ if (NULL != schema_csn) { ++ csn_set_replicaid(schema_csn, 0); ++ csn_set_time(schema_csn, current_time()); ++ g_set_global_schema_csn(schema_csn); ++ } ++ } else { ++ slapi_log_error(SLAPI_LOG_FATAL, "schema", "modify_schema_internal_mod: fail to learn schema definitions (%d) \n", op_result); ++ } ++ ++ slapi_pblock_destroy(newpb); + } + + /* Prepare slapi_mods for the internal mod +@@ -7191,32 +7362,80 @@ modify_schema_internal_mod(Slapi_DN *sdn, Slapi_Mods *smods) + */ + static void + modify_schema_prepare_mods(Slapi_Mods *smods, char *type, struct schema_mods_indexes *values) +-{ +- struct schema_mods_indexes *object; +- struct berval *bv; +- struct berval **bvps; +- int nb_values, i; +- +- for (object = values, nb_values = 0; object != NULL; object = object->next, nb_values++); +- bvps = (struct berval **) slapi_ch_calloc(1, (nb_values + 1) * sizeof(struct berval *)); +- +- ++{ ++ struct schema_mods_indexes *object; ++ struct berval *bv; ++ struct berval **bvps_del = NULL; ++ struct berval **bvps_add = NULL; ++ int nb_values_del, nb_values_add, i; ++ int nb_mods; ++ ++ /* Checks the values to delete */ ++ for (object = values, nb_values_del = 0; object != NULL; object = object->next) { ++ if (object->old_value) { ++ nb_values_del++; ++ } ++ } ++ if (nb_values_del) { ++ bvps_del = (struct berval **) slapi_ch_calloc(1, (nb_values_del + 1) * sizeof (struct berval *)); ++ ++ for (i = 0, object = values; object != NULL; object = object->next) { ++ if (object->old_value) { ++ bv = (struct berval *) slapi_ch_malloc(sizeof (struct berval)); ++ bv->bv_len = strlen(object->old_value); ++ bv->bv_val = (void*) object->old_value; ++ bvps_del[i] = bv; ++ i++; ++ slapi_log_error(SLAPI_LOG_REPL, "schema", "MOD[%d] del (%s): %s\n", i, type, object->old_value); ++ } ++ } ++ bvps_del[nb_values_del] = NULL; ++ } ++ ++ /* Checks the values to add */ ++ for (object = values, nb_values_add = 0; object != NULL; object = object->next, nb_values_add++); ++ ++ if (nb_values_add) { ++ bvps_add = (struct berval **) slapi_ch_calloc(1, (nb_values_add + 1) * sizeof (struct berval *)); ++ ++ + for (i = 0, object = values; object != NULL; i++, object = object->next) { +- bv = (struct berval *) slapi_ch_malloc(sizeof(struct berval)); +- bv->bv_len = strlen(object->new_value); +- bv->bv_val = (void*) object->new_value; +- bvps[i] = bv; +- slapi_log_error(SLAPI_LOG_REPL, "schema", "MOD[%d] add (%s): %s\n", i, type, object->new_value); +- } +- bvps[nb_values] = NULL; +- slapi_mods_init (smods, 2); +- slapi_mods_add_modbvps( smods, LDAP_MOD_ADD, type, bvps ); +- for (i = 0; bvps[i] != NULL; i++) { +- /* bv_val should not be free. It belongs to the incoming MOD */ +- slapi_ch_free((void **) &bvps[i]); +- } +- slapi_ch_free((void **) &bvps); +- ++ bv = (struct berval *) slapi_ch_malloc(sizeof (struct berval)); ++ bv->bv_len = strlen(object->new_value); ++ bv->bv_val = (void*) object->new_value; ++ bvps_add[i] = bv; ++ slapi_log_error(SLAPI_LOG_REPL, "schema", "MOD[%d] add (%s): %s\n", i, type, object->new_value); ++ } ++ bvps_add[nb_values_add] = NULL; ++ } ++ ++ /* Prepare the mods */ ++ nb_mods = 1; ++ if (bvps_del) nb_mods++; ++ if (bvps_add) nb_mods++; ++ slapi_mods_init(smods, nb_mods); ++ if (bvps_del) slapi_mods_add_modbvps(smods, LDAP_MOD_DELETE, type, bvps_del); ++ if (bvps_add) slapi_mods_add_modbvps(smods, LDAP_MOD_ADD, type, bvps_add); ++ ++ ++ /* clean up */ ++ if (bvps_del) { ++ ++ for (i = 0; bvps_del[i] != NULL; i++) { ++ /* bv_val should not be free. It belongs to the incoming MOD */ ++ slapi_ch_free((void **) &bvps_del[i]); ++ } ++ slapi_ch_free((void **) &bvps_del); ++ } ++ ++ if (bvps_add) { ++ ++ for (i = 0; bvps_add[i] != NULL; i++) { ++ /* bv_val should not be free. It belongs to the incoming MOD */ ++ slapi_ch_free((void **) &bvps_add[i]); ++ } ++ slapi_ch_free((void **) &bvps_add); ++ } + } + + /* called by modify_schema_dse/supplier_learn_new_definitions to learn new +-- +1.9.3 + diff --git a/SOURCES/0060-Ticket-47596-attrcrypt-fails-to-find-unlocked-key.patch b/SOURCES/0060-Ticket-47596-attrcrypt-fails-to-find-unlocked-key.patch deleted file mode 100644 index cd8e564..0000000 --- a/SOURCES/0060-Ticket-47596-attrcrypt-fails-to-find-unlocked-key.patch +++ /dev/null @@ -1,117 +0,0 @@ -From 7b257e2f72ac674025f894ec5fdcc2eaca34b0a2 Mon Sep 17 00:00:00 2001 -From: Rich Megginson <rmeggins@redhat.com> -Date: Fri, 15 Nov 2013 10:24:26 -0700 -Subject: [PATCH 60/65] Ticket #47596 attrcrypt fails to find unlocked key - -https://fedorahosted.org/389/ticket/47596 -Reviewed by: nkinder (Thanks!) -Branch: 389-ds-base-1.3.1 -Fix Description: There should always be a pre-authenticated slot/token that -has the servers cert and key. Just loop through all of the slots that the -server's cert is found on, and use the first one that is authenticated. -Platforms tested: RHEL6 x86_64 -Flag Day: no -Doc impact: no -(cherry picked from commit b1fad4e35c0f963bf4678a2ed9a068dbe4fb159c) -(cherry picked from commit cf091de4ae70ad8d683ff33c57e75e58ff900502) -(cherry picked from commit 92b46296c0b4ab9aa436ae09bca95832e2276c6e) ---- - ldap/servers/slapd/back-ldbm/ldbm_attrcrypt.c | 2 +- - ldap/servers/slapd/proto-slap.h | 1 + - ldap/servers/slapd/ssl.c | 58 +++++++++++++++++++++++++++ - 3 files changed, 60 insertions(+), 1 deletion(-) - -diff --git a/ldap/servers/slapd/back-ldbm/ldbm_attrcrypt.c b/ldap/servers/slapd/back-ldbm/ldbm_attrcrypt.c -index 09cce9b..f4a5d1a 100644 ---- a/ldap/servers/slapd/back-ldbm/ldbm_attrcrypt.c -+++ b/ldap/servers/slapd/back-ldbm/ldbm_attrcrypt.c -@@ -425,7 +425,7 @@ attrcrypt_fetch_private_key(SECKEYPrivateKey **private_key) - LDAPDebug(LDAP_DEBUG_ANY,"Can't find certificate %s in attrcrypt_fetch_private_key: %d - %s\n", cert_name, errorCode, slapd_pr_strerror(errorCode)); - } - if( cert != NULL ) { -- key = slapd_pk11_findKeyByAnyCert(cert, NULL); -+ key = slapd_get_unlocked_key_for_cert(cert, NULL); - } - if (key == NULL) { - errorCode = PR_GetError(); -diff --git a/ldap/servers/slapd/proto-slap.h b/ldap/servers/slapd/proto-slap.h -index 4c1dab9..39c1f54 100644 ---- a/ldap/servers/slapd/proto-slap.h -+++ b/ldap/servers/slapd/proto-slap.h -@@ -1012,6 +1012,7 @@ int slapd_ssl_init2(PRFileDesc **fd, int startTLS); - int slapd_security_library_is_initialized(); - int slapd_ssl_listener_is_initialized(); - int slapd_SSL_client_auth (LDAP* ld); -+SECKEYPrivateKey *slapd_get_unlocked_key_for_cert(CERTCertificate *cert, void *pin_arg); - - /* - * security_wrappers.c -diff --git a/ldap/servers/slapd/ssl.c b/ldap/servers/slapd/ssl.c -index f515b8e..8b80acb 100644 ---- a/ldap/servers/slapd/ssl.c -+++ b/ldap/servers/slapd/ssl.c -@@ -1577,3 +1577,61 @@ char* slapd_get_tmp_dir() - #endif - return ( tmpdir ); - } -+ -+SECKEYPrivateKey * -+slapd_get_unlocked_key_for_cert(CERTCertificate *cert, void *pin_arg) -+{ -+ SECKEYPrivateKey *key = NULL; -+ PK11SlotListElement *sle; -+ PK11SlotList *slotlist = PK11_GetAllSlotsForCert(cert, NULL); -+ const char *certsubject = cert->subjectName ? cert->subjectName : "unknown cert"; -+ -+ if (!slotlist) { -+ PRErrorCode errcode = PR_GetError(); -+ slapi_log_error(SLAPI_LOG_FATAL, "slapd_get_unlocked_key_for_cert", -+ "Error: cannot get slot list for certificate [%s] (%d: %s)\n", -+ certsubject, errcode, slapd_pr_strerror(errcode)); -+ return key; -+ } -+ -+ for (sle = slotlist->head; sle; sle = sle->next) { -+ PK11SlotInfo *slot = sle->slot; -+ const char *slotname = (slot && PK11_GetSlotName(slot)) ? PK11_GetSlotName(slot) : "unknown slot"; -+ const char *tokenname = (slot && PK11_GetTokenName(slot)) ? PK11_GetTokenName(slot) : "unknown token"; -+ if (!slot) { -+ slapi_log_error(SLAPI_LOG_TRACE, "slapd_get_unlocked_key_for_cert", -+ "Missing slot for slot list element for certificate [%s]\n", -+ certsubject); -+ } else if (PK11_IsLoggedIn(slot, pin_arg)) { -+ key = PK11_FindKeyByDERCert(slot, cert, pin_arg); -+ slapi_log_error(SLAPI_LOG_TRACE, "slapd_get_unlocked_key_for_cert", -+ "Found unlocked slot [%s] token [%s] for certificate [%s]\n", -+ slotname, tokenname, certsubject); -+ break; -+ } else { -+ slapi_log_error(SLAPI_LOG_TRACE, "slapd_get_unlocked_key_for_cert", -+ "Skipping locked slot [%s] token [%s] for certificate [%s]\n", -+ slotname, tokenname, certsubject); -+ } -+ } -+ -+ if (!key) { -+ slapi_log_error(SLAPI_LOG_FATAL, "slapd_get_unlocked_key_for_cert", -+ "Error: could not find any unlocked slots for certificate [%s]. " -+ "Please review your TLS/SSL configuration. The following slots were found:\n", -+ certsubject); -+ for (sle = slotlist->head; sle; sle = sle->next) { -+ PK11SlotInfo *slot = sle->slot; -+ const char *slotname = (slot && PK11_GetSlotName(slot)) ? PK11_GetSlotName(slot) : "unknown slot"; -+ const char *tokenname = (slot && PK11_GetTokenName(slot)) ? PK11_GetTokenName(slot) : "unknown token"; -+ slapi_log_error(SLAPI_LOG_FATAL, "slapd_get_unlocked_key_for_cert", -+ "Slot [%s] token [%s] was locked.\n", -+ slotname, tokenname); -+ } -+ -+ } -+ -+ PK11_FreeSlotList(slotlist); -+ return key; -+} -+ --- -1.8.1.4 - diff --git a/SOURCES/0060-Ticket-47988-Schema-learning-mechanism-in-replicatio.patch b/SOURCES/0060-Ticket-47988-Schema-learning-mechanism-in-replicatio.patch new file mode 100644 index 0000000..ed0fc9c --- /dev/null +++ b/SOURCES/0060-Ticket-47988-Schema-learning-mechanism-in-replicatio.patch @@ -0,0 +1,45 @@ +From 602e9ef126808491be5d33d9c4faa9c86e63730a Mon Sep 17 00:00:00 2001 +From: Noriko Hosoi <nhosoi@redhat.com> +Date: Sun, 25 Jan 2015 22:05:12 -0800 +Subject: [PATCH] Ticket 47988: Schema learning mechanism, in replication, + unable to extend an existing definition + +Description: Covscan FORWARD_NULL fix introduced by commit +commit 51e05df9c37c66206041f026c9a67ec17bc9ea4a + +1. ldap/servers/slapd/schema.c:2490: var_deref_op: Dereferencing null pointer "mod->mod_vals.modv_bvals". +2. ldap/servers/slapd/schema.c:2603: var_deref_op: Dereferencing null pointer "mod->mod_vals.modv_bvals". + +Added NULL check on mod->mod_bvalues to the for loop stop condition. + +(cherry picked from commit cfa8e4daef9253df0bd8a348f302299bda16b37c) +(cherry picked from commit 1e2bf2b1ee6cd4c08a171edfedb10ee6bb1c3420) +--- + ldap/servers/slapd/schema.c | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/ldap/servers/slapd/schema.c b/ldap/servers/slapd/schema.c +index 05329a6..a251aa7 100644 +--- a/ldap/servers/slapd/schema.c ++++ b/ldap/servers/slapd/schema.c +@@ -2487,7 +2487,7 @@ schema_delete_objectclasses( Slapi_Entry *entryBefore, LDAPMod *mod, + } + } + +- for (i = 0; mod->mod_bvalues[i]; i++) { ++ for (i = 0; mod->mod_bvalues && mod->mod_bvalues[i]; i++) { + if ( LDAP_SUCCESS != ( rc = parse_oc_str ( + (const char *)mod->mod_bvalues[i]->bv_val, &delete_oc, + errorbuf, errorbufsize, 0, 0, schema_ds4x_compat, NULL))) { +@@ -2600,7 +2600,7 @@ schema_delete_attributes ( Slapi_Entry *entryBefore, LDAPMod *mod, + } + } + +- for (i = 0; mod->mod_bvalues[i]; i++) { ++ for (i = 0; mod->mod_bvalues && mod->mod_bvalues[i]; i++) { + attr_ldif =(char *) mod->mod_bvalues[i]->bv_val; + + /* normalize the attr ldif */ +-- +1.9.3 + diff --git a/SOURCES/0061-Ticket-47596-attrcrypt-fails-to-find-unlocked-key.patch b/SOURCES/0061-Ticket-47596-attrcrypt-fails-to-find-unlocked-key.patch deleted file mode 100644 index 75736c5..0000000 --- a/SOURCES/0061-Ticket-47596-attrcrypt-fails-to-find-unlocked-key.patch +++ /dev/null @@ -1,39 +0,0 @@ -From 13dee95761221c2849523acf3276242416a7a01a Mon Sep 17 00:00:00 2001 -From: Rich Megginson <rmeggins@redhat.com> -Date: Tue, 26 Nov 2013 08:14:07 -0700 -Subject: [PATCH 61/65] Ticket #47596 attrcrypt fails to find unlocked key - -https://fedorahosted.org/389/ticket/47596 -Reviewed by: nkinder (Thanks!) -Branch: 389-ds-base-1.3.1 -Fix Description: Additional fix to the previous fix. As it turns out, the -function PK11_IsLoggedIn() only returns true if the slot has been unlocked -with a pin or password. If the slot does not need a login at all, because -the cert/key db has no password, PK11_IsLoggedIn will return false. The code -must check for PK11_NeedLogin too. -Platforms tested: RHEL6 x86_64 -Flag Day: no -Doc impact: no -(cherry picked from commit e66c4cecc47eff659a72a51c1e1722fb41c1dfbc) -(cherry picked from commit f608a943745e51fe4b5dbfb18bada2e2d13e0d6a) -(cherry picked from commit 5d2a20b4881d5374a9088ed1504b2d7e753976bb) ---- - ldap/servers/slapd/ssl.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/ldap/servers/slapd/ssl.c b/ldap/servers/slapd/ssl.c -index 8b80acb..61809aa 100644 ---- a/ldap/servers/slapd/ssl.c -+++ b/ldap/servers/slapd/ssl.c -@@ -1602,7 +1602,7 @@ slapd_get_unlocked_key_for_cert(CERTCertificate *cert, void *pin_arg) - slapi_log_error(SLAPI_LOG_TRACE, "slapd_get_unlocked_key_for_cert", - "Missing slot for slot list element for certificate [%s]\n", - certsubject); -- } else if (PK11_IsLoggedIn(slot, pin_arg)) { -+ } else if (!PK11_NeedLogin(slot) || PK11_IsLoggedIn(slot, pin_arg)) { - key = PK11_FindKeyByDERCert(slot, cert, pin_arg); - slapi_log_error(SLAPI_LOG_TRACE, "slapd_get_unlocked_key_for_cert", - "Found unlocked slot [%s] token [%s] for certificate [%s]\n", --- -1.8.1.4 - diff --git a/SOURCES/0061-Ticket-48005-ns-slapd-crash-in-shutdown-phase.patch b/SOURCES/0061-Ticket-48005-ns-slapd-crash-in-shutdown-phase.patch new file mode 100644 index 0000000..3d59efe --- /dev/null +++ b/SOURCES/0061-Ticket-48005-ns-slapd-crash-in-shutdown-phase.patch @@ -0,0 +1,1057 @@ +From 2e87dafa9d39e6ab08382612be762c25afa80d4f Mon Sep 17 00:00:00 2001 +From: Noriko Hosoi <nhosoi@redhat.com> +Date: Sun, 15 Feb 2015 17:34:12 -0800 +Subject: [PATCH] Ticket #48005 - ns-slapd crash in shutdown phase + +Description: There was a small window that long running tasks access its +own task object after it's aready released by main thread in the shutdown +period. This patch adds refcounter to such threads and make destructor +wait until the counter becomes 0. Plus, the shutdown check is added to +their task callbacks. + +Following tasks are updated by this patch: + slapd/task.c: "fixup tombstones" + posix-winsync/posix-winsync-config.c: "memberuid task" + replication/repl5_replica_config.c: "cleanallruv" + replication/repl5_replica_config.c: "abort cleanallruv" + syntaxes/validate_task.c: "syntax validate" + automember/automember.c: "automember rebuild membership" + automember/automember.c: "automember export updates" + automember/automember.c: "automember map updates" + linkedattrs/linked_attrs.c: "fixup linked attributes" + memberof/memberof.c: "memberof task" + schema_reload/schema_reload.c: "schema reload task" + usn/usn_cleanup.c: "USN tombstone cleanup task" + +Following tasks are already covered: + slapd/task.c: "import" + slapd/task.c: "index" + slapd/task.c: "upgradedb" + +Following tasks are processed in an ordinary worker thread; no need to change + slapd/task.c: "sysconfig reload" + slapd/task.c: "export" + slapd/task.c: "backup" + slapd/task.c: "restore" + +(cherry picked from commit ab2e26de21beb5a92d2a18ab5a20db9637b83c7a) +(cherry picked from commit eebbabbaba8f024671158f527a169fc378ff01d6) + +Conflicts: + ldap/servers/plugins/memberof/memberof.c +--- + ldap/servers/plugins/automember/automember.c | 70 ++++++++++++++++++---- + ldap/servers/plugins/linkedattrs/fixup_task.c | 40 +++++++++++-- + ldap/servers/plugins/memberof/memberof.c | 26 +++++++- + ldap/servers/plugins/memberof/memberof.h | 2 +- + .../plugins/posix-winsync/posix-group-task.c | 40 ++++++++++--- + .../plugins/replication/repl5_replica_config.c | 58 ++++++++++++++++++ + ldap/servers/plugins/schema_reload/schema_reload.c | 23 ++++++- + ldap/servers/plugins/syntaxes/validate_task.c | 26 +++++++- + ldap/servers/plugins/usn/usn_cleanup.c | 58 +++++++++++++----- + ldap/servers/slapd/slapi-plugin.h | 9 +++ + ldap/servers/slapd/slapi-private.h | 2 - + ldap/servers/slapd/task.c | 47 +++++++++++++-- + 12 files changed, 348 insertions(+), 53 deletions(-) + +diff --git a/ldap/servers/plugins/automember/automember.c b/ldap/servers/plugins/automember/automember.c +index 6a8fd22..b2914db 100644 +--- a/ldap/servers/plugins/automember/automember.c ++++ b/ldap/servers/plugins/automember/automember.c +@@ -119,9 +119,9 @@ static int automember_task_add_map_entries(Slapi_PBlock *pb, Slapi_Entry *e, Sla + void automember_rebuild_task_thread(void *arg); + void automember_export_task_thread(void *arg); + void automember_map_task_thread(void *arg); +-void automember_task_destructor(Slapi_Task *task); +-void automember_task_export_destructor(Slapi_Task *task); +-void automember_task_map_destructor(Slapi_Task *task); ++static void automember_task_destructor(Slapi_Task *task); ++static void automember_task_export_destructor(Slapi_Task *task); ++static void automember_task_map_destructor(Slapi_Task *task); + + #define DEFAULT_FILE_MODE PR_IRUSR | PR_IWUSR + +@@ -1962,11 +1962,15 @@ fetch_attr(Slapi_Entry *e, const char *attrname, const char *default_val) + return slapi_value_get_string(val); + } + +-void ++static void + automember_task_destructor(Slapi_Task *task) + { + if (task) { + task_data *mydata = (task_data *)slapi_task_get_data(task); ++ while (slapi_task_get_refcount(task) > 0) { ++ /* Yield to wait for the fixup task finishes. */ ++ DS_Sleep (PR_MillisecondsToInterval(100)); ++ } + if (mydata) { + slapi_ch_free_string(&mydata->bind_dn); + slapi_sdn_free(&mydata->base_dn); +@@ -1976,11 +1980,15 @@ automember_task_destructor(Slapi_Task *task) + } + } + +-void ++static void + automember_task_export_destructor(Slapi_Task *task) + { + if (task) { + task_data *mydata = (task_data *)slapi_task_get_data(task); ++ while (slapi_task_get_refcount(task) > 0) { ++ /* Yield to wait for the fixup task finishes. */ ++ DS_Sleep (PR_MillisecondsToInterval(100)); ++ } + if (mydata) { + slapi_ch_free_string(&mydata->ldif_out); + slapi_ch_free_string(&mydata->bind_dn); +@@ -1991,11 +1999,15 @@ automember_task_export_destructor(Slapi_Task *task) + } + } + +-void ++static void + automember_task_map_destructor(Slapi_Task *task) + { + if (task) { + task_data *mydata = (task_data *)slapi_task_get_data(task); ++ while (slapi_task_get_refcount(task) > 0) { ++ /* Yield to wait for the fixup task finishes. */ ++ DS_Sleep (PR_MillisecondsToInterval(100)); ++ } + if (mydata) { + slapi_ch_free_string(&mydata->ldif_out); + slapi_ch_free_string(&mydata->ldif_in); +@@ -2114,7 +2126,8 @@ out: + * Search using the basedn, filter, and scope provided from the task data. + * Then loop of each entry, and apply the membership if applicable. + */ +-void automember_rebuild_task_thread(void *arg){ ++void automember_rebuild_task_thread(void *arg) ++{ + Slapi_Task *task = (Slapi_Task *)arg; + struct configEntry *config = NULL; + Slapi_PBlock *search_pb = NULL, *fixup_pb = NULL; +@@ -2124,6 +2137,12 @@ void automember_rebuild_task_thread(void *arg){ + int result = 0; + int i = 0; + ++ if (!task) { ++ return; /* no task */ ++ } ++ slapi_task_inc_refcount(task); ++ slapi_log_error( SLAPI_LOG_PLUGIN, AUTOMEMBER_PLUGIN_SUBSYSTEM, ++ "automember_rebuild_task_thread --> refcount incremented.\n" ); + /* + * Fetch our task data from the task + */ +@@ -2192,7 +2211,8 @@ void automember_rebuild_task_thread(void *arg){ + if (slapi_dn_issuffix(slapi_entry_get_dn(entries[i]), config->scope) && + (slapi_filter_test_simple(entries[i], config->filter) == 0)) + { +- if(automember_update_membership(config, entries[i], NULL)){ ++ if (slapi_is_shutting_down() || ++ automember_update_membership(config, entries[i], NULL)) { + result = SLAPI_PLUGIN_FAILURE; + automember_config_unlock(); + goto out; +@@ -2226,6 +2246,9 @@ out: + } + slapi_task_inc_progress(task); + slapi_task_finish(task, result); ++ slapi_task_dec_refcount(task); ++ slapi_log_error( SLAPI_LOG_PLUGIN, AUTOMEMBER_PLUGIN_SUBSYSTEM, ++ "automember_rebuild_task_thread <-- refcount decremented.\n" ); + } + + /* +@@ -2328,7 +2351,8 @@ out: + return rv; + } + +-void automember_export_task_thread(void *arg){ ++void automember_export_task_thread(void *arg) ++{ + Slapi_Task *task = (Slapi_Task *)arg; + Slapi_PBlock *search_pb = NULL; + Slapi_Entry **entries = NULL; +@@ -2340,6 +2364,13 @@ void automember_export_task_thread(void *arg){ + int i = 0; + int rc = 0; + ++ if (!task) { ++ return; /* no task */ ++ } ++ slapi_task_inc_refcount(task); ++ slapi_log_error( SLAPI_LOG_PLUGIN, AUTOMEMBER_PLUGIN_SUBSYSTEM, ++ "automember_export_task_thread --> refcount incremented.\n" ); ++ + td = (task_data *)slapi_task_get_data(task); + slapi_task_begin(task, 1); + slapi_task_log_notice(task, "Automember export task starting. Exporting changes to (%s)", td->ldif_out); +@@ -2394,7 +2425,8 @@ void automember_export_task_thread(void *arg){ + if (slapi_dn_issuffix(slapi_sdn_get_dn(td->base_dn), config->scope) && + (slapi_filter_test_simple(entries[i], config->filter) == 0)) + { +- if(automember_update_membership(config, entries[i], ldif_fd)){ ++ if (slapi_is_shutting_down() || ++ automember_update_membership(config, entries[i], ldif_fd)) { + result = SLAPI_DSE_CALLBACK_ERROR; + automember_config_unlock(); + goto out; +@@ -2423,6 +2455,9 @@ out: + } + slapi_task_inc_progress(task); + slapi_task_finish(task, result); ++ slapi_task_dec_refcount(task); ++ slapi_log_error( SLAPI_LOG_PLUGIN, AUTOMEMBER_PLUGIN_SUBSYSTEM, ++ "automember_export_task_thread <-- refcount decremented.\n" ); + } + + /* +@@ -2507,7 +2542,8 @@ out: + * Read in the text entries from ldif_in, and convert them to slapi_entries. + * Then, write to ldif_out what the updates would be if these entries were added + */ +-void automember_map_task_thread(void *arg){ ++void automember_map_task_thread(void *arg) ++{ + Slapi_Task *task = (Slapi_Task *)arg; + Slapi_Entry *e = NULL; + int result = SLAPI_DSE_CALLBACK_OK; +@@ -2527,6 +2563,12 @@ void automember_map_task_thread(void *arg){ + #endif + int rc = 0; + ++ if (!task) { ++ return; /* no task */ ++ } ++ slapi_task_inc_refcount(task); ++ slapi_log_error( SLAPI_LOG_PLUGIN, AUTOMEMBER_PLUGIN_SUBSYSTEM, ++ "automember_map_task_thread --> refcount incremented.\n" ); + td = (task_data *)slapi_task_get_data(task); + slapi_task_begin(task, 1); + slapi_task_log_notice(task, "Automember map task starting... Reading entries from (%s)" +@@ -2586,7 +2628,8 @@ void automember_map_task_thread(void *arg){ + if (slapi_dn_issuffix(slapi_entry_get_dn_const(e), config->scope) && + (slapi_filter_test_simple(e, config->filter) == 0)) + { +- if(automember_update_membership(config, e, ldif_fd_out)){ ++ if (slapi_is_shutting_down() || ++ automember_update_membership(config, e, ldif_fd_out)) { + result = SLAPI_DSE_CALLBACK_ERROR; + slapi_entry_free(e); + slapi_ch_free_string(&entrystr); +@@ -2620,6 +2663,9 @@ out: + } + slapi_task_inc_progress(task); + slapi_task_finish(task, result); ++ slapi_task_dec_refcount(task); ++ slapi_log_error( SLAPI_LOG_PLUGIN, AUTOMEMBER_PLUGIN_SUBSYSTEM, ++ "automember_map_task_thread <-- refcount decremented.\n" ); + } + + /* +diff --git a/ldap/servers/plugins/linkedattrs/fixup_task.c b/ldap/servers/plugins/linkedattrs/fixup_task.c +index db3c693..3a01fed 100644 +--- a/ldap/servers/plugins/linkedattrs/fixup_task.c ++++ b/ldap/servers/plugins/linkedattrs/fixup_task.c +@@ -119,6 +119,10 @@ linked_attrs_fixup_task_destructor(Slapi_Task *task) + { + if (task) { + task_data *mydata = (task_data *)slapi_task_get_data(task); ++ while (slapi_task_get_refcount(task) > 0) { ++ /* Yield to wait for the fixup task finishes. */ ++ DS_Sleep (PR_MillisecondsToInterval(100)); ++ } + if (mydata) { + slapi_ch_free_string(&mydata->linkdn); + slapi_ch_free_string(&mydata->bind_dn); +@@ -137,6 +141,12 @@ linked_attrs_fixup_task_thread(void *arg) + int found_config = 0; + int rc = 0; + ++ if (!task) { ++ return; /* no task */ ++ } ++ slapi_task_inc_refcount(task); ++ slapi_log_error(SLAPI_LOG_PLUGIN, LINK_PLUGIN_SUBSYSTEM, ++ "linked_attrs_fixup_task_thread --> refcount incremented.\n" ); + /* Fetch our task data from the task */ + td = (task_data *)slapi_task_get_data(task); + +@@ -154,8 +164,8 @@ linked_attrs_fixup_task_thread(void *arg) + linked_attrs_read_lock(); + main_config = linked_attrs_get_config(); + if (!PR_CLIST_IS_EMPTY(main_config)) { +- struct configEntry *config_entry = NULL; +- PRCList *list = PR_LIST_HEAD(main_config); ++ struct configEntry *config_entry = NULL; ++ PRCList *list = PR_LIST_HEAD(main_config); + + while (list != main_config) { + config_entry = (struct configEntry *) list; +@@ -204,6 +214,10 @@ linked_attrs_fixup_task_thread(void *arg) + + /* this will queue the destruction of the task */ + slapi_task_finish(task, rc); ++ ++ slapi_task_dec_refcount(task); ++ slapi_log_error(SLAPI_LOG_PLUGIN, LINK_PLUGIN_SUBSYSTEM, ++ "linked_attrs_fixup_task_thread <-- refcount decremented.\n"); + } + + static void +@@ -269,7 +283,7 @@ linked_attrs_fixup_links(struct configEntry *config) + if(rc == 0){ + slapi_back_transaction_commit(fixup_pb); + } else { +- slapi_back_transaction_abort(fixup_pb); ++ slapi_back_transaction_abort(fixup_pb); + } + slapi_pblock_destroy(fixup_pb); + } +@@ -352,11 +366,20 @@ linked_attrs_remove_backlinks_callback(Slapi_Entry *e, void *callback_data) + int rc = 0; + Slapi_DN *sdn = slapi_entry_get_sdn(e); + char *type = (char *)callback_data; +- Slapi_PBlock *pb = slapi_pblock_new(); ++ Slapi_PBlock *pb = NULL; + char *val[1]; + LDAPMod mod; + LDAPMod *mods[2]; + ++ /* ++ * If the server is ordered to shutdown, stop the fixup and return an error. ++ */ ++ if (slapi_is_shutting_down()) { ++ rc = -1; ++ goto bail; ++ } ++ ++ pb = slapi_pblock_new(); + /* Remove all values of the passed in type. */ + val[0] = 0; + +@@ -377,7 +400,7 @@ linked_attrs_remove_backlinks_callback(Slapi_Entry *e, void *callback_data) + slapi_modify_internal_pb(pb); + + slapi_pblock_destroy(pb); +- ++bail: + return rc; + } + +@@ -394,6 +417,13 @@ linked_attrs_add_backlinks_callback(Slapi_Entry *e, void *callback_data) + LDAPMod mod; + LDAPMod *mods[2]; + ++ /* ++ * If the server is ordered to shutdown, stop the fixup and return an error. ++ */ ++ if (slapi_is_shutting_down()) { ++ rc = -1; ++ goto done; ++ } + /* Setup the modify operation. Only the target will + * change, so we only need to do this once. */ + val[0] = linkdn; +diff --git a/ldap/servers/plugins/memberof/memberof.c b/ldap/servers/plugins/memberof/memberof.c +index 7e3e308..14bad98 100644 +--- a/ldap/servers/plugins/memberof/memberof.c ++++ b/ldap/servers/plugins/memberof/memberof.c +@@ -2636,6 +2636,12 @@ void memberof_fixup_task_thread(void *arg) + int rc = 0; + Slapi_PBlock *fixup_pb = NULL; + ++ if (!task) { ++ return; /* no task */ ++ } ++ slapi_task_inc_refcount(task); ++ slapi_log_error(SLAPI_LOG_PLUGIN, MEMBEROF_PLUGIN_SUBSYSTEM, ++ "memberof_fixup_task_thread --> refcount incremented.\n" ); + /* Fetch our task data from the task */ + td = (task_data *)slapi_task_get_data(task); + +@@ -2702,6 +2708,9 @@ void memberof_fixup_task_thread(void *arg) + + /* this will queue the destruction of the task */ + slapi_task_finish(task, rc); ++ slapi_task_dec_refcount(task); ++ slapi_log_error(SLAPI_LOG_PLUGIN, MEMBEROF_PLUGIN_SUBSYSTEM, ++ "memberof_fixup_task_thread <-- refcount decremented.\n"); + } + + /* extract a single value from the entry (as a string) -- if it's not in the +@@ -2793,8 +2802,14 @@ out: + void + memberof_task_destructor(Slapi_Task *task) + { ++ slapi_log_error( SLAPI_LOG_PLUGIN, MEMBEROF_PLUGIN_SUBSYSTEM, ++ "memberof_task_destructor -->\n" ); + if (task) { + task_data *mydata = (task_data *)slapi_task_get_data(task); ++ while (slapi_task_get_refcount(task) > 0) { ++ /* Yield to wait for the fixup task finishes. */ ++ DS_Sleep (PR_MillisecondsToInterval(100)); ++ } + if (mydata) { + slapi_ch_free_string(&mydata->dn); + slapi_ch_free_string(&mydata->bind_dn); +@@ -2803,6 +2818,8 @@ memberof_task_destructor(Slapi_Task *task) + slapi_ch_free((void **)&mydata); + } + } ++ slapi_log_error( SLAPI_LOG_PLUGIN, MEMBEROF_PLUGIN_SUBSYSTEM, ++ "memberof_task_destructor <--\n" ); + } + + int memberof_fix_memberof(MemberOfConfig *config, char *dn, char *filter_str) +@@ -2841,6 +2858,13 @@ int memberof_fix_memberof_callback(Slapi_Entry *e, void *callback_data) + memberof_del_dn_data del_data = {0, config->memberof_attr}; + Slapi_ValueSet *groups = 0; + ++ /* ++ * If the server is ordered to shutdown, stop the fixup and return an error. ++ */ ++ if (slapi_is_shutting_down()) { ++ rc = -1; ++ goto bail; ++ } + /* get a list of all of the groups this user belongs to */ + groups = memberof_get_groups(config, sdn); + +@@ -2889,6 +2913,6 @@ int memberof_fix_memberof_callback(Slapi_Entry *e, void *callback_data) + } + + slapi_valueset_free(groups); +- ++bail: + return rc; + } +diff --git a/ldap/servers/plugins/memberof/memberof.h b/ldap/servers/plugins/memberof/memberof.h +index 6d56081..59029d7 100644 +--- a/ldap/servers/plugins/memberof/memberof.h ++++ b/ldap/servers/plugins/memberof/memberof.h +@@ -81,7 +81,7 @@ typedef struct memberofconfig { + char *memberof_attr; + int allBackends; + Slapi_DN *entryScope; +- Slapi_DN *entryScopeExcludeSubtree; ++ Slapi_DN *entryScopeExcludeSubtree; + Slapi_Filter *group_filter; + Slapi_Attr **group_slapiattrs; + } MemberOfConfig; +diff --git a/ldap/servers/plugins/posix-winsync/posix-group-task.c b/ldap/servers/plugins/posix-winsync/posix-group-task.c +index c5ea729..c76545a 100644 +--- a/ldap/servers/plugins/posix-winsync/posix-group-task.c ++++ b/ldap/servers/plugins/posix-winsync/posix-group-task.c +@@ -165,6 +165,10 @@ posix_group_task_destructor(Slapi_Task *task) + { + if (task) { + task_data *mydata = (task_data *) slapi_task_get_data(task); ++ while (slapi_task_get_refcount(task) > 0) { ++ /* Yield to wait for the fixup task finishes. */ ++ DS_Sleep (PR_MillisecondsToInterval(100)); ++ } + if (mydata) { + slapi_ch_free_string(&mydata->dn); + slapi_ch_free_string(&mydata->filter_str); +@@ -172,6 +176,8 @@ posix_group_task_destructor(Slapi_Task *task) + slapi_ch_free((void **) &mydata); + } + } ++ slapi_log_error(SLAPI_LOG_PLUGIN, POSIX_WINSYNC_PLUGIN_NAME, ++ "posix_group_task_destructor <--\n"); + } + + #if 0 /* NOT USED */ +@@ -245,17 +251,28 @@ posix_group_fix_memberuid_callback(Slapi_Entry *e, void *callback_data) + "_fix_memberuid ==>\n"); + cb_data *the_cb_data = (cb_data *) callback_data; + +- int rc; ++ int rc = 0; + Slapi_Attr *muid_attr = NULL; + Slapi_Value *v = NULL; + +- Slapi_Mods *smods = slapi_mods_new(); +- +- char *dn = slapi_entry_get_dn(e); +- Slapi_DN *sdn = slapi_entry_get_sdn(e); ++ Slapi_Mods *smods = NULL; ++ char *dn = NULL; ++ Slapi_DN *sdn = NULL; + LDAPMod **mods = NULL; + int is_posix_group = 0; + ++ /* ++ * If the server is ordered to shutdown, stop the fixup and return an error. ++ */ ++ if (slapi_is_shutting_down()) { ++ rc = -1; ++ goto bail; ++ } ++ ++ smods = slapi_mods_new(); ++ dn = slapi_entry_get_dn(e); ++ sdn = slapi_entry_get_sdn(e); ++ + if (hasObjectClass(e, "posixGroup")) { + is_posix_group = 1; + } +@@ -441,7 +458,7 @@ posix_group_fix_memberuid_callback(Slapi_Entry *e, void *callback_data) + slapi_pblock_destroy(mod_pb); + } + slapi_mods_free(&smods); +- ++bail: + slapi_log_error(SLAPI_LOG_PLUGIN, POSIX_WINSYNC_PLUGIN_NAME, + "_fix_memberuid <==\n"); + /* +@@ -450,7 +467,7 @@ posix_group_fix_memberuid_callback(Slapi_Entry *e, void *callback_data) + * uniqueMember attribute. But "not found" error shoud not + * be returned, which stops the further fixup task. + */ +- return 0; ++ return rc; + } + + static void +@@ -463,6 +480,12 @@ posix_group_fixup_task_thread(void *arg) + task_data *td = NULL; + int rc = 0; + ++ if (!task) { ++ return; /* no task */ ++ } ++ slapi_task_inc_refcount(task); ++ slapi_log_error(SLAPI_LOG_PLUGIN, POSIX_WINSYNC_PLUGIN_NAME, ++ "posix_group_fixup_task_thread --> refcount incremented.\n" ); + /* Fetch our task data from the task */ + td = (task_data *) slapi_task_get_data(task); + +@@ -491,4 +514,7 @@ posix_group_fixup_task_thread(void *arg) + + slapi_log_error(SLAPI_LOG_PLUGIN, POSIX_WINSYNC_PLUGIN_NAME, + "_task_thread <==\n"); ++ slapi_task_dec_refcount(task); ++ slapi_log_error(SLAPI_LOG_PLUGIN, POSIX_WINSYNC_PLUGIN_NAME, ++ "posix_group_fixup_task_thread <-- refcount decremented.\n"); + } +diff --git a/ldap/servers/plugins/replication/repl5_replica_config.c b/ldap/servers/plugins/replication/repl5_replica_config.c +index 3bc3916..1570ba7 100644 +--- a/ldap/servers/plugins/replication/repl5_replica_config.c ++++ b/ldap/servers/plugins/replication/repl5_replica_config.c +@@ -109,6 +109,8 @@ static CSN* replica_cleanallruv_find_maxcsn(Replica *replica, ReplicaId rid, cha + static int replica_cleanallruv_get_replica_maxcsn(Repl_Agmt *agmt, char *rid_text, char *basedn, CSN **csn); + static void preset_cleaned_rid(ReplicaId rid); + static multimaster_mtnode_extension * _replica_config_get_mtnode_ext (const Slapi_Entry *e); ++static void replica_cleanall_ruv_destructor(Slapi_Task *task); ++static void replica_cleanall_ruv_abort_destructor(Slapi_Task *task); + + /* + * Note: internal add/modify/delete operations should not be run while +@@ -1509,6 +1511,10 @@ replica_cleanall_ruv_task(Slapi_PBlock *pb, Slapi_Entry *e, Slapi_Entry *eAfter, + rc = SLAPI_DSE_CALLBACK_ERROR; + goto out; + } ++ ++ /* register our destructor for waiting the task is done */ ++ slapi_task_set_destructor_fn(task, replica_cleanall_ruv_destructor); ++ + /* + * Get our task settings + */ +@@ -1752,6 +1758,13 @@ replica_cleanallruv_thread(void *arg) + int aborted = 0; + int rc = 0; + ++ if (!data) { ++ return; /* no data */ ++ } ++ if (data->task) { ++ slapi_task_inc_refcount(data->task); ++ slapi_log_error(SLAPI_LOG_PLUGIN, repl_plugin_name, "replica_cleanallruv_thread --> refcount incremented.\n"); ++ } + /* + * Initialize our settings + */ +@@ -1974,6 +1987,8 @@ done: + } + if(data->task){ + slapi_task_finish(data->task, rc); ++ slapi_task_dec_refcount(data->task); ++ slapi_log_error(SLAPI_LOG_PLUGIN, repl_plugin_name, "replica_cleanallruv_thread <-- refcount decremented.\n"); + } + if(data->payload){ + ber_bvfree(data->payload); +@@ -1989,6 +2004,36 @@ done: + slapi_ch_free((void **)&data); + } + ++static void ++replica_cleanall_ruv_destructor(Slapi_Task *task) ++{ ++ slapi_log_error( SLAPI_LOG_PLUGIN, repl_plugin_name, ++ "replica_cleanall_ruv_destructor -->\n" ); ++ if (task) { ++ while (slapi_task_get_refcount(task) > 0) { ++ /* Yield to wait for the fixup task finishes. */ ++ DS_Sleep (PR_MillisecondsToInterval(100)); ++ } ++ } ++ slapi_log_error( SLAPI_LOG_PLUGIN, repl_plugin_name, ++ "replica_cleanall_ruv_destructor <--\n" ); ++} ++ ++static void ++replica_cleanall_ruv_abort_destructor(Slapi_Task *task) ++{ ++ slapi_log_error( SLAPI_LOG_PLUGIN, repl_plugin_name, ++ "replica_cleanall_ruv_abort_destructor -->\n" ); ++ if (task) { ++ while (slapi_task_get_refcount(task) > 0) { ++ /* Yield to wait for the fixup task finishes. */ ++ DS_Sleep (PR_MillisecondsToInterval(100)); ++ } ++ } ++ slapi_log_error( SLAPI_LOG_PLUGIN, repl_plugin_name, ++ "replica_cleanall_ruv_abort_destructor <--\n" ); ++} ++ + /* + * Loop over the agmts, and check if they are in the last phase of cleaning, meaning they have + * released cleanallruv data from the config +@@ -2775,6 +2820,10 @@ replica_cleanall_ruv_abort(Slapi_PBlock *pb, Slapi_Entry *e, Slapi_Entry *eAfter + + /* allocate new task now */ + task = slapi_new_task(slapi_entry_get_ndn(e)); ++ ++ /* register our destructor for waiting the task is done */ ++ slapi_task_set_destructor_fn(task, replica_cleanall_ruv_abort_destructor); ++ + /* + * Get our task settings + */ +@@ -2921,6 +2970,13 @@ replica_abort_task_thread(void *arg) + int release_it = 0; + int count = 0, rc = 0; + ++ if (!data) { ++ return; /* no data */ ++ } ++ if (data->task) { ++ slapi_task_inc_refcount(data->task); ++ slapi_log_error(SLAPI_LOG_PLUGIN, repl_plugin_name, "replica_abort_task_thread --> refcount incremented.\n"); ++ } + cleanruv_log(data->task, ABORT_CLEANALLRUV_ID, "Aborting task for rid(%d)...",data->rid); + + /* +@@ -3028,6 +3084,8 @@ done: + + if(data->task){ + slapi_task_finish(data->task, agmt_not_notified); ++ slapi_task_dec_refcount(data->task); ++ slapi_log_error(SLAPI_LOG_PLUGIN, repl_plugin_name, "replica_abort_task_thread <-- refcount incremented.\n"); + } + if(data->repl_obj && release_it) + object_release(data->repl_obj); +diff --git a/ldap/servers/plugins/schema_reload/schema_reload.c b/ldap/servers/plugins/schema_reload/schema_reload.c +index b1a5bb8..25336fe 100644 +--- a/ldap/servers/plugins/schema_reload/schema_reload.c ++++ b/ldap/servers/plugins/schema_reload/schema_reload.c +@@ -86,6 +86,7 @@ static int schemareload_add(Slapi_PBlock *pb, Slapi_Entry *e, + void *arg); + static int schemareload_start(Slapi_PBlock *pb); + static int schemareload_close(Slapi_PBlock *pb); ++static void schemareload_destructor(Slapi_Task *task); + + /* + * Init function +@@ -159,6 +160,12 @@ schemareload_thread(void *arg) + int total_work = 2; + task_data *td = NULL; + ++ if (!task) { ++ return; /* no task */ ++ } ++ slapi_task_inc_refcount(task); ++ slapi_log_error(SLAPI_LOG_PLUGIN, "schemareload", ++ "schemareload_thread --> refcount incremented.\n" ); + /* Fetch our task data from the task */ + td = (task_data *)slapi_task_get_data(task); + +@@ -174,7 +181,11 @@ schemareload_thread(void *arg) + rv = slapi_validate_schema_files(td->schemadir); + slapi_task_inc_progress(task); + +- if (LDAP_SUCCESS == rv) { ++ if (slapi_is_shutting_down()) { ++ slapi_task_log_notice(task, "Server is shuttoing down; Schema validation aborted."); ++ slapi_task_log_status(task, "Server is shuttoing down; Schema validation aborted."); ++ slapi_log_error(SLAPI_LOG_FATAL, "schemareload", "Server is shuttoing down; Schema validation aborted."); ++ } else if (LDAP_SUCCESS == rv) { + slapi_task_log_notice(task, "Schema validation passed."); + slapi_task_log_status(task, "Schema validation passed."); + slapi_log_error(SLAPI_LOG_FATAL, "schemareload", "Schema validation passed.\n"); +@@ -199,16 +210,18 @@ schemareload_thread(void *arg) + slapi_task_log_status(task, "Schema reload task failed."); + slapi_log_error(SLAPI_LOG_FATAL, "schemareload", "Schema reload task failed.\n"); + } +- PR_Unlock(schemareload_lock); + } else { + slapi_task_log_notice(task, "Schema validation failed."); + slapi_task_log_status(task, "Schema validation failed."); + slapi_log_error(SLAPI_LOG_FATAL, "schemareload", "Schema validation failed.\n"); +- PR_Unlock(schemareload_lock); + } ++ PR_Unlock(schemareload_lock); + + /* this will queue the destruction of the task */ + slapi_task_finish(task, rv); ++ slapi_task_dec_refcount(task); ++ slapi_log_error(SLAPI_LOG_PLUGIN, "schemareload", ++ "schemareload_thread <-- refcount decremented.\n"); + } + + /* extract a single value from the entry (as a string) -- if it's not in the +@@ -233,6 +246,10 @@ schemareload_destructor(Slapi_Task *task) + { + if (task) { + task_data *mydata = (task_data *)slapi_task_get_data(task); ++ while (slapi_task_get_refcount(task) > 0) { ++ /* Yield to wait for the fixup task finishes. */ ++ DS_Sleep (PR_MillisecondsToInterval(100)); ++ } + if (mydata) { + slapi_ch_free_string(&mydata->schemadir); + slapi_ch_free_string(&mydata->bind_dn); +diff --git a/ldap/servers/plugins/syntaxes/validate_task.c b/ldap/servers/plugins/syntaxes/validate_task.c +index 99f6309..71b4b7e 100644 +--- a/ldap/servers/plugins/syntaxes/validate_task.c ++++ b/ldap/servers/plugins/syntaxes/validate_task.c +@@ -179,6 +179,10 @@ syntax_validate_task_destructor(Slapi_Task *task) + { + if (task) { + task_data *mydata = (task_data *)slapi_task_get_data(task); ++ while (slapi_task_get_refcount(task) > 0) { ++ /* Yield to wait for the fixup task finishes. */ ++ DS_Sleep (PR_MillisecondsToInterval(100)); ++ } + if (mydata) { + slapi_ch_free_string(&mydata->dn); + slapi_ch_free_string(&mydata->filter_str); +@@ -197,6 +201,12 @@ syntax_validate_task_thread(void *arg) + task_data *td = NULL; + Slapi_PBlock *search_pb = slapi_pblock_new(); + ++ if (!task) { ++ return; /* no task */ ++ } ++ slapi_task_inc_refcount(task); ++ slapi_log_error(SLAPI_LOG_PLUGIN, SYNTAX_PLUGIN_SUBSYSTEM, ++ "syntax_validate_task_thread --> refcount incremented.\n" ); + /* Fetch our task data from the task */ + td = (task_data *)slapi_task_get_data(task); + +@@ -231,16 +241,26 @@ syntax_validate_task_thread(void *arg) + + /* this will queue the destruction of the task */ + slapi_task_finish(task, rc); ++ slapi_task_dec_refcount(task); ++ slapi_log_error(SLAPI_LOG_PLUGIN, SYNTAX_PLUGIN_SUBSYSTEM, ++ "syntax_validate_task_thread <-- refcount decremented.\n"); + } + + static int + syntax_validate_task_callback(Slapi_Entry *e, void *callback_data) + { +- int rc = 0; +- char *dn = slapi_entry_get_dn(e); ++ int rc = 0; ++ char *dn = slapi_entry_get_dn(e); + task_data *td = (task_data *)callback_data; + Slapi_PBlock *pb = NULL; + ++ /* ++ * If the server is ordered to shutdown, stop the fixup and return an error. ++ */ ++ if (slapi_is_shutting_down()) { ++ rc = -1; ++ goto bail; ++ } + /* Override the syntax checking config to force syntax checking. */ + if (slapi_entry_syntax_check(NULL, e, 1) != 0) { + char *error_text = NULL; +@@ -261,7 +281,7 @@ syntax_validate_task_callback(Slapi_Entry *e, void *callback_data) + /* Keep a tally of the number of invalid entries found. */ + slapi_counter_increment(td->invalid_entries); + } +- ++bail: + return rc; + } + +diff --git a/ldap/servers/plugins/usn/usn_cleanup.c b/ldap/servers/plugins/usn/usn_cleanup.c +index c12dfd2..dd07b4c 100644 +--- a/ldap/servers/plugins/usn/usn_cleanup.c ++++ b/ldap/servers/plugins/usn/usn_cleanup.c +@@ -49,6 +49,8 @@ struct usn_cleanup_data { + + static int usn_cleanup_add(Slapi_PBlock *pb, Slapi_Entry *e, + Slapi_Entry *eAfter, int *returncode, char *returntext, void *arg); ++static void usn_cleanup_task_destructor(Slapi_Task *task); ++ + + int + usn_cleanup_start(Slapi_PBlock *pb) +@@ -83,8 +85,14 @@ usn_cleanup_thread(void *arg) + Slapi_PBlock *delete_pb = NULL; + char *filter = "objectclass=nsTombstone"; + ++ if (!task) { ++ return; /* no task */ ++ } + slapi_log_error(SLAPI_LOG_TRACE, USN_PLUGIN_SUBSYSTEM, + "--> usn_cleanup_thread\n"); ++ slapi_task_inc_refcount(task); ++ slapi_log_error(SLAPI_LOG_PLUGIN, USN_PLUGIN_SUBSYSTEM, ++ "usn_cleanup_thread --> refcount incremented.\n" ); + + if (NULL == usn_get_identity()) { /* plugin is not initialized */ + slapi_task_log_notice(task, "USN plugin is not initialized\n"); +@@ -195,14 +203,12 @@ bail: + if (cleanup_data->maxusn_to_delete) { + slapi_ch_free_string(&filter); + } +- slapi_ch_free_string(&cleanup_data->maxusn_to_delete); +- slapi_ch_free_string(&cleanup_data->suffix); +- slapi_ch_free_string(&cleanup_data->bind_dn); +- slapi_ch_free((void **)&cleanup_data); + + /* this will queue the destruction of the task */ + slapi_task_finish(task, rv); +- ++ slapi_task_dec_refcount(task); ++ slapi_log_error(SLAPI_LOG_PLUGIN, USN_PLUGIN_SUBSYSTEM, ++ "usn_cleanup_thread <-- refcount decremented.\n"); + slapi_log_error(SLAPI_LOG_TRACE, USN_PLUGIN_SUBSYSTEM, + "<-- usn_cleanup_thread\n"); + } +@@ -283,7 +289,7 @@ usn_cleanup_add(Slapi_PBlock *pb, Slapi_Entry *e, Slapi_Entry *eAfter, + backend = slapi_entry_attr_get_charptr(e, "backend"); + maxusn = slapi_entry_attr_get_charptr(e, "maxusn_to_delete"); + +- if (NULL == suffix && NULL == backend) { ++ if (!suffix && !backend) { + slapi_log_error(SLAPI_LOG_FATAL, USN_PLUGIN_SUBSYSTEM, + "USN tombstone cleanup: Both suffix and backend are missing.\n"); + *returncode = LDAP_PARAM_ERROR; +@@ -292,7 +298,7 @@ usn_cleanup_add(Slapi_PBlock *pb, Slapi_Entry *e, Slapi_Entry *eAfter, + } + + /* suffix is not given, but backend is; get the suffix */ +- if (NULL == suffix && NULL != backend) { ++ if (!suffix && backend) { + be = slapi_be_select_by_instance_name(backend); + be_suffix = slapi_be_getsuffix(be, 0); + if (be_suffix) { +@@ -317,12 +323,6 @@ usn_cleanup_add(Slapi_PBlock *pb, Slapi_Entry *e, Slapi_Entry *eAfter, + goto bail; + } + +- cleanup_data = +- (struct usn_cleanup_data *)slapi_ch_malloc(sizeof(struct usn_cleanup_data)); +- cleanup_data->suffix = slapi_ch_strdup(suffix); +- cleanup_data->maxusn_to_delete = slapi_ch_strdup(maxusn); +- cleanup_data->bind_dn = slapi_ch_strdup(bind_dn); +- + /* allocate new task now */ + task = slapi_plugin_new_task(slapi_entry_get_ndn(e), arg); + if (task == NULL) { +@@ -330,11 +330,21 @@ usn_cleanup_add(Slapi_PBlock *pb, Slapi_Entry *e, Slapi_Entry *eAfter, + "USN tombstone cleanup: unable to allocate new task.\n"); + *returncode = LDAP_OPERATIONS_ERROR; + rv = SLAPI_DSE_CALLBACK_ERROR; +- slapi_ch_free((void**)&cleanup_data); + goto bail; + } + ++ /* register our destructor for cleaning up our private data */ ++ slapi_task_set_destructor_fn(task, usn_cleanup_task_destructor); ++ + /* Stash our argument in the task for use by the task thread */ ++ cleanup_data = ++ (struct usn_cleanup_data *)slapi_ch_malloc(sizeof(struct usn_cleanup_data)); ++ cleanup_data->suffix = suffix; ++ suffix = NULL; /* don't free in this function */ ++ cleanup_data->maxusn_to_delete = maxusn; ++ maxusn = NULL; /* don't free in this function */ ++ cleanup_data->bind_dn = bind_dn; ++ bind_dn = NULL; /* don't free in this function */ + slapi_task_set_data(task, cleanup_data); + + /* start the USN tombstone cleanup task as a separate thread */ +@@ -361,3 +371,23 @@ bail: + return rv; + } + ++static void ++usn_cleanup_task_destructor(Slapi_Task *task) ++{ ++ slapi_log_error(SLAPI_LOG_PLUGIN, USN_PLUGIN_SUBSYSTEM, "usn_cleanup_task_destructor -->\n"); ++ if (task) { ++ struct usn_cleanup_data *mydata = (struct usn_cleanup_data *)slapi_task_get_data(task); ++ while (slapi_task_get_refcount(task) > 0) { ++ /* Yield to wait for the fixup task finishes. */ ++ DS_Sleep (PR_MillisecondsToInterval(100)); ++ } ++ if (mydata) { ++ slapi_ch_free_string(&mydata->suffix); ++ slapi_ch_free_string(&mydata->maxusn_to_delete); ++ slapi_ch_free_string(&mydata->bind_dn); ++ /* Need to cast to avoid a compiler warning */ ++ slapi_ch_free((void **)&mydata); ++ } ++ } ++ slapi_log_error(SLAPI_LOG_PLUGIN, USN_PLUGIN_SUBSYSTEM, "usn_cleanup_task_destructor <--\n"); ++} +diff --git a/ldap/servers/slapd/slapi-plugin.h b/ldap/servers/slapd/slapi-plugin.h +index 0ae3601..dfe75eb 100644 +--- a/ldap/servers/slapd/slapi-plugin.h ++++ b/ldap/servers/slapd/slapi-plugin.h +@@ -7958,6 +7958,15 @@ void slapi_plugin_op_finished(void *arg); + #define RDN_IS_CONFLICT 0x2 + int slapi_is_special_rdn(const char *rdn, int flag); + ++/** ++ * Sleeps for PRIntervalTime ticks defined in NSPR library ++ * ++ * \param PRIntervalTime ticks ++ * ++ * \return Nothing ++ */ ++void DS_Sleep(PRIntervalTime ticks); ++ + #ifdef __cplusplus + } + #endif +diff --git a/ldap/servers/slapd/slapi-private.h b/ldap/servers/slapd/slapi-private.h +index 921c397..9ca1950 100644 +--- a/ldap/servers/slapd/slapi-private.h ++++ b/ldap/servers/slapd/slapi-private.h +@@ -1245,8 +1245,6 @@ void bervalarray_add_berval_fast(struct berval ***vals, const struct berval *add + + /***** End of items added for the replication plugin. ***********************/ + +-void DS_Sleep(PRIntervalTime ticks); +- + /* macro to specify the behavior of upgradedb & upgradednformat */ + #define SLAPI_UPGRADEDB_FORCE 0x1 /* reindex all (no check w/ idl switch) */ + #define SLAPI_UPGRADEDB_SKIPINIT 0x2 /* call upgradedb as part of other op */ +diff --git a/ldap/servers/slapd/task.c b/ldap/servers/slapd/task.c +index 98ec88c..19a52a3 100644 +--- a/ldap/servers/slapd/task.c ++++ b/ldap/servers/slapd/task.c +@@ -113,6 +113,8 @@ static const char *fetch_attr(Slapi_Entry *e, const char *attrname, + static Slapi_Entry *get_internal_entry(Slapi_PBlock *pb, char *dn); + static void modify_internal_entry(char *dn, LDAPMod **mods); + ++static void fixup_tombstone_task_destructor(Slapi_Task *task); ++ + /*********************************** + * Public Functions + ***********************************/ +@@ -2218,6 +2220,12 @@ task_fixup_tombstone_thread(void *arg) + int fixup_count = 0; + int rc, i, j; + ++ if (!task) { ++ return; /* no task */ ++ } ++ slapi_task_inc_refcount(task); ++ slapi_log_error(SLAPI_LOG_PLUGIN, TASK_TOMBSTONE_FIXUP, ++ "fixup_tombstone_task_thread --> refcount incremented.\n" ); + slapi_task_begin(task, 1); + slapi_task_log_notice(task, "Beginning tombstone fixup task...\n"); + slapi_log_error(SLAPI_LOG_REPL, TASK_TOMBSTONE_FIXUP, +@@ -2233,8 +2241,14 @@ task_fixup_tombstone_thread(void *arg) + + /* Okay check the specified backends only */ + for(i = 0; base && base[i]; i++){ +- Slapi_PBlock *search_pb = slapi_pblock_new(); ++ Slapi_PBlock *search_pb = NULL; ++ ++ if (slapi_is_shutting_down()) { ++ rc = -1; ++ goto bail; ++ } + ++ search_pb = slapi_pblock_new(); + /* find entries that need fixing... */ + slapi_search_internal_set_pb(search_pb, base[i], LDAP_SCOPE_SUBTREE, + filter, NULL, 0, NULL, NULL, plugin_get_default_component_id(), 0); +@@ -2247,8 +2261,7 @@ task_fixup_tombstone_thread(void *arg) + slapi_log_error(SLAPI_LOG_REPL, TASK_TOMBSTONE_FIXUP, + "Failed to search backend for tombstones, error %d\n", rc); + slapi_pblock_destroy(search_pb); +- slapi_task_finish(task, rc); +- return; ++ goto bail; + } + + slapi_pblock_get(search_pb, SLAPI_PLUGIN_INTOP_SEARCH_ENTRIES, &entries); +@@ -2281,9 +2294,11 @@ task_fixup_tombstone_thread(void *arg) + slapi_log_error(SLAPI_LOG_REPL, TASK_TOMBSTONE_FIXUP, "%s %d tombstones.\n", + task_data->stripcsn ? "Stripped" : "Fixed", fixup_count); + slapi_task_inc_progress(task); ++bail: + slapi_task_finish(task, rc); +- slapi_ch_array_free(base); +- slapi_ch_free((void **)&task_data); ++ slapi_task_dec_refcount(task); ++ slapi_log_error(SLAPI_LOG_PLUGIN, TASK_TOMBSTONE_FIXUP, ++ "fixup_tombstone_task_thread <-- refcount decremented.\n" ); + } + + +@@ -2387,6 +2402,8 @@ task_fixup_tombstones_add(Slapi_PBlock *pb, Slapi_Entry *e, Slapi_Entry *eAfter, + } + + task = slapi_new_task(slapi_entry_get_ndn(e)); ++ /* register our destructor for cleaning up our private data */ ++ slapi_task_set_destructor_fn(task, fixup_tombstone_task_destructor); + task_data = (struct task_tombstone_data *)slapi_ch_calloc(1, sizeof(struct task_tombstone_data)); + task_data->base = base; + task_data->task = task; +@@ -2422,6 +2439,26 @@ done: + return SLAPI_DSE_CALLBACK_OK; + } + ++static void ++fixup_tombstone_task_destructor(Slapi_Task *task) ++{ ++ slapi_log_error(SLAPI_LOG_PLUGIN, TASK_TOMBSTONE_FIXUP, ++ "fixup_tombstone_task_destructor -->\n" ); ++ if (task) { ++ struct task_tombstone_data *mydata = (struct task_tombstone_data *)slapi_task_get_data(task); ++ while (slapi_task_get_refcount(task) > 0) { ++ /* Yield to wait for the fixup task finishes. */ ++ DS_Sleep (PR_MillisecondsToInterval(100)); ++ } ++ if (mydata) { ++ slapi_ch_array_free(mydata->base); ++ slapi_ch_free((void **)&mydata); ++ } ++ } ++ slapi_log_error(SLAPI_LOG_PLUGIN, TASK_TOMBSTONE_FIXUP, ++ "fixup_tombstone_task_destructor <--\n" ); ++} ++ + /* cleanup old tasks that may still be in the DSE from a previous session + * (this can happen if the server crashes [no matter how unlikely we like + * to think that is].) +-- +1.9.3 + diff --git a/SOURCES/0062-Ticket-47591-entries-with-empty-objectclass-attribut.patch b/SOURCES/0062-Ticket-47591-entries-with-empty-objectclass-attribut.patch deleted file mode 100644 index 5e03ea0..0000000 --- a/SOURCES/0062-Ticket-47591-entries-with-empty-objectclass-attribut.patch +++ /dev/null @@ -1,113 +0,0 @@ -From 5edce023ae5977bebfdfd05ad21febc51c5b428b Mon Sep 17 00:00:00 2001 -From: Ludwig Krispenz <lkrispen@redhat.com> -Date: Tue, 26 Nov 2013 09:15:53 +0100 -Subject: [PATCH 62/65] Ticket 47591 - entries with empty objectclass attribute - value can be hidden - -Bug Description: The problem is that for the empty value - - objectClass;vdcsn-5283b8e0000000c80000;deleted - - it is compared to "ldapsubentry" and "nstombstone" - - 'if (PL_strncasecmp(type.bv_val,"tombstone",0)' - - and with length 0, this is always true. - -Fix Description: add a check bv_len >= strlen(valuetocompare) - or bv_len == strlen(valuetocompare) - define constants for lengths - -https://fedorahosted.org/389/ticket/47591 - -Reviewed by: richm, thanks -(cherry picked from commit 6b47eb4f54ff1e0a8b9c4aa9f3e6c3c3d958fd56) ---- - ldap/servers/slapd/entry.c | 15 ++++++++------- - ldap/servers/slapd/slapi-plugin.h | 15 ++++++++++++++- - 2 files changed, 22 insertions(+), 8 deletions(-) - -diff --git a/ldap/servers/slapd/entry.c b/ldap/servers/slapd/entry.c -index e0248c8..60e1dfe 100644 ---- a/ldap/servers/slapd/entry.c -+++ b/ldap/servers/slapd/entry.c -@@ -340,7 +340,7 @@ str2entry_fast( const char *rawdn, const Slapi_RDN *srdn, char *s, int flags, in - rawdn = NULL; /* Set once in the loop. - This won't affect the caller's passed address. */ - } -- if ( PL_strncasecmp( type.bv_val, "dn", type.bv_len ) == 0 ) { -+ if ( type.bv_len == SLAPI_ATTR_DN_LENGTH && PL_strncasecmp( type.bv_val, SLAPI_ATTR_DN, type.bv_len ) == 0 ) { - if ( slapi_entry_get_dn_const(e)!=NULL ) { - char ebuf[ BUFSIZ ]; - LDAPDebug( LDAP_DEBUG_TRACE, -@@ -376,7 +376,7 @@ str2entry_fast( const char *rawdn, const Slapi_RDN *srdn, char *s, int flags, in - continue; - } - -- if ( PL_strncasecmp( type.bv_val, "rdn", type.bv_len ) == 0 ) { -+ if ( type.bv_len == SLAPI_ATTR_RDN_LENGTH && PL_strncasecmp( type.bv_val, SLAPI_ATTR_RDN, type.bv_len ) == 0 ) { - if ( NULL == slapi_entry_get_rdn_const( e )) { - slapi_entry_set_rdn( e, value.bv_val ); - } -@@ -387,13 +387,13 @@ str2entry_fast( const char *rawdn, const Slapi_RDN *srdn, char *s, int flags, in - - /* If SLAPI_STR2ENTRY_NO_ENTRYDN is set, skip entrydn */ - if ( (flags & SLAPI_STR2ENTRY_NO_ENTRYDN) && -- PL_strncasecmp( type.bv_val, "entrydn", type.bv_len ) == 0 ) { -+ type.bv_len == SLAPI_ATTR_ENTRYDN_LENGTH && PL_strncasecmp( type.bv_val, SLAPI_ATTR_ENTRYDN, type.bv_len ) == 0 ) { - if (freeval) slapi_ch_free_string(&value.bv_val); - continue; - } - - /* retrieve uniqueid */ -- if ( PL_strncasecmp (type.bv_val, SLAPI_ATTR_UNIQUEID, type.bv_len) == 0 ){ -+ if ( type.bv_len == SLAPI_ATTR_UNIQUEID_LENGTH && PL_strncasecmp (type.bv_val, SLAPI_ATTR_UNIQUEID, type.bv_len) == 0 ){ - - if (e->e_uniqueid != NULL){ - LDAPDebug (LDAP_DEBUG_TRACE, -@@ -411,10 +411,11 @@ str2entry_fast( const char *rawdn, const Slapi_RDN *srdn, char *s, int flags, in - continue; - } - -- if (PL_strncasecmp(type.bv_val,"objectclass",type.bv_len) == 0) { -- if (PL_strncasecmp(value.bv_val,"ldapsubentry",value.bv_len) == 0) -+ if (value_state == VALUE_PRESENT && type.bv_len >= SLAPI_ATTR_OBJECTCLASS_LENGTH -+ && PL_strncasecmp(type.bv_val, SLAPI_ATTR_OBJECTCLASS, type.bv_len) == 0) { -+ if (value.bv_len >= SLAPI_ATTR_VALUE_SUBENTRY_LENGTH && PL_strncasecmp(value.bv_val,SLAPI_ATTR_VALUE_SUBENTRY,value.bv_len) == 0) - e->e_flags |= SLAPI_ENTRY_LDAPSUBENTRY; -- if (PL_strncasecmp(value.bv_val, SLAPI_ATTR_VALUE_TOMBSTONE,value.bv_len) == 0) -+ if (value.bv_len >= SLAPI_ATTR_VALUE_TOMBSTONE_LENGTH && PL_strncasecmp(value.bv_val, SLAPI_ATTR_VALUE_TOMBSTONE,value.bv_len) == 0) - e->e_flags |= SLAPI_ENTRY_FLAG_TOMBSTONE; - } - -diff --git a/ldap/servers/slapd/slapi-plugin.h b/ldap/servers/slapd/slapi-plugin.h -index d456af8..d8cfe33 100644 ---- a/ldap/servers/slapd/slapi-plugin.h -+++ b/ldap/servers/slapd/slapi-plugin.h -@@ -395,9 +395,22 @@ NSPR_API(PRUint32) PR_fprintf(struct PRFileDesc* fd, const char *fmt, ...) - #define SLAPI_ATTR_OBJECTCLASS "objectclass" - #define SLAPI_ATTR_VALUE_TOMBSTONE "nsTombstone" - #define SLAPI_ATTR_VALUE_PARENT_UNIQUEID "nsParentUniqueID" -+#define SLAPI_ATTR_VALUE_SUBENTRY "ldapsubentry" - #define SLAPI_ATTR_NSCP_ENTRYDN "nscpEntryDN" - #define SLAPI_ATTR_ENTRYUSN "entryusn" --#define SLAPI_ATTR_ENTRYDN "entrydn" -+#define SLAPI_ATTR_ENTRYDN "entrydn" -+#define SLAPI_ATTR_DN "dn" -+#define SLAPI_ATTR_RDN "rdn" -+#define SLAPI_ATTR_UNIQUEID_LENGTH 10 -+#define SLAPI_ATTR_OBJECTCLASS_LENGTH 11 -+#define SLAPI_ATTR_VALUE_TOMBSTONE_LENGTH 11 -+#define SLAPI_ATTR_VALUE_PARENT_UNIQUEID_LENGTH 16 -+#define SLAPI_ATTR_VALUE_SUBENTRY_LENGTH 12 -+#define SLAPI_ATTR_NSCP_ENTRYDN_LENGTH 11 -+#define SLAPI_ATTR_ENTRYUSN_LENGTH 8 -+#define SLAPI_ATTR_ENTRYDN_LENGTH 7 -+#define SLAPI_ATTR_DN_LENGTH 2 -+#define SLAPI_ATTR_RDN_LENGTH 3 - - - /* opaque structures */ --- -1.8.1.4 - diff --git a/SOURCES/0063-Ticket-47614-Possible-to-specify-invalid-SASL-mechan.patch b/SOURCES/0063-Ticket-47614-Possible-to-specify-invalid-SASL-mechan.patch deleted file mode 100644 index ae284b7..0000000 --- a/SOURCES/0063-Ticket-47614-Possible-to-specify-invalid-SASL-mechan.patch +++ /dev/null @@ -1,106 +0,0 @@ -From 58b738e455355344acbfcac556600b2e19ade1a3 Mon Sep 17 00:00:00 2001 -From: Mark Reynolds <mreynolds@redhat.com> -Date: Mon, 2 Dec 2013 17:13:55 -0500 -Subject: [PATCH 63/65] Ticket 47614 - Possible to specify invalid SASL - mechanism in nsslapd-allowed-sasl-mechanisms - -Bug Description: Invalid values could be specified in the allowed sasl mechanisms configuration - attribute. These values are directly passed to the sasl library. - -Fix Description: Follow RFR 4422, only allow upto 20 characters that are ASCII upper-case letters, - digits, hyphens, or underscores. - -https://fedorahosted.org/389/ticket/47614 - -Reviewed by: richm(Thanks!) -(cherry picked from commit 7e8a5fc7183f7c08212bfb746ea8c5ceedee0132) -(cherry picked from commit f00321f892545d59e07c1a944936153660640e47) ---- - ldap/servers/slapd/libglobs.c | 60 +++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 60 insertions(+) - -diff --git a/ldap/servers/slapd/libglobs.c b/ldap/servers/slapd/libglobs.c -index b925a2c..a763135 100644 ---- a/ldap/servers/slapd/libglobs.c -+++ b/ldap/servers/slapd/libglobs.c -@@ -126,6 +126,7 @@ static int config_set_onoff( const char *attrname, char *value, - static int config_set_schemareplace ( const char *attrname, char *value, - char *errorbuf, int apply ); - static void remove_commas(char *str); -+static int invalid_sasl_mech(char *str); - - /* Keeping the initial values */ - /* CONFIG_INT/CONFIG_LONG */ -@@ -6768,6 +6769,13 @@ config_set_allowed_sasl_mechs(const char *attrname, char *value, char *errorbuf, - /* cyrus sasl doesn't like comma separated lists */ - remove_commas(value); - -+ if(invalid_sasl_mech(value)){ -+ LDAPDebug(LDAP_DEBUG_ANY,"Invalid value/character for sasl mechanism (%s). Use ASCII " -+ "characters, upto 20 characters, that are upper-case letters, " -+ "digits, hyphens, or underscores\n", value, 0, 0); -+ return LDAP_UNWILLING_TO_PERFORM; -+ } -+ - CFG_LOCK_WRITE(slapdFrontendConfig); - slapdFrontendConfig->allowed_sasl_mechs = slapi_ch_strdup(value); - CFG_UNLOCK_WRITE(slapdFrontendConfig); -@@ -7452,3 +7460,55 @@ remove_commas(char *str) - } - } - } -+ -+/* -+ * Check the SASL mechanism values -+ * -+ * As per RFC 4422: -+ * SASL mechanisms are named by character strings, from 1 to 20 -+ * characters in length, consisting of ASCII [ASCII] uppercase letters, -+ * digits, hyphens, and/or underscores. -+ */ -+static int -+invalid_sasl_mech(char *str) -+{ -+ char *mech = NULL, *token = NULL, *next = NULL; -+ int i; -+ -+ if(str == NULL){ -+ return 0; -+ } -+ -+ /* -+ * Check the length for each mechanism -+ */ -+ token = slapi_ch_strdup(str); -+ for (mech = ldap_utf8strtok_r(token, " ", &next); mech; -+ mech = ldap_utf8strtok_r(NULL, " ", &next)) -+ { -+ if(strlen(mech) == 0 || strlen(mech) > 20){ -+ /* invalid length */ -+ slapi_ch_free_string(&token); -+ return 1; -+ } -+ } -+ slapi_ch_free_string(&token); -+ -+ /* -+ * Check the individual characters -+ */ -+ for (i = 0; str[i]; i++){ -+ if ( ((int)str[i] < 48 || (int)str[i] > 57) && /* not a digit */ -+ ((int)str[i] < 65 || (int)str[i] > 90) && /* not upper case */ -+ (int)str[i] != 32 && /* not a space (between mechanisms) */ -+ (int)str[i] != 45 && /* not a hyphen */ -+ (int)str[i] != 95 ) /* not an underscore */ -+ { -+ /* invalid character */ -+ return 1; -+ } -+ } -+ -+ /* Mechanism value is valid */ -+ return 0; -+} --- -1.8.1.4 - diff --git a/SOURCES/0064-Ticket-47592-automember-plugin-task-memory-leaks.patch b/SOURCES/0064-Ticket-47592-automember-plugin-task-memory-leaks.patch deleted file mode 100644 index c82571a..0000000 --- a/SOURCES/0064-Ticket-47592-automember-plugin-task-memory-leaks.patch +++ /dev/null @@ -1,54 +0,0 @@ -From 2429e72646b1bb30f8566b59dd370eb2ff1ac131 Mon Sep 17 00:00:00 2001 -From: Mark Reynolds <mreynolds@redhat.com> -Date: Wed, 27 Nov 2013 10:58:43 -0500 -Subject: [PATCH 64/65] Ticket 47592 - automember plugin task memory leaks - -The search pblock was not destroyed at the end of the export and rebuild -tasks. - -https://fedorahosted.org/389/ticket/47592 - -Reviewed by: richm(Thanks!) -(cherry picked from commit 085c6d494f90231f2e572a668ab601c321bffb01) -(cherry picked from commit c9c7d545a987f8f52c9752ba1181d1885b74480c) ---- - ldap/servers/plugins/automember/automember.c | 7 +++++-- - 1 file changed, 5 insertions(+), 2 deletions(-) - -diff --git a/ldap/servers/plugins/automember/automember.c b/ldap/servers/plugins/automember/automember.c -index 3214ea1..cfea69d 100644 ---- a/ldap/servers/plugins/automember/automember.c -+++ b/ldap/servers/plugins/automember/automember.c -@@ -2256,7 +2256,6 @@ void automember_rebuild_task_thread(void *arg){ - } - } - automember_config_unlock(); -- slapi_free_search_results_internal(search_pb); - - out: - if (plugin_is_betxn && fixup_pb) { -@@ -2267,6 +2266,8 @@ out: - } - slapi_pblock_destroy(fixup_pb); - } -+ slapi_free_search_results_internal(search_pb); -+ slapi_pblock_destroy(search_pb); - - if(result){ - /* error */ -@@ -2470,9 +2471,11 @@ void automember_export_task_thread(void *arg){ - } - } - automember_config_unlock(); -- slapi_free_search_results_internal(search_pb); - - out: -+ slapi_free_search_results_internal(search_pb); -+ slapi_pblock_destroy(search_pb); -+ - if(ldif_fd){ - PR_Close(ldif_fd); - } --- -1.8.1.4 - diff --git a/SOURCES/0065-Ticket-47620-389-ds-rejects-nsds5ReplicaProtocolTime.patch b/SOURCES/0065-Ticket-47620-389-ds-rejects-nsds5ReplicaProtocolTime.patch deleted file mode 100644 index 68c7063..0000000 --- a/SOURCES/0065-Ticket-47620-389-ds-rejects-nsds5ReplicaProtocolTime.patch +++ /dev/null @@ -1,563 +0,0 @@ -From 39af2e9e98c895c5145090865d5ab7cde6cc12fd Mon Sep 17 00:00:00 2001 -From: Mark Reynolds <mreynolds@redhat.com> -Date: Fri, 6 Dec 2013 16:57:41 -0500 -Subject: [PATCH 65/65] Ticket 47620 - 389-ds rejects - nsds5ReplicaProtocolTimeout attribute - -Bug Description: Attempting to add/modify/delete nsds5ReplicaProtocolTimeout - results in an error 53 (unwilling to perform). - -Fix Description: Allow nsds5ReplicaProtocolTimeout to be updated in agreements - and the replica configuration. Also, made the config timeout - setting dynamic. - -https://fedorahosted.org/389/ticket/47620 - -Reviewed by: rmeggins(Thanks!) -(cherry picked from commit 58fca2c4e4f2120cb6e5fb249008be8f551e944c) -(cherry picked from commit 490360fd96121d06fa8813e182b44d045257be98) ---- - ldap/servers/plugins/replication/repl5.h | 12 +++-- - ldap/servers/plugins/replication/repl5_agmt.c | 54 ++++++++++++++++------ - ldap/servers/plugins/replication/repl5_agmtlist.c | 27 +++++++++-- - .../plugins/replication/repl5_inc_protocol.c | 23 +++++++-- - .../plugins/replication/repl5_prot_private.h | 1 - - ldap/servers/plugins/replication/repl5_protocol.c | 13 ++---- - ldap/servers/plugins/replication/repl5_replica.c | 54 ++++++++++++++-------- - .../plugins/replication/repl5_replica_config.c | 25 +++++++++- - .../plugins/replication/repl5_tot_protocol.c | 17 +++++-- - 9 files changed, 169 insertions(+), 57 deletions(-) - -diff --git a/ldap/servers/plugins/replication/repl5.h b/ldap/servers/plugins/replication/repl5.h -index 92a9229..321a285 100644 ---- a/ldap/servers/plugins/replication/repl5.h -+++ b/ldap/servers/plugins/replication/repl5.h -@@ -386,9 +386,15 @@ char **agmt_get_attrs_to_strip(Repl_Agmt *ra); - int agmt_set_attrs_to_strip(Repl_Agmt *ra, Slapi_Entry *e); - int agmt_set_timeout(Repl_Agmt *ra, long timeout); - void agmt_update_done(Repl_Agmt *ra, int is_total); --int agmt_get_protocol_timeout(Repl_Agmt *agmt); - - typedef struct replica Replica; -+PRUint64 agmt_get_protocol_timeout(Repl_Agmt *agmt); -+void agmt_set_protocol_timeout(Repl_Agmt *agmt, PRUint64 timeout); -+void agmt_update_maxcsn(Replica *r, Slapi_DN *sdn, int op, LDAPMod **mods, CSN *csn); -+void add_agmt_maxcsns(Slapi_Entry *e, Replica *r); -+void agmt_set_maxcsn(Repl_Agmt *ra); -+void agmt_remove_maxcsn(Repl_Agmt *ra); -+int agmt_maxcsn_to_smod (Replica *r, Slapi_Mod *smod); - - /* In repl5_agmtlist.c */ - int agmtlist_config_init(); -@@ -494,7 +500,6 @@ void prot_notify_window_opened (Repl_Protocol *rp); - void prot_notify_window_closed (Repl_Protocol *rp); - Object *prot_get_replica_object(Repl_Protocol *rp); - void prot_replicate_now(Repl_Protocol *rp); --int prot_get_timeout(Repl_Protocol *rp); - - Repl_Protocol *agmt_get_protocol(Repl_Agmt *ra); - -@@ -591,7 +596,8 @@ char *replica_get_dn(Replica *r); - void replica_check_for_tasks(Replica*r, Slapi_Entry *e); - void replica_update_state (time_t when, void *arg); - void replica_reset_csn_pl(Replica *r); --int replica_get_protocol_timeout(Replica *r); -+PRUint64 replica_get_protocol_timeout(Replica *r); -+void replica_set_protocol_timeout(Replica *r, PRUint64 timeout); - int replica_get_backoff_min(Replica *r); - int replica_get_backoff_max(Replica *r); - void replica_set_backoff_min(Replica *r, int min); -diff --git a/ldap/servers/plugins/replication/repl5_agmt.c b/ldap/servers/plugins/replication/repl5_agmt.c -index 90d94f8..b0da172 100644 ---- a/ldap/servers/plugins/replication/repl5_agmt.c -+++ b/ldap/servers/plugins/replication/repl5_agmt.c -@@ -142,7 +142,9 @@ typedef struct repl5agmt { - char **attrs_to_strip; /* for fractional replication, if a "mod" is empty, strip out these attributes: - * modifiersname, modifytimestamp, internalModifiersname, internalModifyTimestamp, etc */ - int agreement_type; -- PRUint64 protocol_timeout; -+ Slapi_Counter *protocol_timeout; -+ char *maxcsn; /* agmt max csn */ -+ Slapi_RWLock *attr_lock; /* RW lock for all the stripped attrs */ - } repl5agmt; - - /* Forward declarations */ -@@ -265,6 +267,14 @@ agmt_new_from_entry(Slapi_Entry *e) - slapi_entry_get_dn_const(e)); - goto loser; - } -+ if ((ra->attr_lock = slapi_new_rwlock()) == NULL) -+ { -+ slapi_log_error(SLAPI_LOG_FATAL, repl_plugin_name, "Unable to create new attr lock " -+ "for replication agreement \"%s\" - agreement ignored.\n", -+ slapi_entry_get_dn_const(e)); -+ goto loser; -+ } -+ ra->protocol_timeout = slapi_counter_new(); - - /* Find all the stuff we need for the agreement */ - -@@ -338,19 +348,14 @@ agmt_new_from_entry(Slapi_Entry *e) - tmpstr = slapi_entry_attr_get_charptr(e, type_nsds5ReplicaRoot); - if (NULL != tmpstr) - { -+ PRUint64 ptimeout = 0; -+ - ra->replarea = slapi_sdn_new_dn_passin(tmpstr); - - /* If this agmt has its own timeout, grab it, otherwise use the replica's protocol timeout */ -- ra->protocol_timeout = slapi_entry_attr_get_int(e, type_replicaProtocolTimeout); -- if(ra->protocol_timeout == 0){ -- /* grab the replica protocol timeout */ -- Object *replobj = replica_get_replica_from_dn(ra->replarea); -- if(replobj){ -- Replica *replica =(Replica*)object_get_data (replobj); -- ra->protocol_timeout = replica_get_protocol_timeout(replica); -- } else { -- ra->protocol_timeout = DEFAULT_PROTOCOL_TIMEOUT; -- } -+ ptimeout = slapi_entry_attr_get_int(e, type_replicaProtocolTimeout); -+ if(ptimeout){ -+ slapi_counter_set_value(ra->protocol_timeout, ptimeout); - } - } - -@@ -613,6 +618,17 @@ agmt_delete(void **rap) - if(ra->attrs_to_strip){ - slapi_ch_array_free(ra->attrs_to_strip); - } -+ if(ra->maxcsn){ -+ slapi_ch_free_string(&ra->maxcsn); -+ } -+ schedule_destroy(ra->schedule); -+ slapi_ch_free_string(&ra->long_name); -+ -+ slapi_counter_destroy(&ra->protocol_timeout); -+ -+ /* free the locks */ -+ PR_DestroyLock(ra->lock); -+ slapi_destroy_rwlock(ra->attr_lock); - - schedule_destroy(ra->schedule); - slapi_ch_free((void **)&ra->long_name); -@@ -2663,9 +2679,21 @@ agmt_update_done(Repl_Agmt *agmt, int is_total) - windows_update_done(agmt, is_total); - } - --int -+PRUint64 - agmt_get_protocol_timeout(Repl_Agmt *agmt) - { -- return (int)agmt->protocol_timeout; -+ if(agmt){ -+ return slapi_counter_get_value(agmt->protocol_timeout); -+ } else { -+ return 0; -+ } -+} -+ -+void -+agmt_set_protocol_timeout(Repl_Agmt *agmt, PRUint64 timeout) -+{ -+ if(agmt){ -+ slapi_counter_set_value(agmt->protocol_timeout, timeout); -+ } - } - -diff --git a/ldap/servers/plugins/replication/repl5_agmtlist.c b/ldap/servers/plugins/replication/repl5_agmtlist.c -index 1167b0c..04891b7 100644 ---- a/ldap/servers/plugins/replication/repl5_agmtlist.c -+++ b/ldap/servers/plugins/replication/repl5_agmtlist.c -@@ -209,6 +209,7 @@ agmtlist_modify_callback(Slapi_PBlock *pb, Slapi_Entry *entryBefore, Slapi_Entry - LDAPMod **mods; - char buff [SLAPI_DSE_RETURNTEXT_SIZE]; - char *errortext = returntext ? returntext : buff; -+ char *val = NULL; - int rc = SLAPI_DSE_CALLBACK_OK; - Slapi_Operation *op; - void *identity; -@@ -243,16 +244,21 @@ agmtlist_modify_callback(Slapi_PBlock *pb, Slapi_Entry *entryBefore, Slapi_Entry - slapi_pblock_get(pb, SLAPI_MODIFY_MODS, &mods); - for (i = 0; NULL != mods && NULL != mods[i]; i++) - { -+ slapi_ch_free_string(&val); - if (slapi_attr_types_equivalent(mods[i]->mod_type, type_nsds5ReplicaInitialize)) - { - /* we don't allow delete attribute operations unless it was issued by - the replication plugin - handled above */ - if (mods[i]->mod_op & LDAP_MOD_DELETE) - { -- if(strcasecmp (mods[i]->mod_type, type_nsds5ReplicaCleanRUVnotified) == 0){ -+ if(strcasecmp (mods[i]->mod_type, type_nsds5ReplicaCleanRUVnotified) == 0 ){ - /* allow the deletion of cleanallruv agmt attr */ - continue; - } -+ if(strcasecmp (mods[i]->mod_type, type_replicaProtocolTimeout) == 0){ -+ agmt_set_protocol_timeout(agmt, 0); -+ continue; -+ } - - slapi_log_error(SLAPI_LOG_REPL, repl_plugin_name, "agmtlist_modify_callback: " - "deletion of %s attribute is not allowed\n", type_nsds5ReplicaInitialize); -@@ -262,8 +268,6 @@ agmtlist_modify_callback(Slapi_PBlock *pb, Slapi_Entry *entryBefore, Slapi_Entry - } - else - { -- char *val; -- - if (mods[i]->mod_bvalues && mods[i]->mod_bvalues[0]) - val = slapi_berval_get_string_copy (mods[i]->mod_bvalues[0]); - else -@@ -304,7 +308,6 @@ agmtlist_modify_callback(Slapi_PBlock *pb, Slapi_Entry *entryBefore, Slapi_Entry - val, mods[i]->mod_type); - slapi_log_error(SLAPI_LOG_REPL, repl_plugin_name, "agmtlist_modify_callback: %s\n", errortext); - } -- slapi_ch_free ((void**)&val); - } - } - else if (slapi_attr_types_equivalent(mods[i]->mod_type, -@@ -511,6 +514,21 @@ agmtlist_modify_callback(Slapi_PBlock *pb, Slapi_Entry *entryBefore, Slapi_Entry - rc = SLAPI_DSE_CALLBACK_ERROR; - } - } -+ else if (slapi_attr_types_equivalent(mods[i]->mod_type, type_replicaProtocolTimeout)){ -+ if (val){ -+ long ptimeout = atol(val); -+ -+ if(ptimeout <= 0){ -+ *returncode = LDAP_UNWILLING_TO_PERFORM; -+ slapi_log_error(SLAPI_LOG_FATAL, repl_plugin_name, "attribute %s value (%s) is invalid, " -+ "must be a number greater than zero.\n", -+ type_replicaProtocolTimeout, val); -+ rc = SLAPI_DSE_CALLBACK_ERROR; -+ break; -+ } -+ agmt_set_protocol_timeout(agmt, ptimeout); -+ } -+ } - else if (0 == windows_handle_modify_agreement(agmt, mods[i]->mod_type, e)) - { - slapi_log_error(SLAPI_LOG_REPL, repl_plugin_name, "agmtlist_modify_callback: " -@@ -561,6 +579,7 @@ done: - { - agmtlist_release_agmt(agmt); - } -+ slapi_ch_free_string(&val); - - return rc; - } -diff --git a/ldap/servers/plugins/replication/repl5_inc_protocol.c b/ldap/servers/plugins/replication/repl5_inc_protocol.c -index 612fe46..05074b0 100644 ---- a/ldap/servers/plugins/replication/repl5_inc_protocol.c -+++ b/ldap/servers/plugins/replication/repl5_inc_protocol.c -@@ -1921,10 +1921,24 @@ send_updates(Private_Repl_Protocol *prp, RUV *remote_update_vector, PRUint32 *nu - static int - repl5_inc_stop(Private_Repl_Protocol *prp) - { -- int return_value; - PRIntervalTime start, maxwait, now; -+ Replica *replica = NULL; -+ PRUint64 timeout; -+ int return_value; -+ -+ if((timeout = agmt_get_protocol_timeout(prp->agmt)) == 0){ -+ timeout = DEFAULT_PROTOCOL_TIMEOUT; -+ if(prp->replica_object){ -+ object_acquire(prp->replica_object); -+ replica = object_get_data(prp->replica_object); -+ if((timeout = replica_get_protocol_timeout(replica)) == 0){ -+ timeout = DEFAULT_PROTOCOL_TIMEOUT; -+ } -+ object_release(prp->replica_object); -+ } -+ } - -- maxwait = PR_SecondsToInterval(prp->timeout); -+ maxwait = PR_SecondsToInterval(timeout); - prp->terminate = 1; - event_notify(prp, EVENT_PROTOCOL_SHUTDOWN); - start = PR_IntervalNow(); -@@ -1939,8 +1953,8 @@ repl5_inc_stop(Private_Repl_Protocol *prp) - /* Isn't listening. Do something drastic. */ - return_value = -1; - slapi_log_error(SLAPI_LOG_REPL, repl_plugin_name, -- "%s: repl5_inc_stop: protocol does not stop after %d seconds\n", -- agmt_get_long_name(prp->agmt), (int)prp->timeout); -+ "%s: repl5_inc_stop: protocol does not stop after %llu seconds\n", -+ agmt_get_long_name(prp->agmt), (long long unsigned int)timeout); - } - else - { -@@ -2044,7 +2058,6 @@ Repl_5_Inc_Protocol_new(Repl_Protocol *rp) - prp->notify_window_closed = repl5_inc_notify_window_closed; - prp->update_now = repl5_inc_update_now; - prp->replica_object = prot_get_replica_object(rp); -- prp->timeout = prot_get_timeout(rp); - if ((prp->lock = PR_NewLock()) == NULL) - { - goto loser; -diff --git a/ldap/servers/plugins/replication/repl5_prot_private.h b/ldap/servers/plugins/replication/repl5_prot_private.h -index 37072ee..586e1eb 100644 ---- a/ldap/servers/plugins/replication/repl5_prot_private.h -+++ b/ldap/servers/plugins/replication/repl5_prot_private.h -@@ -75,7 +75,6 @@ typedef struct private_repl_protocol - int repl50consumer; /* Flag to tell us if this is a 5.0-style consumer we're talking to */ - int repl71consumer; /* Flag to tell us if this is a 7.1-style consumer we're talking to */ - int repl90consumer; /* Flag to tell us if this is a 9.0-style consumer we're talking to */ -- PRUint64 timeout; - } Private_Repl_Protocol; - - extern Private_Repl_Protocol *Repl_5_Inc_Protocol_new(); -diff --git a/ldap/servers/plugins/replication/repl5_protocol.c b/ldap/servers/plugins/replication/repl5_protocol.c -index 34fe8a0..0e9668d 100644 ---- a/ldap/servers/plugins/replication/repl5_protocol.c -+++ b/ldap/servers/plugins/replication/repl5_protocol.c -@@ -71,8 +71,7 @@ typedef struct repl_protocol - Object *replica_object; /* Local replica. If non-NULL, replica object is acquired */ - int state; - int next_state; -- PRUint64 protocol_timeout; -- PRThread *agmt_thread; -+ PRThread *agmt_thread; - PRLock *lock; - } repl_protocol; - -@@ -134,16 +133,17 @@ prot_new(Repl_Agmt *agmt, int protocol_state) - rp->prp_total = private_protocol_factory(rp, PROTOCOL_WINDOWS_TOTAL); - rp->delete_conn = windows_conn_delete; - } -- rp->protocol_timeout = agmt_get_protocol_timeout(agmt); -- - /* XXXggood register callback handlers for entries updated, and - schedule window enter/leave. */ - - goto done; -+ - loser: - prot_delete(&rp); -+ - done: - slapi_sdn_free(&replarea_sdn); -+ - return rp; - } - -@@ -593,8 +593,3 @@ private_protocol_factory(Repl_Protocol *rp, int type) - return prp; - } - --int --prot_get_timeout(Repl_Protocol *rp) --{ -- return (int)rp->protocol_timeout; --} -diff --git a/ldap/servers/plugins/replication/repl5_replica.c b/ldap/servers/plugins/replication/repl5_replica.c -index 8a1c590..02d4e74 100644 ---- a/ldap/servers/plugins/replication/repl5_replica.c -+++ b/ldap/servers/plugins/replication/repl5_replica.c -@@ -87,7 +87,7 @@ struct replica { - PRBool state_update_inprogress; /* replica state is being updated */ - PRLock *agmt_lock; /* protects agreement creation, start and stop */ - char *locking_purl; /* supplier who has exclusive access */ -- PRUint64 protocol_timeout; /* protocol shutdown timeout */ -+ Slapi_Counter *protocol_timeout; /* protocol shutdown timeout */ - PRUint64 backoff_min; /* backoff retry minimum */ - PRUint64 backoff_max; /* backoff retry maximum */ - }; -@@ -164,26 +164,26 @@ replica_new(const Slapi_DN *root) - Replica * - replica_new_from_entry (Slapi_Entry *e, char *errortext, PRBool is_add_operation) - { -- int rc = 0; -- Replica *r; -+ int rc = 0; -+ Replica *r; - char *repl_name = NULL; - -- if (e == NULL) -- { -- if (NULL != errortext) -+ if (e == NULL) -+ { -+ if (NULL != errortext) - { -- PR_snprintf(errortext, SLAPI_DSE_RETURNTEXT_SIZE, "NULL entry"); -+ PR_snprintf(errortext, SLAPI_DSE_RETURNTEXT_SIZE, "NULL entry"); - } -- return NULL; -- } -+ return NULL; -+ } - -- r = (Replica *)slapi_ch_calloc(1, sizeof(Replica)); -+ r = (Replica *)slapi_ch_calloc(1, sizeof(Replica)); - -- if (!r) -+ if (!r) - { -- if (NULL != errortext) -+ if (NULL != errortext) - { -- PR_snprintf(errortext, SLAPI_DSE_RETURNTEXT_SIZE, "Out of memory"); -+ PR_snprintf(errortext, SLAPI_DSE_RETURNTEXT_SIZE, "Out of memory"); - } - rc = -1; - goto done; -@@ -208,6 +208,7 @@ replica_new_from_entry (Slapi_Entry *e, char *errortext, PRBool is_add_operation - rc = -1; - goto done; - } -+ r->protocol_timeout = slapi_counter_new(); - - /* read parameters from the replica config entry */ - rc = _replica_init_from_config (r, e, errortext); -@@ -403,6 +404,8 @@ replica_destroy(void **arg) - csnplFree(&r->min_csn_pl);; - } - -+ slapi_counter_destroy(&r->protocol_timeout); -+ - slapi_ch_free((void **)arg); - } - -@@ -796,10 +799,22 @@ replica_get_type (const Replica *r) - return r->repl_type; - } - --int -+PRUint64 - replica_get_protocol_timeout(Replica *r) - { -- return (int)r->protocol_timeout; -+ if(r){ -+ return slapi_counter_get_value(r->protocol_timeout); -+ } else { -+ return 0; -+ } -+} -+ -+void -+replica_set_protocol_timeout(Replica *r, PRUint64 timeout) -+{ -+ if(r){ -+ slapi_counter_set_value(r->protocol_timeout, timeout); -+ } - } - - /* -@@ -1659,6 +1674,7 @@ _replica_init_from_config (Replica *r, Slapi_Entry *e, char *errortext) - char *val; - int backoff_min; - int backoff_max; -+ int ptimeout = 0; - int rc; - - PR_ASSERT (r && e); -@@ -1731,9 +1747,11 @@ _replica_init_from_config (Replica *r, Slapi_Entry *e, char *errortext) - } - - /* get the protocol timeout */ -- r->protocol_timeout = slapi_entry_attr_get_int(e, type_replicaProtocolTimeout); -- if(r->protocol_timeout == 0){ -- r->protocol_timeout = DEFAULT_PROTOCOL_TIMEOUT; -+ ptimeout = slapi_entry_attr_get_int(e, type_replicaProtocolTimeout); -+ if(ptimeout <= 0){ -+ slapi_counter_set_value(r->protocol_timeout, DEFAULT_PROTOCOL_TIMEOUT); -+ } else { -+ slapi_counter_set_value(r->protocol_timeout, ptimeout); - } - - /* get replica flags */ -diff --git a/ldap/servers/plugins/replication/repl5_replica_config.c b/ldap/servers/plugins/replication/repl5_replica_config.c -index 94c23c0..9452d51 100644 ---- a/ldap/servers/plugins/replication/repl5_replica_config.c -+++ b/ldap/servers/plugins/replication/repl5_replica_config.c -@@ -396,9 +396,16 @@ replica_config_modify (Slapi_PBlock *pb, Slapi_Entry* entryBefore, Slapi_Entry* - else if (strcasecmp (config_attr, type_replicaCleanRUV) == 0 || - strcasecmp (config_attr, type_replicaAbortCleanRUV) == 0) - { -- /* only allow the deletion of the cleanAllRUV config attributes */ -+ /* -+ * Only allow the deletion of the cleanAllRUV config attributes, and the -+ * protocol timeout. -+ */ - continue; - } -+ else if (strcasecmp (config_attr, type_replicaProtocolTimeout) == 0 ) -+ { -+ replica_set_protocol_timeout(r, DEFAULT_PROTOCOL_TIMEOUT); -+ } - else - { - *returncode = LDAP_UNWILLING_TO_PERFORM; -@@ -487,6 +494,22 @@ replica_config_modify (Slapi_PBlock *pb, Slapi_Entry* entryBefore, Slapi_Entry* - { - *returncode = LDAP_SUCCESS; - } -+ else if (strcasecmp (config_attr, type_replicaProtocolTimeout) == 0 ){ -+ if (apply_mods && config_attr_value && config_attr_value[0]) -+ { -+ long ptimeout = atol(config_attr_value); -+ -+ if(ptimeout <= 0){ -+ *returncode = LDAP_UNWILLING_TO_PERFORM; -+ PR_snprintf (errortext, SLAPI_DSE_RETURNTEXT_SIZE, -+ "attribute %s value (%s) is invalid, must be a number greater than zero.\n", -+ config_attr, config_attr_value); -+ slapi_log_error(SLAPI_LOG_FATAL, repl_plugin_name, "replica_config_modify: %s\n", errortext); -+ } else { -+ replica_set_protocol_timeout(r, ptimeout); -+ } -+ } -+ } - else - { - *returncode = LDAP_UNWILLING_TO_PERFORM; -diff --git a/ldap/servers/plugins/replication/repl5_tot_protocol.c b/ldap/servers/plugins/replication/repl5_tot_protocol.c -index 5bb203a..a241128 100644 ---- a/ldap/servers/plugins/replication/repl5_tot_protocol.c -+++ b/ldap/servers/plugins/replication/repl5_tot_protocol.c -@@ -505,11 +505,22 @@ static int - repl5_tot_stop(Private_Repl_Protocol *prp) - { - int return_value; -- int seconds = 600; - PRIntervalTime start, maxwait, now; -+ PRUint64 timeout = DEFAULT_PROTOCOL_TIMEOUT; -+ Replica *replica = NULL; -+ -+ if((timeout = agmt_get_protocol_timeout(prp->agmt)) == 0){ -+ timeout = DEFAULT_PROTOCOL_TIMEOUT; -+ if(prp->replica_object){ -+ replica = object_get_data(prp->replica_object); -+ if((timeout = replica_get_protocol_timeout(replica)) == 0){ -+ timeout = DEFAULT_PROTOCOL_TIMEOUT; -+ } -+ } -+ } - - prp->terminate = 1; -- maxwait = PR_SecondsToInterval(seconds); -+ maxwait = PR_SecondsToInterval(timeout); - start = PR_IntervalNow(); - now = start; - while (!prp->stopped && ((now - start) < maxwait)) -@@ -567,7 +578,6 @@ Repl_5_Tot_Protocol_new(Repl_Protocol *rp) - prp->notify_window_opened = repl5_tot_noop; - prp->notify_window_closed = repl5_tot_noop; - prp->update_now = repl5_tot_noop; -- prp->timeout = DEFAULT_PROTOCOL_TIMEOUT; - if ((prp->lock = PR_NewLock()) == NULL) - { - goto loser; -@@ -588,6 +598,7 @@ Repl_5_Tot_Protocol_new(Repl_Protocol *rp) - prp->repl50consumer = 0; - prp->repl71consumer = 0; - prp->repl90consumer = 0; -+ prp->replica_object = prot_get_replica_object(rp); - return prp; - loser: - repl5_tot_delete(&prp); --- -1.8.1.4 - diff --git a/SOURCES/0066-Ticket-47613-Issues-setting-allowed-mechanisms.patch b/SOURCES/0066-Ticket-47613-Issues-setting-allowed-mechanisms.patch deleted file mode 100644 index d6780c7..0000000 --- a/SOURCES/0066-Ticket-47613-Issues-setting-allowed-mechanisms.patch +++ /dev/null @@ -1,72 +0,0 @@ -From 26a0d63bcbf280d20bd984fd00fd82e82ed62de5 Mon Sep 17 00:00:00 2001 -From: Mark Reynolds <mreynolds@redhat.com> -Date: Thu, 12 Dec 2013 12:48:08 -0500 -Subject: [PATCH 66/78] Ticket 47613 - Issues setting allowed mechanisms - -Bug Description: Adding an empty value for nsslapd-allowed-sasl-mechanisms blocks all - sasl authentication. Also changing the allowed sasl mechansism does - require a restart after making a change. - -Fix Description: Reject an empty values for nsslapd-allowed-sasl-mechanisms, and allow - config changes to occur without restarting the server. - -https://fedorahosted.org/389/ticket/47613 - -Reviewed by: nhosoi(Thanks!) -(cherry picked from commit 43959232f792db2b79e614f6db78f7569920fdc1) -(cherry picked from commit a1e386188663c9197b80b3b51cca0d58ce0c9181) ---- - ldap/servers/slapd/configdse.c | 1 - - ldap/servers/slapd/libglobs.c | 10 +++++++--- - 2 files changed, 7 insertions(+), 4 deletions(-) - -diff --git a/ldap/servers/slapd/configdse.c b/ldap/servers/slapd/configdse.c -index bd1566e..b54062d 100644 ---- a/ldap/servers/slapd/configdse.c -+++ b/ldap/servers/slapd/configdse.c -@@ -81,7 +81,6 @@ static const char *requires_restart[] = { - #endif - "cn=config:" CONFIG_RETURN_EXACT_CASE_ATTRIBUTE, - "cn=config:" CONFIG_SCHEMA_IGNORE_TRAILING_SPACES, -- "cn=config:nsslapd-allowed-sasl-mechanisms", - "cn=config,cn=ldbm:nsslapd-idlistscanlimit", - "cn=config,cn=ldbm:nsslapd-parentcheck", - "cn=config,cn=ldbm:nsslapd-dbcachesize", -diff --git a/ldap/servers/slapd/libglobs.c b/ldap/servers/slapd/libglobs.c -index a763135..64510d6 100644 ---- a/ldap/servers/slapd/libglobs.c -+++ b/ldap/servers/slapd/libglobs.c -@@ -6761,8 +6761,7 @@ config_set_allowed_sasl_mechs(const char *attrname, char *value, char *errorbuf, - { - slapdFrontendConfig_t *slapdFrontendConfig = getFrontendConfig(); - -- if(!apply || slapdFrontendConfig->allowed_sasl_mechs){ -- /* we only set this at startup, if we try again just return SUCCESS */ -+ if(!apply){ - return LDAP_SUCCESS; - } - -@@ -6777,6 +6776,7 @@ config_set_allowed_sasl_mechs(const char *attrname, char *value, char *errorbuf, - } - - CFG_LOCK_WRITE(slapdFrontendConfig); -+ slapi_ch_free_string(&slapdFrontendConfig->allowed_sasl_mechs); - slapdFrontendConfig->allowed_sasl_mechs = slapi_ch_strdup(value); - CFG_UNLOCK_WRITE(slapdFrontendConfig); - -@@ -7476,7 +7476,11 @@ invalid_sasl_mech(char *str) - int i; - - if(str == NULL){ -- return 0; -+ return 1; -+ } -+ if(strlen(str) < 1){ -+ /* ignore empty values */ -+ return 1; - } - - /* --- -1.8.1.4 - diff --git a/SOURCES/0067-Ticket-47620-Fix-cherry-pick-error-for-1.3.2-and-1.3.patch b/SOURCES/0067-Ticket-47620-Fix-cherry-pick-error-for-1.3.2-and-1.3.patch deleted file mode 100644 index 1419218..0000000 --- a/SOURCES/0067-Ticket-47620-Fix-cherry-pick-error-for-1.3.2-and-1.3.patch +++ /dev/null @@ -1,51 +0,0 @@ -From 00a0b5f1d506f5f79f4b27859355db8d5a70a249 Mon Sep 17 00:00:00 2001 -From: Mark Reynolds <mreynolds@redhat.com> -Date: Thu, 12 Dec 2013 15:36:11 -0500 -Subject: [PATCH 67/78] Ticket 47620 - Fix cherry-pick error for 1.3.2 and - 1.3.1 - -Description: During the cherry-pick process I had to make some manual changes, - and there were two schedule_destroy() calls made which lead to - a dereferenced point. - -https://fedorahosted.org/389/ticket/47620 - -Reviewed by: rmeggins(Thanks!) -(cherry picked from commit 3ae6900d8269926a1da097e3818aa444137aa9d9) -(cherry picked from commit 5d4ac7c8c5d48be0796cdbf2ae7b9c40460de18c) ---- - ldap/servers/plugins/replication/repl5_agmt.c | 2 -- - ldap/servers/plugins/replication/repl5_schedule.c | 4 ++++ - 2 files changed, 4 insertions(+), 2 deletions(-) - -diff --git a/ldap/servers/plugins/replication/repl5_agmt.c b/ldap/servers/plugins/replication/repl5_agmt.c -index b0da172..14c2fb4 100644 ---- a/ldap/servers/plugins/replication/repl5_agmt.c -+++ b/ldap/servers/plugins/replication/repl5_agmt.c -@@ -630,8 +630,6 @@ agmt_delete(void **rap) - PR_DestroyLock(ra->lock); - slapi_destroy_rwlock(ra->attr_lock); - -- schedule_destroy(ra->schedule); -- slapi_ch_free((void **)&ra->long_name); - slapi_ch_free((void **)rap); - } - -diff --git a/ldap/servers/plugins/replication/repl5_schedule.c b/ldap/servers/plugins/replication/repl5_schedule.c -index 419e3ec..1db06a6 100644 ---- a/ldap/servers/plugins/replication/repl5_schedule.c -+++ b/ldap/servers/plugins/replication/repl5_schedule.c -@@ -159,6 +159,10 @@ schedule_destroy(Schedule *s) - { - int i; - -+ if(s == NULL){ -+ return; -+ } -+ - /* unschedule update window event if exists */ - unschedule_window_state_change_event (s); - --- -1.8.1.4 - diff --git a/SOURCES/0068-Ticket-47620-Config-value-validation-improvement.patch b/SOURCES/0068-Ticket-47620-Config-value-validation-improvement.patch deleted file mode 100644 index 1bc77b1..0000000 --- a/SOURCES/0068-Ticket-47620-Config-value-validation-improvement.patch +++ /dev/null @@ -1,119 +0,0 @@ -From 014aaa8b331e9af9f36432000c4c99b9f60687ae Mon Sep 17 00:00:00 2001 -From: Mark Reynolds <mreynolds@redhat.com> -Date: Fri, 13 Dec 2013 11:43:47 -0500 -Subject: [PATCH 68/78] Ticket 47620 - Config value validation improvement - -Bug Description: When setting the replication protocol timeout, it is possible - to set a negative number(it should be rejected), and when - setting the timeout for an agreement using letters, we get an - invalid syntax error, but it should really be an error 53 to - be consistent with how the invalid timeout error that is given - when updating the replica entry. - -Fix Description: In the agmt modify code, we did not have the actual modify value - during the validation. This allowed the value to be added, which - was later caught for the invalid syntax. Then improved the overall - logic to the validation to also catch the negative numbers. - -https://fedorahosted.org/389/ticket/47620 - -Reviewed by: rmeggins(Thanks!) -(cherry picked from commit 8a4bbc7c74a6847d75e4d6e9e0b16859a5da8ec0) -(cherry picked from commit 1bbb27b522dd8eb36f09f47c144fd65511c132b5) ---- - ldap/servers/plugins/replication/repl5_agmtlist.c | 32 ++++++++++++---------- - .../plugins/replication/repl5_replica_config.c | 12 +++++--- - 2 files changed, 25 insertions(+), 19 deletions(-) - -diff --git a/ldap/servers/plugins/replication/repl5_agmtlist.c b/ldap/servers/plugins/replication/repl5_agmtlist.c -index 04891b7..bd14202 100644 ---- a/ldap/servers/plugins/replication/repl5_agmtlist.c -+++ b/ldap/servers/plugins/replication/repl5_agmtlist.c -@@ -245,6 +245,7 @@ agmtlist_modify_callback(Slapi_PBlock *pb, Slapi_Entry *entryBefore, Slapi_Entry - for (i = 0; NULL != mods && NULL != mods[i]; i++) - { - slapi_ch_free_string(&val); -+ val = slapi_berval_get_string_copy (mods[i]->mod_bvalues[0]); - if (slapi_attr_types_equivalent(mods[i]->mod_type, type_nsds5ReplicaInitialize)) - { - /* we don't allow delete attribute operations unless it was issued by -@@ -268,10 +269,7 @@ agmtlist_modify_callback(Slapi_PBlock *pb, Slapi_Entry *entryBefore, Slapi_Entry - } - else - { -- if (mods[i]->mod_bvalues && mods[i]->mod_bvalues[0]) -- val = slapi_berval_get_string_copy (mods[i]->mod_bvalues[0]); -- else -- { -+ if(val == NULL){ - slapi_log_error(SLAPI_LOG_REPL, repl_plugin_name, "agmtlist_modify_callback: " - "no value provided for %s attribute\n", type_nsds5ReplicaInitialize); - *returncode = LDAP_UNWILLING_TO_PERFORM; -@@ -515,19 +513,23 @@ agmtlist_modify_callback(Slapi_PBlock *pb, Slapi_Entry *entryBefore, Slapi_Entry - } - } - else if (slapi_attr_types_equivalent(mods[i]->mod_type, type_replicaProtocolTimeout)){ -- if (val){ -- long ptimeout = atol(val); -+ long ptimeout = 0; - -- if(ptimeout <= 0){ -- *returncode = LDAP_UNWILLING_TO_PERFORM; -- slapi_log_error(SLAPI_LOG_FATAL, repl_plugin_name, "attribute %s value (%s) is invalid, " -- "must be a number greater than zero.\n", -- type_replicaProtocolTimeout, val); -- rc = SLAPI_DSE_CALLBACK_ERROR; -- break; -- } -- agmt_set_protocol_timeout(agmt, ptimeout); -+ if (val){ -+ ptimeout = atol(val); -+ } -+ if(ptimeout <= 0){ -+ *returncode = LDAP_UNWILLING_TO_PERFORM; -+ PR_snprintf (returntext, SLAPI_DSE_RETURNTEXT_SIZE, -+ "attribute %s value (%s) is invalid, must be a number greater than zero.\n", -+ type_replicaProtocolTimeout, val ? val : ""); -+ slapi_log_error(SLAPI_LOG_FATAL, repl_plugin_name, "attribute %s value (%s) is invalid, " -+ "must be a number greater than zero.\n", -+ type_replicaProtocolTimeout, val ? val : ""); -+ rc = SLAPI_DSE_CALLBACK_ERROR; -+ break; - } -+ agmt_set_protocol_timeout(agmt, ptimeout); - } - else if (0 == windows_handle_modify_agreement(agmt, mods[i]->mod_type, e)) - { -diff --git a/ldap/servers/plugins/replication/repl5_replica_config.c b/ldap/servers/plugins/replication/repl5_replica_config.c -index 9452d51..74e1fb7 100644 ---- a/ldap/servers/plugins/replication/repl5_replica_config.c -+++ b/ldap/servers/plugins/replication/repl5_replica_config.c -@@ -497,17 +497,21 @@ replica_config_modify (Slapi_PBlock *pb, Slapi_Entry* entryBefore, Slapi_Entry* - else if (strcasecmp (config_attr, type_replicaProtocolTimeout) == 0 ){ - if (apply_mods && config_attr_value && config_attr_value[0]) - { -- long ptimeout = atol(config_attr_value); -+ long ptimeout = 0; -+ -+ if(config_attr_value){ -+ ptimeout = atol(config_attr_value); -+ } - - if(ptimeout <= 0){ - *returncode = LDAP_UNWILLING_TO_PERFORM; - PR_snprintf (errortext, SLAPI_DSE_RETURNTEXT_SIZE, - "attribute %s value (%s) is invalid, must be a number greater than zero.\n", -- config_attr, config_attr_value); -+ config_attr, config_attr_value ? config_attr_value : ""); - slapi_log_error(SLAPI_LOG_FATAL, repl_plugin_name, "replica_config_modify: %s\n", errortext); -- } else { -- replica_set_protocol_timeout(r, ptimeout); -+ break; - } -+ replica_set_protocol_timeout(r, ptimeout); - } - } - else --- -1.8.1.4 - diff --git a/SOURCES/0069-Ticket-47620-Fix-logically-dead-code.patch b/SOURCES/0069-Ticket-47620-Fix-logically-dead-code.patch deleted file mode 100644 index 42b192d..0000000 --- a/SOURCES/0069-Ticket-47620-Fix-logically-dead-code.patch +++ /dev/null @@ -1,56 +0,0 @@ -From 1eece8d6d6dc88eb214927992840e5edf270786b Mon Sep 17 00:00:00 2001 -From: Mark Reynolds <mreynolds@redhat.com> -Date: Mon, 16 Dec 2013 09:48:12 -0500 -Subject: [PATCH 69/78] Ticket 47620 - Fix logically dead code. - -Coverity issues: 12419 & 12420 - -https://fedorahosted.org/389/ticket/47620 - -Reviewed by: rmeggins(Thanks!) -(cherry picked from commit 080cb44f5eaa794375a8e69b6e1ac09fcae9a961) -(cherry picked from commit c094a9f1a758dabd1164bf979a4ac22bb3720d63) ---- - ldap/servers/plugins/replication/repl5_agmtlist.c | 12 +----------- - ldap/servers/plugins/replication/repl5_replica_config.c | 2 +- - 2 files changed, 2 insertions(+), 12 deletions(-) - -diff --git a/ldap/servers/plugins/replication/repl5_agmtlist.c b/ldap/servers/plugins/replication/repl5_agmtlist.c -index bd14202..5219c92 100644 ---- a/ldap/servers/plugins/replication/repl5_agmtlist.c -+++ b/ldap/servers/plugins/replication/repl5_agmtlist.c -@@ -277,17 +277,7 @@ agmtlist_modify_callback(Slapi_PBlock *pb, Slapi_Entry *entryBefore, Slapi_Entry - break; - } - -- /* Start replica initialization */ -- if (val == NULL) -- { -- PR_snprintf (errortext, SLAPI_DSE_RETURNTEXT_SIZE, "No value supplied for attr (%s)", mods[i]->mod_type); -- slapi_log_error(SLAPI_LOG_REPL, repl_plugin_name, "agmtlist_modify_callback: %s\n", -- errortext); -- *returncode = LDAP_UNWILLING_TO_PERFORM; -- rc = SLAPI_DSE_CALLBACK_ERROR; -- break; -- } -- -+ /* Start replica initialization */ - if (strcasecmp (val, "start") == 0) - { - start_initialize = 1; -diff --git a/ldap/servers/plugins/replication/repl5_replica_config.c b/ldap/servers/plugins/replication/repl5_replica_config.c -index 74e1fb7..853bcde 100644 ---- a/ldap/servers/plugins/replication/repl5_replica_config.c -+++ b/ldap/servers/plugins/replication/repl5_replica_config.c -@@ -495,7 +495,7 @@ replica_config_modify (Slapi_PBlock *pb, Slapi_Entry* entryBefore, Slapi_Entry* - *returncode = LDAP_SUCCESS; - } - else if (strcasecmp (config_attr, type_replicaProtocolTimeout) == 0 ){ -- if (apply_mods && config_attr_value && config_attr_value[0]) -+ if (apply_mods) - { - long ptimeout = 0; - --- -1.8.1.4 - diff --git a/SOURCES/0070-Ticket-47620-Fix-dereferenced-NULL-pointer-in-agmtli.patch b/SOURCES/0070-Ticket-47620-Fix-dereferenced-NULL-pointer-in-agmtli.patch deleted file mode 100644 index 5a3a162..0000000 --- a/SOURCES/0070-Ticket-47620-Fix-dereferenced-NULL-pointer-in-agmtli.patch +++ /dev/null @@ -1,36 +0,0 @@ -From 3d941308ae833a59cad81951793b6374a8c15a56 Mon Sep 17 00:00:00 2001 -From: Mark Reynolds <mreynolds@redhat.com> -Date: Tue, 17 Dec 2013 13:11:03 -0500 -Subject: [PATCH 70/78] Ticket 47620 - Fix dereferenced NULL pointer in - agmtlist_modify_callback() - -The server would dereference a NULL point if an attribute was deleted from a replication -agreement. - -https://fedorahosted.org/389/ticket/47620 - -Reviewed by: rmeggins(Thanks!) -(cherry picked from commit 8baed897f504e75478b5dbbe736c1eaf6d2d7fa9) -(cherry picked from commit 60d263f7bc52e4b5186a01c38868763a275abadc) ---- - ldap/servers/plugins/replication/repl5_agmtlist.c | 4 +++- - 1 file changed, 3 insertions(+), 1 deletion(-) - -diff --git a/ldap/servers/plugins/replication/repl5_agmtlist.c b/ldap/servers/plugins/replication/repl5_agmtlist.c -index 5219c92..6e8b82c 100644 ---- a/ldap/servers/plugins/replication/repl5_agmtlist.c -+++ b/ldap/servers/plugins/replication/repl5_agmtlist.c -@@ -245,7 +245,9 @@ agmtlist_modify_callback(Slapi_PBlock *pb, Slapi_Entry *entryBefore, Slapi_Entry - for (i = 0; NULL != mods && NULL != mods[i]; i++) - { - slapi_ch_free_string(&val); -- val = slapi_berval_get_string_copy (mods[i]->mod_bvalues[0]); -+ if (mods[i]->mod_bvalues && mods[i]->mod_bvalues[0]) -+ val = slapi_berval_get_string_copy (mods[i]->mod_bvalues[0]); -+ } - if (slapi_attr_types_equivalent(mods[i]->mod_type, type_nsds5ReplicaInitialize)) - { - /* we don't allow delete attribute operations unless it was issued by --- -1.8.1.4 - diff --git a/SOURCES/0071-Ticket-47620-Fix-missing-left-bracket.patch b/SOURCES/0071-Ticket-47620-Fix-missing-left-bracket.patch deleted file mode 100644 index b25fa51..0000000 --- a/SOURCES/0071-Ticket-47620-Fix-missing-left-bracket.patch +++ /dev/null @@ -1,28 +0,0 @@ -From 854e1f23218b8e81db2c05728f8e21cd09dd69eb Mon Sep 17 00:00:00 2001 -From: Mark Reynolds <mreynolds@redhat.com> -Date: Tue, 17 Dec 2013 14:01:34 -0500 -Subject: [PATCH 71/78] Ticket 47620 - Fix missing left bracket - -https://fedorahosted.org/389/ticket/47620 -(cherry picked from commit 3a4d39e166449177c85b92af8b47c5c6848c4d02) -(cherry picked from commit b143477e186734333b6cfae615484b886b204e0e) ---- - ldap/servers/plugins/replication/repl5_agmtlist.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/ldap/servers/plugins/replication/repl5_agmtlist.c b/ldap/servers/plugins/replication/repl5_agmtlist.c -index 6e8b82c..9e0291f 100644 ---- a/ldap/servers/plugins/replication/repl5_agmtlist.c -+++ b/ldap/servers/plugins/replication/repl5_agmtlist.c -@@ -245,7 +245,7 @@ agmtlist_modify_callback(Slapi_PBlock *pb, Slapi_Entry *entryBefore, Slapi_Entry - for (i = 0; NULL != mods && NULL != mods[i]; i++) - { - slapi_ch_free_string(&val); -- if (mods[i]->mod_bvalues && mods[i]->mod_bvalues[0]) -+ if (mods[i]->mod_bvalues && mods[i]->mod_bvalues[0]){ - val = slapi_berval_get_string_copy (mods[i]->mod_bvalues[0]); - } - if (slapi_attr_types_equivalent(mods[i]->mod_type, type_nsds5ReplicaInitialize)) --- -1.8.1.4 - diff --git a/SOURCES/0072-Ticket-571-dup-47361-Empty-control-list-causes-LDAP-.patch b/SOURCES/0072-Ticket-571-dup-47361-Empty-control-list-causes-LDAP-.patch deleted file mode 100644 index a0f65bd..0000000 --- a/SOURCES/0072-Ticket-571-dup-47361-Empty-control-list-causes-LDAP-.patch +++ /dev/null @@ -1,83 +0,0 @@ -From d695afb6a637432e880296d8552f466981c0796c Mon Sep 17 00:00:00 2001 -From: "Thierry bordaz (tbordaz)" <tbordaz@redhat.com> -Date: Thu, 16 May 2013 15:28:47 +0200 -Subject: [PATCH 72/78] Ticket 571 (dup 47361) - Empty control list causes LDAP - protocol error is thrown - -Bug Description: - - If a request contains a list of controls containing zero control, it does - not conform RFC http://tools.ietf.org/html/rfc4511#section-4.1.11. Then the - server returns a Protocol Error. - This is too restrictive for some applications. - Note: such application needs to be linked with old version of mozldap or openldap - because recent version skip sending empty list of controls - -Fix Description: - The fix is to ignore this error and let the operation complete - - Note: ticket 571 (bz 918717) is a duplicate of 47361 (bz 963234). 47361 was used to - backport in 1.2.11. 571 is used to backport in 1.3.1. - This bug is fixed since 1.3.2 - -https://fedorahosted.org/389/ticket/571 -https://fedorahosted.org/389/ticket/47361 - -Reviewed by: Rich Megginson (thanks Rich !) - -Platforms tested: F17 (unit + acceptance vlv/proxy/managed/psearch/tls/bindcontrol) - -Flag Day: no - -Doc impact: no -(cherry picked from commit dea2a254117f1e9f4be1068c6784b2780fec933f) ---- - ldap/servers/slapd/control.c | 32 +++++++++++++++++++++----------- - 1 file changed, 21 insertions(+), 11 deletions(-) - -diff --git a/ldap/servers/slapd/control.c b/ldap/servers/slapd/control.c -index fc3ab9f..e614d50 100644 ---- a/ldap/servers/slapd/control.c -+++ b/ldap/servers/slapd/control.c -@@ -354,17 +354,27 @@ get_ldapmessage_controls_ext( - len = -1; /* reset for next loop iter */ - } - -- if ( (tag != LBER_END_OF_SEQORSET) && (len != -1) ) { -- goto free_and_return; -- } -- -- slapi_pblock_set( pb, SLAPI_REQCONTROLS, ctrls ); -- managedsait = slapi_control_present( ctrls, -- LDAP_CONTROL_MANAGEDSAIT, NULL, NULL ); -- slapi_pblock_set( pb, SLAPI_MANAGEDSAIT, &managedsait ); -- pwpolicy_ctrl = slapi_control_present( ctrls, -- LDAP_X_CONTROL_PWPOLICY_REQUEST, NULL, NULL ); -- slapi_pblock_set( pb, SLAPI_PWPOLICY, &pwpolicy_ctrl ); -+ if (curcontrols == 0) { -+ int ctrl_not_found = 0; /* means that a given control is not present in the request */ -+ -+ slapi_pblock_set(pb, SLAPI_REQCONTROLS, NULL); -+ slapi_pblock_set(pb, SLAPI_MANAGEDSAIT, &ctrl_not_found); -+ slapi_pblock_set(pb, SLAPI_PWPOLICY, &ctrl_not_found); -+ slapi_log_error(SLAPI_LOG_CONNS, "connection", "Warning: conn=%d op=%d contains an empty list of controls\n", -+ pb->pb_conn->c_connid, pb->pb_op->o_opid); -+ } else { -+ if ((tag != LBER_END_OF_SEQORSET) && (len != -1)) { -+ goto free_and_return; -+ } -+ -+ slapi_pblock_set(pb, SLAPI_REQCONTROLS, ctrls); -+ managedsait = slapi_control_present(ctrls, -+ LDAP_CONTROL_MANAGEDSAIT, NULL, NULL); -+ slapi_pblock_set(pb, SLAPI_MANAGEDSAIT, &managedsait); -+ pwpolicy_ctrl = slapi_control_present(ctrls, -+ LDAP_X_CONTROL_PWPOLICY_REQUEST, NULL, NULL); -+ slapi_pblock_set(pb, SLAPI_PWPOLICY, &pwpolicy_ctrl); -+ } - - if ( controlsp != NULL ) { - *controlsp = ctrls; --- -1.8.1.4 - diff --git a/SOURCES/0073-Ticket-47606-replica-init-bulk-import-errors-should-.patch b/SOURCES/0073-Ticket-47606-replica-init-bulk-import-errors-should-.patch deleted file mode 100644 index 9207ccf..0000000 --- a/SOURCES/0073-Ticket-47606-replica-init-bulk-import-errors-should-.patch +++ /dev/null @@ -1,189 +0,0 @@ -From 298ada3b2f7b8aa770df9a5a7d8129f46b4417d7 Mon Sep 17 00:00:00 2001 -From: Noriko Hosoi <nhosoi@redhat.com> -Date: Mon, 16 Dec 2013 13:03:19 -0800 -Subject: [PATCH 73/78] Ticket #47606 - replica init/bulk import errors should - be more verbose - -Description: -1. maxbersize: If the size of an entry is larger than the consumer's - maxbersize, the following error used to be logged: - Incoming BER Element was too long, max allowable is ### bytes. - Change the nsslapd-maxbersize attribute in cn=config to increase. - This message does not indicate how large the maxbersize needs to be. - This patch adds the code to retrieve the failed ber size. - Revised message: - Incoming BER Element was @@@ bytes, max allowable is ### bytes. - Change the nsslapd-maxbersize attribute in cn=config to increase. - Note: There is no lber API that returns the ber size if it fails to - handle the ber. This patch borrows the internal structure of ber - and get the size. This could be risky since the size or structure - of the ber could be updated in the openldap/mozldap lber. -2. cache size: The bulk import depends upon the nsslapd-cachememsize - value in the backend instance entry (e.g., cn=userRoot,cn=ldbm - database,cn=plugins,cn=config). If an entry size is larger than - the cachememsize, the bulk import used to fail with this message: - import userRoot: REASON: entry too large (@@@ bytes) for the - import buffer size (### bytes). Try increasing nsslapd- - cachememsize. - Also, the message follows the skipping entry message: - import userRoot: WARNING: skipping entry "<DN>" - but actually, it did NOT "skip" the entry and continue the bulk - import, but it failed there and completely wiped out the backend - database. - This patch modifies the message as follows: - import userRoot: REASON: entry too large (@@@ bytes) for the - effective import buffer size (### bytes). Try increasing nsslapd- - cachememsize for the backend instance "userRoot". - and as the message mentions, it just skips the failed entry and - continues the bulk import. -3. In repl5_tot_result_threadmain, when conn_read_result_ex returns - non zero (non SUCCESS), it sets abort, but does not set any error - code to rc (return code), which is not considered as "finished" in - repl5_tot_waitfor_async_results and it contines waiting until the - code reaches the max loop count (about 5 minutes). This patch sets - LDAP_CONNECT_ERROR to the return code along with setting abort, if - conn_read_result_ex returns CONN_NOT_CONNECTED. This makes the bulk - import finishes quickly when it fails. - -https://fedorahosted.org/389/ticket/47606 - -Reviewed by rmeggins@redhat.com (Thank you, Rich!!) -(cherry picked from commit 1119083d3d99993421609783efcb8962d78724fc) -(cherry picked from commit fde9ed5bf74b4ea1fff875bcb421137c78af1227) -(cherry picked from commit c9d0b6ccad84dd56a536da883f5a8e5acb01bc4e) ---- - .../plugins/replication/repl5_tot_protocol.c | 3 ++ - ldap/servers/slapd/back-ldbm/import-threads.c | 8 ++--- - ldap/servers/slapd/connection.c | 36 ++++++++++++++++++---- - ldap/servers/slapd/openldapber.h | 25 +++++++++++++++ - 4 files changed, 62 insertions(+), 10 deletions(-) - create mode 100644 ldap/servers/slapd/openldapber.h - -diff --git a/ldap/servers/plugins/replication/repl5_tot_protocol.c b/ldap/servers/plugins/replication/repl5_tot_protocol.c -index a241128..3895ace 100644 ---- a/ldap/servers/plugins/replication/repl5_tot_protocol.c -+++ b/ldap/servers/plugins/replication/repl5_tot_protocol.c -@@ -203,6 +203,9 @@ static void repl5_tot_result_threadmain(void *param) - /* If so then we need to take steps to abort the update process */ - PR_Lock(cb->lock); - cb->abort = 1; -+ if (conres == CONN_NOT_CONNECTED) { -+ cb->rc = LDAP_CONNECT_ERROR; -+ } - PR_Unlock(cb->lock); - } - /* Should we stop ? */ -diff --git a/ldap/servers/slapd/back-ldbm/import-threads.c b/ldap/servers/slapd/back-ldbm/import-threads.c -index c0475c6..95433aa 100644 ---- a/ldap/servers/slapd/back-ldbm/import-threads.c -+++ b/ldap/servers/slapd/back-ldbm/import-threads.c -@@ -3330,11 +3330,11 @@ static int bulk_import_queue(ImportJob *job, Slapi_Entry *entry) - - newesize = (slapi_entry_size(ep->ep_entry) + sizeof(struct backentry)); - if (newesize > job->fifo.bsize) { /* entry too big */ -- import_log_notice(job, "WARNING: skipping entry \"%s\"", -- slapi_entry_get_dn(ep->ep_entry)); - import_log_notice(job, "REASON: entry too large (%lu bytes) for " -- "the import buffer size (%lu bytes). Try increasing nsslapd-cachememsize.", -- (long unsigned int)newesize, (long unsigned int)job->fifo.bsize); -+ "the effective import buffer size (%lu bytes). " -+ "Try increasing nsslapd-cachememsize for the backend instance \"%s\".", -+ (long unsigned int)newesize, (long unsigned int)job->fifo.bsize, -+ job->inst->inst_name); - backentry_clear_entry(ep); /* entry is released in the frontend on failure*/ - backentry_free( &ep ); /* release the backend wrapper, here */ - PR_Unlock(job->wire_lock); -diff --git a/ldap/servers/slapd/connection.c b/ldap/servers/slapd/connection.c -index fed3512..02c86c5 100644 ---- a/ldap/servers/slapd/connection.c -+++ b/ldap/servers/slapd/connection.c -@@ -1749,6 +1749,32 @@ void connection_make_new_pb(Slapi_PBlock **ppb, Connection *conn) - } - - -+#ifdef USE_OPENLDAP -+#include "openldapber.h" -+#else -+#include "mozldap.h" -+#endif -+ -+static ber_tag_t -+_ber_get_len(BerElement *ber, ber_len_t *lenp) -+{ -+#ifdef USE_OPENLDAP -+ OLBerElement *lber = (OLBerElement *)ber; -+#else -+ MozElement *lber = (MozElement *)ber; -+#endif -+ -+ if (NULL == lenp) { -+ return LBER_DEFAULT; -+ } -+ *lenp = 0; -+ if (NULL == lber) { -+ return LBER_DEFAULT; -+ } -+ *lenp = lber->ber_len; -+ return lber->ber_tag; -+} -+ - /* - * Utility function called by connection_read_operation(). This is a - * small wrapper on top of libldap's ber_get_next_buffer_ext(). -@@ -1787,18 +1813,16 @@ get_next_from_buffer( void *buffer, size_t buffer_size, ber_len_t *lenp, - if ((LBER_OVERFLOW == *tagp || LBER_DEFAULT == *tagp) && 0 == bytes_scanned && - !SLAPD_SYSTEM_WOULD_BLOCK_ERROR(errno)) - { -- if (LBER_OVERFLOW == *tagp) -- { -- err = SLAPD_DISCONNECT_BER_TOO_BIG; -- } -- else if (errno == ERANGE) -+ if ((LBER_OVERFLOW == *tagp) || (errno == ERANGE)) - { - ber_len_t maxbersize = config_get_maxbersize(); -+ ber_len_t tmplen = 0; -+ (void)_ber_get_len(ber, &tmplen); - /* openldap does not differentiate between length == 0 - and length > max - all we know is that there was a - problem with the length - assume too big */ - err = SLAPD_DISCONNECT_BER_TOO_BIG; -- log_ber_too_big_error(conn, 0, maxbersize); -+ log_ber_too_big_error(conn, tmplen, maxbersize); - } - else - { -diff --git a/ldap/servers/slapd/openldapber.h b/ldap/servers/slapd/openldapber.h -new file mode 100644 -index 0000000..52644a5 ---- /dev/null -+++ b/ldap/servers/slapd/openldapber.h -@@ -0,0 +1,25 @@ -+/* -+ * openldap lber library does not provide an API which returns the ber size -+ * (ber->ber_len) when the ber tag is LBER_DEFAULT or LBER_OVERFLOW. -+ * The ber size is useful when issuing an error message to indicate how -+ * large the maxbersize needs to be set. -+ * Borrowed from liblber/lber-int.h -+ */ -+struct lber_options { -+ short lbo_valid; -+ unsigned short lbo_options; -+ int lbo_debug; -+}; -+struct berelement { -+ struct lber_options ber_opts; -+ ber_tag_t ber_tag; -+ ber_len_t ber_len; -+ ber_tag_t ber_usertag; -+ char *ber_buf; -+ char *ber_ptr; -+ char *ber_end; -+ char *ber_sos_ptr; -+ char *ber_rwptr; -+ void *ber_memctx; -+}; -+typedef struct berelement OLBerElement; --- -1.8.1.4 - diff --git a/SOURCES/0074-Ticket-47623-fix-memleak-caused-by-47347.patch b/SOURCES/0074-Ticket-47623-fix-memleak-caused-by-47347.patch deleted file mode 100644 index e692ddd..0000000 --- a/SOURCES/0074-Ticket-47623-fix-memleak-caused-by-47347.patch +++ /dev/null @@ -1,42 +0,0 @@ -From b910f02f74410f44d0285d77b15e5d399df3c1a8 Mon Sep 17 00:00:00 2001 -From: Rich Megginson <rmeggins@redhat.com> -Date: Mon, 9 Dec 2013 17:00:32 -0700 -Subject: [PATCH 74/78] Ticket #47623 fix memleak caused by 47347 - -https://fedorahosted.org/389/ticket/47623 -Reviewed by: nhosoi (Thanks!) -Branch: 389-ds-base-1.3.1 -Fix Description: Only need to create the mutex when creating a new PR object. -Platforms tested: RHEL6 x86_64 -Flag Day: no -Doc impact: no -(cherry picked from commit 98ccb602058270e97a3702ae2b81c17635af8d27) -(cherry picked from commit 65c51555c0ecc94c5d93f09124168697ba1db6b3) -(cherry picked from commit 8a2c666df491b7c8666f8a70a5038b35c43fbc3b) ---- - ldap/servers/slapd/pagedresults.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/ldap/servers/slapd/pagedresults.c b/ldap/servers/slapd/pagedresults.c -index 78bd6b0..a835d6b 100644 ---- a/ldap/servers/slapd/pagedresults.c -+++ b/ldap/servers/slapd/pagedresults.c -@@ -122,6 +122,7 @@ pagedresults_parse_control_value( Slapi_PBlock *pb, - sizeof(PagedResults) * maxlen); - } - *index = maxlen; /* the first position in the new area */ -+ conn->c_pagedresults.prl_list[*index].pr_mutex = PR_NewLock(); - } else { - for (i = 0; i < conn->c_pagedresults.prl_maxlen; i++) { - if (!conn->c_pagedresults.prl_list[i].pr_current_be) { -@@ -131,7 +132,6 @@ pagedresults_parse_control_value( Slapi_PBlock *pb, - } - } - conn->c_pagedresults.prl_count++; -- conn->c_pagedresults.prl_list[*index].pr_mutex = PR_NewLock(); - } else { - /* Repeated paged results request. - * PagedResults is already allocated. */ --- -1.8.1.4 - diff --git a/SOURCES/0075-Ticket-47623-fix-memleak-caused-by-47347.patch b/SOURCES/0075-Ticket-47623-fix-memleak-caused-by-47347.patch deleted file mode 100644 index 128c3f4..0000000 --- a/SOURCES/0075-Ticket-47623-fix-memleak-caused-by-47347.patch +++ /dev/null @@ -1,44 +0,0 @@ -From 0cd6aca794ccbd064c0609c45f8dc6333ad8ca8a Mon Sep 17 00:00:00 2001 -From: Rich Megginson <rmeggins@redhat.com> -Date: Tue, 10 Dec 2013 08:08:35 -0700 -Subject: [PATCH 75/78] Ticket #47623 fix memleak caused by 47347 - -https://fedorahosted.org/389/ticket/47623 -Reviewed by: tbordaz, nhosoi (Thanks!) -Branch: 389-ds-base-1.3.1 -Fix Description: Create the mutex if it doesn't exist. -Platforms tested: RHEL6 x86_64 -Flag Day: no -Doc impact: no -(cherry picked from commit 0d4849dd7551347f0e24ac1027f4d0501084dcf3) -(cherry picked from commit 5d3ae5f709964cd7dfb73b631a22389223f5ef25) -(cherry picked from commit 5c649ddacd1d2c11b6e922b29472094b780c2a0e) ---- - ldap/servers/slapd/pagedresults.c | 4 +++- - 1 file changed, 3 insertions(+), 1 deletion(-) - -diff --git a/ldap/servers/slapd/pagedresults.c b/ldap/servers/slapd/pagedresults.c -index a835d6b..9af5773 100644 ---- a/ldap/servers/slapd/pagedresults.c -+++ b/ldap/servers/slapd/pagedresults.c -@@ -122,7 +122,6 @@ pagedresults_parse_control_value( Slapi_PBlock *pb, - sizeof(PagedResults) * maxlen); - } - *index = maxlen; /* the first position in the new area */ -- conn->c_pagedresults.prl_list[*index].pr_mutex = PR_NewLock(); - } else { - for (i = 0; i < conn->c_pagedresults.prl_maxlen; i++) { - if (!conn->c_pagedresults.prl_list[i].pr_current_be) { -@@ -131,6 +130,9 @@ pagedresults_parse_control_value( Slapi_PBlock *pb, - } - } - } -+ if (!conn->c_pagedresults.prl_list[*index].pr_mutex) { -+ conn->c_pagedresults.prl_list[*index].pr_mutex = PR_NewLock(); -+ } - conn->c_pagedresults.prl_count++; - } else { - /* Repeated paged results request. --- -1.8.1.4 - diff --git a/SOURCES/0076-Ticket-47627-changelog-iteration-should-ignore-clean.patch b/SOURCES/0076-Ticket-47627-changelog-iteration-should-ignore-clean.patch deleted file mode 100644 index 3906b84..0000000 --- a/SOURCES/0076-Ticket-47627-changelog-iteration-should-ignore-clean.patch +++ /dev/null @@ -1,150 +0,0 @@ -From ea86342f0497a2d4c45c337ada9ec9e8329fc7cd Mon Sep 17 00:00:00 2001 -From: Mark Reynolds <mreynolds@redhat.com> -Date: Wed, 11 Dec 2013 11:25:44 -0500 -Subject: [PATCH 76/78] Ticket 47627 - changelog iteration should ignore - cleaned rids when getting the minCSN - -Description: If a change is not found in the change log the server will look for a min csn - to start the replay. This minCSN should not come from a cleaned RUV element. - -https://fedorahosted.org/389/ticket/47627 - -Reviewed by: rmeggins & lkrispenz(Thanks!!) -(cherry picked from commit 9c6e9bb12327a2d50e651221614d34984b605427) -(cherry picked from commit 8004449ae206d0d417497324ffedf79ca9e25572) ---- - ldap/servers/plugins/replication/cl5_api.c | 2 +- - ldap/servers/plugins/replication/repl5_ruv.c | 42 ++++++++++++++++++++++------ - ldap/servers/plugins/replication/repl5_ruv.h | 3 ++ - 3 files changed, 37 insertions(+), 10 deletions(-) - -diff --git a/ldap/servers/plugins/replication/cl5_api.c b/ldap/servers/plugins/replication/cl5_api.c -index 7bedc2c..064a628 100644 ---- a/ldap/servers/plugins/replication/cl5_api.c -+++ b/ldap/servers/plugins/replication/cl5_api.c -@@ -5172,7 +5172,7 @@ static int _cl5PositionCursorForReplay (ReplicaId consumerRID, const RUV *consum - { - /* use the supplier min csn for the buffer start csn - we know - this csn is in our changelog */ -- if ((RUV_SUCCESS == ruv_get_min_csn(supplierRuv, &startCSN)) && -+ if ((RUV_SUCCESS == ruv_get_min_csn_ext(supplierRuv, &startCSN, 1 /* ignore cleaned rids */)) && - startCSN) - { /* must now free startCSN */ - if (slapi_is_loglevel_set(SLAPI_LOG_REPL)) { -diff --git a/ldap/servers/plugins/replication/repl5_ruv.c b/ldap/servers/plugins/replication/repl5_ruv.c -index 7395195..dc83555 100644 ---- a/ldap/servers/plugins/replication/repl5_ruv.c -+++ b/ldap/servers/plugins/replication/repl5_ruv.c -@@ -998,9 +998,9 @@ ruv_covers_csn_cleanallruv(const RUV *ruv, const CSN *csn) - * or max{maxcsns of all ruv elements} if get_the_max != 0. - */ - static int --ruv_get_min_or_max_csn(const RUV *ruv, CSN **csn, int get_the_max, ReplicaId rid) -+ruv_get_min_or_max_csn(const RUV *ruv, CSN **csn, int get_the_max, ReplicaId rid, int ignore_cleaned_rid) - { -- int return_value; -+ int return_value = RUV_SUCCESS; - - if (ruv == NULL || csn == NULL) - { -@@ -1012,6 +1012,7 @@ ruv_get_min_or_max_csn(const RUV *ruv, CSN **csn, int get_the_max, ReplicaId rid - CSN *found = NULL; - RUVElement *replica; - int cookie; -+ - slapi_rwlock_rdlock (ruv->lock); - for (replica = dl_get_first (ruv->elements, &cookie); replica; - replica = dl_get_next (ruv->elements, &cookie)) -@@ -1028,6 +1029,10 @@ ruv_get_min_or_max_csn(const RUV *ruv, CSN **csn, int get_the_max, ReplicaId rid - { - continue; - } -+ if(ignore_cleaned_rid && is_cleaned_rid(replica->rid)){ -+ continue; -+ } -+ - if(rid){ /* we are only interested in this rid's maxcsn */ - if(replica->rid == rid){ - found = replica->csn; -@@ -1041,36 +1046,55 @@ ruv_get_min_or_max_csn(const RUV *ruv, CSN **csn, int get_the_max, ReplicaId rid - found = replica->csn; - } - } -- } -+ } -+ - if (found == NULL) - { -- *csn = NULL; -+ *csn = NULL; - } - else - { - *csn = csn_dup (found); - } - slapi_rwlock_unlock (ruv->lock); -- return_value = RUV_SUCCESS; - } - return return_value; - } - - int --ruv_get_rid_max_csn(const RUV *ruv, CSN **csn, ReplicaId rid){ -- return ruv_get_min_or_max_csn(ruv, csn, 1 /* get the max */, rid); -+ruv_get_rid_max_csn(const RUV *ruv, CSN **csn, ReplicaId rid) -+{ -+ return ruv_get_rid_max_csn_ext(ruv, csn, rid, 0); -+} -+ -+int -+ruv_get_rid_max_csn_ext(const RUV *ruv, CSN **csn, ReplicaId rid, int ignore_cleaned_rid) -+{ -+ return ruv_get_min_or_max_csn(ruv, csn, 1 /* get the max */, rid, ignore_cleaned_rid); - } - - int - ruv_get_max_csn(const RUV *ruv, CSN **csn) - { -- return ruv_get_min_or_max_csn(ruv, csn, 1 /* get the max */, 0 /* rid */); -+ return ruv_get_max_csn_ext(ruv, csn, 0); -+} -+ -+int -+ruv_get_max_csn_ext(const RUV *ruv, CSN **csn, int ignore_cleaned_rid) -+{ -+ return ruv_get_min_or_max_csn(ruv, csn, 1 /* get the max */, 0 /* rid */, ignore_cleaned_rid); - } - - int - ruv_get_min_csn(const RUV *ruv, CSN **csn) - { -- return ruv_get_min_or_max_csn(ruv, csn, 0 /* get the min */, 0 /* rid */); -+ return ruv_get_min_csn_ext(ruv, csn, 0); -+} -+ -+int -+ruv_get_min_csn_ext(const RUV *ruv, CSN **csn, int ignore_cleaned_rid) -+{ -+ return ruv_get_min_or_max_csn(ruv, csn, 0 /* get the min */, 0 /* rid */, ignore_cleaned_rid); - } - - int -diff --git a/ldap/servers/plugins/replication/repl5_ruv.h b/ldap/servers/plugins/replication/repl5_ruv.h -index 799dc7f..4593b84 100644 ---- a/ldap/servers/plugins/replication/repl5_ruv.h -+++ b/ldap/servers/plugins/replication/repl5_ruv.h -@@ -123,8 +123,11 @@ PRBool ruv_covers_csn(const RUV *ruv, const CSN *csn); - PRBool ruv_covers_csn_strict(const RUV *ruv, const CSN *csn); - PRBool ruv_covers_csn_cleanallruv(const RUV *ruv, const CSN *csn); - int ruv_get_min_csn(const RUV *ruv, CSN **csn); -+int ruv_get_min_csn_ext(const RUV *ruv, CSN **csn, int ignore_cleaned_rid); - int ruv_get_max_csn(const RUV *ruv, CSN **csn); -+int ruv_get_max_csn_ext(const RUV *ruv, CSN **csn, int ignore_cleaned_rid); - int ruv_get_rid_max_csn(const RUV *ruv, CSN **csn, ReplicaId rid); -+int ruv_get_rid_max_csn_ext(const RUV *ruv, CSN **csn, ReplicaId rid, int ignore_cleaned_rid); - int ruv_enumerate_elements (const RUV *ruv, FNEnumRUV fn, void *arg); - int ruv_to_smod(const RUV *ruv, Slapi_Mod *smod); - int ruv_last_modified_to_smod(const RUV *ruv, Slapi_Mod *smod); --- -1.8.1.4 - diff --git a/SOURCES/0077-Ticket-47627-Fix-replication-logging.patch b/SOURCES/0077-Ticket-47627-Fix-replication-logging.patch deleted file mode 100644 index 65c7da6..0000000 --- a/SOURCES/0077-Ticket-47627-Fix-replication-logging.patch +++ /dev/null @@ -1,61 +0,0 @@ -From 30144a9dabfe221cdded349078eaedf91cb53e88 Mon Sep 17 00:00:00 2001 -From: Mark Reynolds <mreynolds@redhat.com> -Date: Sat, 14 Dec 2013 07:38:12 -0500 -Subject: [PATCH 77/78] Ticket 47627 - Fix replication logging - -We printed the same CSN for the missing CSN and the supplier min CSN because -we reused the same CSN pointer. - -https://fedorahosted.org/389/ticket/47627 - -Reviewed by: rmeggins(Thanks!) -(cherry picked from commit 20cccf58108099cead2412a979e70e4f5972b806) -(cherry picked from commit ae3daa16783bab18f202a71b81177f4407dccdcd) ---- - ldap/servers/plugins/replication/cl5_api.c | 13 +++++++++---- - 1 file changed, 9 insertions(+), 4 deletions(-) - -diff --git a/ldap/servers/plugins/replication/cl5_api.c b/ldap/servers/plugins/replication/cl5_api.c -index 064a628..abcc39a 100644 ---- a/ldap/servers/plugins/replication/cl5_api.c -+++ b/ldap/servers/plugins/replication/cl5_api.c -@@ -5081,6 +5081,7 @@ static int _cl5PositionCursorForReplay (ReplicaId consumerRID, const RUV *consum - int i; - CSN **csns = NULL; - CSN *startCSN = NULL; -+ CSN *minCSN = NULL; - char csnStr [CSN_STRSIZE]; - int rc = CL5_SUCCESS; - Object *supplierRuvObj = NULL; -@@ -5170,20 +5171,24 @@ static int _cl5PositionCursorForReplay (ReplicaId consumerRID, const RUV *consum - */ - if ((rc == DB_NOTFOUND) && !ruv_has_csns(file->purgeRUV)) - { -+ char mincsnStr[CSN_STRSIZE]; -+ - /* use the supplier min csn for the buffer start csn - we know - this csn is in our changelog */ -- if ((RUV_SUCCESS == ruv_get_min_csn_ext(supplierRuv, &startCSN, 1 /* ignore cleaned rids */)) && -- startCSN) -+ if ((RUV_SUCCESS == ruv_get_min_csn_ext(supplierRuv, &minCSN, 1 /* ignore cleaned rids */)) && -+ minCSN) - { /* must now free startCSN */ - if (slapi_is_loglevel_set(SLAPI_LOG_REPL)) { -- csn_as_string(startCSN, PR_FALSE, csnStr); -+ csn_as_string(startCSN, PR_FALSE, csnStr); -+ csn_as_string(minCSN, PR_FALSE, mincsnStr); - slapi_log_error(SLAPI_LOG_REPL, repl_plugin_name_cl, - "%s: CSN %s not found and no purging, probably a reinit\n", - agmt_name, csnStr); - slapi_log_error(SLAPI_LOG_REPL, repl_plugin_name_cl, - "%s: Will try to use supplier min CSN %s to load changelog\n", -- agmt_name, csnStr); -+ agmt_name, mincsnStr); - } -+ startCSN = minCSN; - rc = clcache_load_buffer (clcache, startCSN, DB_SET); - } - else --- -1.8.1.4 - diff --git a/SOURCES/0078-Ticket-447-Possible-to-add-invalid-attribute-to-nssl.patch b/SOURCES/0078-Ticket-447-Possible-to-add-invalid-attribute-to-nssl.patch deleted file mode 100644 index 2acccad..0000000 --- a/SOURCES/0078-Ticket-447-Possible-to-add-invalid-attribute-to-nssl.patch +++ /dev/null @@ -1,69 +0,0 @@ -From 31a7087a26c153ff3430a1028be34c64839d0fd0 Mon Sep 17 00:00:00 2001 -From: Noriko Hosoi <nhosoi@redhat.com> -Date: Wed, 8 Jan 2014 10:30:04 -0800 -Subject: [PATCH 78/78] Ticket #447 - Possible to add invalid attribute to - nsslapd-allowed-to-delete-attrs - -Bug description: If given value of nsslapd-allowed-to-delete-attrs are -all invalid attributes, e.g., - nsslapd-allowed-to-delete-attrs: invalid0 invalid1 -they were logged as invalid, but accidentally set to nsslapd-allowed- -to-delete-attrs. - -Fix description: This patch checks the validation result and if there -is no valid attributes given to nsslapd-allowed-to-delete-attrs, it -issues a message in the error log: - nsslapd-allowed-to-delete-attrs: Given attributes are all invalid. - No effects. -and it returns an error. The modify operation fails with "DSA is -unwilling to perform". - -https://fedorahosted.org/389/ticket/447 - -Reviewed by rmeggins@redhat.com (Thank you, Rich!) -(cherry picked from commit 31cd7a838aef30d80be6efe519cc2e821811c645) -(cherry picked from commit eab32225c129f6a5115bbd5ac2a3c2035f4393b2) -(cherry picked from commit c392aa891e67b8be189d3e354a179fc376998642) ---- - ldap/servers/slapd/libglobs.c | 24 ++++++++++++++++-------- - 1 file changed, 16 insertions(+), 8 deletions(-) - -diff --git a/ldap/servers/slapd/libglobs.c b/ldap/servers/slapd/libglobs.c -index 64510d6..6df225d 100644 ---- a/ldap/servers/slapd/libglobs.c -+++ b/ldap/servers/slapd/libglobs.c -@@ -6720,15 +6720,23 @@ config_set_allowed_to_delete_attrs( const char *attrname, char *value, - /* given value included unknown attribute, - * we need to re-create a value. */ - /* reuse the duplicated string for the new attr value. */ -- for (s = allowed, d = vcopy; s && *s; s++) { -- size_t slen = strlen(*s); -- memmove(d, *s, slen); -- d += slen; -- memmove(d, " ", 1); -- d++; -+ if (allowed && (NULL == *allowed)) { -+ /* all the values to allow to delete are invalid */ -+ slapi_log_error(SLAPI_LOG_FATAL, "config", -+ "%s: Given attributes are all invalid. No effects.\n", -+ CONFIG_ALLOWED_TO_DELETE_ATTRIBUTE); -+ return LDAP_NO_SUCH_ATTRIBUTE; -+ } else { -+ for (s = allowed, d = vcopy; s && *s; s++) { -+ size_t slen = strlen(*s); -+ memmove(d, *s, slen); -+ d += slen; -+ memmove(d, " ", 1); -+ d++; -+ } -+ *(d-1) = '\0'; -+ strcpy(value, vcopy); /* original value needs to be refreshed */ - } -- *(d-1) = '\0'; -- strcpy(value, vcopy); /* original value needs to be refreshed */ - } else { - slapi_ch_free_string(&vcopy); - vcopy = slapi_ch_strdup(value); --- -1.8.1.4 - diff --git a/SOURCES/0079-Ticket-47660-config_set_allowed_to_delete_attrs-Valg.patch b/SOURCES/0079-Ticket-47660-config_set_allowed_to_delete_attrs-Valg.patch deleted file mode 100644 index 582c8a1..0000000 --- a/SOURCES/0079-Ticket-47660-config_set_allowed_to_delete_attrs-Valg.patch +++ /dev/null @@ -1,50 +0,0 @@ -From d30caf438689760dd4fce8dc914070daae47de72 Mon Sep 17 00:00:00 2001 -From: Noriko Hosoi <nhosoi@redhat.com> -Date: Mon, 13 Jan 2014 11:03:46 -0800 -Subject: [PATCH 79/83] Ticket #47660 - config_set_allowed_to_delete_attrs: - Valgrind reports Invalid read - -Description: There was a logic error in checking the availability of -a pointer. Before checking the contents of an address, the correctness -of the pointer needed to be checked. - -Also, one memory leak was found in the error return case. - -Note: these 2 issues were introduece by this commit: -commit 94b123780b21e503b78bceca9d60904206ef91fa -Trac Ticket #447 - Possible to add invalid attribute to nsslapd-allowed-to-delete-attrs - -https://fedorahosted.org/389/ticket/47660 - -Reviewed by rmeggins@redhat.com (Thank you, Rich!) -(cherry picked from commit 1a788bf35a138d221f2bfb88d6da5fc5244d738c) -(cherry picked from commit 22c24f0d133cfcfc9f7457a84282d223ea3f6e25) -(cherry picked from commit 4aa849fa0a32d90e7d88574f35e1e17fbaf1034f) ---- - ldap/servers/slapd/libglobs.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -diff --git a/ldap/servers/slapd/libglobs.c b/ldap/servers/slapd/libglobs.c -index 6df225d..bcf7db4 100644 ---- a/ldap/servers/slapd/libglobs.c -+++ b/ldap/servers/slapd/libglobs.c -@@ -6704,7 +6704,7 @@ config_set_allowed_to_delete_attrs( const char *attrname, char *value, - int needcopy = 0; - allowed = slapi_str2charray_ext(vcopy, " ", 0); - for (s = allowed; s && *s; s++) ; -- for (--s; s && *s && (s >= allowed); s--) { -+ for (--s; s && (s >= allowed) && *s; s--) { - cgas = (struct config_get_and_set *)PL_HashTableLookup(confighash, - *s); - if (!cgas && PL_strcasecmp(*s, "aci") /* aci is an exception */) { -@@ -6725,6 +6725,7 @@ config_set_allowed_to_delete_attrs( const char *attrname, char *value, - slapi_log_error(SLAPI_LOG_FATAL, "config", - "%s: Given attributes are all invalid. No effects.\n", - CONFIG_ALLOWED_TO_DELETE_ATTRIBUTE); -+ slapi_ch_array_free(allowed); - return LDAP_NO_SUCH_ATTRIBUTE; - } else { - for (s = allowed, d = vcopy; s && *s; s++) { --- -1.8.1.4 - diff --git a/SOURCES/0080-Ticket-408-Fix-crash-when-disabling-enabling-the-set.patch b/SOURCES/0080-Ticket-408-Fix-crash-when-disabling-enabling-the-set.patch deleted file mode 100644 index 7f3d73b..0000000 --- a/SOURCES/0080-Ticket-408-Fix-crash-when-disabling-enabling-the-set.patch +++ /dev/null @@ -1,208 +0,0 @@ -From f649d36ecf04926704add30a9f3179bd862de4c1 Mon Sep 17 00:00:00 2001 -From: Mark Reynolds <mreynolds@redhat.com> -Date: Thu, 16 Jan 2014 15:21:28 -0500 -Subject: [PATCH 80/83] Ticket 408 - Fix crash when disabling/enabling the - setting - -Bug Description: Enabling/disabling can lead to crash as the setting - was not designed to be dynamically updated. - -Fix Description: Do not use the actual config setting to determine if the - cache is enabled. Instead we record when the cache is - initialized. The server still needs to be restarted for - the config change to take effect. - - Also freed the cache at server shtudown. - -https://fedorahosted.org/389/ticket/408 - -Reviewed by: rmeggins(Thanks!) -(cherry picked from commit 03c90f04065059ee310e9fa7d98228e0aa39fa50) -(cherry picked from commit 50ad64a442495810a84558c6c17dcc2263b815b6) -(cherry picked from commit e0d85bead832c6aa7a2ec01157ab786a53fb5272) ---- - ldap/servers/slapd/back-ldbm/monitor.c | 2 +- - ldap/servers/slapd/dn.c | 93 +++++++++++++++++++++++++++------- - ldap/servers/slapd/main.c | 1 + - ldap/servers/slapd/slapi-private.h | 2 + - 4 files changed, 78 insertions(+), 20 deletions(-) - -diff --git a/ldap/servers/slapd/back-ldbm/monitor.c b/ldap/servers/slapd/back-ldbm/monitor.c -index 3427809..409c771 100644 ---- a/ldap/servers/slapd/back-ldbm/monitor.c -+++ b/ldap/servers/slapd/back-ldbm/monitor.c -@@ -146,7 +146,7 @@ int ldbm_back_monitor_instance_search(Slapi_PBlock *pb, Slapi_Entry *e, - MSET("maxDnCacheCount"); - } - /* normalized dn cache stats */ -- if(config_get_ndn_cache_enabled()){ -+ if(ndn_cache_started()){ - ndn_cache_get_stats(&hits, &tries, &size, &maxsize, &count); - sprintf(buf, "%" NSPRIu64, (long long unsigned int)tries); - MSET("normalizedDnCacheTries"); -diff --git a/ldap/servers/slapd/dn.c b/ldap/servers/slapd/dn.c -index 9530b84..1eab631 100644 ---- a/ldap/servers/slapd/dn.c -+++ b/ldap/servers/slapd/dn.c -@@ -103,6 +103,7 @@ static void ndn_cache_update_lru(struct ndn_cache_lru **node); - static void ndn_cache_add(char *dn, size_t dn_len, char *ndn, size_t ndn_len); - static void ndn_cache_delete(char *dn); - static void ndn_cache_flush(); -+static void ndn_cache_free(); - static int ndn_started = 0; - static PRLock *lru_lock = NULL; - static Slapi_RWLock *ndn_cache_lock = NULL; -@@ -2751,7 +2752,7 @@ ndn_hash_string(const void *key) - void - ndn_cache_init() - { -- if(!config_get_ndn_cache_enabled()){ -+ if(!config_get_ndn_cache_enabled() || ndn_started){ - return; - } - ndn_cache_hashtable = PL_NewHashTable( NDN_CACHE_BUCKETS, ndn_hash_string, PL_CompareStrings, PL_CompareValues, 0, 0); -@@ -2764,24 +2765,49 @@ ndn_cache_init() - ndn_cache->cache_size = sizeof(struct ndn_cache_ctx) + sizeof(PLHashTable) + sizeof(PLHashTable); - ndn_cache->head = NULL; - ndn_cache->tail = NULL; -- -+ ndn_started = 1; - if ( NULL == ( lru_lock = PR_NewLock()) || NULL == ( ndn_cache_lock = slapi_new_rwlock())) { -- char *errorbuf = NULL; -- if(ndn_cache_hashtable){ -- PL_HashTableDestroy(ndn_cache_hashtable); -- } -- ndn_cache_hashtable = NULL; -- config_set_ndn_cache_enabled(CONFIG_NDN_CACHE, "off", errorbuf, 1 ); -- slapi_counter_destroy(&ndn_cache->cache_hits); -- slapi_counter_destroy(&ndn_cache->cache_tries); -- slapi_counter_destroy(&ndn_cache->cache_misses); -- slapi_ch_free((void **)&ndn_cache); -+ ndn_cache_destroy(); - slapi_log_error( SLAPI_LOG_FATAL, "ndn_cache_init", "Failed to create locks. Disabling cache.\n" ); -- } else { -- ndn_started = 1; - } - } - -+void -+ndn_cache_destroy() -+{ -+ char *errorbuf = NULL; -+ -+ if(!ndn_started){ -+ return; -+ } -+ if(lru_lock){ -+ PR_DestroyLock(lru_lock); -+ lru_lock = NULL; -+ } -+ if(ndn_cache_lock){ -+ slapi_destroy_rwlock(ndn_cache_lock); -+ ndn_cache_lock = NULL; -+ } -+ if(ndn_cache_hashtable){ -+ ndn_cache_free(); -+ PL_HashTableDestroy(ndn_cache_hashtable); -+ ndn_cache_hashtable = NULL; -+ } -+ config_set_ndn_cache_enabled(CONFIG_NDN_CACHE, "off", errorbuf, 1 ); -+ slapi_counter_destroy(&ndn_cache->cache_hits); -+ slapi_counter_destroy(&ndn_cache->cache_tries); -+ slapi_counter_destroy(&ndn_cache->cache_misses); -+ slapi_ch_free((void **)&ndn_cache); -+ -+ ndn_started = 0; -+} -+ -+int -+ndn_cache_started() -+{ -+ return ndn_started; -+} -+ - /* - * Look up this dn in the ndn cache - */ -@@ -2994,19 +3020,48 @@ ndn_cache_flush() - slapi_log_error( SLAPI_LOG_CACHE, "ndn_cache_flush","Flushed cache.\n"); - } - -+static void -+ndn_cache_free() -+{ -+ struct ndn_cache_lru *node, *next, *flush_node; -+ -+ if(!ndn_cache){ -+ return; -+ } -+ -+ node = ndn_cache->tail; -+ while(ndn_cache->cache_count){ -+ flush_node = node; -+ /* update the lru */ -+ next = node->prev; -+ if(next){ -+ next->next = NULL; -+ } -+ ndn_cache->tail = next; -+ node = next; -+ /* now update the hash */ -+ ndn_cache->cache_count--; -+ ndn_cache_delete(flush_node->key); -+ slapi_ch_free_string(&flush_node->key); -+ slapi_ch_free((void **)&flush_node); -+ } -+} -+ - /* this is already "write" locked from ndn_cache_add */ - static void - ndn_cache_delete(char *dn) - { -- struct ndn_hash_val *ht_val; -+ struct ndn_hash_val *ht_entry; - -- ht_val = (struct ndn_hash_val *)PL_HashTableLookupConst(ndn_cache_hashtable, dn); -- if(ht_val){ -- ndn_cache->cache_size -= ht_val->size; -- slapi_ch_free_string(&ht_val->ndn); -+ ht_entry = (struct ndn_hash_val *)PL_HashTableLookupConst(ndn_cache_hashtable, dn); -+ if(ht_entry){ -+ ndn_cache->cache_size -= ht_entry->size; -+ slapi_ch_free_string(&ht_entry->ndn); -+ slapi_ch_free((void **)&ht_entry); - PL_HashTableRemove(ndn_cache_hashtable, dn); - } - } -+ - /* stats for monitor */ - void - ndn_cache_get_stats(PRUint64 *hits, PRUint64 *tries, size_t *size, size_t *max_size, long *count) -diff --git a/ldap/servers/slapd/main.c b/ldap/servers/slapd/main.c -index a17a2c5..ad8dd83 100644 ---- a/ldap/servers/slapd/main.c -+++ b/ldap/servers/slapd/main.c -@@ -1280,6 +1280,7 @@ main( int argc, char **argv) - cleanup: - SSL_ShutdownServerSessionIDCache(); - SSL_ClearSessionCache(); -+ ndn_cache_destroy(); - NSS_Shutdown(); - PR_Cleanup(); - #ifdef _WIN32 -diff --git a/ldap/servers/slapd/slapi-private.h b/ldap/servers/slapd/slapi-private.h -index 194f3fd..eaa5f98 100644 ---- a/ldap/servers/slapd/slapi-private.h -+++ b/ldap/servers/slapd/slapi-private.h -@@ -392,6 +392,8 @@ Slapi_DN *slapi_sdn_init_normdn_passin(Slapi_DN *sdn, const char *dn); - char *slapi_dn_normalize_original( char *dn ); - char *slapi_dn_normalize_case_original( char *dn ); - void ndn_cache_init(); -+void ndn_cache_destroy(); -+int ndn_cache_started(); - void ndn_cache_get_stats(PRUint64 *hits, PRUint64 *tries, size_t *size, size_t *max_size, long *count); - #define NDN_DEFAULT_SIZE 20971520 /* 20mb - size of normalized dn cache */ - --- -1.8.1.4 - diff --git a/SOURCES/0081-Ticket-47620-Unable-to-delete-protocol-timeout-attri.patch b/SOURCES/0081-Ticket-47620-Unable-to-delete-protocol-timeout-attri.patch deleted file mode 100644 index c8c32d9..0000000 --- a/SOURCES/0081-Ticket-47620-Unable-to-delete-protocol-timeout-attri.patch +++ /dev/null @@ -1,120 +0,0 @@ -From 5a79c1ecc7e706202a2a668e6cb12624f302ed35 Mon Sep 17 00:00:00 2001 -From: Mark Reynolds <mreynolds@redhat.com> -Date: Fri, 17 Jan 2014 15:13:21 -0500 -Subject: [PATCH 81/83] Ticket 47620 - Unable to delete protocol timeout - attribute - -Bug Description: Attempting to delete nsds5ReplicaProtocolTimeout from a replication - agreement unexpectedly fails with an error 53. - -Fix Description: The previous delete operation check was in the wrong location, and the - delete operation was treated as a modify - which then triggered the - error 53. Added the correct check for the delete operation. - - Also removed some old code for a CLEANALLRUV attribute that was never - implemented. - -https://fedorahosted.org/389/ticket/47620 - -Reviewed by: nhosoi(Thanks!) -(cherry picked from commit 9c41a365e8fbd23cab28eb91f50cdce696a30730) -(cherry picked from commit 77380161e9e04f64a431dd35ce4b4c45ed01cae5) ---- - ldap/servers/plugins/replication/repl5.h | 1 - - ldap/servers/plugins/replication/repl5_agmtlist.c | 46 +++++++++++------------ - ldap/servers/plugins/replication/repl_globals.c | 1 - - 3 files changed, 22 insertions(+), 26 deletions(-) - -diff --git a/ldap/servers/plugins/replication/repl5.h b/ldap/servers/plugins/replication/repl5.h -index 321a285..655e8ba 100644 ---- a/ldap/servers/plugins/replication/repl5.h -+++ b/ldap/servers/plugins/replication/repl5.h -@@ -167,7 +167,6 @@ extern const char *type_nsds5ReplicaBusyWaitTime; - extern const char *type_nsds5ReplicaSessionPauseTime; - extern const char *type_nsds5ReplicaEnabled; - extern const char *type_nsds5ReplicaStripAttrs; --extern const char *type_nsds5ReplicaCleanRUVnotified; - extern const char *type_replicaProtocolTimeout; - extern const char *type_replicaBackoffMin; - extern const char *type_replicaBackoffMax; -diff --git a/ldap/servers/plugins/replication/repl5_agmtlist.c b/ldap/servers/plugins/replication/repl5_agmtlist.c -index 9e0291f..0edf28a 100644 ---- a/ldap/servers/plugins/replication/repl5_agmtlist.c -+++ b/ldap/servers/plugins/replication/repl5_agmtlist.c -@@ -254,15 +254,6 @@ agmtlist_modify_callback(Slapi_PBlock *pb, Slapi_Entry *entryBefore, Slapi_Entry - the replication plugin - handled above */ - if (mods[i]->mod_op & LDAP_MOD_DELETE) - { -- if(strcasecmp (mods[i]->mod_type, type_nsds5ReplicaCleanRUVnotified) == 0 ){ -- /* allow the deletion of cleanallruv agmt attr */ -- continue; -- } -- if(strcasecmp (mods[i]->mod_type, type_replicaProtocolTimeout) == 0){ -- agmt_set_protocol_timeout(agmt, 0); -- continue; -- } -- - slapi_log_error(SLAPI_LOG_REPL, repl_plugin_name, "agmtlist_modify_callback: " - "deletion of %s attribute is not allowed\n", type_nsds5ReplicaInitialize); - *returncode = LDAP_UNWILLING_TO_PERFORM; -@@ -505,23 +496,30 @@ agmtlist_modify_callback(Slapi_PBlock *pb, Slapi_Entry *entryBefore, Slapi_Entry - } - } - else if (slapi_attr_types_equivalent(mods[i]->mod_type, type_replicaProtocolTimeout)){ -- long ptimeout = 0; -- -- if (val){ -- ptimeout = atol(val); -+ if (mods[i]->mod_op & LDAP_MOD_DELETE) -+ { -+ agmt_set_protocol_timeout(agmt, 0); - } -- if(ptimeout <= 0){ -- *returncode = LDAP_UNWILLING_TO_PERFORM; -- PR_snprintf (returntext, SLAPI_DSE_RETURNTEXT_SIZE, -- "attribute %s value (%s) is invalid, must be a number greater than zero.\n", -- type_replicaProtocolTimeout, val ? val : ""); -- slapi_log_error(SLAPI_LOG_FATAL, repl_plugin_name, "attribute %s value (%s) is invalid, " -- "must be a number greater than zero.\n", -- type_replicaProtocolTimeout, val ? val : ""); -- rc = SLAPI_DSE_CALLBACK_ERROR; -- break; -+ else -+ { -+ long ptimeout = 0; -+ -+ if (val){ -+ ptimeout = atol(val); -+ } -+ if(ptimeout <= 0){ -+ *returncode = LDAP_UNWILLING_TO_PERFORM; -+ PR_snprintf (returntext, SLAPI_DSE_RETURNTEXT_SIZE, -+ "attribute %s value (%s) is invalid, must be a number greater than zero.\n", -+ type_replicaProtocolTimeout, val ? val : ""); -+ slapi_log_error(SLAPI_LOG_FATAL, repl_plugin_name, "attribute %s value (%s) is invalid, " -+ "must be a number greater than zero.\n", -+ type_replicaProtocolTimeout, val ? val : ""); -+ rc = SLAPI_DSE_CALLBACK_ERROR; -+ break; -+ } -+ agmt_set_protocol_timeout(agmt, ptimeout); - } -- agmt_set_protocol_timeout(agmt, ptimeout); - } - else if (0 == windows_handle_modify_agreement(agmt, mods[i]->mod_type, e)) - { -diff --git a/ldap/servers/plugins/replication/repl_globals.c b/ldap/servers/plugins/replication/repl_globals.c -index 7dfeb9b..305ed25 100644 ---- a/ldap/servers/plugins/replication/repl_globals.c -+++ b/ldap/servers/plugins/replication/repl_globals.c -@@ -133,7 +133,6 @@ const char *type_nsds5ReplicaBusyWaitTime = "nsds5ReplicaBusyWaitTime"; - const char *type_nsds5ReplicaSessionPauseTime = "nsds5ReplicaSessionPauseTime"; - const char *type_nsds5ReplicaEnabled = "nsds5ReplicaEnabled"; - const char *type_nsds5ReplicaStripAttrs = "nsds5ReplicaStripAttrs"; --const char *type_nsds5ReplicaCleanRUVnotified = "nsds5ReplicaCleanRUVNotified"; - - /* windows sync specific attributes */ - const char *type_nsds7WindowsReplicaArea = "nsds7WindowsReplicaSubtree"; --- -1.8.1.4 - diff --git a/SOURCES/0082-Ticket-47516-replication-stops-with-excessive-clock-.patch b/SOURCES/0082-Ticket-47516-replication-stops-with-excessive-clock-.patch deleted file mode 100644 index 56d9aea..0000000 --- a/SOURCES/0082-Ticket-47516-replication-stops-with-excessive-clock-.patch +++ /dev/null @@ -1,92 +0,0 @@ -From 029e230581a4b8e955db01dd0735f1ad9db521ac Mon Sep 17 00:00:00 2001 -From: Rich Megginson <rmeggins@redhat.com> -Date: Thu, 16 Jan 2014 12:57:22 -0700 -Subject: [PATCH 82/83] Ticket #47516 replication stops with excessive clock - skew - -https://fedorahosted.org/389/ticket/47516 -Reviewed by: nhosoi (Thanks!) -Branch: 389-ds-base-1.3.1 -Fix Description: The previous fix was not adequate. Instead, the determination -of whether or not to ignore time skew should be determined in -csngen_adjust_time(). -Platforms tested: RHEL6 x86_64 -Flag Day: no -Doc impact: yes - document new config param -(cherry picked from commit 9f2b104b0938b21d7c9fe37c736d0e6328843aeb) -(cherry picked from commit a6ec074c6295a59938f313b4fe09430e8f601fab) -(cherry picked from commit 51c1b2a0e4245b90f418f9f909c1d17c564f77f3) ---- - ldap/servers/plugins/replication/repl_extop.c | 11 ++--------- - ldap/servers/slapd/csngen.c | 8 ++++++-- - 2 files changed, 8 insertions(+), 11 deletions(-) - -diff --git a/ldap/servers/plugins/replication/repl_extop.c b/ldap/servers/plugins/replication/repl_extop.c -index 57249a6..35014a9 100644 ---- a/ldap/servers/plugins/replication/repl_extop.c -+++ b/ldap/servers/plugins/replication/repl_extop.c -@@ -835,19 +835,12 @@ multimaster_extop_StartNSDS50ReplicationRequest(Slapi_PBlock *pb) - rc = replica_update_csngen_state_ext (replica, supplier_ruv, replicacsn); /* too much skew */ - if (rc == CSN_LIMIT_EXCEEDED) - { -- 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); -- if (!config_get_ignore_time_skew()) { -- response = NSDS50_REPL_EXCESSIVE_CLOCK_SKEW; -- goto send_response; -- } else { -- /* else just continue */ -- rc = 0; -- } -+ response = NSDS50_REPL_EXCESSIVE_CLOCK_SKEW; -+ goto send_response; - } - else if (rc != 0) - { -diff --git a/ldap/servers/slapd/csngen.c b/ldap/servers/slapd/csngen.c -index 464a59e..f87f2d1 100644 ---- a/ldap/servers/slapd/csngen.c -+++ b/ldap/servers/slapd/csngen.c -@@ -326,6 +326,8 @@ int csngen_adjust_time(CSNGen *gen, const CSN* csn) - time_t remote_time, remote_offset, cur_time; - PRUint16 remote_seqnum; - int rc; -+ extern int config_get_ignore_time_skew(); -+ int ignore_time_skew = config_get_ignore_time_skew(); - - if (gen == NULL || csn == NULL) - return CSN_INVALID_PARAMETER; -@@ -380,7 +382,7 @@ int csngen_adjust_time(CSNGen *gen, const CSN* csn) - remote_offset = remote_time - cur_time; - if (remote_offset > gen->state.remote_offset) - { -- if (remote_offset <= CSN_MAX_TIME_ADJUST) -+ if (ignore_time_skew || (remote_offset <= CSN_MAX_TIME_ADJUST)) - { - gen->state.remote_offset = remote_offset; - } -@@ -651,6 +653,8 @@ _csngen_cmp_callbacks (const void *el1, const void *el2) - static int - _csngen_adjust_local_time (CSNGen *gen, time_t cur_time) - { -+ extern int config_get_ignore_time_skew(); -+ int ignore_time_skew = config_get_ignore_time_skew(); - time_t time_diff = cur_time - gen->state.sampled_time; - - if (time_diff == 0) { -@@ -714,7 +718,7 @@ _csngen_adjust_local_time (CSNGen *gen, time_t cur_time) - gen->state.remote_offset); - } - -- if (abs (time_diff) > CSN_MAX_TIME_ADJUST) -+ if (!ignore_time_skew && (abs (time_diff) > CSN_MAX_TIME_ADJUST)) - { - slapi_log_error (SLAPI_LOG_FATAL, NULL, "_csngen_adjust_local_time: " - "adjustment limit exceeded; value - %d, limit - %d\n", --- -1.8.1.4 - diff --git a/SOURCES/0083-Ticket-342-better-error-message-when-cache-overflows.patch b/SOURCES/0083-Ticket-342-better-error-message-when-cache-overflows.patch deleted file mode 100644 index 8ec2bbd..0000000 --- a/SOURCES/0083-Ticket-342-better-error-message-when-cache-overflows.patch +++ /dev/null @@ -1,36 +0,0 @@ -From 4730b81cfda96b8825ad0b01df2e89024f31b634 Mon Sep 17 00:00:00 2001 -From: Noriko Hosoi <nhosoi@redhat.com> -Date: Thu, 16 Jan 2014 11:06:22 -0800 -Subject: [PATCH 83/83] Ticket #342 - better error message when cache overflows - -Description: commit 892bf12c1bb8b10afea3d6ff711059bf04e362cc -introduced an invalid memory read/write. This patch prepares one -extra aclpblock for the acl cache overflow. - -https://fedorahosted.org/389/ticket/342 - -Reviewed by rmeggins@redhat.com (Thank you, Rich!!) -(cherry picked from commit 3fee1fc829a4a9573d087d1ead3c949239e5e914) -(cherry picked from commit fe75b11cad371890482b7f394384083dc1b0fd70) -(cherry picked from commit aec20501db3a33df0bc151371cdec334c62af4b0) ---- - ldap/servers/plugins/acl/acl_ext.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -diff --git a/ldap/servers/plugins/acl/acl_ext.c b/ldap/servers/plugins/acl/acl_ext.c -index e42a7e2..ee2dd0f 100644 ---- a/ldap/servers/plugins/acl/acl_ext.c -+++ b/ldap/servers/plugins/acl/acl_ext.c -@@ -717,7 +717,8 @@ acl__malloc_aclpb ( ) - - /* allocate arrays for result cache */ - aclpb->aclpb_cache_result = (r_cache_t *) -- slapi_ch_calloc (aclpb_max_cache_results, sizeof (r_cache_t)); -+ slapi_ch_calloc (aclpb_max_cache_results + 1 /* 1 for cache overflow warning */, -+ sizeof (r_cache_t)); - - /* allocate arrays for target handles in eval_context */ - aclpb->aclpb_curr_entryEval_context.acle_handles_matched_target = (int *) --- -1.8.1.4 - diff --git a/SOURCES/0084-Ticket-443-Deleting-attribute-present-in-nsslapd-all.patch b/SOURCES/0084-Ticket-443-Deleting-attribute-present-in-nsslapd-all.patch deleted file mode 100644 index 32aa515..0000000 --- a/SOURCES/0084-Ticket-443-Deleting-attribute-present-in-nsslapd-all.patch +++ /dev/null @@ -1,122 +0,0 @@ -From 84a58b65db55c914a800b0fb31d538bc691c2b13 Mon Sep 17 00:00:00 2001 -From: Noriko Hosoi <nhosoi@redhat.com> -Date: Thu, 23 Jan 2014 18:07:56 -0800 -Subject: [PATCH 84/85] Ticket #443 - Deleting attribute present in - nsslapd-allowed-to-delete-attrs returns Operations error - -Description: commit 90dd9bb3c1411daca353d055d90618e67aa1fa7e introduced -an Invalid read/write. The commit meant to allow "on" and "off" as well -as integer 0 and 1 in on/off type of config parameters. This patch converts -the integers to "on" or "off" and pass it to config set function. - -https://fedorahosted.org/389/ticket/443 - -Reviewed by rmeggins@redhat.com (Thank you, Rich!!) -(cherry picked from commit c52987d295a9f4a091568d02679765f3a83beb69) -(cherry picked from commit 4266657727fc71afbb6b4f21886ebd86a68b2ed2) -(cherry picked from commit d68dc3235d04caf3736d3587801a3c96cfebccb6) ---- - ldap/servers/slapd/libglobs.c | 54 +++++++++++++++++++++++++------------------ - 1 file changed, 31 insertions(+), 23 deletions(-) - -diff --git a/ldap/servers/slapd/libglobs.c b/ldap/servers/slapd/libglobs.c -index bcf7db4..8bd4978 100644 ---- a/ldap/servers/slapd/libglobs.c -+++ b/ldap/servers/slapd/libglobs.c -@@ -3176,8 +3176,7 @@ config_set_security( const char *attrname, char *value, char *errorbuf, int appl - } - - static int --config_set_onoff ( const char *attrname, char *value, int *configvalue, -- char *errorbuf, int apply ) -+config_set_onoff(const char *attrname, char *value, int *configvalue, char *errorbuf, int apply) - { - int retVal = LDAP_SUCCESS; - slapi_onoff_t newval = -1; -@@ -3185,33 +3184,27 @@ config_set_onoff ( const char *attrname, char *value, int *configvalue, - slapdFrontendConfig_t *slapdFrontendConfig = getFrontendConfig(); - #endif - -- if ( config_value_is_null( attrname, value, errorbuf, 0 )) { -- return LDAP_OPERATIONS_ERROR; -+ if ( config_value_is_null( attrname, value, errorbuf, 1 )) { -+ return LDAP_OPERATIONS_ERROR; - } - - CFG_ONOFF_LOCK_WRITE(slapdFrontendConfig); -- if ( strcasecmp ( value, "on" ) != 0 && -- strcasecmp ( value, "off") != 0 && -- /* initializing the value */ -- (*(int *)value != LDAP_ON) && -- (*(int *)value != LDAP_OFF)) { -- PR_snprintf ( errorbuf, SLAPI_DSE_RETURNTEXT_SIZE, -- "%s: invalid value \"%s\". Valid values are \"on\" or \"off\".", -- attrname, value ); -- retVal = LDAP_OPERATIONS_ERROR; -+ if (strcasecmp(value, "on") && strcasecmp(value, "off")) { -+ PR_snprintf ( errorbuf, SLAPI_DSE_RETURNTEXT_SIZE, -+ "%s: invalid value \"%s\". Valid values are \"on\" or \"off\".", -+ attrname, value ); -+ retVal = LDAP_OPERATIONS_ERROR; - } - - if ( !apply ) { -- /* we can return now if we aren't applying the changes */ -- return retVal; -+ /* we can return now if we aren't applying the changes */ -+ return retVal; - } - - if ( strcasecmp ( value, "on" ) == 0 ) { -- newval = LDAP_ON; -+ newval = LDAP_ON; - } else if ( strcasecmp ( value, "off" ) == 0 ) { -- newval = LDAP_OFF; -- } else { /* assume it is an integer */ -- newval = *(slapi_onoff_t *)value; -+ newval = LDAP_OFF; - } - - #ifdef ATOMIC_GETSET_ONOFF -@@ -7000,6 +6993,18 @@ config_get_listen_backlog_size() - return retVal; - } - -+static char * -+config_initvalue_to_onoff(struct config_get_and_set *cgas, char *initvalbuf, size_t initvalbufsize) -+{ -+ char *retval = NULL; -+ if (cgas->config_var_type == CONFIG_ON_OFF) { -+ slapi_onoff_t *ival = (slapi_onoff_t *)(intptr_t)cgas->initvalue; -+ PR_snprintf(initvalbuf, initvalbufsize, "%s", (ival && *ival) ? "on" : "off"); -+ retval = initvalbuf; -+ } -+ return retval; -+} -+ - /* - * This function is intended to be used from the dse code modify callback. It - * is "optimized" for that case because it takes a berval** of values, which is -@@ -7048,12 +7053,15 @@ config_set(const char *attr, struct berval **values, char *errorbuf, int apply) - default: - if ((NULL == values) && - config_allowed_to_delete_attrs(cgas->attr_name)) { -+ char initvalbuf[64]; -+ void *initval = cgas->initvalue; -+ if (cgas->config_var_type == CONFIG_ON_OFF) { -+ initval = (void *)config_initvalue_to_onoff(cgas, initvalbuf, sizeof(initvalbuf)); -+ } - if (cgas->setfunc) { -- retval = (cgas->setfunc)(cgas->attr_name, cgas->initvalue, -- errorbuf, apply); -+ retval = (cgas->setfunc)(cgas->attr_name, initval, errorbuf, apply); - } else if (cgas->logsetfunc) { -- retval = (cgas->logsetfunc)(cgas->attr_name, cgas->initvalue, -- cgas->whichlog, errorbuf, apply); -+ retval = (cgas->logsetfunc)(cgas->attr_name, initval, cgas->whichlog, errorbuf, apply); - } else { - LDAPDebug1Arg(LDAP_DEBUG_ANY, - "config_set: the attribute %s is read only; " --- -1.8.1.4 - diff --git a/SOURCES/0085-Ticket-47649-Server-hangs-in-cos_cache-when-adding-a.patch b/SOURCES/0085-Ticket-47649-Server-hangs-in-cos_cache-when-adding-a.patch deleted file mode 100644 index a8a2426..0000000 --- a/SOURCES/0085-Ticket-47649-Server-hangs-in-cos_cache-when-adding-a.patch +++ /dev/null @@ -1,173 +0,0 @@ -From f86b7bd86945df33843e90a7ac84d5967a7e7e82 Mon Sep 17 00:00:00 2001 -From: Noriko Hosoi <nhosoi@redhat.com> -Date: Fri, 24 Jan 2014 18:12:32 -0800 -Subject: [PATCH 85/85] Ticket #47649 - Server hangs in cos_cache when adding a - user entry - -Bug description: cos_dn_defs_cb reads cosDefinition and sets up the cos -Definition part of cos cache. In the function, when processing -cosAttribute, cosTargetTree and cosTemlpateDn are missing, it sets the -parent dn of the cos definition dn. This parent setting is needed only -when the 2 attributes are completely missing from the cos definition. -But if the attributes are located below cosAttribute (see the Example -cos definition), in addition to "cn=cosTemplates,ou=people,dc=example, -dc=com", the parent of "cn=generatePostalCode,ou=People,dc=example,dc=com" -is added to the cos cache as cosTemplateDn. - Example cos definition: - dn: cn=generatePostalCode,ou=People,dc=example,dc=com - description: generate postalCode attr based on location - objectClass: top - objectClass: ldapsubentry - objectClass: cossuperdefinition - objectClass: cosClassicDefinition - cosAttribute: postalCode - costemplatedn: cn=cosTemplates,ou=people,dc=example,dc=com - cosSpecifier: l - cn: generatePostalCode -The mistakenly added cosTemplatedDn makes adding an entry under ou=People -notify recreating the cos cache. The notification needs to be outside of -backend transaction since it causes a deadlock with the cos_cache_wait_ -on_change thread which cannot read the DB due to the transaction but holds -the lock that the notifier thread is waiting for. - -Fix description: The parent of the cos definition dn is set to the -cosTargetTree and the cosTemlpateDn, only when the attributes are -completely missing. - -https://fedorahosted.org/389/ticket/47649 - -Reviewed by rmeggins@redhat.com (Thank you, Rich!!) -(cherry picked from commit 1e52401d3abd0377f55676f4a1508a02aaa7f955) -(cherry picked from commit 01c0794cde7eb91a1a4e477a0286533df4a4ae38) -(cherry picked from commit 1ebad4bd50fb1483998a32b5d3e232e89aeda0f7) ---- - ldap/servers/plugins/cos/cos_cache.c | 82 +++++++++++++++++++++--------------- - 1 file changed, 48 insertions(+), 34 deletions(-) - -diff --git a/ldap/servers/plugins/cos/cos_cache.c b/ldap/servers/plugins/cos/cos_cache.c -index fed2aa9..a68e59f 100644 ---- a/ldap/servers/plugins/cos/cos_cache.c -+++ b/ldap/servers/plugins/cos/cos_cache.c -@@ -727,7 +727,8 @@ struct dn_defs_info { - * if a particular attempt to add a definition fails: info.ret gets set to - * zero only if we succed to add a def. - */ --static int cos_dn_defs_cb (Slapi_Entry* e, void *callback_data) -+static int -+cos_dn_defs_cb (Slapi_Entry* e, void *callback_data) - { - struct dn_defs_info *info; - cosAttrValue **pSneakyVal = 0; -@@ -877,31 +878,10 @@ static int cos_dn_defs_cb (Slapi_Entry* e, void *callback_data) - dnVals[valIndex]->bv_val); - } - -- if(!pCosTargetTree) -- { -- /* get the parent of the definition */ -- char *orig = slapi_dn_parent(pDn->val); -- Slapi_DN *psdn = slapi_sdn_new_dn_byval(orig); -- char *parent = (char *)slapi_sdn_get_dn(psdn); -- if (!parent) { -- parent = (char *)slapi_sdn_get_udn(psdn); -- LDAPDebug(LDAP_DEBUG_ANY, -- "cos_cache_build_definition_list: " -- "failed to normalize parent dn %s. " -- "Adding the pre normalized dn.\n", -- parent, 0, 0); -- } -- cos_cache_add_attrval(&pCosTargetTree, parent); -- if (!pCosTemplateDn) { -- cos_cache_add_attrval(&pCosTemplateDn, parent); -- } -- slapi_sdn_free(&psdn); -- } -- - slapi_vattrspi_regattr((vattr_sp_handle *)vattr_handle, - dnVals[valIndex]->bv_val, NULL, NULL); - } /* if(attrType is cosAttribute) */ -- -+ - /* - * Add the attributetype to the appropriate - * list. -@@ -913,6 +893,47 @@ static int cos_dn_defs_cb (Slapi_Entry* e, void *callback_data) - ber_bvecfree( dnVals ); - dnVals = NULL; - } while(!slapi_entry_next_attr(e, dnAttr, &dnAttr)); -+ -+ if (pCosAttribute && (!pCosTargetTree || !pCosTemplateDn)) { -+ /* get the parent of the definition */ -+ char *orig = slapi_dn_parent(pDn->val); -+ char *parent = NULL; -+ if (orig) { -+ parent = slapi_create_dn_string("%s", orig); -+ if (!parent) { -+ parent = orig; -+ LDAPDebug1Arg(LDAP_DEBUG_ANY, -+ "cos_dn_defs_cb: " -+ "failed to normalize parent dn %s. " -+ "Adding the pre normalized dn.\n", -+ parent); -+ } -+ if (!pCosTargetTree) { -+ cos_cache_add_attrval(&pCosTargetTree, parent); -+ } -+ if (!pCosTemplateDn) { -+ cos_cache_add_attrval(&pCosTemplateDn, parent); -+ } -+ if (parent != orig) { -+ slapi_ch_free_string(&parent); -+ } -+ slapi_ch_free_string(&orig); -+ } else { -+ LDAPDebug1Arg(LDAP_DEBUG_ANY, -+ "cos_dn_defs_cb: " -+ "failed to get parent dn of cos definition %s.\n", -+ pDn->val); -+ if (!pCosTemplateDn) { -+ if (!pCosTargetTree) { -+ LDAPDebug0Args(LDAP_DEBUG_ANY, "cosTargetTree and cosTemplateDn are not set.\n"); -+ } else { -+ LDAPDebug0Args(LDAP_DEBUG_ANY, "cosTemplateDn is not set.\n"); -+ } -+ } else if (!pCosTargetTree) { -+ LDAPDebug0Args(LDAP_DEBUG_ANY, "cosTargetTree is not set.\n"); -+ } -+ } -+ } - - /* - determine the type of class of service scheme -@@ -951,9 +972,7 @@ static int cos_dn_defs_cb (Slapi_Entry* e, void *callback_data) - */ - - /* these must exist */ -- if( pDn && -- pObjectclass && -- -+ if(pDn && pObjectclass && - ( - (cosType == COSTYPE_CLASSIC && - pCosTemplateDn && -@@ -3582,14 +3601,9 @@ static int cos_cache_entry_is_cos_related( Slapi_Entry *e) { - { - pObj = (char*)slapi_value_get_string(val); - -- /* -- * objectclasses are ascii--maybe strcasecmp() is faster than -- * slapi_utf8casecmp() -- */ -- if( !strcasecmp(pObj, "cosdefinition") || -- !strcasecmp(pObj, "cossuperdefinition") || -- !strcasecmp(pObj, "costemplate") -- ) -+ if(!strcasecmp(pObj, "cosdefinition") || -+ !strcasecmp(pObj, "cossuperdefinition") || -+ !strcasecmp(pObj, "costemplate")) - { - rc = 1; - } --- -1.8.1.4 - diff --git a/SOURCES/0086-Ticket-47374-flush.pl-is-not-included-in-perl5.patch b/SOURCES/0086-Ticket-47374-flush.pl-is-not-included-in-perl5.patch deleted file mode 100644 index 7322976..0000000 --- a/SOURCES/0086-Ticket-47374-flush.pl-is-not-included-in-perl5.patch +++ /dev/null @@ -1,82 +0,0 @@ -From 9b1e2d02e20f270aed32f05210d207398ae0f7a1 Mon Sep 17 00:00:00 2001 -From: Rich Megginson <rmeggins@redhat.com> -Date: Fri, 31 Jan 2014 14:21:59 -0700 -Subject: [PATCH 86/87] Ticket #47374 - flush.pl is not included in perl5 - -https://fedorahosted.org/389/ticket/47374 -Reviewed by: nhosoi (Thanks!) -Branch: rhel-7.0 -Fix Description: Change opt_b to BeginNum and opt_r to Random_Seed. -Have to specify option as j=i because -j has an integer argument. -Get rid of opt_j and use ZeroPad instead. -Platforms tested: RHEL6 x86_64 -Flag Day: no -Doc impact: no -(cherry picked from commit f9ba01b4b9ce3881cf08433b0c43db93ab207507) -(cherry picked from commit 55df132065f109b8f548100461011c10b58843ea) -(cherry picked from commit ea868566c49869b3fa0f6e2c7194b743d22f77fe) ---- - ldap/servers/slapd/tools/rsearch/scripts/dbgen.pl.in | 14 +++++++------- - 1 file changed, 7 insertions(+), 7 deletions(-) - -diff --git a/ldap/servers/slapd/tools/rsearch/scripts/dbgen.pl.in b/ldap/servers/slapd/tools/rsearch/scripts/dbgen.pl.in -index 51af0db..2ef76f2 100755 ---- a/ldap/servers/slapd/tools/rsearch/scripts/dbgen.pl.in -+++ b/ldap/servers/slapd/tools/rsearch/scripts/dbgen.pl.in -@@ -543,13 +543,14 @@ sub flush { - - my $Number_To_Generate = 1; - $Output_File_Name = "output.ldif"; --$Random_Seed = 1; -+$Random_Seed = 0; - $Suffix = 'dc=example,dc=com'; - $NamingType = "uid"; - $inetOrgPerson = "objectClass: inetOrgPerson\n"; - $PrintOrgChartDat = 0; --$DataDir = "/usr/share/dirsrv/data"; -+$DataDir = "@templatedir@"; - $BeginNum = 0; -+$ZeroPad = 0; - - $Verbose = 0; - $debug = 0; -@@ -572,7 +573,7 @@ GetOptions('number=i' => \$Number_To_Generate, - 'x' => \$opt_x, - 'y' => \$opt_y, - 'z' => \$opt_z, -- 'j' => \$opt_j, -+ 'j=i' => \$ZeroPad, - 'verbose' => \$Verbose, - 'debug' => \$debug, - 'quiet' => \$Quiet, -@@ -598,7 +599,6 @@ if ("" != $opt_y) - { - $printorgunit = 0; - } --$ZeroPad = $opt_j; - - if ($Suffix =~ /o=/) { - ($Organization) = $Suffix =~ /o=([^,]+)/; -@@ -1029,8 +1029,8 @@ sub MakeRandomLocality { - sub MakeRandomName { - local($Given_Name, $Surname, $Full_Name, $UID, $uniq, $first, $last, $RDN); - # Get the unique number depending if a seed was set or not. -- $uniq = int rand($Random_Seed) if ($opt_r); -- $uniq = $x if (!$opt_r); -+ $uniq = int rand($Random_Seed) if ($Random_Seed); -+ $uniq = $x if (!$Random_Seed); - - $Given_Name = $given_names[rand @given_names]; - $Surname = $family_names[rand @family_names]; -@@ -1040,7 +1040,7 @@ sub MakeRandomName { - $UID = $first . $last . "$uniq"; - - # Create the uid based on the DN naming type defined -- if ($opt_b) { # use a uniquenumber for the RDN value -+ if ($BeginNum) { # use a uniquenumber for the RDN value - if ($ZeroPad) { - $RDN = sprintf "%0.${ZeroPad}d", $x; - } else { --- -1.8.1.4 - diff --git a/SOURCES/0087-Ticket-471-logconv.pl-tool-removes-the-access-logs-c.patch b/SOURCES/0087-Ticket-471-logconv.pl-tool-removes-the-access-logs-c.patch deleted file mode 100644 index 1b62c2f..0000000 --- a/SOURCES/0087-Ticket-471-logconv.pl-tool-removes-the-access-logs-c.patch +++ /dev/null @@ -1,74 +0,0 @@ -From 7dc5c28a3beeeb90cdae084ae6d1fa338c09c50f Mon Sep 17 00:00:00 2001 -From: Rich Megginson <rmeggins@redhat.com> -Date: Fri, 31 Jan 2014 16:49:58 -0700 -Subject: [PATCH 87/87] Ticket #471 logconv.pl tool removes the access logs - contents if "-M" is not correctly used - -https://fedorahosted.org/389/ticket/471 -Reviewed by: nhosoi (Thanks!) -Branch: rhel-7.0 -Fix Description: Do not call new_stats_block() until we verify that it is safe -to call it. It will wipe out the file. -Platforms tested: RHEL6 x86_64 -Flag Day: no -Doc impact: no -(cherry picked from commit 7447050f572fb8865145d020e9eab64032f667be) -(cherry picked from commit cfbda421535451d99d3ee774a49fc099cfb902f0) -(cherry picked from commit 811300f30264a82b6cd9d0e1d7594a066458912c) ---- - ldap/admin/src/logconv.pl | 19 +++++++++++++++---- - 1 file changed, 15 insertions(+), 4 deletions(-) - -diff --git a/ldap/admin/src/logconv.pl b/ldap/admin/src/logconv.pl -index e7d7507..99e0efd 100755 ---- a/ldap/admin/src/logconv.pl -+++ b/ldap/admin/src/logconv.pl -@@ -104,6 +104,8 @@ my $reportBinds = "no"; - my $rootDN = ""; - my $needCleanup = 0; - my @scopeTxt = ("0 (base)", "1 (one)", "2 (subtree)"); -+my $reportStatsSecFile; -+my $reportStatsMinFile; - - GetOptions( - 'd|rootDN=s' => \$rootDN, -@@ -115,8 +117,8 @@ GetOptions( - 'S|startTime=s' => \$startTime, - 'E|endTime=s' => \$endTime, - 'B|bind=s' => sub { $reportBinds = "yes"; $bindReportDN=($_[1]) }, -- 'm|reportFileSecs=s' => sub { my ($opt,$value) = @_; $s_stats = new_stats_block($value); $reportStats = "-m";}, -- 'M|reportFileMins=s' => sub { my ($opt,$value) = @_; $m_stats = new_stats_block($value); $reportStats = "-M";}, -+ 'm|reportFileSecs=s' => \$reportStatsSecFile, -+ 'M|reportFileMins=s' => \$reportStatsMinFile, - 'h|help' => sub { displayUsage() }, - # usage options '-efcibaltnxgjuiryp' - 'e' => sub { $usage = $usage . "e"; }, -@@ -169,14 +171,23 @@ while($arg_count <= $#ARGV){ - } - - if($file_count == 0){ -- if($reportStats){ -- print "Usage error for option $reportStats, either the output file or access log is missing!\n\n"; -+ if($reportStatsSecFile or $reportStatsMinFile){ -+ print "Usage error for option -m or -M, either the output file or access log is missing!\n\n"; - } else { - print "There are no access logs specified!\n\n"; - } - exit 1; - } - -+if ($reportStatsSecFile) { -+ $s_stats = new_stats_block($reportStatsSecFile); -+ $reportStats = "-m"; -+} -+if ($reportStatsMinFile) { -+ $m_stats = new_stats_block($reportStatsMinFile); -+ $reportStats = "-M"; -+} -+ - if ($sizeCount eq "all"){$sizeCount = "100000";} - - ####################################### --- -1.8.1.4 - diff --git a/SOURCES/0088-Ticket-47704-invalid-sizelimits-in-aci-group-evaluat.patch b/SOURCES/0088-Ticket-47704-invalid-sizelimits-in-aci-group-evaluat.patch deleted file mode 100644 index cf4a32f..0000000 --- a/SOURCES/0088-Ticket-47704-invalid-sizelimits-in-aci-group-evaluat.patch +++ /dev/null @@ -1,45 +0,0 @@ -From e585f17556d12f96683665aed7699a78a89c9ab4 Mon Sep 17 00:00:00 2001 -From: Ludwig Krispenz <lkrispen@redhat.com> -Date: Tue, 18 Feb 2014 11:40:16 +0100 -Subject: [PATCH] Ticket 47704 - invalid sizelimits in aci group evaluation - -Bug Description: aci group evaluation fails because of sizelimit exceeded - but it is exceeded because it is -1476887876 or another - negative integer becasue operation parameter are a union - based on operation types and so for otehr than search - the value is dependent on the operation params - -Fix Description: treat any negative integer like -1 (unlimited). A better fix - would be to introduce a specific configuration param or - to abondon the limit in group evaluation at all. But this - could introduce backward compatibility problems and - will be handled in ticket 47703 for newer versions - -https://fedorahosted.org/389/ticket/47704 - -Reviewed by: Rich, thanks -(cherry picked from commit 377266ebb2ff488aa3cc4b96990c002db7e6103e) ---- - ldap/servers/plugins/acl/acl_ext.c | 6 ++++++ - 1 file changed, 6 insertions(+) - -diff --git a/ldap/servers/plugins/acl/acl_ext.c b/ldap/servers/plugins/acl/acl_ext.c -index ee2dd0f..b9cec43 100644 ---- a/ldap/servers/plugins/acl/acl_ext.c -+++ b/ldap/servers/plugins/acl/acl_ext.c -@@ -836,6 +836,12 @@ acl_init_aclpb ( Slapi_PBlock *pb , Acl_PBlock *aclpb, const char *ndn, int copy - slapi_pblock_get( pb, SLAPI_SEARCH_SIZELIMIT, &aclpb->aclpb_max_member_sizelimit ); - if ( aclpb->aclpb_max_member_sizelimit == 0 ) { - aclpb->aclpb_max_member_sizelimit = SLAPD_DEFAULT_LOOKTHROUGHLIMIT; -+ } else if ( aclpb->aclpb_max_member_sizelimit < -1 ) { -+ /* handle the case of a negtive size limit either set or due -+ * to bug bz1065971. The member size limit should be dropped, -+ * but for backward compatibility to the best we can -+ */ -+ aclpb->aclpb_max_member_sizelimit = -1; - } - slapi_pblock_get( pb, SLAPI_OPERATION_TYPE, &aclpb->aclpb_optype ); - --- -1.8.1.4 - diff --git a/SOURCES/0089-Ticket-47709-package-issue-in-389-ds-base.patch b/SOURCES/0089-Ticket-47709-package-issue-in-389-ds-base.patch deleted file mode 100644 index c54b3b2..0000000 --- a/SOURCES/0089-Ticket-47709-package-issue-in-389-ds-base.patch +++ /dev/null @@ -1,87 +0,0 @@ -From 8cbc6f09ee63f21b235219e7ca92ed26b28c52da Mon Sep 17 00:00:00 2001 -From: Noriko Hosoi <nhosoi@redhat.com> -Date: Thu, 20 Feb 2014 13:18:06 -0800 -Subject: [PATCH 89/90] Ticket #47709 - package issue in 389-ds-base - -Description: Following the package guideline, moving pytyon binaries -to the architecture aware location and libns-dshttpd.so* from 389-ds-base -to 389-ds-base-libs. - -https://fedorahosted.org/389/ticket/47709 - -Reviewed by rmeggins@redhat.com (Thank you, Rich!!) - -(cherry picked from commit a32b2a9ddc5764d449b051c20077643585e81def) -(cherry picked from commit 011385ad8cb8afc42611b57a3a88600eb1d56932) -(cherry picked from commit f1bbfe2ff0768128b10903ca1262302313b74ad6) ---- - Makefile.am | 8 +++++--- - configure.ac | 5 +++++ - 2 files changed, 10 insertions(+), 3 deletions(-) - -diff --git a/Makefile.am b/Makefile.am -index 8cf7ba7..04845a0 100644 ---- a/Makefile.am -+++ b/Makefile.am -@@ -166,6 +166,7 @@ initdir = @initdir@ - initconfigdir = $(sysconfdir)@initconfigdir@ - instconfigdir = @instconfigdir@ - perldir = $(libdir)@perldir@ -+pythondir = $(libdir)@pythondir@ - infdir = $(datadir)@infdir@ - mibdir = $(datadir)@mibdir@ - updatedir = $(datadir)@updatedir@ -@@ -250,9 +251,7 @@ config_DATA = $(srcdir)/lib/ldaputil/certmap.conf \ - # with the default schema e.g. there is - # considerable overlap of 60changelog.ldif and 01common.ldif - # and 60inetmail.ldif and 50ns-mail.ldif among others --sampledata_DATA = ldap/admin/src/scripts/failedbinds.py \ -- ldap/admin/src/scripts/DSSharedLib \ -- ldap/admin/src/scripts/logregex.py \ -+sampledata_DATA = ldap/admin/src/scripts/DSSharedLib \ - $(srcdir)/ldap/ldif/Ace.ldif \ - $(srcdir)/ldap/ldif/European.ldif \ - $(srcdir)/ldap/ldif/Eurosuffix.ldif \ -@@ -404,6 +403,9 @@ perl_DATA = ldap/admin/src/scripts/SetupLog.pm \ - ldap/admin/src/scripts/DSUpdate.pm \ - ldap/admin/src/scripts/DSUpdateDialogs.pm - -+python_DATA = ldap/admin/src/scripts/failedbinds.py \ -+ ldap/admin/src/scripts/logregex.py -+ - property_DATA = ldap/admin/src/scripts/setup-ds.res \ - ldap/admin/src/scripts/migrate-ds.res - -diff --git a/configure.ac b/configure.ac -index 2376b34..908683e 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -264,6 +264,8 @@ if test "$with_fhs_opt" = "yes"; then - propertydir=/properties - # relative to libdir - perldir=/perl -+ # relative to libdir -+ pythondir=/python - else - if test "$with_fhs" = "yes"; then - ac_default_prefix=/usr -@@ -295,6 +297,8 @@ else - propertydir=/$PACKAGE_NAME/properties - # relative to libdir - perldir=/$PACKAGE_NAME/perl -+ # relative to libdir -+ pythondir=/$PACKAGE_NAME/python - fi - - # if mandir is the default value, override it -@@ -403,6 +407,7 @@ AC_SUBST(serverincdir) - AC_SUBST(serverplugindir) - AC_SUBST(scripttemplatedir) - AC_SUBST(perldir) -+AC_SUBST(pythondir) - AC_SUBST(infdir) - AC_SUBST(mibdir) - AC_SUBST(mandir) --- -1.8.1.4 - diff --git a/SOURCES/0090-Ticket-47709-package-issue-in-389-ds-base.patch b/SOURCES/0090-Ticket-47709-package-issue-in-389-ds-base.patch deleted file mode 100644 index 4e3b58a..0000000 --- a/SOURCES/0090-Ticket-47709-package-issue-in-389-ds-base.patch +++ /dev/null @@ -1,204 +0,0 @@ -From 9293031eee2e795d6712f1d92314be03fe6f0751 Mon Sep 17 00:00:00 2001 -From: Noriko Hosoi <nhosoi@redhat.com> -Date: Thu, 20 Feb 2014 15:31:05 -0800 -Subject: [PATCH 90/90] Ticket #47709 - package issue in 389-ds-base - -Description: Automatically generated files: Makefile.in, configure -(cherry picked from commit 99d5d3e59827c132ba2666c67f9e22bd62aaacab) ---- - Makefile.in | 65 ++++++++++++++++++++++++++++++++++++++++++------------------- - configure | 6 ++++++ - 2 files changed, 51 insertions(+), 20 deletions(-) - -diff --git a/Makefile.in b/Makefile.in -index d90f130..21d9dc5 100644 ---- a/Makefile.in -+++ b/Makefile.in -@@ -144,9 +144,9 @@ am__installdirs = "$(DESTDIR)$(serverdir)" \ - "$(DESTDIR)$(initconfigdir)" "$(DESTDIR)$(mibdir)" \ - "$(DESTDIR)$(propertydir)" "$(DESTDIR)$(perldir)" \ - "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(propertydir)" \ -- "$(DESTDIR)$(sampledatadir)" "$(DESTDIR)$(schemadir)" \ -- "$(DESTDIR)$(systemdsystemunitdir)" "$(DESTDIR)$(updatedir)" \ -- "$(DESTDIR)$(serverincdir)" -+ "$(DESTDIR)$(pythondir)" "$(DESTDIR)$(sampledatadir)" \ -+ "$(DESTDIR)$(schemadir)" "$(DESTDIR)$(systemdsystemunitdir)" \ -+ "$(DESTDIR)$(updatedir)" "$(DESTDIR)$(serverincdir)" - LTLIBRARIES = $(server_LTLIBRARIES) $(serverplugin_LTLIBRARIES) - am__DEPENDENCIES_1 = - libacctpolicy_plugin_la_DEPENDENCIES = libslapd.la \ -@@ -1104,8 +1104,8 @@ NROFF = nroff - MANS = $(dist_man_MANS) - DATA = $(config_DATA) $(inf_DATA) $(initconfig_DATA) $(mib_DATA) \ - $(nodist_property_DATA) $(perl_DATA) $(pkgconfig_DATA) \ -- $(property_DATA) $(sampledata_DATA) $(schema_DATA) \ -- $(systemdsystemunit_DATA) $(update_DATA) -+ $(property_DATA) $(python_DATA) $(sampledata_DATA) \ -+ $(schema_DATA) $(systemdsystemunit_DATA) $(update_DATA) - HEADERS = $(serverinc_HEADERS) - ETAGS = etags - CTAGS = ctags -@@ -1314,6 +1314,7 @@ prefix = @prefix@ - program_transform_name = @program_transform_name@ - propertydir = $(datadir)@propertydir@ - psdir = @psdir@ -+pythondir = $(libdir)@pythondir@ - sampledatadir = $(datadir)@sampledatadir@ - sasl_inc = @sasl_inc@ - sasl_lib = @sasl_lib@ -@@ -1519,9 +1520,7 @@ config_DATA = $(srcdir)/lib/ldaputil/certmap.conf \ - # with the default schema e.g. there is - # considerable overlap of 60changelog.ldif and 01common.ldif - # and 60inetmail.ldif and 50ns-mail.ldif among others --sampledata_DATA = ldap/admin/src/scripts/failedbinds.py \ -- ldap/admin/src/scripts/DSSharedLib \ -- ldap/admin/src/scripts/logregex.py \ -+sampledata_DATA = ldap/admin/src/scripts/DSSharedLib \ - $(srcdir)/ldap/ldif/Ace.ldif \ - $(srcdir)/ldap/ldif/European.ldif \ - $(srcdir)/ldap/ldif/Eurosuffix.ldif \ -@@ -1674,6 +1673,9 @@ perl_DATA = ldap/admin/src/scripts/SetupLog.pm \ - ldap/admin/src/scripts/DSUpdate.pm \ - ldap/admin/src/scripts/DSUpdateDialogs.pm - -+python_DATA = ldap/admin/src/scripts/failedbinds.py \ -+ ldap/admin/src/scripts/logregex.py -+ - property_DATA = ldap/admin/src/scripts/setup-ds.res \ - ldap/admin/src/scripts/migrate-ds.res - -@@ -9547,6 +9549,27 @@ uninstall-propertyDATA: - @list='$(property_DATA)'; test -n "$(propertydir)" || list=; \ - files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(propertydir)'; $(am__uninstall_files_from_dir) -+install-pythonDATA: $(python_DATA) -+ @$(NORMAL_INSTALL) -+ @list='$(python_DATA)'; test -n "$(pythondir)" || list=; \ -+ if test -n "$$list"; then \ -+ echo " $(MKDIR_P) '$(DESTDIR)$(pythondir)'"; \ -+ $(MKDIR_P) "$(DESTDIR)$(pythondir)" || exit 1; \ -+ fi; \ -+ for p in $$list; do \ -+ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ -+ echo "$$d$$p"; \ -+ done | $(am__base_list) | \ -+ while read files; do \ -+ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pythondir)'"; \ -+ $(INSTALL_DATA) $$files "$(DESTDIR)$(pythondir)" || exit $$?; \ -+ done -+ -+uninstall-pythonDATA: -+ @$(NORMAL_UNINSTALL) -+ @list='$(python_DATA)'; test -n "$(pythondir)" || list=; \ -+ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ -+ dir='$(DESTDIR)$(pythondir)'; $(am__uninstall_files_from_dir) - install-sampledataDATA: $(sampledata_DATA) - @$(NORMAL_INSTALL) - @list='$(sampledata_DATA)'; test -n "$(sampledatadir)" || list=; \ -@@ -9903,7 +9926,7 @@ check: $(BUILT_SOURCES) - all-am: Makefile $(LIBRARIES) $(LTLIBRARIES) $(PROGRAMS) $(SCRIPTS) \ - $(MANS) $(DATA) $(HEADERS) config.h - installdirs: -- for dir in "$(DESTDIR)$(serverdir)" "$(DESTDIR)$(serverplugindir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(sbindir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(initdir)" "$(DESTDIR)$(sbindir)" "$(DESTDIR)$(taskdir)" "$(DESTDIR)$(updatedir)" "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(man8dir)" "$(DESTDIR)$(configdir)" "$(DESTDIR)$(infdir)" "$(DESTDIR)$(initconfigdir)" "$(DESTDIR)$(mibdir)" "$(DESTDIR)$(propertydir)" "$(DESTDIR)$(perldir)" "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(propertydir)" "$(DESTDIR)$(sampledatadir)" "$(DESTDIR)$(schemadir)" "$(DESTDIR)$(systemdsystemunitdir)" "$(DESTDIR)$(updatedir)" "$(DESTDIR)$(serverincdir)"; do \ -+ for dir in "$(DESTDIR)$(serverdir)" "$(DESTDIR)$(serverplugindir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(sbindir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(initdir)" "$(DESTDIR)$(sbindir)" "$(DESTDIR)$(taskdir)" "$(DESTDIR)$(updatedir)" "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(man8dir)" "$(DESTDIR)$(configdir)" "$(DESTDIR)$(infdir)" "$(DESTDIR)$(initconfigdir)" "$(DESTDIR)$(mibdir)" "$(DESTDIR)$(propertydir)" "$(DESTDIR)$(perldir)" "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(propertydir)" "$(DESTDIR)$(pythondir)" "$(DESTDIR)$(sampledatadir)" "$(DESTDIR)$(schemadir)" "$(DESTDIR)$(systemdsystemunitdir)" "$(DESTDIR)$(updatedir)" "$(DESTDIR)$(serverincdir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done - install: $(BUILT_SOURCES) -@@ -10058,7 +10081,7 @@ info-am: - install-data-am: install-configDATA install-infDATA \ - install-initSCRIPTS install-initconfigDATA install-man \ - install-mibDATA install-nodist_propertyDATA install-perlDATA \ -- install-pkgconfigDATA install-propertyDATA \ -+ install-pkgconfigDATA install-propertyDATA install-pythonDATA \ - install-sampledataDATA install-schemaDATA \ - install-serverLTLIBRARIES install-serverincHEADERS \ - install-serverpluginLTLIBRARIES install-systemdsystemunitDATA \ -@@ -10116,10 +10139,10 @@ uninstall-am: uninstall-binPROGRAMS uninstall-binSCRIPTS \ - uninstall-initconfigDATA uninstall-man uninstall-mibDATA \ - uninstall-nodist_propertyDATA uninstall-perlDATA \ - uninstall-pkgconfigDATA uninstall-propertyDATA \ -- uninstall-sampledataDATA uninstall-sbinPROGRAMS \ -- uninstall-sbinSCRIPTS uninstall-schemaDATA \ -- uninstall-serverLTLIBRARIES uninstall-serverincHEADERS \ -- uninstall-serverpluginLTLIBRARIES \ -+ uninstall-pythonDATA uninstall-sampledataDATA \ -+ uninstall-sbinPROGRAMS uninstall-sbinSCRIPTS \ -+ uninstall-schemaDATA uninstall-serverLTLIBRARIES \ -+ uninstall-serverincHEADERS uninstall-serverpluginLTLIBRARIES \ - uninstall-systemdsystemunitDATA uninstall-taskSCRIPTS \ - uninstall-updateDATA uninstall-updateSCRIPTS - -@@ -10145,8 +10168,9 @@ uninstall-man: uninstall-man1 uninstall-man8 - install-man1 install-man8 install-mibDATA \ - install-nodist_propertyDATA install-pdf install-pdf-am \ - install-perlDATA install-pkgconfigDATA install-propertyDATA \ -- install-ps install-ps-am install-sampledataDATA \ -- install-sbinPROGRAMS install-sbinSCRIPTS install-schemaDATA \ -+ install-ps install-ps-am install-pythonDATA \ -+ install-sampledataDATA install-sbinPROGRAMS \ -+ install-sbinSCRIPTS install-schemaDATA \ - install-serverLTLIBRARIES install-serverincHEADERS \ - install-serverpluginLTLIBRARIES install-strip \ - install-systemdsystemunitDATA install-taskSCRIPTS \ -@@ -10160,15 +10184,16 @@ uninstall-man: uninstall-man1 uninstall-man8 - uninstall-man1 uninstall-man8 uninstall-mibDATA \ - uninstall-nodist_propertyDATA uninstall-perlDATA \ - uninstall-pkgconfigDATA uninstall-propertyDATA \ -- uninstall-sampledataDATA uninstall-sbinPROGRAMS \ -- uninstall-sbinSCRIPTS uninstall-schemaDATA \ -- uninstall-serverLTLIBRARIES uninstall-serverincHEADERS \ -- uninstall-serverpluginLTLIBRARIES \ -+ uninstall-pythonDATA uninstall-sampledataDATA \ -+ uninstall-sbinPROGRAMS uninstall-sbinSCRIPTS \ -+ uninstall-schemaDATA uninstall-serverLTLIBRARIES \ -+ uninstall-serverincHEADERS uninstall-serverpluginLTLIBRARIES \ - uninstall-systemdsystemunitDATA uninstall-taskSCRIPTS \ - uninstall-updateDATA uninstall-updateSCRIPTS - - - clean-local: -+ -rm -rf dist - -rm -rf selinux-built - - dberrstrs.h: Makefile -diff --git a/configure b/configure -index 22cc78f..fd1bfb6 100755 ---- a/configure -+++ b/configure -@@ -720,6 +720,7 @@ defaultuser - updatedir - mibdir - infdir -+pythondir - perldir - scripttemplatedir - serverplugindir -@@ -17934,6 +17935,8 @@ if test "$with_fhs_opt" = "yes"; then - propertydir=/properties - # relative to libdir - perldir=/perl -+ # relative to libdir -+ pythondir=/python - else - if test "$with_fhs" = "yes"; then - ac_default_prefix=/usr -@@ -17963,6 +17966,8 @@ else - propertydir=/$PACKAGE_NAME/properties - # relative to libdir - perldir=/$PACKAGE_NAME/perl -+ # relative to libdir -+ pythondir=/$PACKAGE_NAME/python - fi - - # if mandir is the default value, override it -@@ -18216,6 +18221,7 @@ fi - - - -+ - # check for --with-instconfigdir - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for --with-instconfigdir" >&5 - $as_echo_n "checking for --with-instconfigdir... " >&6; } --- -1.8.1.4 - diff --git a/SOURCES/0091-Ticket-408-create-a-normalized-dn-cache.patch b/SOURCES/0091-Ticket-408-create-a-normalized-dn-cache.patch deleted file mode 100644 index 88da6e6..0000000 --- a/SOURCES/0091-Ticket-408-create-a-normalized-dn-cache.patch +++ /dev/null @@ -1,35 +0,0 @@ -From 515c57545df1958f90571461e6a1109e5c40522d Mon Sep 17 00:00:00 2001 -From: Noriko Hosoi <nhosoi@redhat.com> -Date: Tue, 25 Feb 2014 14:33:48 -0800 -Subject: [PATCH 91/92] Ticket 408 - create a normalized dn cache - -covscan Defect type: FORWARD_NULL -15. 389-ds-base-1.3.1.6/ldap/servers/slapd/dn.c:3036:var_deref_op - - Dereferencing null pointer "node". -Introduced by commit 1d6dd39fb8b0ef8eb42ec9ef8c3d325e27a3d3c1 -Fix: Check if "node" is null or not before referencing. - -Reviewed by rmeggins@redhat.com (Thank you, Rich!!) -(cherry picked from commit 5ac08038a05877b4240755801debd5e5a3a94c6f) -(cherry picked from commit 977c1b293beb0e8324a99614705ba316d46352f8) -(cherry picked from commit 056d390f9ee97f02447ae802deb388ec41bf6925) ---- - ldap/servers/slapd/dn.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/ldap/servers/slapd/dn.c b/ldap/servers/slapd/dn.c -index 1eab631..4a11a18 100644 ---- a/ldap/servers/slapd/dn.c -+++ b/ldap/servers/slapd/dn.c -@@ -3003,7 +3003,7 @@ ndn_cache_flush() - int i; - - node = ndn_cache->tail; -- for(i = 0; i < NDN_FLUSH_COUNT && ndn_cache->cache_count > NDN_MIN_COUNT; i++){ -+ for(i = 0; node && i < NDN_FLUSH_COUNT && ndn_cache->cache_count > NDN_MIN_COUNT; i++){ - flush_node = node; - /* update the lru */ - next = node->prev; --- -1.8.1.4 - diff --git a/SOURCES/0092-Ticket-571-dup-47361-Empty-control-list-causes-LDAP-.patch b/SOURCES/0092-Ticket-571-dup-47361-Empty-control-list-causes-LDAP-.patch deleted file mode 100644 index 0aad61a..0000000 --- a/SOURCES/0092-Ticket-571-dup-47361-Empty-control-list-causes-LDAP-.patch +++ /dev/null @@ -1,39 +0,0 @@ -From c5950ffa10303383596ea7611844185901d74e2f Mon Sep 17 00:00:00 2001 -From: Noriko Hosoi <nhosoi@redhat.com> -Date: Tue, 25 Feb 2014 15:09:34 -0800 -Subject: [PATCH 92/92] Ticket 571 (dup 47361) - Empty control list causes LDAP - protocol error is thrown - -covscan Defect type: Compiler Warnings -2. 389-ds-base-1.3.1.6/ldap/servers/slapd/control.c:364:25: - warning - format '%d' expects argument of type 'int', - but argument 4 has type 'PRUint64' [-Wformat=] -Introduced by commit d695afb6a637432e880296d8552f466981c0796c -Fix: Replaced %d with % NSPRIu64 - -Reviewed by rmeggins@redhat.com (Thank you, Rich!!) -(cherry picked from commit 383db4a27cc417c1708989d84cf0e4445936ae9f) -(cherry picked from commit 8b92149bf229d12052a2f349611e5f639fc57ef8) -(cherry picked from commit 86b76ef2466659efd31b07bc02b02daf444a9cde) ---- - ldap/servers/slapd/control.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/ldap/servers/slapd/control.c b/ldap/servers/slapd/control.c -index e614d50..1229e9f 100644 ---- a/ldap/servers/slapd/control.c -+++ b/ldap/servers/slapd/control.c -@@ -360,8 +360,8 @@ get_ldapmessage_controls_ext( - slapi_pblock_set(pb, SLAPI_REQCONTROLS, NULL); - slapi_pblock_set(pb, SLAPI_MANAGEDSAIT, &ctrl_not_found); - slapi_pblock_set(pb, SLAPI_PWPOLICY, &ctrl_not_found); -- slapi_log_error(SLAPI_LOG_CONNS, "connection", "Warning: conn=%d op=%d contains an empty list of controls\n", -- pb->pb_conn->c_connid, pb->pb_op->o_opid); -+ slapi_log_error(SLAPI_LOG_CONNS, "connection", "Warning: conn=%" NSPRIu64 " op=%d contains an empty list of controls\n", -+ (long long unsigned int)pb->pb_conn->c_connid, pb->pb_op->o_opid); - } else { - if ((tag != LBER_END_OF_SEQORSET) && (len != -1)) { - goto free_and_return; --- -1.8.1.4 - diff --git a/SOURCES/0093-Ticket-408-create-a-normalized-dn-cache.patch b/SOURCES/0093-Ticket-408-create-a-normalized-dn-cache.patch deleted file mode 100644 index 2c78087..0000000 --- a/SOURCES/0093-Ticket-408-create-a-normalized-dn-cache.patch +++ /dev/null @@ -1,35 +0,0 @@ -From 6cf6bea5372a57ffeee304c601e665f13861353c Mon Sep 17 00:00:00 2001 -From: Noriko Hosoi <nhosoi@redhat.com> -Date: Tue, 25 Feb 2014 16:54:22 -0800 -Subject: [PATCH] Ticket 408 - create a normalized dn cache - -covscan Defect type: FORWARD_NULL -15. 389-ds-base-1.3.1.6/ldap/servers/slapd/dn.c:3036:var_deref_op - - Dereferencing null pointer "node". -Introduced by commit 1d6dd39fb8b0ef8eb42ec9ef8c3d325e27a3d3c1 -Fix: Check if "node" is null or not before referencing. -Note: Found second FORWARD_NULL in addition to - commit 5ac08038a05877b4240755801debd5e5a3a94c6f, -(cherry picked from commit ea13cda8f49646be8a9a5e468b2819bd2d91ca87) -(cherry picked from commit dfa36fd4a7ab243a5692e7792d19e67e63b1e397) -(cherry picked from commit 347ffb722f7d376e0ad2c565ada533f0dad3cfb8) ---- - ldap/servers/slapd/dn.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/ldap/servers/slapd/dn.c b/ldap/servers/slapd/dn.c -index 4a11a18..003e9b7 100644 ---- a/ldap/servers/slapd/dn.c -+++ b/ldap/servers/slapd/dn.c -@@ -3030,7 +3030,7 @@ ndn_cache_free() - } - - node = ndn_cache->tail; -- while(ndn_cache->cache_count){ -+ while(node && ndn_cache->cache_count){ - flush_node = node; - /* update the lru */ - next = node->prev; --- -1.8.1.4 - diff --git a/SOURCES/0094-Ticket-47735-e_uniqueid-fails-to-set-if-an-entry-is-.patch b/SOURCES/0094-Ticket-47735-e_uniqueid-fails-to-set-if-an-entry-is-.patch deleted file mode 100644 index 9eca655..0000000 --- a/SOURCES/0094-Ticket-47735-e_uniqueid-fails-to-set-if-an-entry-is-.patch +++ /dev/null @@ -1,158 +0,0 @@ -From e2b8468f459647261812f542485f3481d39bd26c Mon Sep 17 00:00:00 2001 -From: Noriko Hosoi <nhosoi@redhat.com> -Date: Fri, 7 Mar 2014 12:29:55 -0800 -Subject: [PATCH] Ticket #47735 - e_uniqueid fails to set if an entry is a - conflict entry - -Bug Description: -When an entry is turned to be a conflict entry, its nsUniqueId has -a mdcsn info as a subtype like this: - nsUniqueId;mdcsn-5319136f000200010000: c5e0d787-a58f11e3-b7f9dfd1-acc3d5e4 -In this case, the attribute type is assigned to the berval "type" -as follows: - type.bv_val = "nsUniqueId;mdcsn-5319136f000200010000" - type.bv_len = 37 -The subtyped stateinfo is processed in str2entry_state_information_from_type, -which modifies type.bv_val to "nsUniqueId", but type.bv_len remains 37. -str2entry_fast has this logic to set e_uniqueid, where the nsUniqueId -with stateinfo fails to set the value to e_uniqueid. - if ( type.bv_len == 10 && - PL_strncasecmp (type.bv_val, "nsUniqueId", type.bv_len) == 0 ){ - -Fix Description: This patch resets the length of the type with the -basetype length 10 before the if expression is called for setting -e_uniqueid. - -https://fedorahosted.org/389/ticket/47735 - -Reviewed by rmeggins@redhat.com (Thank you, Rich!!) -(cherry picked from commit 07bd2259cc45c9d5c193b15faaf0d0c60e1b723c) -(cherry picked from commit 6e0ffbe1bdde99cfd71a5617d89482eef4696c7f) -(cherry picked from commit d4350bd0724c37040a4aaf361a10918c925b7605) ---- - ldap/servers/slapd/entry.c | 60 +++++++++++++++++++++++++++------------------- - 1 file changed, 36 insertions(+), 24 deletions(-) - -diff --git a/ldap/servers/slapd/entry.c b/ldap/servers/slapd/entry.c -index 60e1dfe..0d018a9 100644 ---- a/ldap/servers/slapd/entry.c -+++ b/ldap/servers/slapd/entry.c -@@ -95,10 +95,22 @@ struct attrs_in_extension attrs_in_extension[] = - /* - * WARNING: s gets butchered... the base type remains. - */ --void --str2entry_state_information_from_type(char *s,CSNSet **csnset,CSN **attributedeletioncsn,CSN **maxcsn,int *value_state,int *attr_state) -+static void -+str2entry_state_information_from_type(struct berval *atype, -+ CSNSet **csnset, -+ CSN **attributedeletioncsn, -+ CSN **maxcsn, -+ int *value_state, -+ int *attr_state) - { -- char *p= strchr(s, ';'); -+ char *p = NULL; -+ if ((NULL == atype) || (NULL == atype->bv_val)) { -+ return; -+ } -+ p = PL_strchr(atype->bv_val, ';'); -+ if (p) { -+ atype->bv_len = p - atype->bv_val; -+ } - *value_state= VALUE_PRESENT; - *attr_state= ATTRIBUTE_PRESENT; - while(p!=NULL) -@@ -243,19 +255,20 @@ str2entry_fast( const char *rawdn, const Slapi_RDN *srdn, char *s, int flags, in - } - - if ( slapi_ldif_parse_line( s, &type, &value, &freeval ) < 0 ) { -- LDAPDebug( LDAP_DEBUG_TRACE, -- "<= str2entry_fast NULL (parse_line)\n", 0, 0, 0 ); -+ LDAPDebug0Args(LDAP_DEBUG_TRACE, "<= str2entry_fast NULL (parse_line)\n"); - continue; - } - - /* - * Extract the attribute and value CSNs from the attribute type. -- */ -+ */ - csn_free(&attributedeletioncsn); /* JCM - Do this more efficiently */ - csnset_free(&valuecsnset); - value_state= VALUE_NOTFOUND; - attr_state= ATTRIBUTE_NOTFOUND; -- str2entry_state_information_from_type(type.bv_val,&valuecsnset,&attributedeletioncsn,&maxcsn,&value_state,&attr_state); -+ str2entry_state_information_from_type(&type, -+ &valuecsnset, &attributedeletioncsn, -+ &maxcsn, &value_state, &attr_state); - if(!read_stateinfo) - { - /* We are not maintaining state information */ -@@ -393,8 +406,7 @@ str2entry_fast( const char *rawdn, const Slapi_RDN *srdn, char *s, int flags, in - } - - /* retrieve uniqueid */ -- if ( type.bv_len == SLAPI_ATTR_UNIQUEID_LENGTH && PL_strncasecmp (type.bv_val, SLAPI_ATTR_UNIQUEID, type.bv_len) == 0 ){ -- -+ if ((type.bv_len == SLAPI_ATTR_UNIQUEID_LENGTH) && (PL_strcasecmp (type.bv_val, SLAPI_ATTR_UNIQUEID) == 0)) { - if (e->e_uniqueid != NULL){ - LDAPDebug (LDAP_DEBUG_TRACE, - "str2entry_fast: entry has multiple uniqueids %s " -@@ -752,22 +764,21 @@ str2entry_dupcheck( const char *rawdn, char *s, int flags, int read_stateinfo ) - char *valuecharptr=NULL; - struct berval bvvalue; - int rc; -- entry_attrs *ea = NULL; -- int tree_attr_checking = 0; -- int big_entry_attr_presence_check = 0; -- int check_for_duplicate_values = -- ( 0 != ( flags & SLAPI_STR2ENTRY_REMOVEDUPVALS )); -- Slapi_Value *value = 0; -- CSN *attributedeletioncsn= NULL; -- CSNSet *valuecsnset= NULL; -- CSN *maxcsn= NULL; -- char *normdn = NULL; -- int strict = 0; -+ entry_attrs *ea = NULL; -+ int tree_attr_checking = 0; -+ int big_entry_attr_presence_check = 0; -+ int check_for_duplicate_values = ( 0 != ( flags & SLAPI_STR2ENTRY_REMOVEDUPVALS )); -+ Slapi_Value *value = 0; -+ CSN *attributedeletioncsn= NULL; -+ CSNSet *valuecsnset= NULL; -+ CSN *maxcsn= NULL; -+ char *normdn = NULL; -+ int strict = 0; - - /* Check if we should be performing strict validation. */ - strict = config_get_dn_validate_strict(); - -- LDAPDebug( LDAP_DEBUG_TRACE, "=> str2entry_dupcheck\n", 0, 0, 0 ); -+ LDAPDebug0Args(LDAP_DEBUG_TRACE, "=> str2entry_dupcheck\n"); - - e = slapi_entry_alloc(); - slapi_entry_init(e,NULL,NULL); -@@ -808,7 +819,9 @@ str2entry_dupcheck( const char *rawdn, char *s, int flags, int read_stateinfo ) - csnset_free(&valuecsnset); - value_state= VALUE_NOTFOUND; - attr_state= VALUE_NOTFOUND; -- str2entry_state_information_from_type(type,&valuecsnset,&attributedeletioncsn,&maxcsn,&value_state,&attr_state); -+ str2entry_state_information_from_type(&bvtype, -+ &valuecsnset, &attributedeletioncsn, -+ &maxcsn, &value_state, &attr_state); - if(!read_stateinfo) - { - /* We are not maintaining state information */ -@@ -916,8 +929,7 @@ str2entry_dupcheck( const char *rawdn, char *s, int flags, int read_stateinfo ) - } - - /* retrieve uniqueid */ -- if ( strcasecmp (type, SLAPI_ATTR_UNIQUEID) == 0 ){ -- -+ if ((bvtype.bv_len == SLAPI_ATTR_UNIQUEID_LENGTH) && (PL_strcasecmp (type, SLAPI_ATTR_UNIQUEID) == 0)) { - if (e->e_uniqueid != NULL){ - LDAPDebug (LDAP_DEBUG_TRACE, - "str2entry_dupcheck: entry has multiple uniqueids %s " --- -1.8.1.4 - diff --git a/SOURCES/0095-Ticket-47739-directory-server-is-insecurely-misinter.patch b/SOURCES/0095-Ticket-47739-directory-server-is-insecurely-misinter.patch deleted file mode 100644 index 0d649a3..0000000 --- a/SOURCES/0095-Ticket-47739-directory-server-is-insecurely-misinter.patch +++ /dev/null @@ -1,75 +0,0 @@ -From 8a368a62ea22127f95017467a044df57937ed238 Mon Sep 17 00:00:00 2001 -From: Noriko Hosoi <nhosoi@redhat.com> -Date: Mon, 10 Mar 2014 16:12:08 -0700 -Subject: [PATCH] Ticket #47739 - directory server is insecurely - misinterpreting authzid on a SASL/GSSAPI bind - -Description: SASL_CB_PROXY_POLICY callback is not needed since we -don't support the case authid and authzid do not match. This patch -gets rid of the callback function ids_sasl_proxy_policy. - -https://fedorahosted.org/389/ticket/47739 - -Reviewed by nkinder@redhat.com (Thank you, Nathan!!) -(cherry picked from commit 76acff12a86110d4165f94e2cba13ef5c7ebc38a) -(cherry picked from commit 9bc2b46b7c7ee4c975d04b041f73a5992906b07c) -(cherry picked from commit d2063c889feeba122e12f152e2e2c98aed4eb442) -(cherry picked from commit 614d72196e696395d5bc0a6d62f8be9d4ee41c5b) ---- - ldap/servers/slapd/saslbind.c | 33 --------------------------------- - 1 file changed, 33 deletions(-) - -diff --git a/ldap/servers/slapd/saslbind.c b/ldap/servers/slapd/saslbind.c -index 96b1f8c..b405c46 100644 ---- a/ldap/servers/slapd/saslbind.c -+++ b/ldap/servers/slapd/saslbind.c -@@ -229,34 +229,6 @@ static int ids_sasl_log( - return SASL_OK; - } - --static int ids_sasl_proxy_policy( -- sasl_conn_t *conn, -- void *context, -- const char *requested_user, int rlen, -- const char *auth_identity, int alen, -- const char *def_realm, int urlen, -- struct propctx *propctx --) --{ -- int retVal = SASL_OK; -- /* do not permit sasl proxy authorization */ -- /* if the auth_identity is null or empty string, allow the sasl request to go thru */ -- if ( (auth_identity != NULL ) && ( strlen(auth_identity) > 0 ) ) { -- Slapi_DN authId , reqUser; -- slapi_sdn_init_dn_byref(&authId,auth_identity); -- slapi_sdn_init_dn_byref(&reqUser,requested_user); -- if (slapi_sdn_compare((const Slapi_DN *)&reqUser,(const Slapi_DN *) &authId) != 0) { -- LDAPDebug(LDAP_DEBUG_TRACE, -- "sasl proxy auth not permitted authid=%s user=%s\n", -- auth_identity, requested_user, 0); -- retVal = SASL_NOAUTHZ; -- } -- slapi_sdn_done(&authId); -- slapi_sdn_done(&reqUser); -- } -- return retVal; --} -- - static void ids_sasl_user_search( - char *basedn, - int scope, -@@ -575,11 +547,6 @@ static sasl_callback_t ids_sasl_callbacks[] = - NULL - }, - { -- SASL_CB_PROXY_POLICY, -- (IFP) ids_sasl_proxy_policy, -- NULL -- }, -- { - SASL_CB_CANON_USER, - (IFP) ids_sasl_canon_user, - NULL --- -1.8.1.4 - diff --git a/SOURCES/0096-Ticket-47735-e_uniqueid-fails-to-set-if-an-entry-is-.patch b/SOURCES/0096-Ticket-47735-e_uniqueid-fails-to-set-if-an-entry-is-.patch deleted file mode 100644 index 45abf61..0000000 --- a/SOURCES/0096-Ticket-47735-e_uniqueid-fails-to-set-if-an-entry-is-.patch +++ /dev/null @@ -1,78 +0,0 @@ -From a0489deaa9b3f72dca120f3b1622039f92a3e437 Mon Sep 17 00:00:00 2001 -From: Noriko Hosoi <nhosoi@redhat.com> -Date: Thu, 13 Mar 2014 13:06:43 -0700 -Subject: [PATCH] Ticket #47735 - e_uniqueid fails to set if an entry is a - conflict entry - -Description: In commit e2b8468f459647261812f542485f3481d39bd26c, -to get the base type length when a state info is stripped from -the attribute type, the fix in str2entry_state_information_from_type -blindly returned the base type length for the ordinary sub-typed -attributes. This patch fixes it so that only when the state info -is removed, the length is reset. - -https://fedorahosted.org/389/ticket/47735 - -Reviewed by rmeggins@redhat.com (Thank you, Rich!!) -(cherry picked from commit a7ac181d60b1f2ecd3640d0b610eba300b7c3cdb) -(cherry picked from commit 4ffa8247ab9dcc45137f07511d62ea33c24f76df) -(cherry picked from commit 093a146853e6bb44b08c36a1da22735633adbd4a) -(cherry picked from commit 2bb0f1b2b9b1c69118d8c8db1c5426eb7d7690ea) ---- - ldap/servers/slapd/entry.c | 16 +++++++++++++--- - 1 file changed, 13 insertions(+), 3 deletions(-) - -diff --git a/ldap/servers/slapd/entry.c b/ldap/servers/slapd/entry.c -index 0d018a9..5306da2 100644 ---- a/ldap/servers/slapd/entry.c -+++ b/ldap/servers/slapd/entry.c -@@ -104,13 +104,11 @@ str2entry_state_information_from_type(struct berval *atype, - int *attr_state) - { - char *p = NULL; -+ char *semicolonp = NULL; - if ((NULL == atype) || (NULL == atype->bv_val)) { - return; - } - p = PL_strchr(atype->bv_val, ';'); -- if (p) { -- atype->bv_len = p - atype->bv_val; -- } - *value_state= VALUE_PRESENT; - *attr_state= ATTRIBUTE_PRESENT; - while(p!=NULL) -@@ -169,19 +167,31 @@ str2entry_state_information_from_type(struct berval *atype, - csn_init_by_csn ( *maxcsn, *attributedeletioncsn ); - } - } -+ if (NULL == semicolonp) { -+ semicolonp = p; /* the first semicolon */ -+ } - } - else if(strncmp(p+1,"deletedattribute", 16)==0) - { - p[0]='\0'; - *attr_state= ATTRIBUTE_DELETED; -+ if (NULL == semicolonp) { -+ semicolonp = p; /* the first semicolon */ -+ } - } - else if(strncmp(p+1,"deleted", 7)==0) - { - p[0]='\0'; - *value_state= VALUE_DELETED; -+ if (NULL == semicolonp) { -+ semicolonp = p; /* the first semicolon */ -+ } - } - p= strchr(p+1, ';'); - } -+ if (semicolonp) { -+ atype->bv_len = semicolonp - atype->bv_val; -+ } - } - - /* rawdn is not consumed. Caller needs to free it. */ --- -1.8.1.4 - diff --git a/SOURCES/0097-Ticket-47759-Crash-in-replication-when-server-is-und.patch b/SOURCES/0097-Ticket-47759-Crash-in-replication-when-server-is-und.patch deleted file mode 100644 index a9e4d92..0000000 --- a/SOURCES/0097-Ticket-47759-Crash-in-replication-when-server-is-und.patch +++ /dev/null @@ -1,474 +0,0 @@ -From 5b6deac35adbae20d0821a4530d30f0908ad7478 Mon Sep 17 00:00:00 2001 -From: Mark Reynolds <mreynolds@redhat.com> -Date: Mon, 31 Mar 2014 15:17:59 -0400 -Subject: [PATCH] Ticket 47759 - Crash in replication when server is under - write load - -Bug Description: When the server is under alot of load, a race condition allows - a replication connection LDAP struct to be freed(unbind) while - it is being used by another thread. This leads to a crash. - -Fix Description: Extend the connection lock to also cover ldap client interaction - (e.g. conn->ld struct). - -https://fedorahosted.org/389/ticket/47759 - -Reviewed by: nhosoi & rmeggins(Thanks!!) -(cherry picked from commit 9940ca29ca258891c52640a23adc2851afe59d0e) -(cherry picked from commit 0e576c85c34826c4d63d9578db55f8179b4a1a60) -(cherry picked from commit 2a80b7152823ca16628c2da48614166b8d2104a4) ---- - .../servers/plugins/replication/repl5_connection.c | 89 ++++++++++++---------- - ldap/servers/slapd/ldaputil.c | 39 +++++----- - 2 files changed, 69 insertions(+), 59 deletions(-) - -diff --git a/ldap/servers/plugins/replication/repl5_connection.c b/ldap/servers/plugins/replication/repl5_connection.c -index 668abda..17d1d9c 100644 ---- a/ldap/servers/plugins/replication/repl5_connection.c -+++ b/ldap/servers/plugins/replication/repl5_connection.c -@@ -138,6 +138,7 @@ static void repl5_debug_timeout_callback(time_t when, void *arg); - - /* Forward declarations */ - static void close_connection_internal(Repl_Connection *conn); -+static void conn_delete_internal(Repl_Connection *conn); - - /* - * Create a new connection object. Returns a pointer to the object, or -@@ -182,11 +183,22 @@ conn_new(Repl_Agmt *agmt) - rpc->plain = NULL; - return rpc; - loser: -- conn_delete(rpc); -+ conn_delete_internal(rpc); - slapi_ch_free((void**)&rpc); - return NULL; - } - -+static PRBool -+conn_connected_locked(Repl_Connection *conn, int locked) -+{ -+ PRBool return_value; -+ -+ if(!locked) PR_Lock(conn->lock); -+ return_value = STATE_CONNECTED == conn->state; -+ if(!locked) PR_Unlock(conn->lock); -+ -+ return return_value; -+} - - /* - * Return PR_TRUE if the connection is in the connected state -@@ -194,14 +206,9 @@ loser: - static PRBool - conn_connected(Repl_Connection *conn) - { -- PRBool return_value; -- PR_Lock(conn->lock); -- return_value = STATE_CONNECTED == conn->state; -- PR_Unlock(conn->lock); -- return return_value; -+ return conn_connected_locked(conn, 1); - } - -- - /* - * Destroy a connection object. - */ -@@ -243,7 +250,6 @@ conn_delete(Repl_Connection *conn) - if (slapi_eq_cancel(conn->linger_event) == 1) - { - /* Event was found and cancelled. Destroy the connection object. */ -- PR_Unlock(conn->lock); - destroy_it = PR_TRUE; - } - else -@@ -254,16 +260,15 @@ conn_delete(Repl_Connection *conn) - * off, so arrange for the event to destroy the object . - */ - conn->delete_after_linger = PR_TRUE; -- PR_Unlock(conn->lock); - } - } - if (destroy_it) - { - conn_delete_internal(conn); - } -+ PR_Unlock(conn->lock); - } - -- - /* - * Return the last operation type processed by the connection - * object, and the LDAP error encountered. -@@ -327,17 +332,18 @@ conn_read_result_ex(Repl_Connection *conn, char **retoidp, struct berval **retda - while (!slapi_is_shutting_down()) - { - /* we have to make sure the update sending thread does not -- attempt to call conn_disconnect while we are reading -+ attempt to close connection while we are reading - results - so lock the conn while we get the results */ - PR_Lock(conn->lock); -+ - if ((STATE_CONNECTED != conn->state) || !conn->ld) { - rc = -1; - return_value = CONN_NOT_CONNECTED; - PR_Unlock(conn->lock); - break; - } -- - rc = ldap_result(conn->ld, send_msgid, 1, &local_timeout, &res); -+ - PR_Unlock(conn->lock); - - if (0 != rc) -@@ -661,8 +667,10 @@ perform_operation(Repl_Connection *conn, int optype, const char *dn, - server_controls[1] = update_control; - server_controls[2] = NULL; - -- /* lock the conn to prevent the result reader thread -- from closing the connection out from under us */ -+ /* -+ * Lock the conn to prevent the result reader thread -+ * from closing the connection out from under us. -+ */ - PR_Lock(conn->lock); - if (STATE_CONNECTED == conn->state) - { -@@ -804,7 +812,6 @@ conn_send_rename(Repl_Connection *conn, const char *dn, - NULL /* extop OID */, NULL /* extop payload */, message_id); - } - -- - /* - * Send an LDAP extended operation. - */ -@@ -818,7 +825,6 @@ conn_send_extended_operation(Repl_Connection *conn, const char *extop_oid, - update_control, extop_oid, payload, message_id); - } - -- - /* - * Synchronously read an entry and return a specific attribute's values. - * Returns CONN_OPERATION_SUCCESS if successful. Returns -@@ -838,6 +844,8 @@ conn_read_entry_attribute(Repl_Connection *conn, const char *dn, - LDAPMessage *res = NULL; - char *attrs[2]; - -+ PR_Lock(conn->lock); -+ - PR_ASSERT(NULL != type); - if (conn_connected(conn)) - { -@@ -860,7 +868,7 @@ conn_read_entry_attribute(Repl_Connection *conn, const char *dn, - } - else if (IS_DISCONNECT_ERROR(ldap_rc)) - { -- conn_disconnect(conn); -+ close_connection_internal(conn); - return_value = CONN_NOT_CONNECTED; - } - else -@@ -878,10 +886,11 @@ conn_read_entry_attribute(Repl_Connection *conn, const char *dn, - { - return_value = CONN_NOT_CONNECTED; - } -+ PR_Unlock(conn->lock); -+ - return return_value; - } - -- - /* - * Return an pointer to a string describing the connection's status. - */ -@@ -892,8 +901,6 @@ conn_get_status(Repl_Connection *conn) - return conn->status; - } - -- -- - /* - * Cancel any outstanding linger timer. Should be called when - * a replication session is beginning. -@@ -925,7 +932,6 @@ conn_cancel_linger(Repl_Connection *conn) - PR_Unlock(conn->lock); - } - -- - /* - * Called when our linger timeout timer expires. This means - * we should check to see if perhaps the connection's become -@@ -957,7 +963,6 @@ linger_timeout(time_t event_time, void *arg) - } - } - -- - /* - * Indicate that a session is ending. The linger timer starts when - * this function is called. -@@ -995,8 +1000,6 @@ conn_start_linger(Repl_Connection *conn) - PR_Unlock(conn->lock); - } - -- -- - /* - * If no connection is currently active, opens a connection and binds to - * the remote server. If a connection is open (e.g. lingering) then -@@ -1015,10 +1018,14 @@ conn_connect(Repl_Connection *conn) - ConnResult return_value = CONN_OPERATION_SUCCESS; - int pw_ret = 1; - -- /** Connection already open just return SUCCESS **/ -- if(conn->state == STATE_CONNECTED) goto done; -- - PR_Lock(conn->lock); -+ -+ /* Connection already open, just return SUCCESS */ -+ if(conn->state == STATE_CONNECTED){ -+ PR_Unlock(conn->lock); -+ return return_value; -+ } -+ - if (conn->flag_agmt_changed) { - /* So far we cannot change Hostname and Port */ - /* slapi_ch_free((void **)&conn->hostname); */ -@@ -1033,7 +1040,6 @@ conn_connect(Repl_Connection *conn) - conn->port = agmt_get_port(conn->agmt); /* port could be updated */ - slapi_ch_free((void **)&conn->plain); - } -- PR_Unlock(conn->lock); - - creds = agmt_get_credentials(conn->agmt); - -@@ -1174,6 +1180,7 @@ done: - { - close_connection_internal(conn); - } -+ PR_Unlock(conn->lock); - - return return_value; - } -@@ -1209,7 +1216,6 @@ conn_disconnect(Repl_Connection *conn) - PR_Unlock(conn->lock); - } - -- - /* - * Determine if the remote replica supports DS 5.0 replication. - * Return codes: -@@ -1226,6 +1232,7 @@ conn_replica_supports_ds5_repl(Repl_Connection *conn) - ConnResult return_value; - int ldap_rc; - -+ PR_Lock(conn->lock); - if (conn_connected(conn)) - { - if (conn->supports_ds50_repl == -1) { -@@ -1273,7 +1280,7 @@ conn_replica_supports_ds5_repl(Repl_Connection *conn) - if (IS_DISCONNECT_ERROR(ldap_rc)) - { - conn->last_ldap_error = ldap_rc; /* specific reason */ -- conn_disconnect(conn); -+ close_connection_internal(conn); - return_value = CONN_NOT_CONNECTED; - } - else -@@ -1293,10 +1300,11 @@ conn_replica_supports_ds5_repl(Repl_Connection *conn) - /* Not connected */ - return_value = CONN_NOT_CONNECTED; - } -+ PR_Unlock(conn->lock); -+ - return return_value; - } - -- - /* - * Determine if the remote replica supports DS 7.1 replication. - * Return codes: -@@ -1313,6 +1321,7 @@ conn_replica_supports_ds71_repl(Repl_Connection *conn) - ConnResult return_value; - int ldap_rc; - -+ PR_Lock(conn->lock); - if (conn_connected(conn)) - { - if (conn->supports_ds71_repl == -1) { -@@ -1344,7 +1353,7 @@ conn_replica_supports_ds71_repl(Repl_Connection *conn) - if (IS_DISCONNECT_ERROR(ldap_rc)) - { - conn->last_ldap_error = ldap_rc; /* specific reason */ -- conn_disconnect(conn); -+ close_connection_internal(conn); - return_value = CONN_NOT_CONNECTED; - } - else -@@ -1364,6 +1373,8 @@ conn_replica_supports_ds71_repl(Repl_Connection *conn) - /* Not connected */ - return_value = CONN_NOT_CONNECTED; - } -+ PR_Unlock(conn->lock); -+ - return return_value; - } - -@@ -1383,6 +1394,7 @@ conn_replica_supports_ds90_repl(Repl_Connection *conn) - ConnResult return_value; - int ldap_rc; - -+ PR_Lock(conn->lock); - if (conn_connected(conn)) - { - if (conn->supports_ds90_repl == -1) { -@@ -1414,7 +1426,7 @@ conn_replica_supports_ds90_repl(Repl_Connection *conn) - if (IS_DISCONNECT_ERROR(ldap_rc)) - { - conn->last_ldap_error = ldap_rc; /* specific reason */ -- conn_disconnect(conn); -+ close_connection_internal(conn); - return_value = CONN_NOT_CONNECTED; - } - else -@@ -1423,7 +1435,7 @@ conn_replica_supports_ds90_repl(Repl_Connection *conn) - } - } - if (NULL != res) -- ldap_msgfree(res); -+ ldap_msgfree(res); - } - else - { -@@ -1435,6 +1447,8 @@ conn_replica_supports_ds90_repl(Repl_Connection *conn) - /* Not connected */ - return_value = CONN_NOT_CONNECTED; - } -+ PR_Unlock(conn->lock); -+ - return return_value; - } - -@@ -1452,7 +1466,6 @@ conn_replica_is_readonly(Repl_Connection *conn) - } - } - -- - /* - * Return 1 if "value" is a value of attribute type "type" in entry "entry". - * Otherwise, return 0. -@@ -1501,9 +1514,6 @@ attribute_string_value_present(LDAP *ld, LDAPMessage *entry, const char *type, - return return_value; - } - -- -- -- - /* - * Read the remote server's schema entry, then read the local schema entry, - * and compare the nsschemacsn attribute. If the local csn is newer, or -@@ -1533,7 +1543,7 @@ conn_push_schema(Repl_Connection *conn, CSN **remotecsn) - return_value = CONN_OPERATION_FAILED; - slapi_log_error(SLAPI_LOG_FATAL, repl_plugin_name, "NULL remote CSN\n"); - } -- else if (!conn_connected(conn)) -+ else if (!conn_connected_locked(conn, 0 /* not locked */)) - { - return_value = CONN_NOT_CONNECTED; - slapi_log_error(SLAPI_LOG_REPL, repl_plugin_name, -@@ -1699,6 +1709,7 @@ conn_push_schema(Repl_Connection *conn, CSN **remotecsn) - { - csn_free(&localcsn); - } -+ - return return_value; - } - -diff --git a/ldap/servers/slapd/ldaputil.c b/ldap/servers/slapd/ldaputil.c -index edc8267..08601bd 100644 ---- a/ldap/servers/slapd/ldaputil.c -+++ b/ldap/servers/slapd/ldaputil.c -@@ -1011,8 +1011,8 @@ slapi_ldap_bind( - than the currently unused clientctrls */ - ldap_get_option(ld, LDAP_OPT_CLIENT_CONTROLS, &clientctrls); - if (clientctrls && clientctrls[0] && -- slapi_control_present(clientctrls, START_TLS_OID, NULL, NULL)) { -- secure = 2; -+ slapi_control_present(clientctrls, START_TLS_OID, NULL, NULL)) { -+ secure = 2; - } else { - #if defined(USE_OPENLDAP) - /* openldap doesn't have a SSL/TLS yes/no flag - so grab the -@@ -1051,12 +1051,12 @@ slapi_ldap_bind( - slapi_log_error(SLAPI_LOG_SHELL, "slapi_ldap_bind", - "Set up conn to use client auth\n"); - } -- bvcreds.bv_val = NULL; /* ignore username and passed in creds */ -- bvcreds.bv_len = 0; /* for external auth */ -- bindid = NULL; -+ bvcreds.bv_val = NULL; /* ignore username and passed in creds */ -+ bvcreds.bv_len = 0; /* for external auth */ -+ bindid = NULL; - } else { /* other type of auth */ -- bvcreds.bv_val = (char *)creds; -- bvcreds.bv_len = creds ? strlen(creds) : 0; -+ bvcreds.bv_val = (char *)creds; -+ bvcreds.bv_len = creds ? strlen(creds) : 0; - } - - if (secure == 2) { /* send start tls */ -@@ -1084,31 +1084,29 @@ slapi_ldap_bind( - bindid, creds); - if ((rc = ldap_sasl_bind(ld, bindid, mech, &bvcreds, serverctrls, - NULL /* clientctrls */, &mymsgid))) { -- char *myhostname = NULL; -- char *copy = NULL; -+ char *hostname = NULL; -+ char *host_port = NULL; - char *ptr = NULL; - int myerrno = errno; - int gaierr = 0; - -- ldap_get_option(ld, LDAP_OPT_HOST_NAME, &myhostname); -- if (myhostname) { -- ptr = strchr(myhostname, ':'); -+ ldap_get_option(ld, LDAP_OPT_HOST_NAME, &host_port); -+ if (host_port) { -+ ptr = strchr(host_port, ':'); - if (ptr) { -- copy = slapi_ch_strdup(myhostname); -- *(copy + (ptr - myhostname)) = '\0'; -- slapi_ch_free_string(&myhostname); -- myhostname = copy; -+ hostname = slapi_ch_strdup(host_port); -+ *(hostname + (ptr - host_port)) = '\0'; - } - } -- - if (0 == myerrno) { - struct addrinfo *result = NULL; -- gaierr = getaddrinfo(myhostname, NULL, NULL, &result); -+ gaierr = getaddrinfo(hostname, NULL, NULL, &result); - myerrno = errno; - if (result) { - freeaddrinfo(result); - } - } -+ - slapi_log_error(SLAPI_LOG_FATAL, "slapi_ldap_bind", - "Error: could not send bind request for id " - "[%s] authentication mechanism [%s]: error %d (%s), system error %d (%s), " -@@ -1119,8 +1117,9 @@ slapi_ldap_bind( - PR_GetError(), slapd_pr_strerror(PR_GetError()), - myerrno ? myerrno : gaierr, - myerrno ? slapd_system_strerror(myerrno) : gai_strerror(gaierr), -- myhostname ? myhostname : "unknown host"); -- slapi_ch_free_string(&myhostname); -+ host_port ? host_port : "unknown host"); -+ slapi_ch_free_string(&hostname); -+ slapi_ch_free_string(&host_port); - goto done; - } - --- -1.8.1.4 - diff --git a/SOURCES/0098-Bug-1123477-unauthenticated-information-disclosure.patch b/SOURCES/0098-Bug-1123477-unauthenticated-information-disclosure.patch deleted file mode 100644 index 5162ece..0000000 --- a/SOURCES/0098-Bug-1123477-unauthenticated-information-disclosure.patch +++ /dev/null @@ -1,103 +0,0 @@ -From 394277fdcef70078b54a280de88ab06dd289cc7a Mon Sep 17 00:00:00 2001 -From: Noriko Hosoi <nhosoi@redhat.com> -Date: Mon, 28 Jul 2014 09:42:43 -0700 -Subject: [PATCH] Bug 1123477 - unauthenticated information disclosure - -Fix Description: nscpentrywsi is returned only authenticated as root. -The bug was fixed by lkrispen@redhat.com (Ludwig Krispenz). -His patch was modified based upon this review comment. -https://bugzilla.redhat.com/show_bug.cgi?id=1123477#c2 - -https://bugzilla.redhat.com/show_bug.cgi?id=1123864 - -(cherry picked from commit aa90e26d5c4ea47b2a4a22f99cf0742cf48b3fae) ---- - ldap/servers/slapd/computed.c | 17 +++++++++++++++-- - ldap/servers/slapd/entrywsi.c | 2 +- - ldap/servers/slapd/slapi-plugin.h | 1 + - 3 files changed, 17 insertions(+), 3 deletions(-) - -diff --git a/ldap/servers/slapd/computed.c b/ldap/servers/slapd/computed.c -index 7c99b45..7a80c96 100644 ---- a/ldap/servers/slapd/computed.c -+++ b/ldap/servers/slapd/computed.c -@@ -59,6 +59,7 @@ struct _computed_attr_context { - struct _compute_evaluator { - struct _compute_evaluator *next; - slapi_compute_callback_t function; -+ int rootonly; - }; - typedef struct _compute_evaluator compute_evaluator; - -@@ -95,6 +96,13 @@ int compute_call_evaluators_nolock(computed_attr_context *c,slapi_compute_output - compute_evaluator *current = NULL; - - for (current = compute_evaluators; (current != NULL) && (-1 == rc); current = current->next) { -+ if (current->rootonly) { -+ int isroot; -+ slapi_pblock_get(c->pb, SLAPI_REQUESTOR_ISROOT, &isroot); -+ if (!isroot) { -+ continue; -+ } -+ } - rc = (*(current->function))(c,type,e,outfn); - } - return rc; -@@ -157,14 +165,19 @@ compute_stock_evaluator(computed_attr_context *c,char* type,Slapi_Entry *e,slapi - } - - static void --compute_add_evaluator_nolock(slapi_compute_callback_t function, compute_evaluator *new_eval) -+compute_add_evaluator_nolock(slapi_compute_callback_t function, compute_evaluator *new_eval, int rootonly) - { - new_eval->next = compute_evaluators; - new_eval->function = function; -+ new_eval->rootonly = rootonly; - compute_evaluators = new_eval; - } - int slapi_compute_add_evaluator(slapi_compute_callback_t function) - { -+ return slapi_compute_add_evaluator_ext(function, 0); -+} -+int slapi_compute_add_evaluator_ext(slapi_compute_callback_t function, int rootonly) -+{ - int rc = 0; - compute_evaluator *new_eval = NULL; - PR_ASSERT(NULL != function); -@@ -187,7 +200,7 @@ int slapi_compute_add_evaluator(slapi_compute_callback_t function) - slapi_rwlock_wrlock(compute_evaluators_lock); - } - -- compute_add_evaluator_nolock(function, new_eval); -+ compute_add_evaluator_nolock(function, new_eval, rootonly); - - if (need_lock) { - slapi_rwlock_unlock(compute_evaluators_lock); -diff --git a/ldap/servers/slapd/entrywsi.c b/ldap/servers/slapd/entrywsi.c -index 248a41f..0c01681 100644 ---- a/ldap/servers/slapd/entrywsi.c -+++ b/ldap/servers/slapd/entrywsi.c -@@ -898,7 +898,7 @@ entry_compute_nscpentrywsi(computed_attr_context *c,char* type,Slapi_Entry *e,sl - int - entry_computed_attr_init() - { -- slapi_compute_add_evaluator(entry_compute_nscpentrywsi); -+ slapi_compute_add_evaluator_ext(entry_compute_nscpentrywsi, 1 /* root only */); - return 0; - } - -diff --git a/ldap/servers/slapd/slapi-plugin.h b/ldap/servers/slapd/slapi-plugin.h -index d8cfe33..e1cadbc 100644 ---- a/ldap/servers/slapd/slapi-plugin.h -+++ b/ldap/servers/slapd/slapi-plugin.h -@@ -6038,6 +6038,7 @@ typedef int (*slapi_compute_output_t)(computed_attr_context *c,Slapi_Attr *a , S - typedef int (*slapi_compute_callback_t)(computed_attr_context *c,char* type,Slapi_Entry *e,slapi_compute_output_t outputfn); - typedef int (*slapi_search_rewrite_callback_t)(Slapi_PBlock *pb); - int slapi_compute_add_evaluator(slapi_compute_callback_t function); -+int slapi_compute_add_evaluator_ext(slapi_compute_callback_t function, int rootonly); - int slapi_compute_add_search_rewriter(slapi_search_rewrite_callback_t function); - int compute_rewrite_search_filter(Slapi_PBlock *pb); - --- -1.8.1.4 - diff --git a/SPECS/389-ds-base.spec b/SPECS/389-ds-base.spec index e69b32a..6ca4a58 100644 --- a/SPECS/389-ds-base.spec +++ b/SPECS/389-ds-base.spec @@ -24,8 +24,8 @@ Summary: 389 Directory Server (base) Name: 389-ds-base -Version: 1.3.1.6 -Release: %{?relprefix}26%{?prerel}%{?dist} +Version: 1.3.3.1 +Release: %{?relprefix}15%{?prerel}%{?dist} License: GPLv2 with exceptions URL: http://port389.org/ Group: System Environment/Daemons @@ -114,104 +114,68 @@ Source0: http://port389.org/sources/%{name}-%{version}%{?prerel}.tar.bz # 389-ds-git.sh should be used to generate the source tarball from git Source1: %{name}-git.sh Source2: %{name}-devel.README -Patch0: 0001-Ticket-47488-Users-from-AD-sub-OU-does-not-sync-to-I.patch -Patch1: 0002-Bug-999634-ns-slapd-crash-due-to-bogus-DN.patch -Patch2: 0003-Ticket-47500-start-dirsrv-restart-dirsrv-stop-disrv-.patch -Patch3: 0004-Ticket-47455-valgrind-value-mem-leaks-uninit-mem-usa.patch -Patch4: 0005-Ticket-47507-automember-rebuild-task-not-working-as-.patch -Patch5: 0006-Ticket-449-Allow-macro-aci-keywords-to-be-case-insen.patch -Patch6: 0007-Ticket-47489-Under-specific-values-of-nsDS5ReplicaNa.patch -Patch7: 0008-Ticket-47516-replication-stops-with-excessive-clock-.patch -Patch8: 0009-Ticket-47504-idlistscanlimit-per-index-type-value.patch -Patch9: 0010-Ticket-47504-idlistscanlimit-per-index-type-value.patch -Patch10: 0011-Ticket-47461-logconv.pl-Use-of-comma-less-variable-l.patch -Patch11: 0012-Ticket-47512-backend-txn-plugin-fixup-tasks-should-b.patch -Patch12: 0013-Coverity-fix-11952.patch -Patch13: 0014-Ticket-47509-CLEANALLRUV-doesnt-run-across-all-repli.patch -Patch14: 0015-Ticket-47509-Cleanallruv-jenkins-error.patch -Patch15: 0016-Ticket-47492-PassSync-removes-User-must-change-passw.patch -Patch16: 0017-Ticket-47513-tmpfiles.d-references-var-lock-when-the.patch -Patch17: 0018-Ticket-47523-Set-up-replcation-agreement-before-init.patch -Patch18: 0019-Ticket-47534-RUV-tombstone-search-with-scope-one-doe.patch -Patch19: 0020-Ticket-47513-Refine-the-check-for-localrundir.patch -Patch20: 0021-Ticket-47513-Set-localrundir-outside-of-the-with-fhs.patch -Patch21: 0022-Ticket-47354-Indexed-search-are-logged-with-notes-U-.patch -Patch22: 0023-Ticket-47387-improve-logconv.pl-performance-with-lar.patch -Patch23: 0024-Ticket-47387-improve-logconv.pl-performance-with-lar.patch -Patch24: 0025-Ticket-47520-Fix-various-issues-with-logconv.pl.patch -Patch25: 0026-Ticket-47501-logconv.pl-uses-var-tmp-for-BDB-temp-fi.patch -Patch26: 0027-Ticket-47533-logconv-some-stats-do-not-work-across-s.patch -Patch27: 0028-Coverity-fixes-12023-12024-and-12025.patch -Patch28: 0029-Ticket-47551-logconv-V-does-not-produce-unindexed-se.patch -Patch29: 0030-Ticket-54-locale-nl-not-supported-by-collation-plugi.patch -Patch30: 0031-Ticket-53-Need-to-update-supported-locales.patch -Patch31: 0032-Ticket-53-Need-to-update-supported-locales.patch -Patch32: 0033-Ticket-47517-memory-leak-in-range-searches-and-other.patch -Patch33: 0034-Ticket-53-Need-to-update-supported-locales.patch -Patch34: 0035-Ticket-47513-tmpfiles.d-references-var-lock-when-the.patch -Patch35: 0036-Ticket-47550-logconv-failed-logins-Use-of-uninitiali.patch -Patch36: 0037-Ticket-47329-Improve-slapi_back_transaction_begin-re.patch -Patch37: 0038-Coverity-Fixes.patch -Patch38: 0039-ticket-47550-wip.patch -Patch39: 0040-Ticket-47559-hung-server-related-to-sasl-and-initial.patch -Patch40: 0041-Ticket-47560-fixup-memberof-task-does-not-work-task-.patch -Patch41: 0042-Ticket-47379-DNA-plugin-failed-to-fetch-replication-.patch -Patch42: 0043-Ticket-47379-DNA-plugin-failed-to-fetch-replication-.patch -Patch43: 0044-Ticket-47577-crash-when-removing-entries-from-cache.patch -Patch44: 0045-Ticket-47379-DNA-plugin-failed-to-fetch-replication-.patch -Patch45: 0046-Ticket-47589-Winsync-replica-initialization-and-incr.patch -Patch46: 0047-Ticket-47585-Replication-Failures-related-to-skipped.patch -Patch47: 0048-Ticket-47581-Winsync-plugin-segfault-during-incremen.patch -Patch48: 0049-Ticket-47581-Winsync-plugin-segfault-during-incremen.patch -Patch49: 0050-Revert-Ticket-47559-hung-server-related-to-sasl-and-.patch -Patch50: 0051-Ticket-47605-CVE-2013-4485-DoS-due-to-improper-handl.patch -Patch51: 0052-Ticket-47622-Automember-betxnpreoperation-transactio.patch -Patch52: 0053-Ticket-47613-Impossible-to-configure-nsslapd-allowed.patch -Patch53: 0054-Ticket-47587-hard-coded-limit-of-64-masters-in-agree.patch -Patch54: 0055-Ticket-47597-Convert-retro-changelog-plug-in-to-betx.patch -Patch55: 0056-Ticket-47598-Convert-ldbm_back_seq-code-to-be-transa.patch -Patch56: 0057-Ticket-47599-Reduce-lock-scope-in-retro-changelog-pl.patch -Patch57: 0058-Ticket-47599-Reduce-lock-scope-in-retro-changelog-pl.patch -Patch58: 0059-Ticket-47599-fix-memory-leak.patch -Patch59: 0060-Ticket-47596-attrcrypt-fails-to-find-unlocked-key.patch -Patch60: 0061-Ticket-47596-attrcrypt-fails-to-find-unlocked-key.patch -Patch61: 0062-Ticket-47591-entries-with-empty-objectclass-attribut.patch -Patch62: 0063-Ticket-47614-Possible-to-specify-invalid-SASL-mechan.patch -Patch63: 0064-Ticket-47592-automember-plugin-task-memory-leaks.patch -Patch64: 0065-Ticket-47620-389-ds-rejects-nsds5ReplicaProtocolTime.patch -Patch65: 0066-Ticket-47613-Issues-setting-allowed-mechanisms.patch -Patch66: 0067-Ticket-47620-Fix-cherry-pick-error-for-1.3.2-and-1.3.patch -Patch67: 0068-Ticket-47620-Config-value-validation-improvement.patch -Patch68: 0069-Ticket-47620-Fix-logically-dead-code.patch -Patch69: 0070-Ticket-47620-Fix-dereferenced-NULL-pointer-in-agmtli.patch -Patch70: 0071-Ticket-47620-Fix-missing-left-bracket.patch -Patch71: 0072-Ticket-571-dup-47361-Empty-control-list-causes-LDAP-.patch -Patch72: 0073-Ticket-47606-replica-init-bulk-import-errors-should-.patch -Patch73: 0074-Ticket-47623-fix-memleak-caused-by-47347.patch -Patch74: 0075-Ticket-47623-fix-memleak-caused-by-47347.patch -Patch75: 0076-Ticket-47627-changelog-iteration-should-ignore-clean.patch -Patch76: 0077-Ticket-47627-Fix-replication-logging.patch -Patch77: 0078-Ticket-447-Possible-to-add-invalid-attribute-to-nssl.patch -Patch78: 0079-Ticket-47660-config_set_allowed_to_delete_attrs-Valg.patch -Patch79: 0080-Ticket-408-Fix-crash-when-disabling-enabling-the-set.patch -Patch80: 0081-Ticket-47620-Unable-to-delete-protocol-timeout-attri.patch -Patch81: 0082-Ticket-47516-replication-stops-with-excessive-clock-.patch -Patch82: 0083-Ticket-342-better-error-message-when-cache-overflows.patch -Patch83: 0084-Ticket-443-Deleting-attribute-present-in-nsslapd-all.patch -Patch84: 0085-Ticket-47649-Server-hangs-in-cos_cache-when-adding-a.patch -Patch85: 0086-Ticket-47374-flush.pl-is-not-included-in-perl5.patch -Patch86: 0087-Ticket-471-logconv.pl-tool-removes-the-access-logs-c.patch -Patch87: 0088-Ticket-47704-invalid-sizelimits-in-aci-group-evaluat.patch -Patch88: 0089-Ticket-47709-package-issue-in-389-ds-base.patch -Patch89: 0090-Ticket-47709-package-issue-in-389-ds-base.patch -Patch90: 0091-Ticket-408-create-a-normalized-dn-cache.patch -Patch91: 0092-Ticket-571-dup-47361-Empty-control-list-causes-LDAP-.patch -Patch92: 0093-Ticket-408-create-a-normalized-dn-cache.patch -Patch93: 0094-Ticket-47735-e_uniqueid-fails-to-set-if-an-entry-is-.patch -Patch94: 0095-Ticket-47739-directory-server-is-insecurely-misinter.patch -Patch95: 0096-Ticket-47735-e_uniqueid-fails-to-set-if-an-entry-is-.patch -Patch96: 0097-Ticket-47759-Crash-in-replication-when-server-is-und.patch -Patch97: 0098-Bug-1123477-unauthenticated-information-disclosure.patch +Patch0: 0000-Ticket-47748-Simultaneous-adding-a-user-and-binding-.patch +Patch1: 0001-Ticket-47834-Tombstone_to_glue-if-parents-are-also-c.patch +Patch2: 0002-Ticket-47890-minor-memory-leaks-in-utilities.patch +Patch3: 0003-fix-for-47885-did-not-always-return-a-response-contr.patch +Patch4: 0004-Ticket-47838-harden-the-list-of-ciphers-available-by.patch +Patch5: 0005-Ticket-47838-47895-CI-test-add-test-cases-for-ticket.patch +Patch6: 0006-Ticket-47895-If-no-effective-ciphers-are-available-d.patch +Patch7: 0007-Ticket-47889-DS-crashed-during-ipa-server-install-on.patch +Patch8: 0008-Ticket-47892-coverity-defects-found-in-1.3.3.1.patch +Patch9: 0009-Ticket-47750-Creating-a-glue-fails-if-one-above-leve.patch +Patch10: 0010-Ticket-47908-389-ds-1.3.3.0-does-not-adjust-cipher-s.patch +Patch11: 0011-Ticket-47838-harden-the-list-of-ciphers-available-by.patch +Patch12: 0012-Ticket-47838-CI-test-adjusted-test-cases-based-on-th.patch +Patch13: 0013-Ticket-47880-provide-enabled-ciphers-as-search-resul.patch +Patch14: 0014-Ticket-47880-CI-test-added-test-cases-for-ticket-478.patch +Patch15: 0015-Ticket-47892-coverity-defects-found-in-1.3.3.x.patch +Patch16: 0016-Ticket-47918-result-of-dna_dn_is_shared_config-is-in.patch +Patch17: 0017-Ticket-47892-Fix-remaining-compiler-warnings.patch +Patch18: 0018-Ticket-47919-ldbm_back_modify-SLAPI_PLUGIN_BE_PRE_MO.patch +Patch19: 0019-Ticket-47920-Encoding-of-SearchResultEntry-is-missin.patch +Patch20: 0020-Ticket-47897-Need-to-move-slapi_pblock_set-pb-SLAPI_.patch +Patch21: 0021-Ticket-47922-dynamically-added-macro-aci-is-not-eval.patch +Patch22: 0022-Ticket-47928-Disable-SSL-v3-by-default.patch +Patch23: 0023-Ticket-47928-CI-test-added-test-cases-for-ticket-479.patch +Patch24: 0024-Ticket-47937-Crash-in-entry_add_present_values_wsi_m.patch +Patch25: 0025-Ticket-47928-Disable-SSL-v3-by-default.patch +Patch26: 0026-Ticket-47939-Malformed-cookie-for-LDAP-Sync-makes-DS.patch +Patch27: 0027-Ticket-47945-Add-SSL-TLS-version-info-to-the-access-.patch +Patch28: 0028-Ticket-47948-ldap_sasl_bind-fails-assertion-ld-NULL-.patch +Patch29: 0029-Ticket-47953-Should-not-check-aci-syntax-when-deleti.patch +Patch30: 0030-Ticket-47928-Disable-SSL-v3-by-default.patch +Patch31: 0031-Fix-for-CVE-2014-8112.patch +Patch32: 0032-Ticket-47942-DS-hangs-during-online-total-update.patch +Patch33: 0033-Fix-for-CVE-2014-8105.patch +Patch34: 0034-Additional-fix-for-ticket-47526-v3.patch +Patch35: 0035-fix-jenkins-warning.patch +Patch36: 0036-Ticket-47950-Bind-DN-tracking-unable-to-write-to-int.patch +Patch37: 0037-Ticket-47949-logconv.pl-support-parsing-showing-repo.patch +Patch38: 0038-Ticket-47947-start-dirsrv-after-chrony-on-RHEL7-and-.patch +Patch39: 0039-Ticket-47967-cos_cache_build_definition_list-does-no.patch +Patch40: 0040-Ticket-47969-COS-memory-leak-when-rebuilding-the-cac.patch +Patch41: 0041-Ticket-47969-Fix-coverity-issue.patch +Patch42: 0042-Ticket-47970-Account-lockout-attributes-incorrectly-.patch +Patch43: 0043-Ticket-47970-add-lib389-testcase.patch +Patch44: 0044-Ticket-47960-cookie_change_info-returns-random-negat.patch +Patch45: 0045-Ticket-47960-cookie_change_info-returns-random-negat.patch +Patch46: 0046-Ticket-47636-Error-log-levels-not-displayed-correctl.patch +Patch47: 0047-Ticket-47722-Using-the-filter-file-does-not-work.patch +Patch48: 0048-Ticket-47451-Need-to-unregister-tasks-created-by-plu.patch +Patch49: 0049-Ticket-47451-Running-a-plugin-task-can-crash-the-ser.patch +Patch50: 0050-Ticket-47451-Dynamic-Plugin-various-fixes.patch +Patch51: 0051-Ticket-47451-Fix-jenkins-errors.patch +Patch52: 0052-Ticket-47451-Add-Dynamic-Plugin-CI-Suite.patch +Patch53: 0053-Ticket-47525-Crash-if-setting-invalid-plugin-config-.patch +Patch54: 0054-Ticket-47965-Fix-coverity-issues-2014-11-24.patch +Patch55: 0055-Ticket-47965-Fix-coverity-issues-2014-12-16.patch +Patch56: 0056-Ticket-47750-During-delete-operation-do-not-refresh-.patch +Patch57: 0057-Ticket-47989-Windows-Sync-accidentally-cleared-raw_e.patch +Patch58: 0058-Ticket-47991-upgrade-script-fails-if-etc-and-var-are.patch +Patch59: 0059-Ticket-47988-Schema-learning-mechanism-in-replicatio.patch +Patch60: 0060-Ticket-47988-Schema-learning-mechanism-in-replicatio.patch +Patch61: 0061-Ticket-48005-ns-slapd-crash-in-shutdown-phase.patch %description 389 Directory Server is an LDAPv3 compliant server. The base package includes @@ -324,42 +288,6 @@ cp %{SOURCE2} README.devel %patch59 -p1 %patch60 -p1 %patch61 -p1 -%patch62 -p1 -%patch63 -p1 -%patch64 -p1 -%patch65 -p1 -%patch66 -p1 -%patch67 -p1 -%patch68 -p1 -%patch69 -p1 -%patch70 -p1 -%patch71 -p1 -%patch72 -p1 -%patch73 -p1 -%patch74 -p1 -%patch75 -p1 -%patch76 -p1 -%patch77 -p1 -%patch78 -p1 -%patch79 -p1 -%patch80 -p1 -%patch81 -p1 -%patch82 -p1 -%patch83 -p1 -%patch84 -p1 -%patch85 -p1 -%patch86 -p1 -%patch87 -p1 -%patch88 -p1 -%patch89 -p1 -%patch90 -p1 -%patch91 -p1 -%patch92 -p1 -%patch93 -p1 -%patch94 -p1 -%patch95 -p1 -%patch96 -p1 -%patch97 -p1 %build %if %{use_openldap} @@ -422,35 +350,44 @@ ninst=0 # number of instances found in total if [ -n "$DEBUGPOSTTRANS" ] ; then output=$DEBUGPOSTTRANS fi -echo looking for services in %{_sysconfdir}/systemd/system/%{groupname}.wants/* > $output 2>&1 || : +echo looking for services in %{_sysconfdir}/systemd/system/%{groupname}.wants/* >> $output 2>&1 || : for service in %{_sysconfdir}/systemd/system/%{groupname}.wants/* ; do if [ ! -f "$service" ] ; then continue ; fi # in case nothing matches inst=`echo $service | sed -e 's,%{_sysconfdir}/systemd/system/%{groupname}.wants/,,'` - echo found instance $inst - getting status > $output 2>&1 || : + echo found instance $inst - getting status >> $output 2>&1 || : if /bin/systemctl -q is-active $inst ; then - echo instance $inst is running > $output 2>&1 || : + echo instance $inst is running >> $output 2>&1 || : instances="$instances $inst" else - echo instance $inst is not running > $output 2>&1 || : + echo instance $inst is not running >> $output 2>&1 || : fi ninst=`expr $ninst + 1` done if [ $ninst -eq 0 ] ; then - echo no instances to upgrade > $output 2>&1 || : + echo no instances to upgrade >> $output 2>&1 || : exit 0 # have no instances to upgrade - just skip the rest fi # shutdown all instances -echo shutting down all instances . . . > $output 2>&1 || : -/bin/systemctl stop %{groupname} > $output 2>&1 || : -echo remove pid files . . . > $output 2>&1 || : +echo shutting down all instances . . . >> $output 2>&1 || : +for inst in $instances ; do + echo stopping instance $inst >> $output 2>&1 || : + /bin/systemctl stop $inst >> $output 2>&1 || : +done +echo remove pid files . . . >> $output 2>&1 || : /bin/rm -f /var/run/%{pkgname}*.pid /var/run/%{pkgname}*.startpid # do the upgrade -echo upgrading instances . . . > $output 2>&1 || : -%{_sbindir}/setup-ds.pl -l $output -u -s General.UpdateMode=offline > $output 2>&1 || : +echo upgrading instances . . . >> $output 2>&1 || : +DEBUGPOSTSETUPOPT=`/usr/bin/echo $DEBUGPOSTSETUP | /usr/bin/sed -e "s/[^d]//g"` +if [ -n "$DEBUGPOSTSETUPOPT" ] ; then + %{_sbindir}/setup-ds.pl -l $output -$DEBUGPOSTSETUPOPT -u -s General.UpdateMode=offline >> $output 2>&1 || : +else + %{_sbindir}/setup-ds.pl -l $output -u -s General.UpdateMode=offline >> $output 2>&1 || : +fi + # restart instances that require it for inst in $instances ; do - echo restarting instance $inst > $output 2>&1 || : - /bin/systemctl start $inst > $output 2>&1 || : + echo restarting instance $inst >> $output 2>&1 || : + /bin/systemctl start $inst >> $output 2>&1 || : done exit 0 @@ -511,12 +448,270 @@ fi %{_libdir}/%{pkgname}/libns-dshttpd.so* %changelog -* Mon Jul 28 2014 Noriko Hosoi <nhosoi@redhat.com> - 1.3.1.6-26 +* Mon Feb 23 2015 Noriko Hosoi <nhosoi@redhat.com> - 1.3.3.1-15 +- release 1.3.3.1-15 +- Setting correct build tag 'rhel-7.1-z-candidate' + +* Mon Feb 23 2015 Noriko Hosoi <nhosoi@redhat.com> - 1.3.3.1-14 +- release 1.3.3.1-14 +- Resolves: bug 1189154 - DNS errors after IPA upgrade due to broken ReplSync (DS 48030) + Fixes spec file to make sure all the server instances are stopped before upgrade +- Resolves: bug 1186548 - ns-slapd crash in shutdown phase (DS 48005) + +* Sun Jan 25 2015 Noriko Hosoi <nhosoi@redhat.com> - 1.3.3.1-13 +- release 1.3.3.1-13 +- Resolves: bug 1183655 - Fixed Covscan FORWARD_NULL defects (DS 47988) + +* Sun Jan 25 2015 Noriko Hosoi <nhosoi@redhat.com> - 1.3.3.1-12 +- release 1.3.3.1-12 +- Resolves: bug 1182477 - Windows Sync accidentally cleared raw_entry (DS 47989) +- Resolves: bug 1180325 - upgrade script fails if /etc and /var are on different file systems (DS 47991 ) +- Resolves: bug 1183655 - Schema learning mechanism, in replication, unable to extend an existing definition (DS 47988) + +* Mon Jan 5 2015 Noriko Hosoi <nhosoi@redhat.com> - 1.3.3.1-11 +- release 1.3.3.1-11 +- Resolves: bug 1080186 - During delete operation do not refresh cache entry if it is a tombstone (DS 47750) + +* Wed Dec 17 2014 Noriko Hosoi <nhosoi@redhat.com> - 1.3.3.1-10 +- release 1.3.3.1-10 +- Resolves: bug 1172731 - CVE-2014-8112 password hashing bypassed when "nsslapd-unhashed-pw-switch" is set to off +- Resolves: bug 1166265 - DS hangs during online total update (DS 47942) +- Resolves: bug 1168151 - CVE-2014-8105 information disclosure through 'cn=changelog' subtree +- Resolves: bug 1044170 - Allow memberOf suffixes to be configurable (DS 47526) +- Resolves: bug 1171356 - Bind DN tracking unable to write to internalModifiersName without special permissions (DS 47950) +- Resolves: bug 1153737 - logconv.pl -- support parsing/showing/reporting different protocol versions (DS 47949) +- Resolves: bug 1171355 - start dirsrv after chrony on RHEL7 and Fedora (DS 47947) +- Resolves: bug 1170707 - cos_cache_build_definition_list does not stop during server shutdown (DS 47967) +- Resolves: bug 1170708 - COS memory leak when rebuilding the cache (DS - Ticket 47969) +- Resolves: bug 1170709 - Account lockout attributes incorrectly updated after failed SASL Bind (DS 47970) +- Resolves: bug 1166260 - cookie_change_info returns random negative number if there was no change in a tree (DS 47960) +- Resolves: bug 1012991 - Error log levels not displayed correctly (DS 47636) +- Resolves: bug 1108881 - rsearch filter error on any search filter (DS 47722) +- Resolves: bug 994690 - Allow dynamically adding/enabling/disabling/removing plugins without requiring a server restart (DS 47451) +- Resolves: bug 1162997 - Running a plugin task can crash the server (DS 47451) +- Resolves: bug 1166252 - RHEL7.1 ns-slapd segfault when ipa-replica-install restarts (DS 47451) +- Resolves: bug 1172597 - Crash if setting invalid plugin config area for MemberOf Plugin (DS 47525) +- Resolves: bug 1139882 - coverity defects found in 1.3.3.x (DS 47965) + +* Thu Nov 13 2014 Noriko Hosoi <nhosoi@redhat.com> - 1.3.3.1-9 +- release 1.3.3.1-9 +- Resolves: bug 1153737 - Disable SSL v3, by default. (DS 47928) +- Resolves: bug 1163461 - Should not check aci syntax when deleting an aci (DS 47953) + +* Mon Nov 10 2014 Noriko Hosoi <nhosoi@redhat.com> - 1.3.3.1-8 +- release 1.3.3.1-8 +- Resolves: bug 1156607 - Crash in entry_add_present_values_wsi_multi_valued (DS 47937) +- Resolves: bug 1153737 - Disable SSL v3, by default (DS 47928, DS 47945, DS 47948) +- Resolves: bug 1158804 - Malformed cookie for LDAP Sync makes DS crash (DS 47939) + +* Thu Oct 23 2014 Noriko Hosoi <nhosoi@redhat.com> - 1.3.3.1-7 +- release 1.3.3.1-7 +- Resolves: bug 1153737 - Disable SSL v3, by default (DS 47928) + +* Fri Oct 10 2014 Noriko Hosoi <nhosoi@redhat.com> - 1.3.3.1-6 +- release 1.3.3.1-6 +- Resolves: bug 1151287 - dynamically added macro aci is not evaluated on the fly (DS 47922) +- Resolves: bug 1080186 - Need to move slapi_pblock_set(pb, SLAPI_MODRDN_EXISTING_ENTRY, original_entry->ep_entry) prior to original_entry overwritten (DS 47897) +- Resolves: bug 1150694 - Encoding of SearchResultEntry is missing tag (DS 47920) +- Resolves: bug 1150695 - ldbm_back_modify SLAPI_PLUGIN_BE_PRE_MODIFY_FN does not return even if one of the preop plugins fails. (DS 47919) +- Resolves: bug 1139882 - Fix remaining compiler warnings (DS 47892) +- Resolves: bug 1150206 - result of dna_dn_is_shared_config is incorrectly used (DS 47918) + +* Wed Oct 1 2014 Noriko Hosoi <nhosoi@redhat.com> - 1.3.3.1-5 +- release 1.3.3.1-5 +- Resolves: bug 1139882 - coverity defects found in 1.3.3.x (DS 47892) + +* Wed Oct 1 2014 Noriko Hosoi <nhosoi@redhat.com> - 1.3.3.1-4 +- release 1.3.3.1-4 +- Resolves: bug 1080186 - Creating a glue fails if one above level is a conflict or missing (DS 47750) +- Resolves: bug 1145846 - 389-ds 1.3.3.0 does not adjust cipher suite configuration on upgrade, breaks itself and pki-server (DS 47908) +- Resolves: bug 1117979 - harden the list of ciphers available by default (phase 2) (DS 47838) + - provide enabled ciphers as search result (DS 47880) + +* Fri Sep 12 2014 Rich Megginson <nhosoi@redhat.com> - 1.3.3.1-3 +- release 1.3.3.1-3 +- Resolves: bug 1139882 - coverity defects found in 1.3.3.1 + +* Thu Sep 11 2014 Noriko Hosoi <nhosoi@redhat.com> - 1.3.3.1-2 +- release 1.3.3.1-2 +- Resolves: bug 1079099 - Simultaneous adding a user and binding as the user could fail in the password policy check (DS 47748) +- Resolves: bug 1080186 - Creating a glue fails if one above level is a conflict or missing (DS 47834) +- Resolves: bug 1139882 - coverity defects found in 1.3.3.1 (DS 47890) +- Resolves: bug 1112702 - Broken dereference control with the FreeIPA 4.0 ACIs (DS 47885 - deref plugin should not return references with noc access rights) +- Resolves: bug 1117979 - harden the list of ciphers available by default (DS 47838, DS 47895) +- Resolves: bug 1080186 - Creating a glue fails if one above level is a conflict or missing (DS 47889 - DS crashed during ipa-server-install on test_ava_filter) + +* Fri Sep 5 2014 Noriko Hosoi <nhosoi@redhat.com> - 1.3.3.1-1 +- release 1.3.3.1-1 +- Resolves: bug 746646 - RFE: easy way to configure which users and groups to sync with winsync +- Resolves: bug 881372 - nsDS5BeginReplicaRefresh attribute accepts any value and it doesn't throw any error when server restarts. +- Resolves: bug 920597 - Possible to add invalid ACI value +- Resolves: bug 921162 - Possible to add nonexistent target to ACI +- Resolves: bug 923799 - if nsslapd-cachememsize set to the number larger than the RAM available, should result in proper error message. +- Resolves: bug 924937 - Attribute "dsOnlyMemberUid" not allowed when syncing nested posix groups from AD with posixWinsync +- Resolves: bug 951754 - Self entry access ACI not working properly +- Resolves: bug 952517 - Dirsrv instance failed to start with Segmentation fault (core dump) after modifying 7-bit check plugin +- Resolves: bug 952682 - nsslapd-db-transaction-batch-val turns to -1 +- Resolves: bug 966443 - Plugin library path validation +- Resolves: bug 975176 - Non-directory manager can change the individual userPassword's storage scheme +- Resolves: bug 979465 - IPA replica's - "SASL encrypted packet length exceeds maximum allowed limit" +- Resolves: bug 982597 - Some attributes in cn=config should not be multivalued +- Resolves: bug 987009 - 389-ds-base - shebang with /usr/bin/env +- Resolves: bug 994690 - RFE: Allow dynamically adding/enabling/disabling/removing plugins without requiring a server restart +- Resolves: bug 1012991 - errorlog-level 16384 is listed as 0 in cn=config +- Resolves: bug 1013736 - Enabling/Disabling DNA plug-in throws "ldap_modify: Server Unwilling to Perform (53)" error +- Resolves: bug 1014380 - setup-ds.pl doesn't lookup the "root" group correctly +- Resolves: bug 1020459 - rsa_null_sha should not be enabled by default +- Resolves: bug 1024541 - start dirsrv after ntpd +- Resolves: bug 1029959 - Managed Entries betxnpreoperation - transaction not aborted upon failure to create managed entry +- Resolves: bug 1031216 - add dbmon.sh +- Resolves: bug 1044133 - Indexed search with filter containing '&' and "!" with attribute subtypes gives wrong result +- Resolves: bug 1044134 - should set LDAP_OPT_X_SASL_NOCANON to LDAP_OPT_ON by default +- Resolves: bug 1044135 - make connection buffer size adjustable +- Resolves: bug 1044137 - posix winsync should support ADD user/group entries from DS to AD +- Resolves: bug 1044138 - mep_pre_op: Unable to fetch origin entry +- Resolves: bug 1044139 - [RFE] Support RFC 4527 Read Entry Controls +- Resolves: bug 1044140 - Allow search to look up 'in memory RUV' +- Resolves: bug 1044141 - MMR stress test with dna enabled causes a deadlock +- Resolves: bug 1044142 - winsync doesn't sync DN valued attributes if DS DN value doesn't exist +- Resolves: bug 1044143 - modrdn + NSMMReplicationPlugin - Consumer failed to replay change +- Resolves: bug 1044144 - resurrected entry is not correctly indexed +- Resolves: bug 1044146 - Add a warning message when a connection hits the max number of threads +- Resolves: bug 1044147 - 7-bit check plugin does not work for userpassword attribute +- Resolves: bug 1044148 - The backend name provided to bak2db is not validated +- Resolves: bug 1044149 - Winsync should support range retrieval +- Resolves: bug 1044150 - 7-bit checking is not necessary for userPassword +- Resolves: bug 1044151 - With SeLinux, ports can be labelled per range. setup-ds.pl or setup-ds-admin.pl fail to detect already ranged labelled ports +- Resolves: bug 1044152 - ChainOnUpdate: "cn=directory manager" can modify userRoot on consumer without changes being chained or replicated. Directory integrity compromised. +- Resolves: bug 1044153 - mods optimizer +- Resolves: bug 1044154 - multi master replication allows schema violation +- Resolves: bug 1044156 - DS crashes with some 7-bit check plugin configurations +- Resolves: bug 1044157 - Some updates of "passwordgraceusertime" are useless when updating "userpassword" +- Resolves: bug 1044159 - [RFE] Support 'Content Synchronization Operation' (SyncRepl) - RFC 4533 +- Resolves: bug 1044160 - remove-ds.pl should remove /var/lock/dirsrv +- Resolves: bug 1044162 - enhance retro changelog +- Resolves: bug 1044163 - updates to ruv entry are written to retro changelog +- Resolves: bug 1044164 - Password administrators should be able to violate password policy +- Resolves: bug 1044168 - Schema replication between DS versions may overwrite newer base schema +- Resolves: bug 1044169 - ACIs do not allow attribute subtypes in targetattr keyword +- Resolves: bug 1044170 - Allow memberOf suffixes to be configurable +- Resolves: bug 1044171 - Allow referential integrity suffixes to be configurable +- Resolves: bug 1044172 - Plugin library path validation prevents intentional loading of out-of-tree modules +- Resolves: bug 1044173 - make referential integrity configuration more flexible +- Resolves: bug 1044177 - allow configuring changelog trim interval +- Resolves: bug 1044179 - objectclass may, must lists skip rest of objectclass once first is found in sup +- Resolves: bug 1044180 - memberOf on a user is converted to lowercase +- Resolves: bug 1044181 - report unindexed internal searches +- Resolves: bug 1044183 - With 1.3.04 and subtree-renaming OFF, when a user is deleted after restarting the server, the same entry can't be added +- Resolves: bug 1044185 - dbscan on entryrdn should show all matching values +- Resolves: bug 1044187 - logconv.pl - RFE - add on option for a minimum etime for unindexed search stats +- Resolves: bug 1044188 - Recognize compressed log files +- Resolves: bug 1044191 - support TLSv1.1 and TLSv1.2, if supported by NSS +- Resolves: bug 1044193 - default nsslapd-sasl-max-buffer-size should be 2MB +- Resolves: bug 1044194 - Complex filter in a search request doen't work as expected. +- Resolves: bug 1044196 - Automember plug-in should treat MODRDN operations as ADD operations +- Resolves: bug 1044198 - Replication of the schema may overwrite consumer 'attributetypes' even if consumer definition is a superset +- Resolves: bug 1044202 - db2bak.pl issue when specifying non-default directory +- Resolves: bug 1044203 - Allow referint plugin to use an alternate config area +- Resolves: bug 1044205 - Allow memberOf to use an alternate config area +- Resolves: bug 1044210 - idl switch does not work +- Resolves: bug 1044211 - make old-idl tunable +- Resolves: bug 1044212 - IDL-style can become mismatched during partial restoration +- Resolves: bug 1044213 - backend performance - introduce optimization levels +- Resolves: bug 1044215 - using transaction batchval violates durability +- Resolves: bug 1044216 - examine replication code to reduce amount of stored state information +- Resolves: bug 1048980 - 7-bit check plugin not checking MODRDN operation +- Resolves: bug 1049030 - Windows Sync group issues +- Resolves: bug 1052751 - Page control does not work if effective rights control is specified +- Resolves: bug 1052754 - Allow nsDS5ReplicaBindDN to be a group DN +- Resolves: bug 1057803 - logconv errors when search has invalid bind dn +- Resolves: bug 1060032 - [RFE] Update lastLoginTime also in Account Policy plugin if account lockout is based on passwordExpirationTime. +- Resolves: bug 1061060 - betxn: retro changelog broken after cancelled transaction +- Resolves: bug 1061572 - improve dbgen rdn generation, output and man page. +- Resolves: bug 1063990 - single valued attribute replicated ADD does not work +- Resolves: bug 1064006 - Size returned by slapi_entry_size is not accurate +- Resolves: bug 1064986 - Replication retry time attributes cannot be added +- Resolves: bug 1067090 - Missing warning for invalid replica backoff configuration +- Resolves: bug 1072032 - Updating nsds5ReplicaHost attribute in a replication agreement fails with error 53 +- Resolves: bug 1074306 - Under heavy stress, failure of turning a tombstone into glue makes the server hung +- Resolves: bug 1074447 - Part of DNA shared configuration is deleted after server restart +- Resolves: bug 1076729 - Continuous add/delete of an entry in MMR setup causes entryrdn-index conflict +- Resolves: bug 1077884 - ldap/servers/slapd/back-ldbm/dblayer.c: possible minor problem with sscanf +- Resolves: bug 1077897 - Memory leak with proxy auth control +- Resolves: bug 1079099 - Simultaneous adding a user and binding as the user could fail in the password policy check +- Resolves: bug 1080186 - Creating a glue fails if one above level is a conflict or missing +- Resolves: bug 1082967 - attribute uniqueness plugin fails when set as a chaining component +- Resolves: bug 1085011 - Directory Server crash reported from reliab15 execution +- Resolves: bug 1086890 - empty modify returns LDAP_INVALID_DN_SYNTAX +- Resolves: bug 1086902 - mem leak in do_bind when there is an error +- Resolves: bug 1086904 - mem leak in do_search - rawbase not freed upon certain errors +- Resolves: bug 1086908 - Performing deletes during tombstone purging results in operation errors +- Resolves: bug 1090178 - #481 breaks possibility to reassemble memberuid list +- Resolves: bug 1092099 - A replicated MOD fails (Unwilling to perform) if it targets a tombstone +- Resolves: bug 1092342 - nsslapd-ndn-cache-max-size accepts any invalid value. +- Resolves: bug 1092648 - Negative value of nsSaslMapPriority is not reset to lowest priority +- Resolves: bug 1097004 - Problem with deletion while replicated +- Resolves: bug 1098654 - db2bak.pl error with changelogdb +- Resolves: bug 1099654 - Normalization from old DN format to New DN format doesnt handel condition properly when there is space in a suffix after the seperator operator. +- Resolves: bug 1108405 - find a way to remove replication plugin errors messages "changelog iteration code returned a dummy entry with csn %s, skipping ..." +- Resolves: bug 1108407 - managed entry plugin fails to update managed entry pointer on modrdn operation +- Resolves: bug 1108865 - memory leak in ldapsearch filter objectclass=* +- Resolves: bug 1108870 - ACI warnings in error log +- Resolves: bug 1108872 - Logconv.pl with an empty access log gives lots of errors +- Resolves: bug 1108874 - logconv.pl memory continually grows +- Resolves: bug 1108881 - rsearch filter error on any search filter +- Resolves: bug 1108895 - [RFE - RHDS9] CLI report to monitor replication +- Resolves: bug 1108902 - rhds91 389-ds-base-1.2.11.15-31.el6_5.x86_64 crash in db4 __dbc_get_pp env = 0x0 ? +- Resolves: bug 1108909 - single valued attribute replicated ADD does not work +- Resolves: bug 1109334 - 389 Server crashes if uniqueMember is invalid syntax and memberOf plugin is enabled. +- Resolves: bug 1109336 - Parent numsubordinate count can be incorrectly updated if an error occurs +- Resolves: bug 1109339 - Nested tombstones become orphaned after purge +- Resolves: bug 1109354 - Tombstone purging can crash the server if the backend is stopped/disabled +- Resolves: bug 1109357 - Coverity issue in 1.3.3 +- Resolves: bug 1109364 - valgrind - value mem leaks, uninit mem usage +- Resolves: bug 1109375 - provide default syntax plugin +- Resolves: bug 1109378 - Environment variables are not passed when DS is started via service +- Resolves: bug 1111364 - Updating winsync one-way sync does not affect the behaviour dynamically +- Resolves: bug 1112824 - Broken dereference control with the FreeIPA 4.0 ACIs +- Resolves: bug 1113605 - server restart wipes out index config if there is a default index +- Resolves: bug 1115177 - attrcrypt_generate_key calls slapd_pk11_TokenKeyGenWithFlags with improper macro +- Resolves: bug 1117021 - Server deadlock if online import started while server is under load +- Resolves: bug 1117975 - paged results control is not working in some cases when we have a subsuffix. +- Resolves: bug 1117979 - harden the list of ciphers available by default +- Resolves: bug 1117981 - Fix various typos in manpages & code +- Resolves: bug 1117982 - Fix hyphens used as minus signed and other manpage mistakes +- Resolves: bug 1118002 - server crashes deleting a replication agreement +- Resolves: bug 1118006 - RFE - forcing passwordmustchange attribute by non-cn=directory manager +- Resolves: bug 1118007 - [RFE] Make it possible for privileges to be provided to an admin user to import an LDIF file containing hashed passwords +- Resolves: bug 1118014 - Enhance ACIs to have more control over MODRDN operations +- Resolves: bug 1118021 - Return all attributes in rootdse without explicit request +- Resolves: bug 1118025 - Slow ldapmodify operation time for large quantities of multi-valued attribute values +- Resolves: bug 1118032 - Schema Replication Issue +- Resolves: bug 1118034 - 389 DS Server crashes and dies while handles paged searches from clients +- Resolves: bug 1118043 - Failed deletion of aci: no such attribute +- Resolves: bug 1118048 - If be_txn plugin fails in ldbm_back_add, adding entry is double freed. +- Resolves: bug 1118051 - Add switch to disable pre-hashed password checking +- Resolves: bug 1118054 - Make ldbm_back_seq independently support transactions +- Resolves: bug 1118055 - Add operations rejected by betxn plugins remain in cache +- Resolves: bug 1118057 - online import crashes server if using verbose error logging +- Resolves: bug 1118059 - add fixup-memberuid.pl script +- Resolves: bug 1118060 - winsync plugin modify is broken +- Resolves: bug 1118066 - memberof scope: allow to exclude subtrees +- Resolves: bug 1118069 - 389-ds production segfault: __memcpy_sse2_unaligned () at ../sysdeps/x86_64/multiarch/memcpy-sse2-unaligned.S:144 +- Resolves: bug 1118074_DELETE_FN - plugin returned error" messages +- Resolves: bug 1118076 - ds logs many "Operation error fetching Null DN" messages +- Resolves: bug 1118077 - Improve import logging and abort handling +- Resolves: bug 1118079 - Multi master replication initialization incomplete after restore of one master +- Resolves: bug 1118080 - Don't add unhashed password mod if we don't have an unhashed value +- Resolves: bug 1118081 - Investigate betxn plugins to ensure they return the correct error code +- Resolves: bug 1118082 - The error result text message should be obtained just prior to sending result +- Resolves: bug 1123865 - CVE-2014-3562 389-ds-base: 389-ds: unauthenticated information disclosure [rhel-7.1] + +* Fri May 2 2014 Noriko Hosoi <nhosoi@redhat.com> - 1.3.1.6-26 - release 1.3.1.6-26 -- Resolves: #1123864 - EMBARGOED CVE-2014-3562 389-ds-base: 389-ds: unauthenticated information disclosure [rhel-7.0.z] (BZ 1123477) +- Resolves: bug 1085011 - Directory Server crash reported from reliab15 execution (Ticket 346) -* Thu Mar 31 2014 Noriko Hosoi <nhosoi@redhat.com> - 1.3.1.6-25 +* Mon Mar 31 2014 Noriko Hosoi <nhosoi@redhat.com> - 1.3.1.6-25 - release 1.3.1.6-25 - Resolves: bug 1082740 - ns-slapd crash in reliability 15 @@ -527,7 +722,7 @@ fi * Tue Mar 11 2014 Noriko Hosoi <nhosoi@redhat.com> - 1.3.1.6-23 - Resolves: bug 1074850 - EMBARGOED CVE-2014-0132 389-ds-base: 389-ds: flaw in parsing authzid can lead to privilege escalation [rhel-7.0] (Ticket 47739 - directory server is insecurely misinterpreting authzid on a SASL/GSSAPI bind) (Added 0095-Ticket-47739-directory-server-is-insecurely-misinter.patch) -* Tue Mar 11 2014 Noriko Hosoi <nhosoi@redhat.com> - 1.3.1.6-23 + Tue Mar 11 2014 Noriko Hosoi <nhosoi@redhat.com> - 1.3.1.6-23 - release 1.3.1.6-22 - Resolves: bug 1074850 - EMBARGOED CVE-2014-0132 389-ds-base: 389-ds: flaw in parsing authzid can lead to privilege escalation [rhel-7.0] (Ticket 47739 - directory server is insecurely misinterpreting authzid on a SASL/GSSAPI bind)