aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2013-05-28 21:36:33 +0800
committerMatthew Barnes <mbarnes@redhat.com>2013-05-28 21:42:12 +0800
commit3777e4887c286282b5e24b42328a6a660d7360c8 (patch)
tree9e07efc540129588c35f755cb03711dbedd76445 /mail
parent13958f5ad55a53fada84d0b0679af9d38019c6aa (diff)
downloadgsoc2013-evolution-3777e4887c286282b5e24b42328a6a660d7360c8.tar
gsoc2013-evolution-3777e4887c286282b5e24b42328a6a660d7360c8.tar.gz
gsoc2013-evolution-3777e4887c286282b5e24b42328a6a660d7360c8.tar.bz2
gsoc2013-evolution-3777e4887c286282b5e24b42328a6a660d7360c8.tar.lz
gsoc2013-evolution-3777e4887c286282b5e24b42328a6a660d7360c8.tar.xz
gsoc2013-evolution-3777e4887c286282b5e24b42328a6a660d7360c8.tar.zst
gsoc2013-evolution-3777e4887c286282b5e24b42328a6a660d7360c8.zip
configure.ac: Remove unused function and header checks.
This removes the following definitions from config.h: CTIME_R_THREE_ARGS GETHOSTBYADDR_R_SEVEN_ARGS GETHOSTBYNAME_R_FIVE_ARGS HAVE_ISBLANK HAVE_MKSTEMP HAVE_STATFS HAVE_STATVFS HAVE_SYS_MOUNT_H HAVE_SYS_PARAM_H HAVE_SYS_STATVFS_H These were all either unused or unnecessarily used.
Diffstat (limited to 'mail')
-rw-r--r--mail/message-list.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/mail/message-list.c b/mail/message-list.c
index 3356054b44..e670d50802 100644
--- a/mail/message-list.c
+++ b/mail/message-list.c
@@ -1919,13 +1919,6 @@ filter_date (time_t date)
e_utf8_strftime_fix_am_pm (buf, 26, _("%b %d %Y"), &then);
}
}
-#if 0
-#ifdef CTIME_R_THREE_ARGS
- ctime_r (&date, buf, 26);
-#else
- ctime_r (&date, buf);
-#endif
-#endif
return g_strdup (buf);
}