]> git.sur5r.net Git - openldap/commitdiff
Check for HAVE_LONG_LONG in STRTOL macro
authorLuke Howard <lukeh@openldap.org>
Mon, 22 Sep 2003 14:01:31 +0000 (14:01 +0000)
committerLuke Howard <lukeh@openldap.org>
Mon, 22 Sep 2003 14:01:31 +0000 (14:01 +0000)
servers/slapd/schema_init.c

index 7fe8d87c5c3e135d25f32239fce92a1de35eb22e..4d3d90c01414f2d185491e7e192a7d704e55f72e 100644 (file)
@@ -1791,7 +1791,7 @@ numericStringNormalize(
  * Integer conversion macros that will use the largest available
  * type.
  */
-#if defined(HAVE_STRTOLL) && defined(LLONG_MAX) && defined(LLONG_MIN)
+#if defined(HAVE_STRTOLL) && defined(LLONG_MAX) && defined(LLONG_MIN) && defined(HAVE_LONG_LONG)
 # define SLAP_STRTOL(n,e,b)  strtoll(n,e,b) 
 # define SLAP_LONG_MAX       LLONG_MAX
 # define SLAP_LONG_MIN       LLONG_MIN