summaryrefslogtreecommitdiff
path: root/macros2/linger.m4
diff options
context:
space:
mode:
authornobody <nobody@localhost>2003-01-09 06:55:40 +0000
committernobody <nobody@localhost>2003-01-09 06:55:40 +0000
commit74d33271a64bb9cb2fc86d4e37f16877c79e1122 (patch)
tree1e12040caec266ee2e16460c80583d4af3687d10 /macros2/linger.m4
parenta4fc522b4035e39ec3dc9562db72d6809ebca6ac (diff)
downloadgnome-common-toshok-libmimedir-branch.tar.gz
This commit was manufactured by cvs2svn to create branchtoshok-libmimedir-branch
'toshok-libmimedir-branch'. svn path=/branches/toshok-libmimedir-branch/; revision=2765
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)
-])