diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2010-11-25 21:52:04 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2010-11-25 21:52:04 +0000 |
commit | 7a133c3f48de4e64026aae06c02760ffe9f7908a (patch) | |
tree | 834ef5517ea91f661c18173e1cfb8a83e6387961 /app/xlsclients/config.h.in | |
parent | c8ed3c7843ebb1ad3c5ff4049ec33b81e427aabb (diff) |
Update to xlsclients 1.1.0. Rewritten to use XCB.
Diffstat (limited to 'app/xlsclients/config.h.in')
-rw-r--r-- | app/xlsclients/config.h.in | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/app/xlsclients/config.h.in b/app/xlsclients/config.h.in index b12a10efd..f31fce89d 100644 --- a/app/xlsclients/config.h.in +++ b/app/xlsclients/config.h.in @@ -18,6 +18,9 @@ /* Define to 1 if you have the <string.h> header file. */ #undef HAVE_STRING_H +/* Define to 1 if you have a working strnlen function. */ +#undef HAVE_STRNLEN + /* Define to 1 if you have the <sys/stat.h> header file. */ #undef HAVE_SYS_STAT_H @@ -59,3 +62,35 @@ /* Version number of package */ #undef VERSION + +/* Define to 1 if on MINIX. */ +#undef _MINIX + +/* Define to 2 if the system does not provide POSIX.1 features except with + this defined. */ +#undef _POSIX_1_SOURCE + +/* Define to 1 if you need to in order for `stat' and other things to work. */ +#undef _POSIX_SOURCE + +/* Enable extensions on AIX 3, Interix. */ +#ifndef _ALL_SOURCE +# undef _ALL_SOURCE +#endif +/* Enable GNU extensions on systems that have them. */ +#ifndef _GNU_SOURCE +# undef _GNU_SOURCE +#endif +/* Enable threading extensions on Solaris. */ +#ifndef _POSIX_PTHREAD_SEMANTICS +# undef _POSIX_PTHREAD_SEMANTICS +#endif +/* Enable extensions on HP NonStop. */ +#ifndef _TANDEM_SOURCE +# undef _TANDEM_SOURCE +#endif +/* Enable general extensions on Solaris. */ +#ifndef __EXTENSIONS__ +# undef __EXTENSIONS__ +#endif + |