aboutsummaryrefslogtreecommitdiffstats
path: root/wsutil/Makefile.common
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss@ulticom.com>2008-06-30 17:16:29 +0000
committerJeff Morriss <jeff.morriss@ulticom.com>2008-06-30 17:16:29 +0000
commit83f9ecf96fdfac34b5c19c12f4bee9b04c12420c (patch)
tree90375f8b4b84d99576ef5374cdb7e7d596d92329 /wsutil/Makefile.common
parent6d4f9c1edab6390b383858efc26c692f1f2ddb1f (diff)
Move privileges.c and unicode-utils.c from epan to wsutil (so things like
capinfos and dumpcap don't need to depend on libwireshark nor directly pull in those modules). Because capinfos and editcap were only being linked with privileges.c if we had plugins, this allows those programs to be linked when someone is compiling --without-plugins. svn path=/trunk/; revision=25640
Diffstat (limited to 'wsutil/Makefile.common')
-rw-r--r--wsutil/Makefile.common12
1 files changed, 8 insertions, 4 deletions
diff --git a/wsutil/Makefile.common b/wsutil/Makefile.common
index 6684c8faad..df0c87d6e0 100644
--- a/wsutil/Makefile.common
+++ b/wsutil/Makefile.common
@@ -28,9 +28,13 @@
# into a list of object files by replacing ".c" with ".obj") or files
# generated from YACC or Lex files (as Automake doesn't want them in
# _SOURCES variables).
-LIBWSUTIL_SRC = \
- mpeg-audio.c
+LIBWSUTIL_SRC = \
+ mpeg-audio.c \
+ privileges.c \
+ unicode-utils.c
# Header files that are not generated from other files
-LIBWSUTIL_INCLUDES = \
- mpeg-audio.h
+LIBWSUTIL_INCLUDES = \
+ mpeg-audio.h \
+ privileges.h \
+ unicode-utils.h