*** 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:
Dave Peticolas
2000-03-22 10:26:45 +00:00
parent 2962e03ec9
commit 894317529a
5 changed files with 249 additions and 167 deletions

View File

@@ -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

View File

@@ -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@

382
configure vendored

File diff suppressed because it is too large Load Diff

View File

@@ -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,

View File

@@ -52,7 +52,3 @@ default: ../libengine.a
TRASH += ../libengine.a libengine.a
.PHONY: all default
# Local Variables:
# tab-width: 2
# End: