mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
*** empty log message ***
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@2101 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
14
ChangeLog
14
ChangeLog
@@ -1,3 +1,17 @@
|
||||
2000-03-22 Dave Peticolas <peticola@cs.ucdavis.edu>
|
||||
|
||||
* src/engine/util.c (xaccSPrintAmount): add a PRTNMN flag for
|
||||
printing non-monetary values.
|
||||
|
||||
* src/register/splitreg.c (xaccInitSplitRegister): update for
|
||||
changes to the price cell api.
|
||||
|
||||
* src/engine/util.c (xaccSPrintAmount): set the precision based on
|
||||
the locale.
|
||||
|
||||
* src/register/pricecell.c: remove some unneeded api calls and
|
||||
add one for specifying that the cell contains a share quantity.
|
||||
|
||||
2000-03-19 Dave Peticolas <peticola@cs.ucdavis.edu>
|
||||
|
||||
* src/gnome/dialog-options.c (gnc_option_set_ui_widget): request
|
||||
|
||||
@@ -47,4 +47,5 @@ GNC_CONFIGDIR=@GNC_CONFIGDIR@
|
||||
GNC_SHAREDIR=@GNC_SHAREDIR@
|
||||
|
||||
HAVE_PLOTUTILS=@HAVE_PLOTUTILS@
|
||||
GLIB_CONFIG_BIN=@GLIB_CONFIG_BIN@
|
||||
GNOME_CONFIG_BIN=@GNOME_CONFIG_BIN@
|
||||
|
||||
15
configure.in
15
configure.in
@@ -171,6 +171,21 @@ if test x"$SWIG" = xno; then
|
||||
AC_MSG_ERROR([Cannot find Swig. Try using the --with-swig flag.])
|
||||
fi
|
||||
|
||||
### -------------------------------------------------------------------
|
||||
|
||||
# Let the user specify glib paths:
|
||||
GLIB_CONFIG_BIN="glib-config"
|
||||
AC_ARG_WITH( glib-config,
|
||||
[ --with-glib-config=executable which glib-config to use to find glib ],
|
||||
GLIB_CONFIG_BIN="$with_glib_config")
|
||||
|
||||
# If the user hasn't specified the binary, then try to find it.
|
||||
if test x"${GLIB_CONFIG_BIN}" = x
|
||||
then
|
||||
AC_PATH_PROG(GLIB_CONFIG_BIN, glib-config, GLIB_CONFIG_NOT_FOUND)
|
||||
fi
|
||||
AC_SUBST(GLIB_CONFIG_BIN)
|
||||
|
||||
# Let the user specify gnome paths:
|
||||
GNOME_CONFIG_BIN="gnome-config"
|
||||
AC_ARG_WITH( gnome-config,
|
||||
|
||||
@@ -52,7 +52,3 @@ default: ../libengine.a
|
||||
TRASH += ../libengine.a libengine.a
|
||||
|
||||
.PHONY: all default
|
||||
|
||||
# Local Variables:
|
||||
# tab-width: 2
|
||||
# End:
|
||||
|
||||
Reference in New Issue
Block a user