diff options
author | Guy Harris <guy@alum.mit.edu> | 2008-05-23 02:15:27 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2008-05-23 02:15:27 +0000 |
commit | d6e94dafb32fa0c3ec17dc9162fce4b65458e5f6 (patch) | |
tree | f751334dde421c7fdf29c953c9c5257bb7a53dfd /wsutil/Makefile.am | |
parent | 4b87014937796bc83bd7da2b52bc0b3209df9218 (diff) | |
download | wireshark-d6e94dafb32fa0c3ec17dc9162fce4b65458e5f6.tar.gz wireshark-d6e94dafb32fa0c3ec17dc9162fce4b65458e5f6.tar.bz2 wireshark-d6e94dafb32fa0c3ec17dc9162fce4b65458e5f6.zip |
file_util.c is only for Windows; don't build it on UN*X. Put in a check
to cause it to fail when built on UN*X, and get rid of code that's not
needed on Windows.
svn path=/trunk/; revision=25362
Diffstat (limited to 'wsutil/Makefile.am')
-rw-r--r-- | wsutil/Makefile.am | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/wsutil/Makefile.am b/wsutil/Makefile.am index ee8459f727..0db6f97601 100644 --- a/wsutil/Makefile.am +++ b/wsutil/Makefile.am @@ -39,8 +39,10 @@ libwsutil_la_SOURCES = \ libwsutil_la_LIBADD = @GLIB_LIBS@ EXTRA_DIST = \ - Makefile.common \ - Makefile.nmake + Makefile.common \ + Makefile.nmake \ + file_util.c \ + file_util.h CLEANFILES = \ libwsutil.a \ |