Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 784383 | Differences between
and this patch

Collapse All | Expand All

(-)Ardour-6.6.0.orig/libs/pbd/pbd/g_atomic_compat.h (-1 / +1 lines)
Lines 30-36 Link Here
30
 * Older versions of glib and older compilers still expect a volatile qualifier and print
30
 * Older versions of glib and older compilers still expect a volatile qualifier and print
31
 * "cast from type 'volatile long int*' to type 'long int*' casts away qualifiers [-Wcast-qual]"
31
 * "cast from type 'volatile long int*' to type 'long int*' casts away qualifiers [-Wcast-qual]"
32
 */
32
 */
33
#if defined __GNUC__ && __GNUC__ > 10
33
#if defined HAVE_GLIB_2_68 && (defined(__cplusplus) && __cplusplus >= 201103L)
34
#  define GATOMIC_QUAL
34
#  define GATOMIC_QUAL
35
#else
35
#else
36
#  define GATOMIC_QUAL volatile
36
#  define GATOMIC_QUAL volatile
(-)Ardour-6.6.0.orig/wscript (+1 lines)
Lines 1148-1153 def configure(conf): Link Here
1148
        conf.env.append_value('LDFLAGS', '-L/usr/X11R6/lib')
1148
        conf.env.append_value('LDFLAGS', '-L/usr/X11R6/lib')
1149
1149
1150
    autowaf.check_pkg(conf, 'glib-2.0', uselib_store='GLIB', atleast_version='2.28', mandatory=True)
1150
    autowaf.check_pkg(conf, 'glib-2.0', uselib_store='GLIB', atleast_version='2.28', mandatory=True)
1151
    autowaf.check_pkg(conf, 'glib-2.0', uselib_store='GLIB_2_68', atleast_version='2.68', mandatory=False)
1151
    autowaf.check_pkg(conf, 'gthread-2.0', uselib_store='GTHREAD', atleast_version='2.2', mandatory=True)
1152
    autowaf.check_pkg(conf, 'gthread-2.0', uselib_store='GTHREAD', atleast_version='2.2', mandatory=True)
1152
    autowaf.check_pkg(conf, 'glibmm-2.4', uselib_store='GLIBMM', atleast_version='2.32.0', mandatory=True)
1153
    autowaf.check_pkg(conf, 'glibmm-2.4', uselib_store='GLIBMM', atleast_version='2.32.0', mandatory=True)
1153
    autowaf.check_pkg(conf, 'sndfile', uselib_store='SNDFILE', atleast_version='1.0.18', mandatory=True)
1154
    autowaf.check_pkg(conf, 'sndfile', uselib_store='SNDFILE', atleast_version='1.0.18', mandatory=True)

Return to bug 784383