diff options
author | zimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4> | 2014-01-16 22:03:01 +0000 |
---|---|---|
committer | zimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4> | 2014-01-16 22:03:01 +0000 |
commit | b8ef4f9b79a2a989a601bf0fad918541aaada8cd (patch) | |
tree | 1c85f14570a6c8de41a2b15e4c17f716c8a89b5a /tests/tget_f.c | |
parent | f56d3181a510273c1dadce640072ebdaff3a8e94 (diff) | |
download | mpfr-b8ef4f9b79a2a989a601bf0fad918541aaada8cd.tar.gz |
first step towards making MPFR compile with --enable-mini-gmp, so far make
succeeds and all tests compile, but many tests fail, will investigate later
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@8753 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'tests/tget_f.c')
-rw-r--r-- | tests/tget_f.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/tget_f.c b/tests/tget_f.c index 3da3e309e..3a655e595 100644 --- a/tests/tget_f.c +++ b/tests/tget_f.c @@ -20,6 +20,7 @@ along with the GNU MPFR Library; see the file COPYING.LESSER. If not, see http://www.gnu.org/licenses/ or write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ +#ifndef WANT_MINI_GMP #include "mpfr-test.h" /* Test that there is no lost of accuracy when converting a mpfr_t number @@ -384,3 +385,10 @@ main (void) tests_end_mpfr (); return 0; } +#else +int +main () +{ + return 0; +} +#endif |