diff options
author | 2024-12-02 06:19:28 +0100 | |
---|---|---|
committer | 2024-12-02 06:19:28 +0100 | |
commit | c8cdf20fe20b0c46ed7d9a9386bed03301ddbfa5 (patch) | |
tree | 8f23ae8b96e5fa5690ac042b7a5b99ce91105d7e | |
parent | ac617a8f52c0d3dad8ad71f0b08f0ab0aac7b64b (diff) | |
download | libimobiledevice-c8cdf20fe20b0c46ed7d9a9386bed03301ddbfa5.tar.gz libimobiledevice-c8cdf20fe20b0c46ed7d9a9386bed03301ddbfa5.tar.bz2 |
configure: Remove unused check
-rw-r--r-- | configure.ac | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/configure.ac b/configure.ac index 990e0b5..66f6b4b 100644 --- a/configure.ac +++ b/configure.ac @@ -108,24 +108,6 @@ esac AM_CONDITIONAL(WIN32, test x$win32 = xtrue) AM_CONDITIONAL(DARWIN, test x$darwin = xtrue) -# Check if the C compiler supports __attribute__((constructor)) -AC_CACHE_CHECK([wether the C compiler supports constructor/destructor attributes], - ac_cv_attribute_constructor, [ - ac_cv_attribute_constructor=no - AC_COMPILE_IFELSE([AC_LANG_PROGRAM( - [[ - static void __attribute__((constructor)) test_constructor(void) { - } - static void __attribute__((destructor)) test_destructor(void) { - } - ]], [])], - [ac_cv_attribute_constructor=yes] - )] -) -if test "$ac_cv_attribute_constructor" = "yes"; then - AC_DEFINE(HAVE_ATTRIBUTE_CONSTRUCTOR, 1, [Define if the C compiler supports constructor/destructor attributes]) -fi - AC_CHECK_MEMBER(struct dirent.d_type, AC_DEFINE(HAVE_DIRENT_D_TYPE, 1, [define if struct dirent has member d_type]),, [#include <dirent.h>]) # Cython Python Bindings |