Changeset a03496 in git


Ignore:
Timestamp:
Apr 28, 2012, 10:13:44 PM (11 years ago)
Author:
Martin Lee <martinlee84@…>
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
Children:
c723d80014810aa20eda22cc641eba844c928820e7676af1109530ff2efd9495bfdb0fa2cedc576a
Parents:
0fd1715860b463009cfd80025e81bd671f0a0a2d
git-author:
Martin Lee <martinlee84@web.de>2012-04-28 22:13:44+02:00
git-committer:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-05-02 14:41:42+02:00
Message:
fix: gmp 5.x does not define __GMP_BITS_PER_MP_LIMB any more which is needed in FLINT's longlong.h
Location:
factory
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • factory/FLINTconvert.cc

    r0fd171 ra03496  
    3333{
    3434#endif
     35#ifndef __GMP_BITS_PER_MP_LIMB
     36#define __GMP_BITS_PER_MP_LIMB GMP_LIMB_BITS
     37#endif
    3538#include <fmpz.h>
    3639#include <fmpq.h>
  • factory/FLINTconvert.h

    r0fd171 ra03496  
    2424{
    2525#endif
     26#ifndef __GMP_BITS_PER_MP_LIMB
     27#define __GMP_BITS_PER_MP_LIMB GMP_LIMB_BITS
     28#endif
    2629#include <fmpz.h>
    2730#include <fmpq.h>
     
    3336}
    3437#endif
     38
     39#include <factory/cf_gmp.h>
    3540
    3641/// conversion of a factory integer to fmpz_t
Note: See TracChangeset for help on using the changeset viewer.