mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-26 15:36:14 +01:00
b2e318ff3e
Wed Dec 16 03:16:58 1998 Tim Janik <timj@gtk.org> * configure.in: version bump to 1.1.8, binary age 0, interface age 0. * glib.h: changed g_lock() to G_LOCK(), g_unlock() to G_UNLOCK() and g_trylock() to G_TRYLOCK(), since these are macros that expand to nothing with --disable-threads. changed G_LOCK_DEFINE() to G_LOCK_DECLARE() and introduced G_LOCK_DECLARE_STATIC() to achive the results of static G_LOCK_DECLARE(). changed semantics of g_thread_supported to g_thread_supported() so it can be used as a function like g_module_supported(). the actuall definition is still a macro that expands into a variable for performance reasons though. various indentation and coding style cleanups. * configure.in: added --enable-threads that defaults to yes. * gmutex.c: changed tests g_thread_supported to g_thread_supported (), changed variable settings of g_thread_supported to g_threads_got_initialized. garray.c: gcache.c: gdataset.c: gdate.c: ghash.c: glist.c: gmain.c: gnode.c: gslist.c: gstring.c: gtree.c: gutils.c: changed s/g_lock/G_LOCK/, s/g_unlock/G_UNLOCK/, s/static G_LOCK_DEFINE/G_LOCK_DECLARE_STATIC/.
100 lines
2.7 KiB
C
100 lines
2.7 KiB
C
/* GLIB - Library of useful routines for C programming
|
||
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
||
*
|
||
* This library is free software; you can redistribute it and/or
|
||
* modify it under the terms of the GNU Library General Public
|
||
* License as published by the Free Software Foundation; either
|
||
* version 2 of the License, or (at your option) any later version.
|
||
*
|
||
* This library is distributed in the hope that it will be useful,
|
||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||
* Library General Public License for more details.
|
||
*
|
||
* You should have received a copy of the GNU Library General Public
|
||
* License along with this library; if not, write to the
|
||
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||
* Boston, MA 02111-1307, USA.
|
||
*/
|
||
/* acconfig.h
|
||
This file is in the public domain.
|
||
|
||
Descriptive text for the C preprocessor macros that
|
||
the distributed Autoconf macros can define.
|
||
No software package will use all of them; autoheader copies the ones
|
||
your configure.in uses into your configuration header file templates.
|
||
|
||
The entries are in sort -df order: alphabetical, case insensitive,
|
||
ignoring punctuation (such as underscores). Although this order
|
||
can split up related entries, it makes it easier to check whether
|
||
a given entry is in the file.
|
||
|
||
Leave the following blank line there!! Autoheader needs it. */
|
||
|
||
|
||
/* Other stuff */
|
||
|
||
#undef ENABLE_MEM_CHECK
|
||
#undef ENABLE_MEM_PROFILE
|
||
|
||
#undef G_COMPILED_WITH_DEBUGGING
|
||
#undef G_THREADS_ENABLED
|
||
#undef HAVE_BROKEN_WCTYPE
|
||
#undef HAVE_DOPRNT
|
||
#undef HAVE_FLOAT_H
|
||
#undef HAVE_LIMITS_H
|
||
#undef HAVE_LONG_DOUBLE
|
||
#undef HAVE_POLL
|
||
#undef HAVE_PWD_H
|
||
#undef HAVE_SYS_PARAM_H
|
||
#undef HAVE_SYS_POLL_H
|
||
#undef HAVE_SYS_SELECT_H
|
||
#undef HAVE_SYS_TIME_H
|
||
#undef HAVE_SYS_TIMES_H
|
||
#undef HAVE_STRERROR
|
||
#undef HAVE_STRSIGNAL
|
||
#undef HAVE_UNISTD_H
|
||
#undef HAVE_VSNPRINTF
|
||
#undef HAVE_VALUES_H
|
||
#undef HAVE_VPRINTF
|
||
#undef HAVE_WCHAR_H
|
||
#undef HAVE_WCTYPE_H
|
||
|
||
#undef NO_FD_SET
|
||
#undef NO_SYS_ERRLIST
|
||
#undef NO_SYS_SIGLIST
|
||
|
||
#undef SIZEOF_CHAR
|
||
#undef SIZEOF_SHORT
|
||
#undef SIZEOF_LONG
|
||
#undef SIZEOF_INT
|
||
#undef SIZEOF_VOID_P
|
||
|
||
#undef G_VA_COPY
|
||
#undef G_VA_COPY_AS_ARRAY
|
||
#undef G_HAVE___INLINE
|
||
#undef G_HAVE___INLINE__
|
||
#undef G_HAVE_INLINE
|
||
|
||
#undef GLIB_MAJOR_VERSION
|
||
#undef GLIB_MINOR_VERSION
|
||
#undef GLIB_MICRO_VERSION
|
||
#undef GLIB_INTERFACE_AGE
|
||
#undef GLIB_BINARY_AGE
|
||
|
||
#undef WIN32
|
||
#undef NATIVE_WIN32
|
||
|
||
#undef G_THREAD_SOURCE
|
||
|
||
/* #undef PACKAGE */
|
||
/* #undef VERSION */
|
||
|
||
|
||
|
||
|
||
/* Leave that blank line there!! Autoheader needs it.
|
||
If you're adding to this file, keep in mind:
|
||
The entries are in sort -df order: alphabetical, case insensitive,
|
||
ignoring punctuation (such as underscores). */
|