From d5015ef708d4718ebe5b3e4fad5712ecfbfcf04e Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Thu, 19 Nov 1998 23:42:57 +0000 Subject: Makefile.in: Added passing of CPPFLAGS into Makefile. configure configure.in include/config.h.in: Fixes for AIX4.x. AIX *will not* enable large file support of *any* description unless either -D_LARGE_FILES or -D_LARGE_FILES_API are defined. I chose "-D_LARGE_FILES" as this leads to cleaner code... Also fixed bug where getpwnam was listed as getpw(a)nam in configure.in. Jeremy. (This used to be commit 2d62dc26f4e3a171ecbe56f33d94db2fea0ef0ad) --- source3/include/config.h.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/include') diff --git a/source3/include/config.h.in b/source3/include/config.h.in index d49a77ccb2..c030ea53a6 100644 --- a/source3/include/config.h.in +++ b/source3/include/config.h.in @@ -442,8 +442,8 @@ /* Define if you have the getprpwnam function. */ #undef HAVE_GETPRPWNAM -/* Define if you have the getpwanam function. */ -#undef HAVE_GETPWANAM +/* Define if you have the getpwnam function. */ +#undef HAVE_GETPWNAM /* Define if you have the getrlimit function. */ #undef HAVE_GETRLIMIT -- cgit