Menu

autoconf macros for three functions

Developers
2002-08-31
2013-10-17
  • Charlie Zender

    Charlie Zender - 2002-08-31

    Hi Rorik,

    I'd like to start going through the codebase and
    replacing PVM_ARCH tokens with autoconf tokens.
    Would you please implement tests to check for
    the 3 functions in:

    #ifndef CRAY
        fl_out_hnd=mkstemp(fl_out_tmp_sys);
    #else
        fl_out_hnd=creat(mktemp(fl_out_tmp_sys),0600);
    #endif /* !CRAY */

    When that's done I'll change (or you can) the code
    to

    #ifdef HAVE_MKSTEMP
    ....
    #endif

    Thanks,
    Charlie

     
    • Rorik Peterson

      Rorik Peterson - 2002-09-04

      Charlie,
      Done.  I changed nco_fl_utl.c also.
      rorik

       
    • Nobody/Anonymous

      Hi Rorik,

      Thanks.

      FYI I checked in some changes to configure.in which should enable
      off-beats builds like cygwin to succeed. I noticed today that
      configure seems to want to build libnco_c++.[a,so] again, rather
      than libnco_cxx.[a,so], which was the short term fix. I'm not sure
      whether somehow I got hold of an old configure or you fixed it
      so libnco_c++ always works. Do you know what happened? I do not
      remember touching anything that would change this. I have other
      programs which link to libnco_c?? so please notify me if/when you're
      ready to change the linking name back to libnco_c++.

      Thanks,
      Charlie

       
    • Rorik Peterson

      Rorik Peterson - 2002-09-04

      Oops, I should have let you know.  Yeah, I changed back to libnco_c++ when I moved us to automake-1.6.  There is also GNU_TRP in config.h now.  I updated TODO.

      rorik

       

Log in to post a comment.