mirror of
https://github.com/Gnucash/gnucash.git
synced 2024-11-23 01:16:43 -06:00
2001-07-09 Dave Peticolas <dave@krondo.com>
* src/Makefile.am: link intl libs with gnucash-make-guids * src/register/QuickFill.c: same as below * src/register/quickfillcell.c: conditionally include wctype.h * configure.in: check for wctype.h git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@4930 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
48772fc3d7
commit
44a91f2521
10
ChangeLog
10
ChangeLog
@ -1,3 +1,13 @@
|
||||
2001-07-09 Dave Peticolas <dave@krondo.com>
|
||||
|
||||
* src/Makefile.am: link intl libs with gnucash-make-guids
|
||||
|
||||
* src/register/QuickFill.c: same as below
|
||||
|
||||
* src/register/quickfillcell.c: conditionally include wctype.h
|
||||
|
||||
* configure.in: check for wctype.h
|
||||
|
||||
2001-07-07 Dave Peticolas <dave@krondo.com>
|
||||
|
||||
* src/test/gnc-test-stuff.c (get_random_query): not so many terms
|
||||
|
@ -55,7 +55,7 @@ then
|
||||
AC_MSG_ERROR([Cannot find glib. Check config.log])
|
||||
fi
|
||||
|
||||
AC_CHECK_HEADERS(dlfcn.h dl.h utmp.h locale.h mcheck.h unistd.h)
|
||||
AC_CHECK_HEADERS(dlfcn.h dl.h utmp.h locale.h mcheck.h unistd.h wctype.h)
|
||||
|
||||
DL_LIB=
|
||||
AC_CHECK_FUNCS(dlopen,,[
|
||||
|
@ -57,7 +57,8 @@ gnucash_make_guids_LDADD = \
|
||||
engine/libgncengine.la \
|
||||
${DL_LIB} \
|
||||
${GNOME_XML_LIB} \
|
||||
${GLIB_LIBS}
|
||||
${GLIB_LIBS} \
|
||||
${INTLLIBS}
|
||||
|
||||
gnucash_make_guids_SOURCES = \
|
||||
gnucash-make-guids.c
|
||||
|
@ -27,7 +27,10 @@
|
||||
|
||||
#include <ctype.h>
|
||||
#include <string.h>
|
||||
|
||||
#ifdef HAVE_WCTYPE_H
|
||||
#include <wctype.h>
|
||||
#endif
|
||||
|
||||
#include "QuickFill.h"
|
||||
#include "basiccell.h"
|
||||
|
@ -40,7 +40,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#ifdef HAVE_WCTYPE_H
|
||||
#include <wctype.h>
|
||||
#endif
|
||||
|
||||
#include "basiccell.h"
|
||||
#include "gnc-ui-util.h"
|
||||
|
Loading…
Reference in New Issue
Block a user