summaryrefslogtreecommitdiff
path: root/macros2/linger.m4
diff options
context:
space:
mode:
authornobody <nobody@localhost>2001-11-28 01:38:38 +0000
committernobody <nobody@localhost>2001-11-28 01:38:38 +0000
commitdf74275bc9aa813aa4e2599490cdc43965208253 (patch)
tree79560a393da3e5e67ae5f3bf03d952ba22cfe72d /macros2/linger.m4
parentff6920f8c90d31dd70674f5f6ec756b58376cfb9 (diff)
downloadshared-mime-info-eog-for-gnome-1-4.tar.gz
This commit was manufactured by cvs2svn to create brancheog-for-gnome-1-4
'eog-for-gnome-1-4'. svn path=/branches/eog-for-gnome-1-4/; revision=2162
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)
-])