author | kergoth <kergoth> | 2002-01-25 22:14:26 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2002-01-25 22:14:26 (UTC) |
commit | 15318cad33835e4e2dc620d033e43cd930676cdd (patch) (side-by-side diff) | |
tree | c2fa0399a2c47fda8e2cd0092c73a809d17f68eb /rsync/acconfig.h | |
download | opie-15318cad33835e4e2dc620d033e43cd930676cdd.zip opie-15318cad33835e4e2dc620d033e43cd930676cdd.tar.gz opie-15318cad33835e4e2dc620d033e43cd930676cdd.tar.bz2 |
Initial revision
-rw-r--r-- | rsync/acconfig.h | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/rsync/acconfig.h b/rsync/acconfig.h new file mode 100644 index 0000000..94083c7 --- a/dev/null +++ b/rsync/acconfig.h @@ -0,0 +1,55 @@ +/* acconfig.h -- hand-written definitions to eventually go into config.h */ + +/* Define this to enable trace code */ +#undef DO_RS_TRACE + +/* Version of the libtool interface. */ +#define RS_LIBVERSION "unknown" + +/* Define this if your sockaddr structure contains sin_len */ +#undef HAVE_SOCK_SIN_LEN + +/* Define this if there is a connect(2) call */ +#undef HAVE_CONNECT + +/* Define if we have an off64_t largefile type */ +#undef HAVE_OFF64_T + +/* Ask for large file support (LFS). Should always be on, even if it + * achieves nothing. */ +#undef _LARGEFILE_SOURCE +#undef _LARGEFILE64_SOURCE + +/* How many bits would you like to have in an off_t? */ +#undef _FILE_OFFSET_BITS + +/* Define to include GNU C library extensions. */ +#undef _GNU_SOURCE + +/* Define to get i18n support */ +#undef ENABLE_NLS + +/* Define if you want the suboptimal X/Open catgets implementation */ +#undef HAVE_CATGETS + +/* Define if you want the nice new GNU and Uniforum gettext system */ +#undef HAVE_GETTEXT + +/* Define if your system has the LC_MESSAGES locale category */ +#undef HAVE_LC_MESSAGES + +/* Define if you have stpcpy (copy a string and return a pointer to + * the end of the result.) */ +#undef HAVE_STPCPY + +/* GNU extension of saving argv[0] to program_invocation_short_name */ +#undef HAVE_PROGRAM_INVOCATION_NAME + +/* Canonical GNU hostname */ +#define RS_CANONICAL_HOST "unknown" + +/* Define to a replacement type if intmax_t is not a builtin, or in + sys/types.h or stdlib.h or stddef.h */ +#undef intmax_t + +/* end of acconfig.h */ |