mirror of
https://github.com/Gnucash/gnucash.git
synced 2026-09-03 20:53:02 -05:00
* src/calculation/Makefile.am: need to add GUILE_INCS
* src/engine/Makefile.am: add ${INTLLIBS} for gettext() et al on
platforms that don't have it in libc
* src/backend/file/io-gncbin-r.c: don't need to define functions
that are never used, so move the #ifdef around. Fixes # 105124
* rpm/gnucash.in: don't call autoconf
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@7937 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
@@ -2,6 +2,14 @@
|
||||
|
||||
* src/calculation/Makefile.am: need to add GUILE_INCS
|
||||
|
||||
* src/engine/Makefile.am: add ${INTLLIBS} for gettext() et al on
|
||||
platforms that don't have it in libc
|
||||
|
||||
* src/backend/file/io-gncbin-r.c: don't need to define functions
|
||||
that are never used, so move the #ifdef around. Fixes # 105124
|
||||
|
||||
* rpm/gnucash.in: don't call autoconf
|
||||
|
||||
2003-02-02 Chris Lyttle <chris@wilddev.net>
|
||||
|
||||
* configure.in: change to 1.9.0 version
|
||||
|
||||
@@ -92,7 +92,6 @@ want to keep your financial data in a database instead of a flat file
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
autoconf
|
||||
%configure \
|
||||
%if %{_with_ofx}
|
||||
--enable-ofx \
|
||||
|
||||
@@ -300,6 +300,16 @@ gnc_get_binfile_io_error(void)
|
||||
/*******************************************************/
|
||||
/* some endian stuff */
|
||||
|
||||
/* if we are running on a little-endian system, we need to
|
||||
* do some endian flipping, because the xacc/gnucash native data
|
||||
* format is big-endian. In particular, Intel x86 is little-endian. */
|
||||
#if WORDS_BIGENDIAN
|
||||
#define XACC_FLIP_DOUBLE(x)
|
||||
#define XACC_FLIP_LONG_LONG(x)
|
||||
#define XACC_FLIP_INT(x)
|
||||
#define XACC_FLIP_SHORT(x)
|
||||
#else
|
||||
|
||||
/* flip endianness of int, short, etc */
|
||||
static int
|
||||
xaccFlipInt (int val)
|
||||
@@ -346,15 +356,6 @@ xaccFlipLongLong (gint64 val)
|
||||
return u.d;
|
||||
}
|
||||
|
||||
/* if we are running on a little-endian system, we need to
|
||||
* do some endian flipping, because the xacc/gnucash native data
|
||||
* format is big-endian. In particular, Intel x86 is little-endian. */
|
||||
#if WORDS_BIGENDIAN
|
||||
#define XACC_FLIP_DOUBLE(x)
|
||||
#define XACC_FLIP_LONG_LONG(x)
|
||||
#define XACC_FLIP_INT(x)
|
||||
#define XACC_FLIP_SHORT(x)
|
||||
#else
|
||||
#define XACC_FLIP_DOUBLE(x) { (x) = xaccFlipDouble (x); }
|
||||
#define XACC_FLIP_LONG_LONG(x) { (x) = xaccFlipLongLong (x); }
|
||||
#define XACC_FLIP_INT(x) { (x) = xaccFlipInt (x); }
|
||||
|
||||
@@ -112,7 +112,7 @@ noinst_HEADERS = \
|
||||
noinst_SCRIPTS = iso-currencies-to-c
|
||||
|
||||
libgncmod_engine_la_LDFLAGS = -module
|
||||
libgncmod_engine_la_LIBADD = ${GNUCASH_ENGINE_BASE_LIBS} \
|
||||
libgncmod_engine_la_LIBADD = ${GNUCASH_ENGINE_BASE_LIBS} ${INTLLIBS} \
|
||||
libgw-engine.la \
|
||||
libgw-kvp.la \
|
||||
../gnc-module/libgncmodule.la \
|
||||
|
||||
Reference in New Issue
Block a user