--- misc/pango-1.28.3/configure 2010-09-29 13:02:33.000000000 +0200 +++ misc/build/pango-1.28.3/configure 2011-03-01 17:56:26.000000000 +0100 @@ -17980,8 +17980,6 @@ if test x$no_x = xyes ; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: X development libraries not found" >&5 -$as_echo "$as_me: WARNING: X development libraries not found" >&2;} have_x=false else X_LIBS="$X_LIBS -lX11" @@ -18596,16 +18594,16 @@ fi if $have_atsui; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"cairo-quartz-font >= \$cairo_required\""; } >&5 - ($PKG_CONFIG --exists --print-errors "cairo-quartz-font >= $cairo_required") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then +# if test -n "$PKG_CONFIG" && \ +# { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"cairo-quartz-font >= \$cairo_required\""; } >&5 +# ($PKG_CONFIG --exists --print-errors "cairo-quartz-font >= $cairo_required") 2>&5 +# ac_status=$? +# $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 +# test $ac_status = 0; }; then have_cairo_atsui=true -else - : -fi +#else +# : +#fi fi if $have_cairo_atsui; then @@ -18858,20 +18856,20 @@ fi # Setup GLIB_MKENUMS to use glib-mkenums even if GLib is uninstalled. -GLIB_MKENUMS=`$PKG_CONFIG --variable=glib_mkenums glib-2.0` - +#GLIB_MKENUMS=`$PKG_CONFIG --variable=glib_mkenums glib-2.0` +GLIB_MKENUMS=glib-mkenums # Add in gthread-2.0 to CFLAGS but not to LIBS so we get any # necesary defines for thread-safety. -GLIB_CFLAGS=`$PKG_CONFIG --cflags $GLIB_MODULES gthread-2.0` +#GLIB_CFLAGS=`$PKG_CONFIG --cflags $GLIB_MODULES gthread-2.0` # See if it's safe to turn G_DISABLE_DEPRECATED on. -GLIB_VERSION_MAJOR_MINOR=`$PKG_CONFIG --modversion glib-2.0 | sed "s/\.[^.]*\$//"` -GLIB_REQUIRED_VERSION_MAJOR_MINOR=`echo $GLIB_REQUIRED_VERSION | sed "s/\.[^.]*\$//"` -if test "x$GLIB_VERSION_MAJOR_MINOR" = "x$GLIB_REQUIRED_VERSION_MAJOR_MINOR"; then +#GLIB_VERSION_MAJOR_MINOR=`$PKG_CONFIG --modversion glib-2.0 | sed "s/\.[^.]*\$//"` +#GLIB_REQUIRED_VERSION_MAJOR_MINOR=`echo $GLIB_REQUIRED_VERSION | sed "s/\.[^.]*\$//"` +#if test "x$GLIB_VERSION_MAJOR_MINOR" = "x$GLIB_REQUIRED_VERSION_MAJOR_MINOR"; then GLIB_CFLAGS="-DG_DISABLE_DEPRECATED $GLIB_CFLAGS" -fi +#fi # # Checks for LibThai --- misc/pango-1.28.3/pango/pangoatsui-fontmap.c +++ misc/build/pango-1.28.3/pango/pangoatsui-fontmap.c @@ -27,6 +27,12 @@ #include "pango-impl-utils.h" #include "modules.h" +#if MAC_OS_X_VERSION_MAX_ALLOWED < 1050 +@class CALayer; +@class NSViewController; +typedef int NSColorRenderingIntent; +#endif + #import typedef struct _FontHashKey FontHashKey; --- misc/pango-1.28.3/pango/pangocairo-atsuifont.c +++ misc/build/pango-1.28.3/pango/pangocairo-atsuifont.c @@ -22,6 +22,12 @@ #include "config.h" +#if MAC_OS_X_VERSION_MAX_ALLOWED < 1050 +@class CALayer; +@class NSViewController; +typedef int NSColorRenderingIntent; +#endif + #import #include "pango-impl-utils.h" atch_page'>scratch_page Kernel playgroundUNKNOWN
summaryrefslogtreecommitdiff
AgeCommit message (Expand)AuthorFilesLines
2015-01-07documentation: Fix smp typo in memory-barriers.txtDavidlohr Bueso1-1/+1
2015-01-07documentation: Record limitations of bitfields and small variablesPaul E. McKenney1-0/+44
2014-12-11arch: Add lightweight memory barriers dma_rmb() and dma_wmb()Alexander Duyck1-0/+42
2014-12-09Merge branch 'core-rcu-for-linus' of git://git.kernel.org/pub/scm/linux/kerne...Linus Torvalds1-11/+29
2014-11-13documentation: memory-barriers.txt: Correct example for reorderingsPranith Kumar1-11/+11
2014-11-13documentation: Additional restriction for control dependenciesPaul E. McKenney1-0/+18
2014-10-20documentation: memory-barriers: clarify relaxed io accessor semanticsWill Deacon1-4/+9
2014-09-07memory-barriers: Fix description of 2-legged-if-based control dependenciesPaul E. McKenney1-54/+49
2014-09-07memory-barriers: Retain barrier() in fold-to-zero examplePaul E. McKenney1-3/+6
2014-09-07memory-barriers: Fix control-ordering no-transitivity examplePaul E. McKenney1-11/+17
2014-07-08documentation: Add acquire/release barriers to pairing rulesPaul E. McKenney1-4/+8
2014-07-08documentation: Clarify wake-up/memory-barrier relationshipPaul E. McKenney1-0/+15
2014-06-06Documentation/memory-barriers.txt: fix important typo re memory barriersAlexey Dobriyan1-2/+2
2014-04-18arch,doc: Convert smp_mb__*()Peter Zijlstra1-31/+11
2014-04-02Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jik...Linus Torvalds1-1/+1
2014-03-21doc: fix double wordsMasanari Iida1-1/+1
2014-02-24Documentation/memory-barriers.txt: Clarify release/acquire orderingPaul E. McKenney1-30/+61
2014-02-17Documentation/memory-barriers.txt: Need barriers() for some control dependenciesPaul E. McKenney1-7/+19
2014-02-17Documentation/memory-barriers.txt: Conditional must use prior loadPaul E. McKenney1-1/+2
2014-02-17Documentation/memory-barriers.txt: ACCESS_ONCE() provides cache coherencePaul E. McKenney1-0/+17
2014-01-12locking/doc: Rename LOCK/UNLOCK to ACQUIRE/RELEASEPeter Zijlstra1-116/+121
2013-12-16Documentation/memory-barriers.txt: Downgrade UNLOCK+BLOCKPaul E. McKenney1-15/+69
2013-12-16Documentation/memory-barriers.txt: Document ACCESS_ONCE()Paul E. McKenney1-35/+271
2013-12-16Documentation/memory-barriers.txt: Prohibit speculative writesPeter Zijlstra1-8/+175
2013-12-16Documentation/memory-barriers.txt: Add long atomic examples to memory-barrier...Paul E. McKenney1-11/+13
2013-12-16Documentation/memory-barriers.txt: Add needed ACCESS_ONCE() calls to memory-b...Paul E. McKenney1-80/+126
2013-11-22Documentation/memory-barriers.txt: Fix a typo in the data dependency descriptionIngo Molnar1-21/+21
2013-08-19doc: Fix memory-barrier control-dependency examplePaul E. McKenney1-4/+6
2013-01-08Documentation: Memory barrier semantics of atomic_xchg()Richard Braun1-0/+1
2012-10-23Documentation: Fix memory-barriers.txt examplePaul E. McKenney1-4/+5
2011-09-27doc: fix broken referencesPaul Bolle1-1/+1
2011-03-04smp: Document transitivity for memory barriers.Paul E. McKenney1-0/+58
2010-03-24Document Linux's circular buffering capabilitiesDavid Howells1-0/+20
2009-04-29sched: Document memory barriers implied by sleep/wake-up primitivesDavid Howells1-1/+128
2008-05-14