mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
* configure.in: require g-wrap >= 1.3.3
* src/engine/gw-engine-spec.scm: use gslist-of where needed * src/engine/gw-kvp-spec.scm: use gslist-of where needed NOTE: As of now you ABSOLUTELY REQUIRE G-WRAP >= 1.3.3 git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@7678 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
c98a3a1a8d
commit
aacd10b603
@ -1,3 +1,11 @@
|
||||
2002-12-11 Derek Atkins <derek@ihtfp.com>
|
||||
|
||||
* configure.in: require g-wrap >= 1.3.3
|
||||
* src/engine/gw-engine-spec.scm: use gslist-of where needed
|
||||
* src/engine/gw-kvp-spec.scm: use gslist-of where needed
|
||||
|
||||
NOTE: As of now you ABSOLUTELY REQUIRE G-WRAP >= 1.3.3
|
||||
|
||||
2002-12-11 David Hampton <hampton@employees.org>
|
||||
|
||||
* src/gnc-ui.h: New help URLs for Wilddev.
|
||||
|
13
configure.in
13
configure.in
@ -150,16 +150,19 @@ G_WRAP_LINK_ARGS=""
|
||||
|
||||
AM_GUILE_VERSION_CHECK(1.3.4, 1.5.0, , [AC_MSG_ERROR([
|
||||
|
||||
guile does not appear to be installed correctly, or is not in the
|
||||
correct version range. Right now gnucash requires at least version
|
||||
guile does not appear to be installed correctly, or is not in the
|
||||
correct version range. Perhaps you have not installed the guile
|
||||
development packages? Right now gnucash requires at least version
|
||||
1.3.4 to build, but does not work with 1.5 or greater.
|
||||
])])
|
||||
|
||||
AM_PATH_GWRAP(1.3.2, , , [AC_MSG_ERROR([
|
||||
AM_PATH_GWRAP(1.3.3, , , [AC_MSG_ERROR([
|
||||
|
||||
g-wrap does not appear to be installed correctly, or is not new
|
||||
enough. Right now gnucash requires at least version 1.3.2 to build
|
||||
as there were major changes between version 1.3.1 and 1.3.2
|
||||
enough. Right now gnucash requires at least version 1.3.3 to build
|
||||
as there were major changes between version 1.3.1 and 1.3.2, and
|
||||
extra support added between 1.3.2 and 1.3.3 that is now required
|
||||
by gnucash.
|
||||
If you need to install g-wrap, you can find it at
|
||||
http://www.gnucash.org/pub/g-wrap.
|
||||
])])
|
||||
|
@ -1735,7 +1735,7 @@ of having a parent transaction with which one is working...")
|
||||
'gnc:query-purge-terms
|
||||
'<gw:void>
|
||||
"gncQueryPurgeTerms"
|
||||
'((<gnc:Query*> q) ((gw:glist-of <gnc:id-type> caller-owned) param-path))
|
||||
'((<gnc:Query*> q) ((gw:gslist-of <gnc:id-type> caller-owned) param-path))
|
||||
"Remove query terms of a particular parameter-path.")
|
||||
|
||||
(gw:wrap-function
|
||||
|
@ -46,7 +46,7 @@
|
||||
'<gw:void>
|
||||
"gnc_kvp_frame_delete_at_path"
|
||||
'((<gnc:kvp-frame*> f)
|
||||
((gw:glist-of (<gw:mchars> caller-owned const) caller-owned) key-path))
|
||||
((gw:gslist-of (<gw:mchars> caller-owned const) caller-owned) key-path))
|
||||
"Deletes the kvp_frame at the key-path in frame f")
|
||||
|
||||
(gw:wrap-function
|
||||
@ -73,7 +73,7 @@
|
||||
'<gw:void>
|
||||
"kvp_frame_set_slot_path_gslist"
|
||||
'((<gnc:kvp-frame*> k) (<gnc:kvp-value*> v)
|
||||
((gw:glist-of (<gw:mchars> caller-owned const) caller-owned) key-path))
|
||||
((gw:gslist-of (<gw:mchars> caller-owned const) caller-owned) key-path))
|
||||
"Sets the path key-path in frame k to the value v")
|
||||
|
||||
(gw:wrap-function
|
||||
@ -82,7 +82,7 @@
|
||||
'<gnc:kvp-value*>
|
||||
"kvp_frame_get_slot_path_gslist"
|
||||
'((<gnc:kvp-frame*> k)
|
||||
((gw:glist-of (<gw:mchars> caller-owned const) caller-owned) key-path))
|
||||
((gw:gslist-of (<gw:mchars> caller-owned const) caller-owned) key-path))
|
||||
"Gets the value at slots key-path in frame k")
|
||||
|
||||
;;
|
||||
|
Loading…
Reference in New Issue
Block a user