~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Monty Taylor
  • Date: 2009-01-12 02:26:15 UTC
  • mto: (801.1.3 testable) (779.3.2 devel)
  • mto: This revision was merged to the branch mainline in revision 786.
  • Revision ID: mordred@inaugust.com-20090112022615-958tff132qiipl90
Possible build fixes for Solaris.

Show diffs side-by-side

added added

removed removed

Lines of Context:
278
278
fi
279
279
if test "$SUNCC" = "yes"
280
280
then
281
 
  dnl I'm cheating here and sticking C99 support in SYMBOLS_FLAGS
282
 
  SYMBOLS_FLAGS=""
283
281
  DEBUG_OPTIMIZE_CC=""
284
282
  if test "$target_cpu" = "sparc"
285
283
  then
286
284
    MEMALIGN_FLAGS="-xmemalign=8s"
287
285
  fi
288
 
  OPTIMIZE_CFLAGS="-xO4 -xlibmil -xdepend -Xa -mt -xstrconst -D_FORTEC_ ${MEMALIGN_FLAGS}"
 
286
  CXXFLAGS="${CXXFLAGS} -compat=5 -library=stlport4 -xlang=c99 ${MEMALIGN_FLAGS}"
 
287
  CFLAGS="${CFLAGS} -xstrconst ${MEMALIGN_FLAGS}"
 
288
  SYMBOLS_FLAGS="-g"
 
289
  OPTIMIZE_FLAGS="-xO4 -xlibmil -xdepend"
 
290
  OPTIMIZE_CFLAGS="${OPTIMIZE_FLAGS}"
 
291
  OPTIMIZE_CXXFLAGS="${OPTIMIZE_FLAGS}"
289
292
  DEBUG_OPTIMIZE_CXX=""
290
 
  #Put back in once isnan is figured out
291
 
  OPTIMIZE_CXXFLAGS="-xO4 -xlibmil -mt -D_FORTEC_ -xlang=c99 -compat=5 -library=stlport4 ${MEMALIGN_FLAGS}"
292
293
fi
293
294
 
294
295
dnl TODO: Remove this define once we are using 2.61 across the board.