Fixed slight bug, that made configure hang on some systems. Please do not

1999-03-31  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

	* configure.in: Fixed slight bug, that made configure hang on some
	systems. Please do not merge this into 1.3 branch. It's taken care
	of differently there. Info from J. Rhett Aultman
	<cuplan@alley.gator.net>
This commit is contained in:
Sebastian Wilhelmi 1999-03-31 12:29:08 +00:00 committed by Sebastian Wilhelmi
parent 165f369072
commit 6a1327a2ef
9 changed files with 57 additions and 1 deletions

View File

@ -1,3 +1,10 @@
1999-03-31 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Fixed slight bug, that made configure hang on some
systems. Please do not merge this into 1.3 branch. It's taken care
of differently there. Info from J. Rhett Aultman
<cuplan@alley.gator.net>
Wed Mar 24 21:23:47 CST 1999 Shawn T. Amundson <amundson@gtk.org>
* Released GLib 1.2.1

View File

@ -1,3 +1,10 @@
1999-03-31 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Fixed slight bug, that made configure hang on some
systems. Please do not merge this into 1.3 branch. It's taken care
of differently there. Info from J. Rhett Aultman
<cuplan@alley.gator.net>
Wed Mar 24 21:23:47 CST 1999 Shawn T. Amundson <amundson@gtk.org>
* Released GLib 1.2.1

View File

@ -1,3 +1,10 @@
1999-03-31 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Fixed slight bug, that made configure hang on some
systems. Please do not merge this into 1.3 branch. It's taken care
of differently there. Info from J. Rhett Aultman
<cuplan@alley.gator.net>
Wed Mar 24 21:23:47 CST 1999 Shawn T. Amundson <amundson@gtk.org>
* Released GLib 1.2.1

View File

@ -1,3 +1,10 @@
1999-03-31 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Fixed slight bug, that made configure hang on some
systems. Please do not merge this into 1.3 branch. It's taken care
of differently there. Info from J. Rhett Aultman
<cuplan@alley.gator.net>
Wed Mar 24 21:23:47 CST 1999 Shawn T. Amundson <amundson@gtk.org>
* Released GLib 1.2.1

View File

@ -1,3 +1,10 @@
1999-03-31 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Fixed slight bug, that made configure hang on some
systems. Please do not merge this into 1.3 branch. It's taken care
of differently there. Info from J. Rhett Aultman
<cuplan@alley.gator.net>
Wed Mar 24 21:23:47 CST 1999 Shawn T. Amundson <amundson@gtk.org>
* Released GLib 1.2.1

View File

@ -1,3 +1,10 @@
1999-03-31 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Fixed slight bug, that made configure hang on some
systems. Please do not merge this into 1.3 branch. It's taken care
of differently there. Info from J. Rhett Aultman
<cuplan@alley.gator.net>
Wed Mar 24 21:23:47 CST 1999 Shawn T. Amundson <amundson@gtk.org>
* Released GLib 1.2.1

View File

@ -1,3 +1,10 @@
1999-03-31 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Fixed slight bug, that made configure hang on some
systems. Please do not merge this into 1.3 branch. It's taken care
of differently there. Info from J. Rhett Aultman
<cuplan@alley.gator.net>
Wed Mar 24 21:23:47 CST 1999 Shawn T. Amundson <amundson@gtk.org>
* Released GLib 1.2.1

View File

@ -1,3 +1,10 @@
1999-03-31 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Fixed slight bug, that made configure hang on some
systems. Please do not merge this into 1.3 branch. It's taken care
of differently there. Info from J. Rhett Aultman
<cuplan@alley.gator.net>
Wed Mar 24 21:23:47 CST 1999 Shawn T. Amundson <amundson@gtk.org>
* Released GLib 1.2.1

View File

@ -830,7 +830,7 @@ if test x"$have_threads" != xnone; then
struct timeval tval;
struct timespec tspec;
gettimeofday (&tval, NULL);
tspec.tv_sec += tval.tv_sec;
tspec.tv_sec = tval.tv_sec;
tspec.tv_nsec = 0;
return pthread_cond_timedwait (&cond,&mutex,&tspec)
!= -1;}],