[BACK]Return to config.h.in CVS log [TXT][DIR] Up to [Development] / xfs-cmds / acl / include

File: [Development] / xfs-cmds / acl / include / config.h.in (download)

Revision 1.7, Sat Dec 9 02:55:54 2006 UTC (10 years, 10 months ago) by lachlan.longdrop.melbourne.sgi.com
Branch: MAIN
CVS Tags: HEAD
Changes since 1.6: +5 -0 lines

Fix a build issue on GNU/kFreeBSD, thanks to Petr Salinger.
Also updates Debian packaging.
Merge of master-melb:xfs-cmds:27678a by kenmcd.

/* Define if you have the attr/error_context.h header */
#undef HAVE_ATTR_ERROR_CONTEXT_H

/* Define if you want Posix compliant getfacl and setfacl utilities
   without extensions */
#undef POSIXLY_CORRECT

/* The number of bytes in a int.  */
#undef SIZEOF_INT

/* The number of bytes in a long.  */
#undef SIZEOF_LONG

/* The number of bytes in a short.  */
#undef SIZEOF_SHORT

/* Define if you have attribute((visibility(hidden))) in gcc. */
#undef HAVE_VISIBILITY_ATTRIBUTE

/* Define if you want gettext (I18N) support */
#undef ENABLE_GETTEXT

#ifdef ENABLE_GETTEXT
# include <libintl.h>
# define _(x)			gettext(x)
#else
# define _(x)			(x)
# define textdomain(d)		do { } while (0)
# define bindtextdomain(d,dir)	do { } while (0)
#endif
#include <locale.h>

/* On GNU/kFreeBSD, ENODATA is not defined in the system headers */
#include <errno.h>
#ifndef ENODATA
# define ENODATA ENOATTR
#endif