mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-26 22:16:16 +01:00
Reverted my last commit:
2000-09-30 Martin Baulig <baulig@suse.de> * configure.in (HAVE_THREADS): New automake conditional. * Makefile.am (SUBDIRS): Only compile the gthread subdirectory if we actually have threads.
This commit is contained in:
parent
336f7e89fe
commit
81c0bf53a8
@ -3,12 +3,6 @@
|
||||
* gnode.c (g_node_insert_after): Added function to keep symetry
|
||||
with g_node_insert_before.
|
||||
|
||||
2000-09-30 Martin Baulig <baulig@suse.de>
|
||||
|
||||
* configure.in (HAVE_THREADS): New automake conditional.
|
||||
* Makefile.am (SUBDIRS): Only compile the gthread subdirectory if we
|
||||
actually have threads.
|
||||
|
||||
2000-09-29 Martin Baulig <baulig@suse.de>
|
||||
|
||||
Several minor ANSI C fixes.
|
||||
|
@ -3,12 +3,6 @@
|
||||
* gnode.c (g_node_insert_after): Added function to keep symetry
|
||||
with g_node_insert_before.
|
||||
|
||||
2000-09-30 Martin Baulig <baulig@suse.de>
|
||||
|
||||
* configure.in (HAVE_THREADS): New automake conditional.
|
||||
* Makefile.am (SUBDIRS): Only compile the gthread subdirectory if we
|
||||
actually have threads.
|
||||
|
||||
2000-09-29 Martin Baulig <baulig@suse.de>
|
||||
|
||||
Several minor ANSI C fixes.
|
||||
|
@ -3,12 +3,6 @@
|
||||
* gnode.c (g_node_insert_after): Added function to keep symetry
|
||||
with g_node_insert_before.
|
||||
|
||||
2000-09-30 Martin Baulig <baulig@suse.de>
|
||||
|
||||
* configure.in (HAVE_THREADS): New automake conditional.
|
||||
* Makefile.am (SUBDIRS): Only compile the gthread subdirectory if we
|
||||
actually have threads.
|
||||
|
||||
2000-09-29 Martin Baulig <baulig@suse.de>
|
||||
|
||||
Several minor ANSI C fixes.
|
||||
|
@ -3,12 +3,6 @@
|
||||
* gnode.c (g_node_insert_after): Added function to keep symetry
|
||||
with g_node_insert_before.
|
||||
|
||||
2000-09-30 Martin Baulig <baulig@suse.de>
|
||||
|
||||
* configure.in (HAVE_THREADS): New automake conditional.
|
||||
* Makefile.am (SUBDIRS): Only compile the gthread subdirectory if we
|
||||
actually have threads.
|
||||
|
||||
2000-09-29 Martin Baulig <baulig@suse.de>
|
||||
|
||||
Several minor ANSI C fixes.
|
||||
|
@ -3,12 +3,6 @@
|
||||
* gnode.c (g_node_insert_after): Added function to keep symetry
|
||||
with g_node_insert_before.
|
||||
|
||||
2000-09-30 Martin Baulig <baulig@suse.de>
|
||||
|
||||
* configure.in (HAVE_THREADS): New automake conditional.
|
||||
* Makefile.am (SUBDIRS): Only compile the gthread subdirectory if we
|
||||
actually have threads.
|
||||
|
||||
2000-09-29 Martin Baulig <baulig@suse.de>
|
||||
|
||||
Several minor ANSI C fixes.
|
||||
|
@ -3,12 +3,6 @@
|
||||
* gnode.c (g_node_insert_after): Added function to keep symetry
|
||||
with g_node_insert_before.
|
||||
|
||||
2000-09-30 Martin Baulig <baulig@suse.de>
|
||||
|
||||
* configure.in (HAVE_THREADS): New automake conditional.
|
||||
* Makefile.am (SUBDIRS): Only compile the gthread subdirectory if we
|
||||
actually have threads.
|
||||
|
||||
2000-09-29 Martin Baulig <baulig@suse.de>
|
||||
|
||||
Several minor ANSI C fixes.
|
||||
|
@ -3,12 +3,6 @@
|
||||
* gnode.c (g_node_insert_after): Added function to keep symetry
|
||||
with g_node_insert_before.
|
||||
|
||||
2000-09-30 Martin Baulig <baulig@suse.de>
|
||||
|
||||
* configure.in (HAVE_THREADS): New automake conditional.
|
||||
* Makefile.am (SUBDIRS): Only compile the gthread subdirectory if we
|
||||
actually have threads.
|
||||
|
||||
2000-09-29 Martin Baulig <baulig@suse.de>
|
||||
|
||||
Several minor ANSI C fixes.
|
||||
|
@ -3,12 +3,6 @@
|
||||
* gnode.c (g_node_insert_after): Added function to keep symetry
|
||||
with g_node_insert_before.
|
||||
|
||||
2000-09-30 Martin Baulig <baulig@suse.de>
|
||||
|
||||
* configure.in (HAVE_THREADS): New automake conditional.
|
||||
* Makefile.am (SUBDIRS): Only compile the gthread subdirectory if we
|
||||
actually have threads.
|
||||
|
||||
2000-09-29 Martin Baulig <baulig@suse.de>
|
||||
|
||||
Several minor ANSI C fixes.
|
||||
|
@ -2,13 +2,7 @@
|
||||
|
||||
AUTOMAKE_OPTIONS = 1.4
|
||||
|
||||
if HAVE_THREADS
|
||||
gthread = gthread
|
||||
else
|
||||
gthread =
|
||||
endif
|
||||
|
||||
SUBDIRS = . gobject gmodule $(gthread) docs tests build
|
||||
SUBDIRS = . gobject gmodule gthread docs tests build
|
||||
|
||||
bin_SCRIPTS=glib-config-2.0
|
||||
BUILT_SOURCES=glib-config-2.0
|
||||
|
@ -777,7 +777,6 @@ if test "x$have_threads" = xnone && test "x$want_threads" != xno; then
|
||||
else
|
||||
AC_MSG_RESULT($have_threads)
|
||||
fi
|
||||
AM_CONDITIONAL(HAVE_THREADS, test "x$have_threads" != xnone && test "x$want_threads" != xno)
|
||||
|
||||
|
||||
dnl determination of G_THREAD_CFLAGS
|
||||
|
@ -2,13 +2,7 @@
|
||||
|
||||
AUTOMAKE_OPTIONS = 1.4
|
||||
|
||||
if HAVE_THREADS
|
||||
gthread = gthread
|
||||
else
|
||||
gthread =
|
||||
endif
|
||||
|
||||
SUBDIRS = . gobject gmodule $(gthread) docs tests build
|
||||
SUBDIRS = . gobject gmodule gthread docs tests build
|
||||
|
||||
bin_SCRIPTS=glib-config-2.0
|
||||
BUILT_SOURCES=glib-config-2.0
|
||||
|
Loading…
Reference in New Issue
Block a user