mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 11:26:16 +01:00
0b42c37e7d
Mon Sep 7 07:53:21 1998 Tim Janik <timj@gtk.org> * configure.in: check for all three inline keywords individually. * glib.h: inlining hassle. for compilers that don't allow the `inline' keyword, mostly because of strict ANSI C compliance or dumbness, we try to fall back to either `__inline__' or `__inline'. we define G_CAN_INLINE, if the compiler seems to be actually *capable* to do function inlining, in which case inline function bodys do make sense. we also define G_INLINE_FUNC to properly export the function prototypes if no inlinig can be performed. we special case most of the stuff, so inline functions can have a normal implementation by defining G_INLINE_FUNC to extern and G_CAN_INLINE to 1. * ltconfig: (compiler PIC flag test): special case linux for non aout systems to honour lcc's position independant code (cases "linux*aout)" and "linux*)" got added). (this needs to go into libtool which does an advanced test, checking for __LCC__). * autogen.sh: take $CC=lcc into account by invoking automake with --include-deps so lcc isn't scared by gcc's auto-dependancy generation code. care about $ACLOCAL_FLAGS. optionally feature autoheader. * minor fixups in other places to cure some of lcc's warnings.
87 lines
2.5 KiB
C
87 lines
2.5 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 HAVE_BROKEN_WCTYPE
|
||
#undef HAVE_DOPRNT
|
||
#undef HAVE_FLOAT_H
|
||
#undef HAVE_LIMITS_H
|
||
#undef HAVE_LONG_DOUBLE
|
||
#undef HAVE_SYS_SELECT_H
|
||
#undef HAVE_STRERROR
|
||
#undef HAVE_STRSIGNAL
|
||
#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 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). */
|