From: Han-Wen Nienhuys Date: Thu, 17 Jun 2004 23:25:59 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: release/2.2.3~1^2~14 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=81d5f3ea5db5b76b81956c9504fd84dbbb51a060;p=lilypond.git *** empty log message *** --- diff --git a/THANKS b/THANKS index 4cd15a6d76..696cdc2c6f 100644 --- a/THANKS +++ b/THANKS @@ -10,7 +10,7 @@ Jan Nieuwenhuizen CONTRIBUTORS - +Peter Lutek Carl Sorensen Michael Welsh Duggan Pedro Kroger diff --git a/buildscripts/guile-gnome.sh b/buildscripts/guile-gnome.sh index 65c80db1da..f1f78383a6 100644 --- a/buildscripts/guile-gnome.sh +++ b/buildscripts/guile-gnome.sh @@ -15,6 +15,14 @@ if [ -d $HOME/usr/pkg/libffi/ ]; then export CPPFLAGS=-I$HOME/usr/pkg/libffi/include fi +if [ -x /usr/bin/gcc34 ] ;then + export GCC=gcc34 +fi + +if [ -x /usr/bin/gcc-3.4 ] ;then + export GCC=gcc-3.4 +fi + export AUTOMAKE=automake-1.8 export AUTOCONF=`which autoconf2.50 ` @@ -97,13 +105,7 @@ fi ../src/configure --prefix=$HOME/usr/pkg/guile-gnome -if [ -x /usr/bin/gcc-3.4 ]; then - G_WRAP_MODULE_DIR=$HOME/usr/pkg/g-wrap/share/guile/site make install CC=gcc-3.4 -else - ## requires 800mb RAM with -O2 -- are you sure that's not for ./gtk ? - (cd libgnomecanvas/gnome/gw; perl -i~ -pe 's/-O2//g' Makefile) - G_WRAP_MODULE_DIR=$HOME/usr/pkg/g-wrap/share/guile/site make install -fi +G_WRAP_MODULE_DIR=$HOME/usr/pkg/g-wrap/share/guile/site make install CC=$GCC export GUILE_LOAD_PATH=$HOME/usr/pkg/guile-gnome/share/guile:$GUILE_LOAD_PATH export LD_LIBRARY_PATH=$HOME/usr/pkg/guile-gnome/lib:$LD_LIBRARY_PATH diff --git a/input/test/feathered-beam.ly b/input/test/feathered-beam.ly new file mode 100644 index 0000000000..be193d968e --- /dev/null +++ b/input/test/feathered-beam.ly @@ -0,0 +1,20 @@ +\version "2.2.0" \header { + + texidoc = "A hack to create feathered +beams: manually make two beams overlap. This uses tuplets to +condense the spacing." + + } + +\score { + \notes \relative c' { + \context Voice { << { \stemUp \once \override Voice.Beam #'positions = #'(0 . 0.5) + \once \override Voice.TupletBracket #'number-visibility = ##f + \times 1/2 { c8[ c c c c c c c]} } \\ + { \stemUp \once \override Voice.Beam #'positions = #'(0 . -0.5) + \once \override Voice.TupletBracket #'number-visibility = ##f + \times 1/2 { c[ c c c c c c c] }} >> } r2 + } + \paper { raggedright = ##t } + +}