mirror of
https://github.com/Gnucash/gnucash.git
synced 2024-11-22 08:57:17 -06:00
94e9fe5e6f
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@12096 57a11ea4-9604-0410-9ed3-97b8803252fd
52 lines
1.2 KiB
C
52 lines
1.2 KiB
C
/*
|
|
* goffice-features.h.in:
|
|
*
|
|
* Copyright (C) 2005 Morten Welinder (terra@gnome.org)
|
|
*/
|
|
#ifndef GOFFICE_FEATURES_H
|
|
#define GOFFICE_FEATURES_H
|
|
|
|
/* Define if G Office supports long double. */
|
|
#undef GOFFICE_WITH_LONG_DOUBLE
|
|
|
|
/* Define if G Office supplies acosh. */
|
|
#undef GOFFICE_SUPPLIED_ACOSH
|
|
|
|
/* Define if G Office supplies asinh. */
|
|
#undef GOFFICE_SUPPLIED_ASINH
|
|
|
|
/* Define if G Office supplies atanh. */
|
|
#undef GOFFICE_SUPPLIED_ATANH
|
|
|
|
/* Define if G Office supplies expm1. */
|
|
#undef GOFFICE_SUPPLIED_EXPM1
|
|
|
|
/* Define if G Office supplies frexpl. */
|
|
#undef GOFFICE_SUPPLIED_FREXPL
|
|
|
|
/* Define if G Office supplies ldexpl. */
|
|
#undef GOFFICE_SUPPLIED_LDEXPL
|
|
|
|
/* Define if G Office supplies modfl. */
|
|
#undef GOFFICE_SUPPLIED_MODFL
|
|
|
|
/* Define if G Office supplies strtold. */
|
|
#undef GOFFICE_SUPPLIED_STRTOLD
|
|
|
|
/* The version number of this release, possibly with additional suffix */
|
|
#undef GOFFICE_VERSION
|
|
|
|
/* The Epoch of this release */
|
|
#undef GO_VERSION_EPOCH
|
|
|
|
/* The Major version number of this release */
|
|
#undef GO_VERSION_MAJOR
|
|
|
|
/* The Minor version number of this release */
|
|
#undef GO_VERSION_MINOR
|
|
|
|
/* Extra, possibly empty tag for this release */
|
|
#undef GO_VERSION_EXTRA
|
|
|
|
#endif /* GOFFICE_FEATURES_H */
|