]> granicus.if.org Git - neomutt/commitdiff
remove check on long long int
authorDamien Riegel <damien.riegel@gmail.com>
Wed, 19 Apr 2017 16:53:08 +0000 (12:53 -0400)
committerRichard Russon <rich@flatcap.org>
Tue, 2 May 2017 16:34:43 +0000 (17:34 +0100)
This is C99 standard, and nobody relies on the LONGLONG symbol anyway

configure.ac
protos.h

index 1b97e0fc461c1dafe0f5f9b8d0671260473f8ae8..a2e2050cbf5dbb577fcd50cf491ca2de2c11e02f 100644 (file)
@@ -118,7 +118,6 @@ AH_BOTTOM([/* fseeko portability defines */
 # define OFF_T_FMT "%ld"
 #endif
 ])
-AC_TYPE_LONG_LONG_INT
 
 ac_aux_path_sendmail=/usr/sbin:/usr/lib
 AC_PATH_PROG(SENDMAIL, sendmail, /usr/sbin/sendmail, $PATH:$ac_aux_path_sendmail)
index 547ac91a38cff32bcc9a3ac119536f5ff79b3389..66a9b058b96ddf698ffbdf272b168772249ce30a 100644 (file)
--- a/protos.h
+++ b/protos.h
@@ -438,15 +438,6 @@ void mutt_pattern_free(pattern_t **pat);
  * Prototypes for broken systems
  */
 
-#ifdef HAVE_LONG_LONG_INT
-#ifdef LONGLONG
-#error LONGLONG is already defined
-#endif
-#define LONGLONG long long
-#else
-#define LONGLONG long
-#endif
-
 /* HP-UX, ConvexOS and UNIXware don't have this macro */
 #ifndef S_ISLNK
 #define S_ISLNK(x) (((x) &S_IFMT) == S_IFLNK ? 1 : 0)