summaryrefslogtreecommitdiff
path: root/macros2/linger.m4
diff options
context:
space:
mode:
authornobody <nobody@localhost>2002-03-10 15:35:38 +0000
committernobody <nobody@localhost>2002-03-10 15:35:38 +0000
commit3a1674bdd0059de7243b9706121b3aba30e82e79 (patch)
tree112fdd1c1308eff2630d6e381ed55bb0b4ee3071 /macros2/linger.m4
parent251a1525db302d0b30e0529d3752202e4706d35a (diff)
downloadshared-mime-info-GNOME_VFS_1_9_11.tar.gz
This commit was manufactured by cvs2svn to create tagGNOME_VFS_1_9_11
'GNOME_VFS_1_9_11'. svn path=/tags/GNOME_VFS_1_9_11/; revision=2403
Diffstat (limited to 'macros2/linger.m4')
-rw-r--r--macros2/linger.m428
1 files changed, 0 insertions, 28 deletions
diff --git a/macros2/linger.m4 b/macros2/linger.m4
deleted file mode 100644
index dfa7c8ae..00000000
--- a/macros2/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)
-])