The SILC Project

source navigation ]
identifier search ]
freetext search ]
file search ]

silc/silcer/macros/linger.m4

  1 dnl
  2 dnl Check for struct linger
  3 dnl
  4 AC_DEFUN([AC_STRUCT_LINGER], [
  5 av_struct_linger=no
  6 AC_MSG_CHECKING(struct linger is available)
  7 AC_TRY_RUN([
  8 #include <sys/types.h>
  9 #include <sys/socket.h>
 10 
 11 struct linger li;
 12 
 13 main ()
 14 {
 15     li.l_onoff = 1;
 16     li.l_linger = 120;
 17     exit (0);
 18 }
 19 ],[
 20 AC_DEFINE(HAVE_STRUCT_LINGER)
 21 av_struct_linger=yes
 22 ],[
 23 av_struct_linger=no
 24 ],[
 25 av_struct_linger=no
 26 ])
 27 AC_MSG_RESULT($av_struct_linger)
 28 ])

This page was automatically generated by the LXR engine.
Free-text search provided by Glimpse