--- include/ac/stdlib.h 2006/01/03 22:12:06 1.19 +++ include/ac/stdlib.h 2007/02/13 20:22:09 1.19.2.2 @@ -1,8 +1,8 @@ /* Generic stdlib.h */ -/* $OpenLDAP: pkg/ldap/include/ac/stdlib.h,v 1.18 2005/01/01 19:49:42 kurt Exp $ */ +/* $OpenLDAP: pkg/ldap/include/ac/stdlib.h,v 1.19.2.1 2006/10/19 20:06:38 kurt Exp $ */ /* This work is part of OpenLDAP Software . * - * Copyright 1998-2006 The OpenLDAP Foundation. + * Copyright 1998-2007 The OpenLDAP Foundation. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -35,4 +35,14 @@ # define EXIT_FAILURE 1 #endif +#ifdef HAVE_LIMITS_H +#include +#endif + +#if defined(LINE_MAX) +# define AC_LINE_MAX LINE_MAX +#else +# define AC_LINE_MAX 2048 /* POSIX MIN */ +#endif + #endif /* _AC_STDLIB_H */