diff options
author | Gilbert Ramirez <gram@alumni.rice.edu> | 1998-12-17 05:42:33 +0000 |
---|---|---|
committer | Gilbert Ramirez <gram@alumni.rice.edu> | 1998-12-17 05:42:33 +0000 |
commit | 5676298385a1abe5b04490e06485e965f5c54107 (patch) | |
tree | c7a1862fa9f17082e0a5b4adc6b86abe34808761 /follow.c | |
parent | f5e3259b0a1ef70517093cd93e25a7d5b0cd1563 (diff) | |
download | wireshark-5676298385a1abe5b04490e06485e965f5c54107.tar.gz wireshark-5676298385a1abe5b04490e06485e965f5c54107.tar.bz2 wireshark-5676298385a1abe5b04490e06485e965f5c54107.zip |
A patch spread across many files to let Ethereal compile under GTK+-1.1.x.
Tests for GTK versions are done during compilation, not during "./configure".
The big problems have been taken care of in this patch (functional change
in the packet clist and conversion of menu_factory to item_factory), but
plenty of smaller problems with dialogue boxes abound. I have fixed
a small problem with file_open*(), but have left 2 comments in just in case
I'm not going about this the right way. Can someone verify?
svn path=/trunk/; revision=127
Diffstat (limited to 'follow.c')
-rw-r--r-- | follow.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,6 +1,6 @@ /* follow.c * - * $Id: follow.c,v 1.4 1998/10/28 01:29:16 guy Exp $ + * $Id: follow.c,v 1.5 1998/12/17 05:42:25 gram Exp $ * * Copyright 1998 Mike Hall <mlh@io.com> * @@ -30,6 +30,8 @@ #endif #include <gtk/gtk.h> +#include <stdlib.h> +#include <stdio.h> #include <string.h> #include <unistd.h> |