diff options
author | nobody <nobody@localhost> | 2000-07-24 23:07:48 +0000 |
---|---|---|
committer | nobody <nobody@localhost> | 2000-07-24 23:07:48 +0000 |
commit | 8fe3f1abaad8e82e756e3357ca730069df5ed2c8 (patch) | |
tree | 3972b59aa6351d8e9ab6b5a0a9a626b8092e3f5b /macros/linger.m4 | |
parent | 68fcb40dbe388b2c9065f2be5fef29d076f58f4b (diff) | |
download | gnome-common-NAUTILUS_PR2_ANCHOR.tar.gz |
This commit was manufactured by cvs2svn to create tagNAUTILUS_PR2_ANCHOR
'NAUTILUS_PR2_ANCHOR'.
svn path=/tags/NAUTILUS_PR2_ANCHOR/; revision=1332
Diffstat (limited to 'macros/linger.m4')
-rw-r--r-- | macros/linger.m4 | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/macros/linger.m4 b/macros/linger.m4 deleted file mode 100644 index dfa7c8a..0000000 --- a/macros/linger.m4 +++ /dev/null @@ -1,28 +0,0 @@ -dnl -dnl Check for struct linger -dnl -AC_DEFUN(AC_STRUCT_LINGER, [ -av_struct_linger=no -AC_MSG_CHECKING(struct linger is available) -AC_TRY_RUN([ -#include <sys/types.h> -#include <sys/socket.h> - -struct linger li; - -main () -{ - li.l_onoff = 1; - li.l_linger = 120; - exit (0); -} -],[ -AC_DEFINE(HAVE_STRUCT_LINGER) -av_struct_linger=yes -],[ -av_struct_linger=no -],[ -av_struct_linger=no -]) -AC_MSG_RESULT($av_struct_linger) -]) |