[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.3, Fri Nov 29 23:41:36 2002 UTC (14 years, 11 months ago) by nathans
Branch: MAIN
Changes since 1.2: +11 -0 lines

I18N updates from Andreas, add an --enable-gettext configure option.

/* 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 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