]> git.donarmstrong.com Git - lilypond.git/commitdiff
*** empty log message ***
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Thu, 17 Jun 2004 23:25:59 +0000 (23:25 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Thu, 17 Jun 2004 23:25:59 +0000 (23:25 +0000)
THANKS
buildscripts/guile-gnome.sh
input/test/feathered-beam.ly [new file with mode: 0644]

diff --git a/THANKS b/THANKS
index 4cd15a6d769e7ac6051a27786154c36511a0088c..696cdc2c6f78480e0d2ca99734353d4372c47b29 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -10,7 +10,7 @@ Jan Nieuwenhuizen
 
 CONTRIBUTORS
 
-
+Peter Lutek
 Carl Sorensen
 Michael Welsh Duggan
 Pedro Kroger
index 65c80db1da1bd08c0ecf59cb6b75834dc6f65123..f1f78383a6743c97a8a1c23e1377ecdd862829a6 100644 (file)
@@ -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 (file)
index 0000000..be193d9
--- /dev/null
@@ -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 }
+
+}