Browse Source

Fix VPATH build [Alexei Sheplyakov].

master
Richard Kreckel 17 years ago
parent
commit
7039d37732
  1. 4
      ChangeLog
  2. 7
      configure.ac

4
ChangeLog

@ -1,3 +1,7 @@
2008-04-07 Alexei Sheplyakov <varg@theor.jinr.ru>
* configure.ac: create subdirectory to hold auto-generated headers.
2008-04-07 Alexei Sheplyakov <varg@theor.jinr.ru> 2008-04-07 Alexei Sheplyakov <varg@theor.jinr.ru>
Re-esatblish 1.2.0 ABI, broken 2008-02-22: Re-esatblish 1.2.0 ABI, broken 2008-02-22:

7
configure.ac

@ -154,6 +154,13 @@ dnl checks for compiler characteristics
dnl dnl
AC_C_CHAR_UNSIGNED AC_C_CHAR_UNSIGNED
dnl DEFS __CHAR_UNSIGNED__ if char is unsigned dnl DEFS __CHAR_UNSIGNED__ if char is unsigned
dnl Create a subdirectory in the ${top_builddir} to hold auto-generated
dnl headers. This subdirectory does not exist when ${top_builddir} != ${top_srcdir}
dnl (a.k.a. "VPATH build").
if test ! -d include/cln; then
AS_MKDIR_P([include/cln])
fi
CL_MACHINE([integer types and behaviour],${srcdir}/autoconf/intparam.c,[CL_INTPARAM_CROSS],include/cln/intparam.h,cl_cv_file_intparam_h) CL_MACHINE([integer types and behaviour],${srcdir}/autoconf/intparam.c,[CL_INTPARAM_CROSS],include/cln/intparam.h,cl_cv_file_intparam_h)
dnl builds include/cln/intparam.h dnl builds include/cln/intparam.h
CL_MACHINE([floating-point types and behaviour],${srcdir}/autoconf/floatparam.c,[CL_FLOATPARAM_CROSS],include/cln/floatparam.h,cl_cv_file_floatparam_h) CL_MACHINE([floating-point types and behaviour],${srcdir}/autoconf/floatparam.c,[CL_FLOATPARAM_CROSS],include/cln/floatparam.h,cl_cv_file_floatparam_h)

Loading…
Cancel
Save