aboutsummaryrefslogtreecommitdiffstats
path: root/macros/linger.m4
diff options
context:
space:
mode:
authorgfarris <gfarris@src.gnome.org>2001-12-05 04:55:41 +0800
committergfarris <gfarris@src.gnome.org>2001-12-05 04:55:41 +0800
commite508d293964edda19447e713a2503e3133e84161 (patch)
tree836e96fae4c645a2aaf533b0a2f0650dd19a03c3 /macros/linger.m4
parent4b74a42adf77437cebda06977077664dc66cdf8c (diff)
downloadgsoc2013-evolution-e508d293964edda19447e713a2503e3133e84161.tar
gsoc2013-evolution-e508d293964edda19447e713a2503e3133e84161.tar.gz
gsoc2013-evolution-e508d293964edda19447e713a2503e3133e84161.tar.bz2
gsoc2013-evolution-e508d293964edda19447e713a2503e3133e84161.tar.lz
gsoc2013-evolution-e508d293964edda19447e713a2503e3133e84161.tar.xz
gsoc2013-evolution-e508d293964edda19447e713a2503e3133e84161.tar.zst
gsoc2013-evolution-e508d293964edda19447e713a2503e3133e84161.zip
*** empty log message ***
svn path=/trunk/; revision=14868
Diffstat (limited to 'macros/linger.m4')
-rw-r--r--macros/linger.m428
1 files changed, 0 insertions, 28 deletions
diff --git a/macros/linger.m4 b/macros/linger.m4
deleted file mode 100644
index f1c7060398..0000000000
--- 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;
-
-int main ()
-{
- li.l_onoff = 1;
- li.l_linger = 120;
- return 0;
-}
-],[
-AC_DEFINE(HAVE_STRUCT_LINGER)
-av_struct_linger=yes
-],[
-av_struct_linger=no
-],[
-av_struct_linger=no
-])
-AC_MSG_RESULT($av_struct_linger)
-])