aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2012-11-15 15:47:31 +0100
committerJuanma Barranquero2012-11-15 15:47:31 +0100
commitb24696b8c857f76f4fa5769578e9b8db279a2aa8 (patch)
tree354997371936eb25da93fda794226693490bf876
parentc8915b6779ac09e69f6b213b0ed7bd55b0cc761f (diff)
downloademacs-b24696b8c857f76f4fa5769578e9b8db279a2aa8.tar.gz
emacs-b24696b8c857f76f4fa5769578e9b8db279a2aa8.zip
nt/config.nt: Sync with autogen/config.in.
(GETGROUPS_T, GETGROUPS_ZERO_BUG, GNULIB_FACCESSAT, HAVE_ACCESS) (HAVE_EACCESS, HAVE_FACCESSAT, HAVE_GETGROUPS, HAVE_LIBGEN_H): New macros.
-rw-r--r--nt/ChangeLog7
-rw-r--r--nt/config.nt27
2 files changed, 34 insertions, 0 deletions
diff --git a/nt/ChangeLog b/nt/ChangeLog
index 685e291e272..d5df1e10857 100644
--- a/nt/ChangeLog
+++ b/nt/ChangeLog
@@ -1,3 +1,10 @@
12012-11-15 Juanma Barranquero <lekktu@gmail.com>
2
3 * config.nt: Sync with autogen/config.in.
4 (GETGROUPS_T, GETGROUPS_ZERO_BUG, GNULIB_FACCESSAT, HAVE_ACCESS)
5 (HAVE_EACCESS, HAVE_FACCESSAT, HAVE_GETGROUPS, HAVE_LIBGEN_H):
6 New macros.
7
12012-11-14 Eli Zaretskii <eliz@gnu.org> 82012-11-14 Eli Zaretskii <eliz@gnu.org>
2 9
3 * inc/unistd.h (faccessat): Add prototype. 10 * inc/unistd.h (faccessat): Add prototype.
diff --git a/nt/config.nt b/nt/config.nt
index 443a1025761..69549fb2087 100644
--- a/nt/config.nt
+++ b/nt/config.nt
@@ -180,6 +180,14 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
180 setjmp does work. */ 180 setjmp does work. */
181#define GC_SETJMP_WORKS 1 181#define GC_SETJMP_WORKS 1
182 182
183/* Define to the type of elements in the array set by `getgroups'. Usually
184 this is either `int' or `gid_t'. */
185#undef GETGROUPS_T
186
187/* Define this to 1 if getgroups(0,NULL) does not return the number of groups.
188 */
189#undef GETGROUPS_ZERO_BUG
190
183/* Define if gettimeofday clobbers the localtime buffer. */ 191/* Define if gettimeofday clobbers the localtime buffer. */
184#undef GETTIMEOFDAY_CLOBBERS_LOCALTIME 192#undef GETTIMEOFDAY_CLOBBERS_LOCALTIME
185 193
@@ -195,6 +203,10 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
195#undef GNULIB_CLOSE_STREAM 203#undef GNULIB_CLOSE_STREAM
196 204
197/* Define to a C preprocessor expression that evaluates to 1 or 0, depending 205/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
206 whether the gnulib module faccessat shall be considered present. */
207#undef GNULIB_FACCESSAT
208
209/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
198 whether the gnulib module fscanf shall be considered present. */ 210 whether the gnulib module fscanf shall be considered present. */
199#undef GNULIB_FSCANF 211#undef GNULIB_FSCANF
200 212
@@ -215,6 +227,9 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
215 startup, if using GTK. */ 227 startup, if using GTK. */
216#undef G_SLICE_ALWAYS_MALLOC 228#undef G_SLICE_ALWAYS_MALLOC
217 229
230/* Define to 1 if you have the `access' function. */
231#undef HAVE_ACCESS
232
218/* Define to 1 if the file /usr/lpp/X11/bin/smt.exp exists. */ 233/* Define to 1 if the file /usr/lpp/X11/bin/smt.exp exists. */
219#undef HAVE_AIX_SMT_EXP 234#undef HAVE_AIX_SMT_EXP
220 235
@@ -339,6 +354,9 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
339/* Define to 1 if you have the 'dup2' function. */ 354/* Define to 1 if you have the 'dup2' function. */
340#define HAVE_DUP2 1 355#define HAVE_DUP2 1
341 356
357/* Define to 1 if you have the `eaccess' function. */
358#undef HAVE_EACCESS
359
342/* Define to 1 if you have the `endgrent' function. */ 360/* Define to 1 if you have the `endgrent' function. */
343#undef HAVE_ENDGRENT 361#undef HAVE_ENDGRENT
344 362
@@ -354,6 +372,9 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
354/* Define to 1 if you have the <execinfo.h> header file. */ 372/* Define to 1 if you have the <execinfo.h> header file. */
355#define HAVE_EXECINFO_H 1 373#define HAVE_EXECINFO_H 1
356 374
375/* Define to 1 if you have the `faccessat' function. */
376#undef HAVE_FACCESSAT
377
357/* Define to 1 if you have the <fcntl.h> header file. */ 378/* Define to 1 if you have the <fcntl.h> header file. */
358#undef HAVE_FCNTL_H 379#undef HAVE_FCNTL_H
359 380
@@ -405,6 +426,9 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
405/* Define to 1 if you have the `getgrent' function. */ 426/* Define to 1 if you have the `getgrent' function. */
406#undef HAVE_GETGRENT 427#undef HAVE_GETGRENT
407 428
429/* Define to 1 if your system has a working `getgroups' function. */
430#undef HAVE_GETGROUPS
431
408/* Define to 1 if you have the `gethostname' function. */ 432/* Define to 1 if you have the `gethostname' function. */
409#define HAVE_GETHOSTNAME 1 433#define HAVE_GETHOSTNAME 1
410 434
@@ -571,6 +595,9 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
571/* Define to 1 if you have the `dnet' library (-ldnet). */ 595/* Define to 1 if you have the `dnet' library (-ldnet). */
572#undef HAVE_LIBDNET 596#undef HAVE_LIBDNET
573 597
598/* Define to 1 if you have the <libgen.h> header file. */
599#undef HAVE_LIBGEN_H
600
574/* Define to 1 if you have the hesiod library (-lhesiod). */ 601/* Define to 1 if you have the hesiod library (-lhesiod). */
575#undef HAVE_LIBHESIOD 602#undef HAVE_LIBHESIOD
576 603