diff options
author | Tov Are Jacobsen <charles@src.gnome.org> | 2002-03-06 00:20:39 +0800 |
---|---|---|
committer | Tov Are Jacobsen <charles@src.gnome.org> | 2002-03-06 00:20:39 +0800 |
commit | 33c3f207a59810fa1323454d3afd015bcba1184b (patch) | |
tree | 9a28bf5adf0666fc5d6f36af6e87f1aec5f73b69 /macros/linger.m4 | |
parent | e3de4b0e7531981852e033aa7789d73c6b636fa0 (diff) | |
download | gsoc2013-evolution-33c3f207a59810fa1323454d3afd015bcba1184b.tar.gz gsoc2013-evolution-33c3f207a59810fa1323454d3afd015bcba1184b.tar.zst gsoc2013-evolution-33c3f207a59810fa1323454d3afd015bcba1184b.zip |
These macros aren't needed in gnome2
These macros aren't needed in gnome2
svn path=/trunk/; revision=15918
Diffstat (limited to 'macros/linger.m4')
-rw-r--r-- | macros/linger.m4 | 28 |
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) -]) |