mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-04-25 08:36:52 +02:00
hotfix: revert last change to fix the build on OS X.
2007-05-17 Michael Natterer <mitch@imendio.com> * configure.in: hotfix: revert last change to fix the build on OS X. svn path=/trunk/; revision=5501
This commit is contained in:
parent
d5b622fcc4
commit
1f9e7cf36b
@ -1,3 +1,7 @@
|
|||||||
|
2007-05-17 Michael Natterer <mitch@imendio.com>
|
||||||
|
|
||||||
|
* configure.in: hotfix: revert last change to fix the build on OS X.
|
||||||
|
|
||||||
2007-05-17 Matthias Clasen <mclasen@redhat.com>
|
2007-05-17 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
* glib/goption.c (g_option_context_set_translate_func): Fix
|
* glib/goption.c (g_option_context_set_translate_func): Fix
|
||||||
|
18
configure.in
18
configure.in
@ -2508,18 +2508,26 @@ _______EOF
|
|||||||
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if test x$g_have_gnuc_visibility = xyes ; then
|
||||||
cat >>$outfile <<_______EOF
|
cat >>$outfile <<_______EOF
|
||||||
#if __GNUC__ == 2 && __GNUC_MINOR__ == 95
|
#if __GNUC__ == 2 && __GNUC_MINOR__ == 95
|
||||||
#define G_GNUC_INTERNAL
|
#define G_GNUC_INTERNAL
|
||||||
#elif defined (__GNUC__) && ((__GNUC__ * 100 + __GNUC_MINOR__) >= 303)
|
#else
|
||||||
#define G_HAVE_GNUC_VISIBILITY 1
|
#define G_HAVE_GNUC_VISIBILITY 1
|
||||||
#define G_GNUC_INTERNAL __attribute__((visibility("hidden")))
|
#define G_GNUC_INTERNAL __attribute__((visibility("hidden")))
|
||||||
#elif defined(__SUNPRO_C) && (__SUNPRO_C >= 0x550)
|
|
||||||
#define G_GNUC_INTERNAL __hidden
|
|
||||||
#else
|
|
||||||
#define G_GNUC_INTERNAL
|
|
||||||
#endif
|
#endif
|
||||||
_______EOF
|
_______EOF
|
||||||
|
else
|
||||||
|
if test x$g_have_sunstudio_visibility = xyes ; then
|
||||||
|
cat >>$outfile <<_______EOF
|
||||||
|
#define G_GNUC_INTERNAL __hidden
|
||||||
|
_______EOF
|
||||||
|
else
|
||||||
|
cat >>$outfile <<_______EOF
|
||||||
|
#define G_GNUC_INTERNAL
|
||||||
|
_______EOF
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
echo >>$outfile
|
echo >>$outfile
|
||||||
|
Loading…
x
Reference in New Issue
Block a user