r18451: move repdir/ into the top dir
authorStefan Metzmacher <metze@samba.org>
Wed, 13 Sep 2006 09:56:21 +0000 (09:56 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 19:18:31 +0000 (14:18 -0500)
metze
(This used to be commit a564194817d9b78e353abb6bf0548b2dd9eb130b)

source4/lib/replace/libreplace.m4
source4/lib/replace/repdir.m4 [moved from source4/lib/replace/repdir/config.m4 with 90% similarity]
source4/lib/replace/repdir_getdents.c [moved from source4/lib/replace/repdir/repdir.c with 100% similarity]

index 074dd1a1b453af380f04ecaa40f35ee9851bf969..febee6409e4a928c96e2f3f8cd66f88566442815 100644 (file)
@@ -342,7 +342,7 @@ m4_include(dlfcn.m4)
 m4_include(getpass.m4)
 m4_include(system/config.m4)
 m4_include(win32/config.m4)
-m4_include(repdir/config.m4)
+m4_include(repdir.m4)
 
 AC_CHECK_FUNCS([syslog memset setnetgrent getnetgrent endnetgrent memcpy],,
                           [AC_MSG_ERROR([Required function not found])])
similarity index 90%
rename from source4/lib/replace/repdir/config.m4
rename to source4/lib/replace/repdir.m4
index eda8f42ba9889856479bdb8d1d4fcaeebc425bc1..d15e4cb7af2bcc477727c1dbe9e5c7909e659730 100644 (file)
@@ -15,7 +15,7 @@ if test x"$libreplace_READDIR_NEEDED" = x"yes"; then
 AC_CACHE_CHECK([for replacing readdir using getdents()],libreplace_READDIR_GETDENTS,[
        AC_TRY_RUN([
 #include "confdefs.h"
-#include "$libreplacedir/repdir/repdir.c"
+#include "$libreplacedir/repdir_getdents.c"
 #define test_readdir_os2_delete main
 #include "$libreplacedir/test/os2_delete.c"],
        [libreplace_READDIR_GETDENTS=yes],
@@ -25,6 +25,6 @@ fi
 if test x"$libreplace_READDIR_GETDENTS" = x"yes"; then
        AC_DEFINE(REPLACE_READDIR,1,[replace readdir])
        AC_DEFINE(REPLACE_READDIR_GETDENTS,1,[replace readdir using getdents()])
-       LIBREPLACEOBJ="${LIBREPLACEOBJ} repdir/repdir.o"
+       LIBREPLACEOBJ="${LIBREPLACEOBJ} repdir_getdents.o"
        libreplace_READDIR_NEEDED=no
 fi