mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 17:09:48 +00:00
a2a974bfae
Original commit message from CVS: A bunch of portability fixes, derived from Steve Lhomme's MSVC patch (bug #141317): * gst/gst-i18n-lib.h: Allow disabling gettext. * gst/gstatomic_impl.h: disable warning when it's dumb. * gst/gstclock.c: fix include * gst/gstcompat.h: fix variadic macro * gst/gstinfo.c: fix include * gst/gstmacros.h: add defines for inlines on MSVC * gst/gstplugin.c: fix includes * gst/gstregistry.c: fix includes * gst/gstregistry.h: use S_IREAD, etc., if S_IRUSR isn't defined * gst/gstsystemclock.c: fix include * gst/gsttrace.c: (gst_trace_new), (gst_trace_text_flush): use S_IREAD if S_IRUSR isn't defined. fix use of non-portable functions * gst/registries/gstxmlregistry.c: (gst_xml_registry_parse_element_factory): fix use of non-portable functions * libs/gst/control/dparam.h: Remove trailing comma in enum definition * libs/gst/control/dparammanager.h: same
47 lines
1.4 KiB
C
47 lines
1.4 KiB
C
/* GStreamer
|
|
* Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#ifndef __GST_MACROS_H__
|
|
#define __GST_MACROS_H__
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ > 4)
|
|
# define GST_GNUC_CONSTRUCTOR \
|
|
__attribute__ ((constructor))
|
|
#else /* !__GNUC__ */
|
|
# define GST_GNUC_CONSTRUCTOR
|
|
#endif /* !__GNUC__ */
|
|
|
|
#if defined (__GNUC__) && !defined (GST_IMPLEMENT_INLINES)
|
|
# define GST_INLINE_FUNC extern __inline__
|
|
# define GST_CAN_INLINE 1
|
|
#elif defined(_MSC_VER)
|
|
# define GST_INLINE_FUNC extern __inline
|
|
# define GST_CAN_INLINE 1
|
|
#else
|
|
# define GST_INLINE_FUNC extern
|
|
# undef GST_CAN_INLINE
|
|
#endif
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __GST_MACROS_H__ */
|
|
|
|
|