summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--configure.ac2
-rw-r--r--src/back-nis.c2
-rw-r--r--src/back-sch.c2
-rw-r--r--src/back-shr.c2
-rw-r--r--src/defs-nis.c2
-rw-r--r--src/disp-nis.c2
-rw-r--r--src/dummymap.c2
-rw-r--r--src/format.c2
-rw-r--r--src/map.c2
-rw-r--r--src/nis.c2
-rw-r--r--src/plug-nis.c2
-rw-r--r--src/plug-sch.c2
-rw-r--r--src/portmap.c2
-rw-r--r--src/wrap.c2
-rw-r--r--tests/clients/ldifsort.c2
-rw-r--r--tests/clients/yp.c2
16 files changed, 16 insertions, 16 deletions
diff --git a/configure.ac b/configure.ac
index 22f6a7a..9a60c89 100644
--- a/configure.ac
+++ b/configure.ac
@@ -236,7 +236,7 @@ NIS_PLUGIN_CONTINUE_WITHOUT_PORTMAP_ENV="nis_plugin_continue_without_portmap_for
AC_DEFINE_UNQUOTED(NIS_PLUGIN_CONTINUE_WITHOUT_PORTMAP_ENV,"$NIS_PLUGIN_CONTINUE_WITHOUT_PORTMAP_ENV",[Define to the environment variable which will override the fail-if-unable-to-use-the-portmapper logic.])
AC_SUBST(NIS_PLUGIN_CONTINUE_WITHOUT_PORTMAP_ENV)
-AC_CONFIG_HEADER(config.h)
+AC_CONFIG_HEADER(src/config.h)
AC_OUTPUT(Makefile src/Makefile doc/nis-plugin.ldif doc/sch-plugin.ldif
tests/Makefile tests/clients/Makefile
tests/slapd.sh tests/config/dse.ldif.initial)
diff --git a/src/back-nis.c b/src/back-nis.c
index b5298d5..9d95789 100644
--- a/src/back-nis.c
+++ b/src/back-nis.c
@@ -20,7 +20,7 @@
*/
#ifdef HAVE_CONFIG_H
-#include "../config.h"
+#include "config.h"
#endif
#include <sys/types.h>
diff --git a/src/back-sch.c b/src/back-sch.c
index bc6b44c..096ee23 100644
--- a/src/back-sch.c
+++ b/src/back-sch.c
@@ -20,7 +20,7 @@
*/
#ifdef HAVE_CONFIG_H
-#include "../config.h"
+#include "config.h"
#endif
#include <sys/types.h>
diff --git a/src/back-shr.c b/src/back-shr.c
index de6dab5..af328b3 100644
--- a/src/back-shr.c
+++ b/src/back-shr.c
@@ -20,7 +20,7 @@
*/
#ifdef HAVE_CONFIG_H
-#include "../config.h"
+#include "config.h"
#endif
#include <sys/types.h>
diff --git a/src/defs-nis.c b/src/defs-nis.c
index fa5af4f..636934f 100644
--- a/src/defs-nis.c
+++ b/src/defs-nis.c
@@ -20,7 +20,7 @@
*/
#ifdef HAVE_CONFIG_H
-#include "../config.h"
+#include "config.h"
#endif
#include <rpc/xdr.h>
diff --git a/src/disp-nis.c b/src/disp-nis.c
index 71401b2..35fcb14 100644
--- a/src/disp-nis.c
+++ b/src/disp-nis.c
@@ -20,7 +20,7 @@
*/
#ifdef HAVE_CONFIG_H
-#include "../config.h"
+#include "config.h"
#endif
#include <sys/types.h>
diff --git a/src/dummymap.c b/src/dummymap.c
index 2687ab3..d604258 100644
--- a/src/dummymap.c
+++ b/src/dummymap.c
@@ -20,7 +20,7 @@
*/
#ifdef HAVE_CONFIG_H
-#include "../config.h"
+#include "config.h"
#endif
#include <sys/types.h>
diff --git a/src/format.c b/src/format.c
index 1e2b7f2..00237a0 100644
--- a/src/format.c
+++ b/src/format.c
@@ -20,7 +20,7 @@
*/
#ifdef HAVE_CONFIG_H
-#include "../config.h"
+#include "config.h"
#endif
#include <sys/types.h>
diff --git a/src/map.c b/src/map.c
index 8487a74..c5f0e5f 100644
--- a/src/map.c
+++ b/src/map.c
@@ -20,7 +20,7 @@
*/
#ifdef HAVE_CONFIG_H
-#include "../config.h"
+#include "config.h"
#endif
#include <sys/types.h>
diff --git a/src/nis.c b/src/nis.c
index 3e25954..27e1f64 100644
--- a/src/nis.c
+++ b/src/nis.c
@@ -20,7 +20,7 @@
*/
#ifdef HAVE_CONFIG_H
-#include "../config.h"
+#include "config.h"
#endif
#include <sys/types.h>
diff --git a/src/plug-nis.c b/src/plug-nis.c
index c088c81..e5d5af3 100644
--- a/src/plug-nis.c
+++ b/src/plug-nis.c
@@ -20,7 +20,7 @@
*/
#ifdef HAVE_CONFIG_H
-#include "../config.h"
+#include "config.h"
#endif
#include <sys/types.h>
diff --git a/src/plug-sch.c b/src/plug-sch.c
index a889bc8..2e7dc35 100644
--- a/src/plug-sch.c
+++ b/src/plug-sch.c
@@ -20,7 +20,7 @@
*/
#ifdef HAVE_CONFIG_H
-#include "../config.h"
+#include "config.h"
#endif
#include <sys/types.h>
diff --git a/src/portmap.c b/src/portmap.c
index 477dbdf..8963bbf 100644
--- a/src/portmap.c
+++ b/src/portmap.c
@@ -20,7 +20,7 @@
*/
#ifdef HAVE_CONFIG_H
-#include "../config.h"
+#include "config.h"
#endif
#include <sys/types.h>
diff --git a/src/wrap.c b/src/wrap.c
index 6ed533d..b007aeb 100644
--- a/src/wrap.c
+++ b/src/wrap.c
@@ -20,7 +20,7 @@
*/
#ifdef HAVE_CONFIG_H
-#include "../config.h"
+#include "config.h"
#endif
#include <sys/types.h>
diff --git a/tests/clients/ldifsort.c b/tests/clients/ldifsort.c
index 2e8e1af..2ae3940 100644
--- a/tests/clients/ldifsort.c
+++ b/tests/clients/ldifsort.c
@@ -19,7 +19,7 @@
*
*/
-#include "../../config.h"
+#include "../../src/config.h"
#include <sys/types.h>
#include <limits.h>
#include <search.h>
diff --git a/tests/clients/yp.c b/tests/clients/yp.c
index 6620f27..e5aacf1 100644
--- a/tests/clients/yp.c
+++ b/tests/clients/yp.c
@@ -19,7 +19,7 @@
*
*/
-#include "../../config.h"
+#include "../../src/config.h"
#include <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>