Remove EXV_HAVE_STRTOL

v0.27.3
Luis Díaz Más 7 years ago
parent d55b2b1b65
commit f86542e5f6

@ -69,9 +69,6 @@
// Define if you have the <strings.h> header file. // Define if you have the <strings.h> header file.
#cmakedefine EXV_HAVE_STRINGS_H #cmakedefine EXV_HAVE_STRINGS_H
// Define if you have the strtol function.
#cmakedefine EXV_HAVE_STRTOL
// Define if you have the mmap function. // Define if you have the mmap function.
#cmakedefine EXV_HAVE_MMAP #cmakedefine EXV_HAVE_MMAP

@ -24,7 +24,6 @@ check_function_exists( mmap EXV_HAVE_MMAP )
check_function_exists( munmap EXV_HAVE_MUNMAP ) check_function_exists( munmap EXV_HAVE_MUNMAP )
check_function_exists( strerror EXV_HAVE_STRERROR ) check_function_exists( strerror EXV_HAVE_STRERROR )
check_function_exists( strerror_r EXV_HAVE_STRERROR_R ) check_function_exists( strerror_r EXV_HAVE_STRERROR_R )
check_function_exists( strtol EXV_HAVE_STRTOL )
check_function_exists( timegm EXV_HAVE_TIMEGM ) check_function_exists( timegm EXV_HAVE_TIMEGM )
# TODO : Do something about EXV_STRERROR_R_CHAR_P # TODO : Do something about EXV_STRERROR_R_CHAR_P

@ -94,9 +94,6 @@
/* Define to 1 if you have the <string.h> header file. */ /* Define to 1 if you have the <string.h> header file. */
/* #undef EXV_HAVE_STRING_H */ /* #undef EXV_HAVE_STRING_H */
/* Define to 1 if you have the `strtol' function. */
#define EXV_HAVE_STRTOL 1
/* Define to 1 if you have the `mmap' function. */ /* Define to 1 if you have the `mmap' function. */
/* #undef EXV_HAVE_MMAP */ /* #undef EXV_HAVE_MMAP */

@ -262,7 +262,6 @@ void Exiv2::dumpLibraryInfo(std::ostream& os,const exv_grep_keys_t& keys)
int have_strerror =0; int have_strerror =0;
int have_strerror_r =0; int have_strerror_r =0;
int have_strings_h =0; int have_strings_h =0;
int have_strtol =0;
int have_mmap =0; int have_mmap =0;
int have_munmap =0; int have_munmap =0;
int have_sys_stat =0; int have_sys_stat =0;
@ -339,10 +338,6 @@ void Exiv2::dumpLibraryInfo(std::ostream& os,const exv_grep_keys_t& keys)
have_strings=1; have_strings=1;
#endif #endif
#ifdef EXV_HAVE_STRTOL
have_strtol=1;
#endif
#ifdef EXV_HAVE_MMAP #ifdef EXV_HAVE_MMAP
have_mmap=1; have_mmap=1;
#endif #endif
@ -508,7 +503,6 @@ void Exiv2::dumpLibraryInfo(std::ostream& os,const exv_grep_keys_t& keys)
output(os,keys,"have_strerror" ,have_strerror ); output(os,keys,"have_strerror" ,have_strerror );
output(os,keys,"have_strerror_r" ,have_strerror_r ); output(os,keys,"have_strerror_r" ,have_strerror_r );
output(os,keys,"have_strings_h" ,have_strings_h ); output(os,keys,"have_strings_h" ,have_strings_h );
output(os,keys,"have_strtol" ,have_strtol );
output(os,keys,"have_mmap" ,have_mmap ); output(os,keys,"have_mmap" ,have_mmap );
output(os,keys,"have_munmap" ,have_munmap ); output(os,keys,"have_munmap" ,have_munmap );
output(os,keys,"have_sys_stat" ,have_sys_stat ); output(os,keys,"have_sys_stat" ,have_sys_stat );

Loading…
Cancel
Save