os/ossrv/glib/gmodule/gmoduleconf.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/* GMODULE - GLIB wrapper code for dynamic module loading
sl@0
     2
 * Copyright (C) 1998 Tim Janik
sl@0
     3
 *
sl@0
     4
 * This library is free software; you can redistribute it and/or
sl@0
     5
 * modify it under the terms of the GNU Lesser General Public
sl@0
     6
 * License as published by the Free Software Foundation; either
sl@0
     7
 * version 2 of the License, or (at your option) any later version.
sl@0
     8
 *
sl@0
     9
 * This library is distributed in the hope that it will be useful,
sl@0
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
sl@0
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
sl@0
    12
 * Lesser General Public License for more details.
sl@0
    13
 *
sl@0
    14
 * You should have received a copy of the GNU Lesser General Public
sl@0
    15
 * License along with this library; if not, write to the
sl@0
    16
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
sl@0
    17
 * Boston, MA 02111-1307, USA.
sl@0
    18
 */
sl@0
    19
#ifndef __G_MODULE_CONF_H__
sl@0
    20
#define __G_MODULE_CONF_H__
sl@0
    21
sl@0
    22
sl@0
    23
#ifdef __cplusplus
sl@0
    24
extern "C" {
sl@0
    25
#endif /* __cplusplus */
sl@0
    26
sl@0
    27
sl@0
    28
#define	G_MODULE_IMPL_NONE	0
sl@0
    29
#define	G_MODULE_IMPL_DL	1
sl@0
    30
#define	G_MODULE_IMPL_DLD	2
sl@0
    31
#define	G_MODULE_IMPL_WIN32	3
sl@0
    32
#define	G_MODULE_IMPL_OS2	4
sl@0
    33
#define	G_MODULE_IMPL_BEOS	5
sl@0
    34
#define	G_MODULE_IMPL_DYLD	6
sl@0
    35
#define	G_MODULE_IMPL_AR	7
sl@0
    36
sl@0
    37
#define	G_MODULE_IMPL		G_MODULE_IMPL_DL
sl@0
    38
#undef	G_MODULE_HAVE_DLERROR
sl@0
    39
#if	(1)
sl@0
    40
#define	G_MODULE_HAVE_DLERROR
sl@0
    41
#endif
sl@0
    42
#if	(0) || defined (hp9000s300) || defined (__hp9000s300) || defined (__hp9000s300__)
sl@0
    43
#define	G_MODULE_NEED_USCORE
sl@0
    44
#endif
sl@0
    45
#if	(1)
sl@0
    46
#define G_MODULE_BROKEN_RTLD_GLOBAL
sl@0
    47
#endif
sl@0
    48
sl@0
    49
#ifdef __cplusplus
sl@0
    50
}
sl@0
    51
#endif /* __cplusplus */
sl@0
    52
sl@0
    53
sl@0
    54
#endif /* __G_MODULE_CONF_H__ */