mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 03:16:17 +01:00
Adjusted the test for an unimplemented getpwuid_r. Info from Michael
2000-09-28 Sebastian Wilhelmi <wilhelmi@ira.uka.de> * configure.in: Adjusted the test for an unimplemented getpwuid_r. Info from Michael Pruett. This is just a forward merge from glib-1-2.
This commit is contained in:
parent
e885fe2462
commit
5143dcb166
@ -1,5 +1,9 @@
|
||||
2000-09-28 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* configure.in: Adjusted the test for an unimplemented
|
||||
getpwuid_r. Info from Michael Pruett. This is just a forward
|
||||
merge from glib-1-2.
|
||||
|
||||
* configure.in: Moved determination of G_THREAD_FLAGS before
|
||||
G_THREAD_LIBS. Check for UnixWare systems and set the right cflags
|
||||
and libs there (it needs -Kthread for the native compiler and
|
||||
|
@ -1,5 +1,9 @@
|
||||
2000-09-28 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* configure.in: Adjusted the test for an unimplemented
|
||||
getpwuid_r. Info from Michael Pruett. This is just a forward
|
||||
merge from glib-1-2.
|
||||
|
||||
* configure.in: Moved determination of G_THREAD_FLAGS before
|
||||
G_THREAD_LIBS. Check for UnixWare systems and set the right cflags
|
||||
and libs there (it needs -Kthread for the native compiler and
|
||||
|
@ -1,5 +1,9 @@
|
||||
2000-09-28 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* configure.in: Adjusted the test for an unimplemented
|
||||
getpwuid_r. Info from Michael Pruett. This is just a forward
|
||||
merge from glib-1-2.
|
||||
|
||||
* configure.in: Moved determination of G_THREAD_FLAGS before
|
||||
G_THREAD_LIBS. Check for UnixWare systems and set the right cflags
|
||||
and libs there (it needs -Kthread for the native compiler and
|
||||
|
@ -1,5 +1,9 @@
|
||||
2000-09-28 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* configure.in: Adjusted the test for an unimplemented
|
||||
getpwuid_r. Info from Michael Pruett. This is just a forward
|
||||
merge from glib-1-2.
|
||||
|
||||
* configure.in: Moved determination of G_THREAD_FLAGS before
|
||||
G_THREAD_LIBS. Check for UnixWare systems and set the right cflags
|
||||
and libs there (it needs -Kthread for the native compiler and
|
||||
|
@ -1,5 +1,9 @@
|
||||
2000-09-28 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* configure.in: Adjusted the test for an unimplemented
|
||||
getpwuid_r. Info from Michael Pruett. This is just a forward
|
||||
merge from glib-1-2.
|
||||
|
||||
* configure.in: Moved determination of G_THREAD_FLAGS before
|
||||
G_THREAD_LIBS. Check for UnixWare systems and set the right cflags
|
||||
and libs there (it needs -Kthread for the native compiler and
|
||||
|
@ -1,5 +1,9 @@
|
||||
2000-09-28 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* configure.in: Adjusted the test for an unimplemented
|
||||
getpwuid_r. Info from Michael Pruett. This is just a forward
|
||||
merge from glib-1-2.
|
||||
|
||||
* configure.in: Moved determination of G_THREAD_FLAGS before
|
||||
G_THREAD_LIBS. Check for UnixWare systems and set the right cflags
|
||||
and libs there (it needs -Kthread for the native compiler and
|
||||
|
@ -1,5 +1,9 @@
|
||||
2000-09-28 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* configure.in: Adjusted the test for an unimplemented
|
||||
getpwuid_r. Info from Michael Pruett. This is just a forward
|
||||
merge from glib-1-2.
|
||||
|
||||
* configure.in: Moved determination of G_THREAD_FLAGS before
|
||||
G_THREAD_LIBS. Check for UnixWare systems and set the right cflags
|
||||
and libs there (it needs -Kthread for the native compiler and
|
||||
|
@ -1,5 +1,9 @@
|
||||
2000-09-28 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* configure.in: Adjusted the test for an unimplemented
|
||||
getpwuid_r. Info from Michael Pruett. This is just a forward
|
||||
merge from glib-1-2.
|
||||
|
||||
* configure.in: Moved determination of G_THREAD_FLAGS before
|
||||
G_THREAD_LIBS. Check for UnixWare systems and set the right cflags
|
||||
and libs there (it needs -Kthread for the native compiler and
|
||||
|
@ -971,10 +971,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
|
||||
|
Loading…
Reference in New Issue
Block a user