Changeset dbf5d1 in git
- Timestamp:
- Jun 3, 2013, 4:44:57 PM (10 years ago)
- 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
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
m4/ntl-check.m4
rfa1598 rdbf5d1 68 68 AC_TRY_RUN( 69 69 [#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 71 76 ],[ 72 77 ntl_found="yes" … … 108 113 elif test -n "$ntl_problem"; then 109 114 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." 111 116 ifelse([$3], , :, [$3]) 112 117 elif test "x$ntl_found" = "xno"; then
Note: See TracChangeset
for help on using the changeset viewer.