| Last change
 on this file since 2434 was             2434, checked in by Christoph Mayer, 17 years ago | 
        
          | 
-getBootstrapNodes implementiert
 | 
        
          | File size:
            403 bytes | 
      
      
| Line |  | 
|---|
| 1 | # SYNOPSIS | 
|---|
| 2 | # | 
|---|
| 3 | #   AX_GMP() | 
|---|
| 4 | # | 
|---|
| 5 | # DESCRIPTION | 
|---|
| 6 | # | 
|---|
| 7 | #   Test for the Gnu Multiple Precision library | 
|---|
| 8 | # | 
|---|
| 9 | # LAST MODIFICATION | 
|---|
| 10 | # | 
|---|
| 11 | #   2008-12-11 | 
|---|
| 12 |  | 
|---|
| 13 | AC_DEFUN([AX_GMP], | 
|---|
| 14 | [ | 
|---|
| 15 | AC_CHECK_HEADERS(gmp.h,, | 
|---|
| 16 | [AC_MSG_ERROR([GNU Multiple Precision headers not found (GMP, http://gmplib.org)])]) | 
|---|
| 17 |  | 
|---|
| 18 | AC_CHECK_LIB([gmp],[__gmpz_init],, | 
|---|
| 19 | [AC_MSG_ERROR([GNU Multiple Precision library not found (GMP, http://gmplib.org)])]) | 
|---|
| 20 | ]) | 
|---|
       
      
  Note:
 See   
TracBrowser
 for help on using the repository browser.