diff options
author | Bruce Momjian | 2003-10-09 03:20:34 +0000 |
---|---|---|
committer | Bruce Momjian | 2003-10-09 03:20:34 +0000 |
commit | 0e22cb1232f4474f9b461661b621603312f37d3d (patch) | |
tree | abd5f46c27f3bbde748119ed6d135a29c7b3224a /configure.in | |
parent | c1a0d72da6f7b6a6d84d24059a1c2af40aec7ee3 (diff) |
This centralizes the optimization defaults into configure.in, rather
than having CFLAGS= in the template files.
It uses -O2 for gcc (generated by autoconf), and -O for non-gcc, unless
the template overrides it.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 62ede6dde00..18d612729b6 100644 --- a/configure.in +++ b/configure.in @@ -1,5 +1,5 @@ dnl Process this file with autoconf to produce a configure script. -dnl $Header: /cvsroot/pgsql/configure.in,v 1.293 2003/10/03 03:08:14 pgsql Exp $ +dnl $Header: /cvsroot/pgsql/configure.in,v 1.294 2003/10/09 03:20:33 momjian Exp $ dnl dnl Developers, please strive to achieve this order: dnl @@ -238,6 +238,10 @@ AC_PROG_CC([$pgac_cc_list]) if test "$ac_env_CFLAGS_set" = set; then CFLAGS=$ac_env_CFLAGS_value fi +# configure sets CFLAGS to -O2 for gcc, so this is only for non-gcc +if test x"$CFLAGS" = x""; then + CFLAGS="-O" +fi if test "$enable_debug" = yes && test "$ac_cv_prog_cc_g" = yes; then CFLAGS="$CFLAGS -g" fi |