]> git.samba.org - obnox/wireshark/wip.git/blob - config.nmake
Define GLIB_LIBS and GTK_LIBS variables in config.nmake (based on
[obnox/wireshark/wip.git] / config.nmake
1 # $Id: config.nmake,v 1.45 2003/06/14 20:45:23 guy Exp $
2
3 VERSION=0.9.13
4 #
5 # This should be comma-separated, not dot-separated, as per Graham
6 # Bloice's message in
7 #
8 #       http://www.ethereal.com/lists/ethereal-dev/200303/msg00283.html
9 #
10 # "The RC_VERSION variable in config.nmake should be comma separated. 
11 # This allows the resources to be built correctly and the version
12 # number to be correctly displayed in the explorer properties dialog
13 # for the executables, and XP's tooltip, rather than 0.0.0.0."
14 #
15 RC_VERSION=0,9,13
16 WTAP_VERSION=0.0
17
18 GTK_VERSION=1.3
19 GLIB_VERSION=1.3
20
21 GLIB_DIR=C:\ethereal-win32-libs\glib
22 GTK_DIR=C:\ethereal-win32-libs\gtk+
23 ZLIB_DIR=C:\ethereal-win32-libs\zlib-1.1.3
24 PCAP_DIR=C:\ethereal-win32-libs\WPdpack
25 NET_SNMP_DIR=C:\ethereal-win32-libs\net-snmp-5.0.6
26
27 #
28 # If you have GNU ADNS, set this to the pathname of the directory in
29 # which the GNU ADNS .lib file is stored.
30 #
31 # If you don't have GNU ADNS, comment this line out, so that ADNS_DIR
32 # isn't defined.
33 #
34 ADNS_DIR=C:\ethereal-win32-libs\adns-1.0-win32-01
35
36 COMMON_FILES_GNU=c:\program files\common files\gnu
37
38 LOCAL_CFLAGS=-Zi
39 LOCAL_LDFLAGS=/DEBUG
40
41 # Set PDB_FILE according to your VC++ version 
42 PDB_FILE=vc*.pdb
43
44 # Set path if you need to find some binary
45 PATH=c:\cygnus\cygwin-b20\H-i586-cygwin32\bin;c:\python22;c:\ethereal\wiretap;$(COMMON_FILES_GNU);$(PATH)
46
47 SH=bash
48 PERL=perl
49 POD2MAN=pod2man
50 POD2HTML=pod2html
51 PYTHON="C:/python22/python.exe"
52 LEX=flex
53 YACC=bison
54
55 # Set YACC_OPTS if cygnus bison can't find template file.
56 #YACC_OPTS=-S t:\w32-ix86\cygnus\cygwin-b20\share\bison.simple 
57
58 # To build the installer
59 MAKENSIS="C:/program files/nsis/makensis.exe"
60
61 #
62 # You should not have to change anything below this comment.
63 # If you do, it's a deficiency in the Makefile.nmake files;
64 # either tell ethereal-dev@ethereal.com about it, including
65 # details of why you had to change it, or fix config.nmake
66 # and any Makefile.nmake files that need to be changed, and
67 # send us the patches, along with details of why the change
68 # was necessary.
69 #
70 GLIB_CFLAGS=/I$(GLIB_DIR) /I$(GLIB_DIR)\gmodule
71 GTK_CFLAGS=/I$(GTK_DIR) /I$(GTK_DIR)\gdk /I$(GTK_DIR)\gdk\win32 $(GLIB_CFLAGS)
72 GLIB_LIBS=$(GLIB_DIR)\glib-$(GLIB_VERSION).lib \
73         $(GLIB_DIR)\gmodule\gmodule-$(GLIB_VERSION).lib
74 GTK_LIBS=$(GTK_DIR)\gtk\gtk-$(GTK_VERSION).lib \
75         $(GTK_DIR)\gdk\gdk-$(GTK_VERSION).lib \
76         $(GLIB_LIBS)