~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to m4/pandora_optimize.m4

  • Committer: lbieber at stabletransit
  • Date: 2010-10-14 15:43:11 UTC
  • mfrom: (1848.1.4 build)
  • Revision ID: lbieber@drizzle-build-n02.wc1.dfw1.stabletransit.com-20101014154311-ojsrl9uz80yvizey
Merge Travis - changing struct to C++ classes
Merge Andrew - fix bug #571579: libdrizzle unexpected hang up when using in extremely slow networking environment
Merge Andrew - fix bug #643772: Large rows cannot be read if packet_size exceeds max buffer size
Merge Andrew - fix bug #660082: libdrizzle missing rev.147
Merge Andrew - fix bug 653234: drizzledump (and other clients?) should print Password: prompt on stderr
Merge Andrew - fix bug #653438: "Enter password" prompt should not print stars, or erase them on enter
Merge Andrew - fix bug 659824: Drizzle client UTF8 processing endless loop

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
dnl  Copyright (C) 2009 Sun Microsystems, Inc.
2
 
dnl This file is free software; Sun Microsystems, Inc.
 
1
dnl  Copyright (C) 2009 Sun Microsystems
 
2
dnl This file is free software; Sun Microsystems
3
3
dnl gives unlimited permission to copy and/or distribute it,
4
4
dnl with or without modifications, as long as this notice is preserved.
5
5
 
22
22
    dnl with using AC_CC_STD_C99 above
23
23
    CC="${CC} -std=gnu99"
24
24
 
25
 
    AM_CPPFLAGS="-g ${AM_CPPFLAGS}"
 
25
    AM_CPPFLAGS="-ggdb3 ${AM_CPPFLAGS}"
26
26
 
27
27
    DEBUG_CFLAGS="-O0"
28
28
    DEBUG_CXXFLAGS="-O0"
29
29
 
30
 
    OPTIMIZE_CFLAGS="-O2"
31
 
    OPTIMIZE_CXXFLAGS="-O2"
 
30
    OPTIMIZE_CFLAGS="-O3"
 
31
    OPTIMIZE_CXXFLAGS="-O3"
32
32
  ])
33
33
  AS_IF([test "$INTELCC" = "yes"],[
34
34
    AM_CPPFLAGS="-g ${AM_CPPFLAGS}"
36
36
    DEBUG_CFLAGS="-O0"
37
37
    DEBUG_CXXFLAGS="-O0"
38
38
 
39
 
    OPTIMIZE_CFLAGS="-xHOST -O2 -no-prec-div -static"
 
39
    OPTIMIZE_CFLAGS="-xHOST -O3 -no-prec-div -static"
40
40
    OPTIMIZE_CXXFLAGS="${OPTIMIZE_CFLAGS}"
41
41
 
42
42
  ])