diff options
author | Guy Harris <guy@alum.mit.edu> | 2004-07-27 03:27:20 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2004-07-27 03:27:20 +0000 |
commit | c09c233937b5955f5610930bc6ba76b0dab814bc (patch) | |
tree | 3d3b3205cdf18b23415626734386313c95b1e8e7 | |
parent | 1dff8e81b2aa240c8a84091489d1ad7b01aafc5f (diff) | |
download | wireshark-c09c233937b5955f5610930bc6ba76b0dab814bc.tar.gz wireshark-c09c233937b5955f5610930bc6ba76b0dab814bc.tar.bz2 wireshark-c09c233937b5955f5610930bc6ba76b0dab814bc.zip |
"ps.c" isn't a header, so don't include it in ETHEREAL_COMMON_INCLUDES.
svn path=/trunk/; revision=11533
-rw-r--r-- | Makefile.common | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Makefile.common b/Makefile.common index eb278e8123..afaf5500c1 100644 --- a/Makefile.common +++ b/Makefile.common @@ -23,9 +23,8 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - - -# corresponding headers +# Header files for dissector helpers +# XXX - these should be moved to epan/dissectors DISSECTOR_SUPPORT_INCLUDES = \ adler32.h \ afn.h \ @@ -95,7 +94,7 @@ ETHEREAL_COMMON_SRC = \ # corresponding headers ETHEREAL_COMMON_INCLUDES = \ $(DISSECTOR_SUPPORT_INCLUDES) \ - $(BUILT_SOURCES) \ + svnversion.h \ capture_stop_conditions.h \ cfile.h \ color.h \ |