Adjusted the test for an unimplemented getpwuid_r. Info from Michael

1999-04-12  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

	* configure.in: Adjusted the test for an unimplemented
	getpwuid_r. Info from Michael Pruett <mikep@ugcs.caltech.edu>.
This commit is contained in:
Sebastian Wilhelmi 1999-04-12 09:16:07 +00:00 committed by Sebastian Wilhelmi
parent 7f3b25b0d6
commit 822c785df0
9 changed files with 43 additions and 2 deletions

View File

@ -1,3 +1,8 @@
1999-04-12 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Adjusted the test for an unimplemented
getpwuid_r. Info from Michael Pruett <mikep@ugcs.caltech.edu>.
Sun Apr 11 15:07:34 1999 Tim Janik <timj@gtk.org>
* configure.in: bumped versin number to GLib 1.2.2, interface 2,

View File

@ -1,3 +1,8 @@
1999-04-12 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Adjusted the test for an unimplemented
getpwuid_r. Info from Michael Pruett <mikep@ugcs.caltech.edu>.
Sun Apr 11 15:07:34 1999 Tim Janik <timj@gtk.org>
* configure.in: bumped versin number to GLib 1.2.2, interface 2,

View File

@ -1,3 +1,8 @@
1999-04-12 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Adjusted the test for an unimplemented
getpwuid_r. Info from Michael Pruett <mikep@ugcs.caltech.edu>.
Sun Apr 11 15:07:34 1999 Tim Janik <timj@gtk.org>
* configure.in: bumped versin number to GLib 1.2.2, interface 2,

View File

@ -1,3 +1,8 @@
1999-04-12 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Adjusted the test for an unimplemented
getpwuid_r. Info from Michael Pruett <mikep@ugcs.caltech.edu>.
Sun Apr 11 15:07:34 1999 Tim Janik <timj@gtk.org>
* configure.in: bumped versin number to GLib 1.2.2, interface 2,

View File

@ -1,3 +1,8 @@
1999-04-12 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Adjusted the test for an unimplemented
getpwuid_r. Info from Michael Pruett <mikep@ugcs.caltech.edu>.
Sun Apr 11 15:07:34 1999 Tim Janik <timj@gtk.org>
* configure.in: bumped versin number to GLib 1.2.2, interface 2,

View File

@ -1,3 +1,8 @@
1999-04-12 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Adjusted the test for an unimplemented
getpwuid_r. Info from Michael Pruett <mikep@ugcs.caltech.edu>.
Sun Apr 11 15:07:34 1999 Tim Janik <timj@gtk.org>
* configure.in: bumped versin number to GLib 1.2.2, interface 2,

View File

@ -1,3 +1,8 @@
1999-04-12 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Adjusted the test for an unimplemented
getpwuid_r. Info from Michael Pruett <mikep@ugcs.caltech.edu>.
Sun Apr 11 15:07:34 1999 Tim Janik <timj@gtk.org>
* configure.in: bumped versin number to GLib 1.2.2, interface 2,

View File

@ -1,3 +1,8 @@
1999-04-12 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Adjusted the test for an unimplemented
getpwuid_r. Info from Michael Pruett <mikep@ugcs.caltech.edu>.
Sun Apr 11 15:07:34 1999 Tim Janik <timj@gtk.org>
* configure.in: bumped versin number to GLib 1.2.2, interface 2,

View File

@ -778,10 +778,11 @@ if test x"$have_threads" != xnone; then
int main () { char buffer[10000], *pointer;
char getpwuid_r (long, void*, void*,
int, void*);
int error;
errno = 0;
getpwuid_r (0, &buffer, &buffer,
error = getpwuid_r (0, &buffer, &buffer,
sizeof (buffer), &pointer);
return errno == ENOSYS;}],
return errno == ENOSYS || error == ENOSYS;}],
[ac_cv_func_getpwuid_r=yes],
[ac_cv_func_getpwuid_r=no])])
if test "$ac_cv_func_getpwuid_r" = yes; then