]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.76
authorfred <fred>
Sun, 24 Mar 2002 19:48:53 +0000 (19:48 +0000)
committerfred <fred>
Sun, 24 Mar 2002 19:48:53 +0000 (19:48 +0000)
README
configure
init/symbol.ini
lily/score-align-grav.cc

diff --git a/README b/README
index 34e2bac6d2a1d6108c4bf188ee49a28f983763df..20c2ad72aabc9881af0f37408d32f46f93d5f592 100644 (file)
--- a/README
+++ b/README
@@ -1,4 +1,11 @@
-IMPORTANT:
+This is the toplevel README to LilyPond
+
+
+GNU LilyPond which converts music definition files into visual or
+audio output: it can typeset formatted sheet music in TeX and 
+and (mechanical) perfomances to MIDI files.
+
+1. VERSIONING
 
 if you have downloaded a
 
@@ -7,7 +14,19 @@ if you have downloaded a
 version, then this is version is *not* meant for producing nice output
 (but to keep your patchsets up to date). It might not even compile.
 
-====================
+2. REQUIREMENTS
+
+For the compilation and running of LilyPond you need some additional
+packages. The most unusual one of this are the mf sources to
+MusixTeX. Please refer to the installation instructions on how to
+obtain and install them.
+
+3. INSTALLATINON
+
+For your convenience, a formatted copy of the INSTALL instructions are
+in the toplevel directory, as INSTALL.text
+
+4. DOCUMENTATION
 
 Please refer to the directory Documentation/ for the real doco.
 
@@ -16,14 +35,9 @@ and then do this:
 
        make doc
 
-You can also simply read the .pod sources. It is ASCII text. For your
-convenience, a copy of the formatted INSTALL instructions are in
-the toplevel directory, as INSTALL.text 
-
-
-======================
+You can also simply read the .pod sources. They are ASCII text. 
 
-NOTE:
+5. COMMENTS
 
 LilyPond is a long way from finished and polished. I do appreciate
 criticism, comments, bugreports, patches, etc. Please send e-mail to
@@ -40,6 +54,6 @@ to us: hanwen@stack.nl, jan@digicash.com.
 
 
        
-       
+
 Have fun!
 
index e409e1430d21dd8cb170be08efd8fbae05e93913..25709197dc04dd2437be16c226a7be985696e3c2 100755 (executable)
--- a/configure
+++ b/configure
@@ -589,9 +589,9 @@ if test "${enable_profiling+set}" = set; then
 fi
 
     
-# Check whether --enable-mingw32 or --disable-mingw32 was given.
-if test "${enable_mingw32+set}" = set; then
-  enableval="$enable_mingw32"
+# Check whether --enable-mingw-prefix or --disable-mingw-prefix was given.
+if test "${enable_mingw_prefix+set}" = set; then
+  enableval="$enable_mingw_prefix"
   MINGWPREFIX=$enableval
 else
   MINGWPREFIX=no
@@ -1698,38 +1698,28 @@ cat << EOF > lib/out/config.hh
 
 EOF
 
-CXX="$ac_cv_prog_CXX" bin/make_version >> lib/out/config.hh
+CXX="$ac_cv_prog_CXX" bin/make-version >> lib/out/config.hh
 
 touch make/out/Site.make
 
 # ugr
-(cd mi2mu; CXX="$ac_cv_prog_CXX" ../bin/make_version > out/version.hh
+(cd mi2mu; CXX="$ac_cv_prog_CXX" ../bin/make-version > out/version.hh
 )
 # rgu
 sed 's/TOPLEVEL_//g' <  .version >  lily/.version
-(cd lily; CXX="$ac_cv_prog_CXX" ../bin/make_version > out/version.hh
+(cd lily; CXX="$ac_cv_prog_CXX" ../bin/make-version > out/version.hh
 )
 
-$MAKE -f make/Toplevel.make.in Makefile
+echo '# WARNING : Automatically generated from make/Toplevel.make.in' | cat -  make/Toplevel.make.in > Makefile
 
 cat << END
-Finished configuring. For making everything, do:
+For making everything, do:
 
-       make all
-
-If you only want help on the make targets, do a
-
-       make help
-
-assuming that \`make' is GNU make, of course.
+    make               # GNU make
 
 If you want to make site-wide extensions to the makefiles, please use
 
     make/out/Site.make
-
-If you can't find a toplevel makefile, please execute
-
-    make -f make/Toplevel.make.in Makefile              # GNU make, of course
     
 END
 
index 77f7fdd5f6c2b9e671a40ae8e671bc7607039b25..d3f1d1bc29e351b477180781c7593bdcb091859f 100644 (file)
@@ -1,4 +1,4 @@
-\version "0.0.61";
+\version "0.1.0";
 
 \include "dynamic.ini"
 \include "dutch.ini" 
index b56e6777c20c04907c7d339e6c3246b66120cda2..7f315bcc39276de7069dc6658d797139beaf9bf6 100644 (file)
@@ -31,14 +31,15 @@ void
 Score_align_engraver::acknowledge_element(Score_elem_info inf)
 {
     if (inf.elem_l_->is_type_b(type_ch_C_ )) {
-       
-       if (! align_p_ ) {
+    
+       if (!align_p_ ) {
            align_p_ = new Horizontal_group_item;
            announce_element(Score_elem_info(align_p_,0));
        }
        
        align_p_->add_element(inf.elem_l_);
     }
+    
 }
 
 IMPLEMENT_STATIC_NAME(Score_align_engraver)