1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-05 12:23:50 +03:00

r18451: move repdir/ into the top dir

metze
This commit is contained in:
Stefan Metzmacher
2006-09-13 09:56:21 +00:00
committed by Gerald (Jerry) Carter
parent 3cac61152e
commit a564194817
3 changed files with 3 additions and 3 deletions

View 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])])

View 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