os/ossrv/glib/tsrc/BC/inc/gmoduleconf.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/glib/tsrc/BC/inc/gmoduleconf.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,54 @@
     1.4 +/* GMODULE - GLIB wrapper code for dynamic module loading
     1.5 + * Copyright (C) 1998 Tim Janik
     1.6 + *
     1.7 + * This library is free software; you can redistribute it and/or
     1.8 + * modify it under the terms of the GNU Lesser General Public
     1.9 + * License as published by the Free Software Foundation; either
    1.10 + * version 2 of the License, or (at your option) any later version.
    1.11 + *
    1.12 + * This library is distributed in the hope that it will be useful,
    1.13 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    1.14 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    1.15 + * Lesser General Public License for more details.
    1.16 + *
    1.17 + * You should have received a copy of the GNU Lesser General Public
    1.18 + * License along with this library; if not, write to the
    1.19 + * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
    1.20 + * Boston, MA 02111-1307, USA.
    1.21 + */
    1.22 +#ifndef __G_MODULE_CONF_H__
    1.23 +#define __G_MODULE_CONF_H__
    1.24 +
    1.25 +
    1.26 +#ifdef __cplusplus
    1.27 +extern "C" {
    1.28 +#endif /* __cplusplus */
    1.29 +
    1.30 +
    1.31 +#define	G_MODULE_IMPL_NONE	0
    1.32 +#define	G_MODULE_IMPL_DL	1
    1.33 +#define	G_MODULE_IMPL_DLD	2
    1.34 +#define	G_MODULE_IMPL_WIN32	3
    1.35 +#define	G_MODULE_IMPL_OS2	4
    1.36 +#define	G_MODULE_IMPL_BEOS	5
    1.37 +#define	G_MODULE_IMPL_DYLD	6
    1.38 +#define	G_MODULE_IMPL_AR	7
    1.39 +
    1.40 +#define	G_MODULE_IMPL		G_MODULE_IMPL_DL
    1.41 +#undef	G_MODULE_HAVE_DLERROR
    1.42 +#if	(1)
    1.43 +#define	G_MODULE_HAVE_DLERROR
    1.44 +#endif
    1.45 +#if	(0) || defined (hp9000s300) || defined (__hp9000s300) || defined (__hp9000s300__)
    1.46 +#define	G_MODULE_NEED_USCORE
    1.47 +#endif
    1.48 +#if	(0)
    1.49 +#define G_MODULE_BROKEN_RTLD_GLOBAL
    1.50 +#endif
    1.51 +
    1.52 +#ifdef __cplusplus
    1.53 +}
    1.54 +#endif /* __cplusplus */
    1.55 +
    1.56 +
    1.57 +#endif /* __G_MODULE_CONF_H__ */