X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=scm%2Fstandalone.scm;h=b69785a926897b213c81652157392242a4e505be;hb=4d852ef65fc654e4ed02413926fc0cb78a1da1be;hp=dc3ee80fcef0d159045a45a233eab510818edf74;hpb=347426c0c9d2fb8e4e75216f717606f1f2124b1a;p=lilypond.git diff --git a/scm/standalone.scm b/scm/standalone.scm index dc3ee80fce..b69785a926 100644 --- a/scm/standalone.scm +++ b/scm/standalone.scm @@ -1,12 +1,26 @@ -;;;; standalone.scm -- implement Scheme stuff for use without LilyPond +;;;; This file is part of LilyPond, the GNU music typesetter. ;;;; -;;;; source file of the GNU LilyPond music typesetter -;;;; -;;;; (c) 1998--2000 Jan Nieuwenhuizen -;;;; Han-Wen Nienhuys +;;;; Copyright (C) 1998--2010 Jan Nieuwenhuizen +;;;; Han-Wen Nienhuys +;;;; +;;;; LilyPond is free software: you can redistribute it and/or modify +;;;; it under the terms of the GNU General Public License as published by +;;;; the Free Software Foundation, either version 3 of the License, or +;;;; (at your option) any later version. +;;;; +;;;; LilyPond is distributed in the hope that it will be useful, +;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;;;; GNU General Public License for more details. +;;;; +;;;; You should have received a copy of the GNU General Public License +;;;; along with LilyPond. If not, see . + + +(use-modules (ice-9 rdelim)) -(define standalone (not (defined? 'ly-gulp-file))) -(write standalone (current-error-port)) +(define standalone (not (defined? 'ly:gulp-file))) +;;(write standalone (current-error-port)) (define (gulp-file name) (let* ((file (open-input-file name)) @@ -16,8 +30,8 @@ (define (scm-gulp-file name) (set! %load-path - (cons (string-append (getenv 'LILYPONDPREFIX) "/ly") - (cons (string-append (getenv 'LILYPONDPREFIX) "/ps") + (cons (string-append (getenv "LILYPOND_DATADIR") "/ly") + (cons (string-append (getenv "LILYPOND_DATADIR") "/ps") %load-path))) (let ((path (%search-load-path name))) (if path @@ -31,7 +45,7 @@ (number->string x)) " "))) -(define ly-gulp-file scm-gulp-file) -(define ly-number->string scm-number->string) +(define ly:gulp-file scm-gulp-file) +(define ly:number->string scm-number->string) -(eval-string (ly-gulp-file "lily.scm")) \ No newline at end of file +(eval-string (ly:gulp-file "lily.scm"))