Changeset dbf5d1 in git


Ignore:
Timestamp:
Jun 3, 2013, 4:44:57 PM (10 years ago)
Author:
Martin Lee <martinlee84@…>
Branches:
(u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
Children:
502dd5528b44d6832fd6972089729d9108c820de
Parents:
fa15984ec25c611c06dd0ecc031ba4b26112e0e8
git-author:
Martin Lee <martinlee84@web.de>2013-06-03 16:44:57+02:00
git-committer:
Martin Lee <martinlee84@web.de>2013-06-03 17:16:16+02:00
Message:
chg: check if NTL_GMP_LIP=on was given to NTL's configure
File:
1 edited

Legend:

Unmodified
Added
Removed
  • m4/ntl-check.m4

    rfa1598 rdbf5d1  
    6868        AC_TRY_RUN(
    6969        [#include <NTL/version.h>
    70         int main () { if (NTL_MAJOR_VERSION < 5) return -1; else return 0; }   
     70        #include <NTL/config.h>
     71        #ifndef NTL_GMP_LIP
     72        int main() {return -1;}
     73        #else
     74        int main () { if (NTL_MAJOR_VERSION < 5) return -1; else return 0;}
     75        #endif 
    7176        ],[
    7277        ntl_found="yes"
     
    108113elif test -n "$ntl_problem"; then
    109114        AC_MSG_RESULT(problem)
    110         echo "Sorry, your NTL version is too old. Disabling."
     115        echo "Sorry, your NTL version is too old or not configured with NTL_GMP_LIP=on. Disabling."
    111116        ifelse([$3], , :, [$3])
    112117elif test   "x$ntl_found" = "xno";  then
Note: See TracChangeset for help on using the changeset viewer.