~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to m4/misc.m4

Split out warnings - start using the pandora build system.

Show diffs side-by-side

added added

removed removed

Lines of Context:
111
111
dnl END OF DRIZZLE_CHECK_MAX_INDEXES SECTION
112
112
dnl ---------------------------------------------------------------------------
113
113
 
114
 
AC_DEFUN([DRIZZLE_CHECK_C_VERSION],[
115
 
 
116
 
  dnl Print version of C compiler
117
 
  AC_MSG_CHECKING("C Compiler version")
118
 
  if test "$GCC" = "yes"
119
 
  then
120
 
    CC_VERSION=`$CC --version | sed 1q`
121
 
  elif test "$SUNCC" = "yes"
122
 
  then
123
 
    CC_VERSION=`$CC -V 2>&1 | sed 1q`
124
 
  else
125
 
    CC_VERSION=""
126
 
  fi
127
 
  AC_MSG_RESULT("$CC_VERSION")
128
 
  AC_SUBST(CC_VERSION)
129
 
])
130
 
 
131
 
 
132
 
AC_DEFUN([DRIZZLE_CHECK_CXX_VERSION], [
133
 
  dnl Print version of CXX compiler
134
 
  AC_MSG_CHECKING("C++ Compiler version")
135
 
  if test "$GCC" = "yes"
136
 
  then
137
 
    CXX_VERSION=`$CXX --version | sed 1q`
138
 
  elif test "$SUNCC" = "yes"
139
 
  then
140
 
    CXX_VERSION=`$CXX -V 2>&1 | sed 1q`
141
 
  else
142
 
    CXX_VERSION=""
143
 
  fi
144
 
  AC_MSG_RESULT("$CXX_VERSION")
145
 
  AC_SUBST(CXX_VERSION)
146
 
])
147
114
 
148
115
 
149
116
dnl