summaryrefslogtreecommitdiff
path: root/macros2/linger.m4
diff options
context:
space:
mode:
authornobody <nobody@localhost>2001-07-20 21:39:10 +0000
committernobody <nobody@localhost>2001-07-20 21:39:10 +0000
commit58f72d2fef6b7ca55fba924ae185558f91f5f601 (patch)
tree07c33ee23d92a05607336642ab9073bebae86fa7 /macros2/linger.m4
parentda37a018b4221309f7e5f8e6659203a0d8ec7129 (diff)
downloadgnome-common-gnome-vfs-1.tar.gz
This commit was manufactured by cvs2svn to create branch 'gnome-vfs-1'.gnome-vfs-1
svn path=/branches/gnome-vfs-1/; revision=1853
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 dfa7c8a..0000000
--- 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)
-])