1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

s4:net/drs: use the full path to "utils/net/drs/net_drs*.h"

This fixes the build with automatic dependecies.

metze
This commit is contained in:
Stefan Metzmacher 2010-02-12 12:19:15 +01:00
parent 44f75eded1
commit eee98110b3
5 changed files with 5 additions and 5 deletions

View File

@ -22,7 +22,7 @@
#include "includes.h"
#include "utils/net/net.h"
#include "librpc/gen_ndr/ndr_drsuapi_c.h"
#include "net_drs.h"
#include "utils/net/drs/net_drs.h"
#include "lib/ldb/include/ldb.h"
#include "lib/ldb_wrap.h"
#include "system/filesys.h"

View File

@ -51,6 +51,6 @@ struct net_drs_context {
};
#include "net_drs_proto.h"
#include "utils/net/drs/net_drs_proto.h"
#endif /* NET_DRS_H_ */

View File

@ -21,7 +21,7 @@
#include "includes.h"
#include "utils/net/net.h"
#include "net_drs.h"
#include "utils/net/drs/net_drs.h"
#define DEFINE_FLAG(_flag, _win_name) {_flag, #_flag, _win_name}

View File

@ -21,7 +21,7 @@
#include "includes.h"
#include "utils/net/net.h"
#include "net_drs.h"
#include "utils/net/drs/net_drs.h"
#include "lib/ldb/include/ldb.h"

View File

@ -51,7 +51,7 @@
#include "lib/events/events.h"
#include "auth/credentials/credentials.h"
#include "scripting/python/modules.h"
#include "drs/net_drs.h"
#include "utils/net/drs/net_drs.h"
/* There's no Py_ssize_t in 2.4, apparently */
#if PY_MAJOR_VERSION == 2 && PY_MINOR_VERSION < 5