summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2024-12-02 06:02:12 +0100
committerGravatar Nikias Bassen2024-12-02 06:02:12 +0100
commit4ed00e33a06fdfbfc50af9f78587300fcb0d0925 (patch)
tree24f79ddedfe407bd64d9518b22fe67efc453140f /configure.ac
parentfdb0cb81c0b03d7793b05c48ba10d0fd09db35d0 (diff)
downloadlibimobiledevice-glue-4ed00e33a06fdfbfc50af9f78587300fcb0d0925.tar.gz
libimobiledevice-glue-4ed00e33a06fdfbfc50af9f78587300fcb0d0925.tar.bz2
configure: Remove unused check
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac18
1 files changed, 0 insertions, 18 deletions
diff --git a/configure.ac b/configure.ac
index 83c41d7..0c26ea6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -91,24 +91,6 @@ case ${host_os} in
esac
AM_CONDITIONAL(WIN32, test x$win32 = 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>])
AS_COMPILER_FLAGS(GLOBAL_CFLAGS, "-Wall -Wextra -Wmissing-declarations -Wredundant-decls -Wshadow -Wpointer-arith -Wwrite-strings -Wswitch-default -Wno-unused-parameter -fsigned-char -fvisibility=hidden")