~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to m4/pandora_platform.m4

Merge Jay (build only related)

Show diffs side-by-side

added added

removed removed

Lines of Context:
63
63
  AC_CHECK_DECL([__SUNPRO_C], [SUNCC="yes"], [SUNCC="no"])
64
64
  AC_CHECK_DECL([__ICC], [INTELCC="yes"], [INTELCC="no"])
65
65
 
66
 
  AS_IF([test "x$INTELCC" = "xyes"], [enable_rpath=no])
 
66
  AS_IF([test "$INTELCC" = "yes"], [enable_rpath=no])
 
67
 
 
68
  dnl By default, Sun Studio grabs special versions of limits.h and string.h
 
69
  dnl when you use <cstring> and <climits>. By setting this define, we can
 
70
  dnl disable that and cause those to wrap the standard headers instead.
 
71
  dnl http://www.stlport.com/doc/configure.html
 
72
  AS_IF([test "$SUNCC" = "yes"],[
 
73
    AC_DEFINE([_STLP_NO_NEW_C_HEADERS],[1],
 
74
      [Cause Sun Studio to not be quite so strict with standards conflicts])
 
75
  ])
67
76
 
68
77
])