2001-06-07 Dave Peticolas <dave@krondo.com>

* src/scm/price-quotes.scm: same as below

	* src/scm/Makefile.am: same as below

	* src/scm/process.scm: un-modulize process.scm. Let's experiment
	with this after 1.6.


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@4527 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Dave Peticolas 2001-06-07 23:56:07 +00:00
parent 0f91c91fd9
commit 5ce2210fde
4 changed files with 15 additions and 6 deletions

View File

@ -1,5 +1,12 @@
2001-06-07 Dave Peticolas <dave@krondo.com>
* src/scm/price-quotes.scm: same as below
* src/scm/Makefile.am: same as below
* src/scm/process.scm: un-modulize process.scm. Let's experiment
with this after 1.6.
* src/gnome/new-user-callbacks.c (gnc_get_ea_locale_dir): if first
check fails, see if 2-letter prefix succeeds

View File

@ -2,9 +2,9 @@
SUBDIRS = gnumeric printing qif-import report
gncscmdir = ${GNC_SCM_INSTALL_DIR}
gncscmmoddir = ${GNC_SHAREDIR}/guile-modules/gnucash
#gncscmmoddir = ${GNC_SHAREDIR}/guile-modules/gnucash
gncscmmod_DATA = process.scm
#gncscmmod_DATA = process.scm
gnc_autogen_scm_files = \
bootstrap.scm
@ -44,6 +44,7 @@ gnc_regular_scm_files = \
path.scm \
prefs.scm \
price-quotes.scm \
process.scm \
report.scm \
report-html.scm \
report-utilities.scm \

View File

@ -20,10 +20,11 @@
;;; Boston, MA 02111-1307, USA gnu@gnu.org
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(use-modules (gnucash process))
;(use-modules (gnucash process))
(gnc:support "price-quotes.scm")
(gnc:depend "process.scm")
(gnc:depend "gnc-numeric.scm")
(gnc:depend "utilities.scm")
(gnc:depend "engine-utilities.scm")

View File

@ -20,10 +20,10 @@
;;; Boston, MA 02111-1307, USA gnu@gnu.org
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define-module (gnucash process))
;(define-module (gnucash process))
(export gnc:run-sub-process)
(export gnc:cleanup-sub-process)
;(export gnc:run-sub-process)
;(export gnc:cleanup-sub-process)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;