From a50e82cac2212f4aa1e40dc74892e9398682daf1 Mon Sep 17 00:00:00 2001 From: Gerald Carter Date: Fri, 28 Mar 2003 02:03:31 +0000 Subject: don't include proto.h during autoconf tests since it doesn't exist yet; fixed getsmbpass replacement test (This used to be commit 2aa2767ed5dc5290d6f71174bbf1be7d75a97d8b) --- source3/configure.in | 1 + source3/include/includes.h | 2 ++ 2 files changed, 3 insertions(+) (limited to 'source3') diff --git a/source3/configure.in b/source3/configure.in index b55a2b185e..67cd4cbab8 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -1765,6 +1765,7 @@ SAVE_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$CPPFLAGS -I${srcdir-.}/ -I${srcdir-.}/include -I${srcdir-.}/ubiqx -I${srcdir-.}/popt -I${srcdir-.}/smbwrapper" AC_TRY_COMPILE([ #define REPLACE_GETPASS 1 +#define NO_PROTO_H 1 #define NO_CONFIG_H 1 #define main dont_declare_main #include "${srcdir-.}/lib/getsmbpass.c" diff --git a/source3/include/includes.h b/source3/include/includes.h index 168256fd56..41f6075a20 100644 --- a/source3/include/includes.h +++ b/source3/include/includes.h @@ -828,7 +828,9 @@ struct functable { struct printjob; /***** automatically generated prototypes *****/ +#ifndef NO_PROTO_H #include "proto.h" +#endif /* String routines */ -- cgit