-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi
In addition to the other replies, here some thoughts on the mentioned macros (see below): On 10/30/2010 05:45 AM, mina adel wrote: > > Hi All > > I am converting a code from configure.ac to cmake. > Can any one please advice me about what is the corresponding macro for the > following. I have searched the cmake wiki and documentation and didnot find > any. > > AC_HEADER_STDBOOL That one's fine, since not all compilers implement C99. > AC_C_CONST This macro is marked as obsolescent: http://www.gnu.org/software/hello/manual/autoconf/C-Compiler.html#index-AC_005fC_005fCONST-885 > AC_TYPE_PID_T > AC_TYPE_SIZE_T Those two might be useful. > AC_STRUCT_TM That one's obsolescent too: http://www.gnu.org/software/hello/manual/autoconf/Particular-Structures.html#index-AC_005fSTRUCT_005fTM-693 > > # Checks for library functions. > AC_FUNC_CLOSEDIR_VOID Obsolescent: http://www.gnu.org/software/hello/manual/autoconf/Particular-Functions.html#index-AC_005fFUNC_005fCLOSEDIR_005fVOID-380 > AC_FUNC_ERROR_AT_LINE Obsolescent, use Gnulib instead: http://www.gnu.org/software/hello/manual/autoconf/Particular-Functions.html#index-AC_005fFUNC_005fERROR_005fAT_005fLINE-385 > AC_FUNC_FORK > AC_FUNC_MALLOC > AC_FUNC_REALLOC Could be useful too. > AC_TYPE_SIGNAL I pretty much bet that you require a C89 compiler and thus this macro is also pretty much useless to you: http://www.gnu.org/software/hello/manual/autoconf/Obsolete-Macros.html#index-AC_005fTYPE_005fSIGNAL-2139 > AC_FUNC_VPRINTF Obsolescent: http://www.gnu.org/software/hello/manual/autoconf/Particular-Functions.html#index-AC_005fFUNC_005fVPRINTF-546 > > Thank u > Mina > HTH Michael -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iEYEARECAAYFAkzPwH0ACgkQyAe0BK8NufMAywCeMX6vUJhjD5aBLXDdDIQ6yvy5 3e4AoI+SwM+NvpAFlmEg08acHPnh1SoF =u+P+ -----END PGP SIGNATURE----- _______________________________________________ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages on-topic and check the CMake FAQ at: http://www.cmake.org/Wiki/CMake_FAQ Follow this link to subscribe/unsubscribe: http://www.cmake.org/mailman/listinfo/cmake
