Wireshark-dev: [Wireshark-dev] Follow up to making register.c - python problem - patch
From: Neil Piercy <Neil.Piercy@xxxxxxxxxxxx>
Date: Fri, 01 Sep 2006 14:38:12 +0100
This issue bubbled around in mid July, but I forgot to submit a patch -
here is a patch which changes the native Windows PYTHON lines from using
"/" to "\" as directory separators - I _think_ I've got all the makefiles...
Neil
Index: asn1/rrlp/Makefile.nmake =================================================================== --- asn1/rrlp/Makefile.nmake (revision 19103) +++ asn1/rrlp/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py rrlp.asn packet-rrlp-template.c packet-rrlp-template.h rrlp.cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -u -e -p $(PROTOCOL_NAME) -c rrlp.cnf -s packet-rrlp-template rrlp.asn + $(PYTHON) ..\..\tools\asn2wrs.py -u -e -p $(PROTOCOL_NAME) -c rrlp.cnf -s packet-rrlp-template rrlp.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/nbap/Makefile.nmake =================================================================== --- asn1/nbap/Makefile.nmake (revision 19103) +++ asn1/nbap/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py nbap.asn packet-nbap-template.c packet-nbap-template.h nbap.cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -e -F -p $(PROTOCOL_NAME) -c nbap.cnf -s packet-nbap-template nbap.asn + $(PYTHON) ..\..\tools\asn2wrs.py -e -F -p $(PROTOCOL_NAME) -c nbap.cnf -s packet-nbap-template nbap.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/h245/Makefile.nmake =================================================================== --- asn1/h245/Makefile.nmake (revision 19103) +++ asn1/h245/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py MULTIMEDIA-SYSTEM-CONTROL.asn $(PROTOCOL_NAME).cnf packet-$(PROTOCOL_NAME)-template.c packet-$(PROTOCOL_NAME)-template.h !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template MULTIMEDIA-SYSTEM-CONTROL.asn + $(PYTHON) ..\..\tools\asn2wrs.py -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template MULTIMEDIA-SYSTEM-CONTROL.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/pkixcrmf/Makefile.nmake =================================================================== --- asn1/pkixcrmf/Makefile.nmake (revision 19103) +++ asn1/pkixcrmf/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py CRMF.asn packet-crmf-template.c packet-crmf-template.h crmf.cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c crmf.cnf -s packet-crmf-template CRMF.asn + $(PYTHON) ..\..\tools\asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c crmf.cnf -s packet-crmf-template CRMF.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/h248/Makefile.nmake =================================================================== --- asn1/h248/Makefile.nmake (revision 19103) +++ asn1/h248/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py MEGACO.asn packet-$(PROTOCOL_NAME)-template.c packet-$(PROTOCOL_NAME)-template.h $(PROTOCOL_NAME).cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template MEGACO.asn + $(PYTHON) ..\..\tools\asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template MEGACO.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/ftam/Makefile.nmake =================================================================== --- asn1/ftam/Makefile.nmake (revision 19103) +++ asn1/ftam/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py ISO8571-FTAM.asn packet-$(PROTOCOL_NAME)-template.c packet-$(PROTOCOL_NAME)-template.h $(PROTOCOL_NAME).cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template ISO8571-FTAM.asn + $(PYTHON) ..\..\tools\asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template ISO8571-FTAM.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/pkix1implicit/Makefile.nmake =================================================================== --- asn1/pkix1implicit/Makefile.nmake (revision 19103) +++ asn1/pkix1implicit/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py PKIX1IMPLICIT93.asn packet-pkix1implicit-template.c packet-pkix1implicit-template.h pkix1implicit.cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -e -b -p $(PROTOCOL_NAME) -c pkix1implicit.cnf -s packet-pkix1implicit-template PKIX1IMPLICIT93.asn + $(PYTHON) ..\..\tools\asn2wrs.py -e -b -p $(PROTOCOL_NAME) -c pkix1implicit.cnf -s packet-pkix1implicit-template PKIX1IMPLICIT93.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/tcap/Makefile.nmake =================================================================== --- asn1/tcap/Makefile.nmake (revision 19103) +++ asn1/tcap/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py tcap.asn packet-$(PROTOCOL_NAME)-template.c packet-$(PROTOCOL_NAME)-template.h tcap.cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c tcap.cnf -s packet-$(PROTOCOL_NAME)-template tcap.asn + $(PYTHON) ..\..\tools\asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c tcap.cnf -s packet-$(PROTOCOL_NAME)-template tcap.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/ansi_map/Makefile.nmake =================================================================== --- asn1/ansi_map/Makefile.nmake (revision 19103) +++ asn1/ansi_map/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py ansi_map.asn packet-ansi_map-template.c packet-ansi_map-template.h ansi_map.cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c ansi_map.cnf -s packet-ansi_map-template ansi_map.asn + $(PYTHON) ..\..\tools\asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c ansi_map.cnf -s packet-ansi_map-template ansi_map.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/acp133/Makefile.nmake =================================================================== --- asn1/acp133/Makefile.nmake (revision 19103) +++ asn1/acp133/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py acp133.asn packet-$(PROTOCOL_NAME)-template.c packet-$(PROTOCOL_NAME)-template.h $(PROTOCOL_NAME).cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template acp133.asn + $(PYTHON) ..\..\tools\asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template acp133.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/ns-cert-exts/Makefile.nmake =================================================================== --- asn1/ns-cert-exts/Makefile.nmake (revision 19103) +++ asn1/ns-cert-exts/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py NETSCAPE-CERT-EXTS.asn packet-ns_cert_exts-template.c packet-ns_cert_exts-template.h ns_cert_exts.cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c ns_cert_exts.cnf -s packet-ns_cert_exts-template NETSCAPE-CERT-EXTS.asn + $(PYTHON) ..\..\tools\asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c ns_cert_exts.cnf -s packet-ns_cert_exts-template NETSCAPE-CERT-EXTS.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/pkinit/Makefile.nmake =================================================================== --- asn1/pkinit/Makefile.nmake (revision 19103) +++ asn1/pkinit/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py PKINIT.asn packet-pkinit-template.c packet-pkinit-template.h pkinit.cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -e -b -p $(PROTOCOL_NAME) -c pkinit.cnf -s packet-pkinit-template PKINIT.asn + $(PYTHON) ..\..\tools\asn2wrs.py -e -b -p $(PROTOCOL_NAME) -c pkinit.cnf -s packet-pkinit-template PKINIT.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/pkixqualified/Makefile.nmake =================================================================== --- asn1/pkixqualified/Makefile.nmake (revision 19103) +++ asn1/pkixqualified/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py PKIXqualified.asn packet-pkixqualified-template.c packet-pkixqualified-template.h pkixqualified.cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c pkixqualified.cnf -s packet-pkixqualified-template PKIXqualified.asn + $(PYTHON) ..\..\tools\asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c pkixqualified.cnf -s packet-pkixqualified-template PKIXqualified.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/ulp/Makefile.nmake =================================================================== --- asn1/ulp/Makefile.nmake (revision 19103) +++ asn1/ulp/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py ULP.asn packet-ulp-template.c packet-ulp-template.h ulp.cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -u -e -p $(PROTOCOL_NAME) -c ulp.cnf -s packet-ulp-template ULP.asn + $(PYTHON) ..\..\tools\asn2wrs.py -u -e -p $(PROTOCOL_NAME) -c ulp.cnf -s packet-ulp-template ULP.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/ranap/Makefile.nmake =================================================================== --- asn1/ranap/Makefile.nmake (revision 19103) +++ asn1/ranap/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py ranap.asn packet-$(PROTOCOL_NAME)-template.c packet-$(PROTOCOL_NAME)-template.h ranap.cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -e -F -p $(PROTOCOL_NAME) -c ranap.cnf -s packet-$(PROTOCOL_NAME)-template ranap.asn + $(PYTHON) ..\..\tools\asn2wrs.py -e -F -p $(PROTOCOL_NAME) -c ranap.cnf -s packet-$(PROTOCOL_NAME)-template ranap.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/acse/Makefile.nmake =================================================================== --- asn1/acse/Makefile.nmake (revision 19103) +++ asn1/acse/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py acse.asn packet-$(PROTOCOL_NAME)-template.c packet-$(PROTOCOL_NAME)-template.h $(PROTOCOL_NAME).cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template acse.asn + $(PYTHON) ..\..\tools\asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template acse.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/h450/Makefile.nmake =================================================================== --- asn1/h450/Makefile.nmake (revision 19103) +++ asn1/h450/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py h4501.asn packet-$(PROTOCOL_NAME)-template.c packet-$(PROTOCOL_NAME)-template.h $(PROTOCOL_NAME).cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -e -p h450 -c h450.cnf -s packet-h450-template h4501.asn + $(PYTHON) ..\..\tools\asn2wrs.py -e -p h450 -c h450.cnf -s packet-h450-template h4501.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/pkcs1/Makefile.nmake =================================================================== --- asn1/pkcs1/Makefile.nmake (revision 19103) +++ asn1/pkcs1/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py PKCS1.asn packet-pkcs1-template.c packet-pkcs1-template.h pkcs1.cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -b -p $(PROTOCOL_NAME) -c pkcs1.cnf -s packet-pkcs1-template PKCS1.asn + $(PYTHON) ..\..\tools\asn2wrs.py -b -p $(PROTOCOL_NAME) -c pkcs1.cnf -s packet-pkcs1-template PKCS1.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/dop/Makefile.nmake =================================================================== --- asn1/dop/Makefile.nmake (revision 19103) +++ asn1/dop/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py dop.asn packet-$(PROTOCOL_NAME)-template.c packet-$(PROTOCOL_NAME)-template.h $(PROTOCOL_NAME).cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template dop.asn + $(PYTHON) ..\..\tools\asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template dop.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/cms/Makefile.nmake =================================================================== --- asn1/cms/Makefile.nmake (revision 19103) +++ asn1/cms/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py CryptographicMessageSyntax.asn packet-$(PROTOCOL_NAME)-template.c packet-$(PROTOCOL_NAME)-template.h $(PROTOCOL_NAME).cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template CryptographicMessageSyntax.asn + $(PYTHON) ..\..\tools\asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template CryptographicMessageSyntax.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/gsmmap/Makefile.nmake =================================================================== --- asn1/gsmmap/Makefile.nmake (revision 19103) +++ asn1/gsmmap/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py GSMMAP.asn packet-$(PROTOCOL_NAME)-template.c packet-$(PROTOCOL_NAME)-template.h gsmmap.cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c gsmmap.cnf -s packet-$(PROTOCOL_NAME)-template GSMMAP.asn + $(PYTHON) ..\..\tools\asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c gsmmap.cnf -s packet-$(PROTOCOL_NAME)-template GSMMAP.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/dsp/Makefile.nmake =================================================================== --- asn1/dsp/Makefile.nmake (revision 19103) +++ asn1/dsp/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py dsp.asn packet-$(PROTOCOL_NAME)-template.c packet-$(PROTOCOL_NAME)-template.h $(PROTOCOL_NAME).cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template dsp.asn + $(PYTHON) ..\..\tools\asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template dsp.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/inap/Makefile.nmake =================================================================== --- asn1/inap/Makefile.nmake (revision 19103) +++ asn1/inap/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py inap.asn packet-$(PROTOCOL_NAME)-template.c packet-$(PROTOCOL_NAME)-template.h inap.cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c inap.cnf -s packet-$(PROTOCOL_NAME)-template inap.asn + $(PYTHON) ..\..\tools\asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c inap.cnf -s packet-$(PROTOCOL_NAME)-template inap.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/cmip/Makefile.nmake =================================================================== --- asn1/cmip/Makefile.nmake (revision 19103) +++ asn1/cmip/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py CMIP.asn packet-$(PROTOCOL_NAME)-template.c packet-$(PROTOCOL_NAME)-template.h $(PROTOCOL_NAME).cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template CMIP.asn + $(PYTHON) ..\..\tools\asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template CMIP.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/ftbp/Makefile.nmake =================================================================== --- asn1/ftbp/Makefile.nmake (revision 19103) +++ asn1/ftbp/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py ftbp.asn packet-$(PROTOCOL_NAME)-template.c packet-$(PROTOCOL_NAME)-template.h $(PROTOCOL_NAME).cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template ftbp.asn + $(PYTHON) ..\..\tools\asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template ftbp.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/mms/Makefile.nmake =================================================================== --- asn1/mms/Makefile.nmake (revision 19103) +++ asn1/mms/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py mms.asn packet-$(PROTOCOL_NAME)-template.c packet-$(PROTOCOL_NAME)-template.h $(PROTOCOL_NAME).cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template mms.asn + $(PYTHON) ..\..\tools\asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template mms.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/x411/Makefile.nmake =================================================================== --- asn1/x411/Makefile.nmake (revision 19103) +++ asn1/x411/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py $(PROTOCOL_NAME).asn packet-$(PROTOCOL_NAME)-template.c packet-$(PROTOCOL_NAME)-template.h $(PROTOCOL_NAME).cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template $(PROTOCOL_NAME).asn + $(PYTHON) ..\..\tools\asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template $(PROTOCOL_NAME).asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/ros/Makefile.nmake =================================================================== --- asn1/ros/Makefile.nmake (revision 19103) +++ asn1/ros/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py $(PROTOCOL_NAME).asn packet-$(PROTOCOL_NAME)-template.c packet-$(PROTOCOL_NAME)-template.h $(PROTOCOL_NAME).cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template $(PROTOCOL_NAME).asn + $(PYTHON) ..\..\tools\asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template $(PROTOCOL_NAME).asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/logotype-cert-extn/Makefile.nmake =================================================================== --- asn1/logotype-cert-extn/Makefile.nmake (revision 19103) +++ asn1/logotype-cert-extn/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py LogotypeCertExtn.asn packet-logotype-cert-extn-template.c packet-logotype-cert-extn-template.h logotype-cert-extn.cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c logotype-cert-extn.cnf -s packet-logotype-cert-extn-template LogotypeCertExtn.asn + $(PYTHON) ..\..\tools\asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c logotype-cert-extn.cnf -s packet-logotype-cert-extn-template LogotypeCertExtn.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/pkixcmp/Makefile.nmake =================================================================== --- asn1/pkixcmp/Makefile.nmake (revision 19103) +++ asn1/pkixcmp/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py CMP.asn packet-cmp-template.c packet-cmp-template.h cmp.cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c cmp.cnf -s packet-cmp-template CMP.asn + $(PYTHON) ..\..\tools\asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c cmp.cnf -s packet-cmp-template CMP.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/x509af/Makefile.nmake =================================================================== --- asn1/x509af/Makefile.nmake (revision 19103) +++ asn1/x509af/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py AuthenticationFramework.asn packet-x509af-template.c packet-x509af-template.h x509af.cnf ../x509if/x509if-exp.cnf ../x509sat/x509sat-exp.cnf ../x509ce/x509ce-exp.cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c x509af.cnf -s packet-x509af-template AuthenticationFramework.asn + $(PYTHON) ..\..\tools\asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c x509af.cnf -s packet-x509af-template AuthenticationFramework.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/x509sat/Makefile.nmake =================================================================== --- asn1/x509sat/Makefile.nmake (revision 19103) +++ asn1/x509sat/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py SelectedAttributeTypes.asn packet-x509sat-template.c packet-x509sat-template.h x509sat.cnf ../x509if/x509if-exp.cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c x509sat.cnf -s packet-x509sat-template SelectedAttributeTypes.asn + $(PYTHON) ..\..\tools\asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c x509sat.cnf -s packet-x509sat-template SelectedAttributeTypes.asn # sed -e "s/\([\"\.]\)Syntax/\1/g" -i.orig packet-x509sat.c !ELSE @echo Error: You need Python to use asn2wrs.py Index: asn1/ldap/Makefile.nmake =================================================================== --- asn1/ldap/Makefile.nmake (revision 19103) +++ asn1/ldap/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py Lightweight-Directory-Access-Protocol-V3.asn packet-ldap-template.c packet-ldap-template.h ldap.cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c ldap.cnf -s packet-ldap-template Lightweight-Directory-Access-Protocol-V3.asn + $(PYTHON) ..\..\tools\asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c ldap.cnf -s packet-ldap-template Lightweight-Directory-Access-Protocol-V3.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/h225/Makefile.nmake =================================================================== --- asn1/h225/Makefile.nmake (revision 19103) +++ asn1/h225/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py H323-MESSAGES.asn $(PROTOCOL_NAME).cnf packet-$(PROTOCOL_NAME)-template.c packet-$(PROTOCOL_NAME)-template.h !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template H323-MESSAGES.asn + $(PYTHON) ..\..\tools\asn2wrs.py -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template H323-MESSAGES.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/s4406/Makefile.nmake =================================================================== --- asn1/s4406/Makefile.nmake (revision 19103) +++ asn1/s4406/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py $(PROTOCOL_NAME).asn packet-$(PROTOCOL_NAME)-template.c packet-$(PROTOCOL_NAME)-template.h $(PROTOCOL_NAME).cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template $(PROTOCOL_NAME).asn + $(PYTHON) ..\..\tools\asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template $(PROTOCOL_NAME).asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/gnm/Makefile.nmake =================================================================== --- asn1/gnm/Makefile.nmake (revision 19103) +++ asn1/gnm/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py GNM.asn packet-gnm-template.c packet-gnm-template.h gnm.cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c gnm.cnf -s packet-gnm-template GNM.asn + $(PYTHON) ..\..\tools\asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c gnm.cnf -s packet-gnm-template GNM.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/camel/Makefile.nmake =================================================================== --- asn1/camel/Makefile.nmake (revision 19103) +++ asn1/camel/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py camel.asn packet-$(PROTOCOL_NAME)-template.c packet-$(PROTOCOL_NAME)-template.h camel.cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c camel.cnf -s packet-$(PROTOCOL_NAME)-template camel.asn + $(PYTHON) ..\..\tools\asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c camel.cnf -s packet-$(PROTOCOL_NAME)-template camel.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/rnsap/Makefile.nmake =================================================================== --- asn1/rnsap/Makefile.nmake (revision 19103) +++ asn1/rnsap/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py rnsap.asn packet-rnsap-template.c packet-rnsap-template.h rnsap.cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -e -F -p $(PROTOCOL_NAME) -c rnsap.cnf -s packet-rnsap-template rnsap.asn + $(PYTHON) ..\..\tools\asn2wrs.py -e -F -p $(PROTOCOL_NAME) -c rnsap.cnf -s packet-rnsap-template rnsap.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/x509if/Makefile.nmake =================================================================== --- asn1/x509if/Makefile.nmake (revision 19103) +++ asn1/x509if/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py InformationFramework.asn packet-x509if-template.c packet-x509if-template.h x509if.cnf ../x509sat/x509sat-exp.cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c x509if.cnf -s packet-x509if-template InformationFramework.asn + $(PYTHON) ..\..\tools\asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c x509if.cnf -s packet-x509if-template InformationFramework.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/spnego/Makefile.nmake =================================================================== --- asn1/spnego/Makefile.nmake (revision 19103) +++ asn1/spnego/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py spnego.asn packet-spnego-template.c packet-spnego-template.h spnego.cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c spnego.cnf -s packet-spnego-template spnego.asn + $(PYTHON) ..\..\tools\asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c spnego.cnf -s packet-spnego-template spnego.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/x420/Makefile.nmake =================================================================== --- asn1/x420/Makefile.nmake (revision 19103) +++ asn1/x420/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py $(PROTOCOL_NAME).asn packet-$(PROTOCOL_NAME)-template.c packet-$(PROTOCOL_NAME)-template.h $(PROTOCOL_NAME).cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template $(PROTOCOL_NAME).asn + $(PYTHON) ..\..\tools\asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template $(PROTOCOL_NAME).asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/pkix1explicit/Makefile.nmake =================================================================== --- asn1/pkix1explicit/Makefile.nmake (revision 19103) +++ asn1/pkix1explicit/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py PKIX1EXPLICIT93.asn packet-pkix1explicit-template.c packet-pkix1explicit-template.h pkix1explicit.cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -e -b -p $(PROTOCOL_NAME) -c pkix1explicit.cnf -s packet-pkix1explicit-template PKIX1EXPLICIT93.asn + $(PYTHON) ..\..\tools\asn2wrs.py -e -b -p $(PROTOCOL_NAME) -c pkix1explicit.cnf -s packet-pkix1explicit-template PKIX1EXPLICIT93.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/disp/Makefile.nmake =================================================================== --- asn1/disp/Makefile.nmake (revision 19103) +++ asn1/disp/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py disp.asn packet-$(PROTOCOL_NAME)-template.c packet-$(PROTOCOL_NAME)-template.h $(PROTOCOL_NAME).cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template disp.asn + $(PYTHON) ..\..\tools\asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template disp.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/pkixtsp/Makefile.nmake =================================================================== --- asn1/pkixtsp/Makefile.nmake (revision 19103) +++ asn1/pkixtsp/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py PKIXTSP.asn packet-pkixtsp-template.c packet-pkixtsp-template.h pkixtsp.cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c pkixtsp.cnf -s packet-pkixtsp-template PKIXTSP.asn + $(PYTHON) ..\..\tools\asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c pkixtsp.cnf -s packet-pkixtsp-template PKIXTSP.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/dap/Makefile.nmake =================================================================== --- asn1/dap/Makefile.nmake (revision 19103) +++ asn1/dap/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py dap.asn packet-$(PROTOCOL_NAME)-template.c packet-$(PROTOCOL_NAME)-template.h $(PROTOCOL_NAME).cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template dap.asn + $(PYTHON) ..\..\tools\asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template dap.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/pres/Makefile.nmake =================================================================== --- asn1/pres/Makefile.nmake (revision 19103) +++ asn1/pres/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py ISO8823-PRESENTATION.asn packet-pres-template.c packet-pres-template.h pres.cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c pres.cnf -s packet-pres-template ISO8823-PRESENTATION.asn + $(PYTHON) ..\..\tools\asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c pres.cnf -s packet-pres-template ISO8823-PRESENTATION.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/pkixproxy/Makefile.nmake =================================================================== --- asn1/pkixproxy/Makefile.nmake (revision 19103) +++ asn1/pkixproxy/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py PKIXProxy.asn packet-pkixproxy-template.c packet-pkixproxy-template.h pkixproxy.cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c pkixproxy.cnf -s packet-pkixproxy-template PKIXProxy.asn + $(PYTHON) ..\..\tools\asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c pkixproxy.cnf -s packet-pkixproxy-template PKIXProxy.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/rtse/Makefile.nmake =================================================================== --- asn1/rtse/Makefile.nmake (revision 19103) +++ asn1/rtse/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py $(PROTOCOL_NAME).asn packet-$(PROTOCOL_NAME)-template.c packet-$(PROTOCOL_NAME)-template.h $(PROTOCOL_NAME).cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template $(PROTOCOL_NAME).asn + $(PYTHON) ..\..\tools\asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template $(PROTOCOL_NAME).asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/wlancertextn/Makefile.nmake =================================================================== --- asn1/wlancertextn/Makefile.nmake (revision 19103) +++ asn1/wlancertextn/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py WLANCERTEXTN.asn packet-wlancertextn-template.c packet-wlancertextn-template.h wlancertextn.cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c wlancertextn.cnf -s packet-wlancertextn-template WLANCERTEXTN.asn + $(PYTHON) ..\..\tools\asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c wlancertextn.cnf -s packet-wlancertextn-template WLANCERTEXTN.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/h235/Makefile.nmake =================================================================== --- asn1/h235/Makefile.nmake (revision 19103) +++ asn1/h235/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py H235-SECURITY-MESSAGES.asn H235-SRTP.asn packet-$(PROTOCOL_NAME)-template.c packet-$(PROTOCOL_NAME)-template.h $(PROTOCOL_NAME).cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template H235-SECURITY-MESSAGES.asn H235-SRTP.asn + $(PYTHON) ..\..\tools\asn2wrs.py -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template H235-SECURITY-MESSAGES.asn H235-SRTP.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/MAP_Dialogue/Makefile.nmake =================================================================== --- asn1/MAP_Dialogue/Makefile.nmake (revision 19103) +++ asn1/MAP_Dialogue/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py MAP_DialoguePDU.asn packet-MAP-DialoguePDU-template.c packet-MAP-DialoguePDU-template.h MAP_DialoguePDU.cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c MAP_DialoguePDU.cnf -s packet-MAP-DialoguePDU-template MAP_DialoguePDU.asn + $(PYTHON) ..\..\tools\asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c MAP_DialoguePDU.cnf -s packet-MAP-DialoguePDU-template MAP_DialoguePDU.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/smrse/Makefile.nmake =================================================================== --- asn1/smrse/Makefile.nmake (revision 19103) +++ asn1/smrse/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py SMRSE.asn packet-smrse-template.c packet-smrse-template.h smrse.cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c smrse.cnf -s packet-smrse-template SMRSE.asn + $(PYTHON) ..\..\tools\asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c smrse.cnf -s packet-smrse-template SMRSE.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/ess/Makefile.nmake =================================================================== --- asn1/ess/Makefile.nmake (revision 19103) +++ asn1/ess/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py ExtendedSecurityServices.asn packet-$(PROTOCOL_NAME)-template.c packet-$(PROTOCOL_NAME)-template.h $(PROTOCOL_NAME).cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -b -k -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template ExtendedSecurityServices.asn + $(PYTHON) ..\..\tools\asn2wrs.py -b -k -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template ExtendedSecurityServices.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/gsm_ss/Makefile.nmake =================================================================== --- asn1/gsm_ss/Makefile.nmake (revision 19103) +++ asn1/gsm_ss/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py SS-Operations.asn packet-$(PROTOCOL_NAME)-template.c packet-$(PROTOCOL_NAME)-template.h gsm_ss.cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c gsm_ss.cnf -s packet-$(PROTOCOL_NAME)-template SS-Operations.asn + $(PYTHON) ..\..\tools\asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c gsm_ss.cnf -s packet-$(PROTOCOL_NAME)-template SS-Operations.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/ocsp/Makefile.nmake =================================================================== --- asn1/ocsp/Makefile.nmake (revision 19103) +++ asn1/ocsp/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py OCSP.asn packet-ocsp-template.c packet-ocsp-template.h ocsp.cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c ocsp.cnf -s packet-ocsp-template OCSP.asn + $(PYTHON) ..\..\tools\asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c ocsp.cnf -s packet-ocsp-template OCSP.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/cdt/Makefile.nmake =================================================================== --- asn1/cdt/Makefile.nmake (revision 19103) +++ asn1/cdt/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py $(PROTOCOL_NAME).asn packet-$(PROTOCOL_NAME)-template.c packet-$(PROTOCOL_NAME)-template.h $(PROTOCOL_NAME).cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template $(PROTOCOL_NAME).asn + $(PYTHON) ..\..\tools\asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template $(PROTOCOL_NAME).asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/x509ce/Makefile.nmake =================================================================== --- asn1/x509ce/Makefile.nmake (revision 19103) +++ asn1/x509ce/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py CertificateExtensions.asn packet-x509ce-template.c packet-x509ce-template.h x509ce.cnf ../x509if/x509if-exp.cnf ../x509sat/x509sat-exp.cnf ../x509af/x509af-exp.cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c x509ce.cnf -s packet-x509ce-template CertificateExtensions.asn + $(PYTHON) ..\..\tools\asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c x509ce.cnf -s packet-x509ce-template CertificateExtensions.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: asn1/snmp/Makefile.nmake =================================================================== --- asn1/snmp/Makefile.nmake (revision 19103) +++ asn1/snmp/Makefile.nmake (working copy) @@ -15,7 +15,7 @@ $(DISSECTOR_FILES): ../../tools/asn2wrs.py snmp.asn packet-snmp-template.c packet-snmp-template.h snmp.cnf !IFDEF PYTHON - $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c snmp.cnf -s packet-snmp-template snmp.asn + $(PYTHON) ..\..\tools\asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c snmp.cnf -s packet-snmp-template snmp.asn !ELSE @echo Error: You need Python to use asn2wrs.py @exit 1 Index: plugins/irda/Makefile.nmake =================================================================== --- plugins/irda/Makefile.nmake (revision 19103) +++ plugins/irda/Makefile.nmake (working copy) @@ -63,7 +63,7 @@ plugin.c: $(DISSECTOR_SRC) !IFDEF PYTHON @echo Making plugin.c (using python) - @$(PYTHON) ../../tools/make-dissector-reg.py . plugin $(DISSECTOR_SRC) + @$(PYTHON) ..\..\tools\make-dissector-reg.py . plugin $(DISSECTOR_SRC) !ELSE @echo Making plugin.c (using sh) @$(SH) ../../tools/make-dissector-reg . plugin $(DISSECTOR_SRC) Index: plugins/v5ua/Makefile.nmake =================================================================== --- plugins/v5ua/Makefile.nmake (revision 19103) +++ plugins/v5ua/Makefile.nmake (working copy) @@ -63,7 +63,7 @@ plugin.c: $(DISSECTOR_SRC) !IFDEF PYTHON @echo Making plugin.c (using python) - @$(PYTHON) ../../tools/make-dissector-reg.py . plugin $(DISSECTOR_SRC) + @$(PYTHON) ..\..\tools\make-dissector-reg.py . plugin $(DISSECTOR_SRC) !ELSE @echo Making plugin.c (using sh) @$(SH) ../../tools/make-dissector-reg . plugin $(DISSECTOR_SRC) Index: plugins/enttec/Makefile.nmake =================================================================== --- plugins/enttec/Makefile.nmake (revision 19103) +++ plugins/enttec/Makefile.nmake (working copy) @@ -63,7 +63,7 @@ plugin.c: $(DISSECTOR_SRC) !IFDEF PYTHON @echo Making plugin.c (using python) - @$(PYTHON) ../../tools/make-dissector-reg.py . plugin $(DISSECTOR_SRC) + @$(PYTHON) ..\..\tools\make-dissector-reg.py . plugin $(DISSECTOR_SRC) !ELSE @echo Making plugin.c (using sh) @$(SH) ../../tools/make-dissector-reg . plugin $(DISSECTOR_SRC) Index: plugins/rdm/Makefile.nmake =================================================================== --- plugins/rdm/Makefile.nmake (revision 19103) +++ plugins/rdm/Makefile.nmake (working copy) @@ -63,7 +63,7 @@ plugin.c: $(DISSECTOR_SRC) !IFDEF PYTHON @echo Making plugin.c (using python) - @$(PYTHON) ../../tools/make-dissector-reg.py . plugin $(DISSECTOR_SRC) + @$(PYTHON) ..\..\tools\make-dissector-reg.py . plugin $(DISSECTOR_SRC) !ELSE @echo Making plugin.c (using sh) @$(SH) ../../tools/make-dissector-reg . plugin $(DISSECTOR_SRC) Index: plugins/docsis/Makefile.nmake =================================================================== --- plugins/docsis/Makefile.nmake (revision 19103) +++ plugins/docsis/Makefile.nmake (working copy) @@ -63,7 +63,7 @@ plugin.c: $(DISSECTOR_SRC) !IFDEF PYTHON @echo Making plugin.c (using python) - @$(PYTHON) ../../tools/make-dissector-reg.py . plugin $(DISSECTOR_SRC) + @$(PYTHON) ..\..\tools\make-dissector-reg.py . plugin $(DISSECTOR_SRC) !ELSE @echo Making plugin.c (using sh) @$(SH) ../../tools/make-dissector-reg . plugin $(DISSECTOR_SRC) Index: plugins/gryphon/Makefile.nmake =================================================================== --- plugins/gryphon/Makefile.nmake (revision 19103) +++ plugins/gryphon/Makefile.nmake (working copy) @@ -63,7 +63,7 @@ plugin.c: $(DISSECTOR_SRC) !IFDEF PYTHON @echo Making plugin.c (using python) - @$(PYTHON) ../../tools/make-dissector-reg.py . plugin $(DISSECTOR_SRC) + @$(PYTHON) ..\..\tools\make-dissector-reg.py . plugin $(DISSECTOR_SRC) !ELSE @echo Making plugin.c (using sh) @$(SH) ../../tools/make-dissector-reg . plugin $(DISSECTOR_SRC) Index: plugins/agentx/Makefile.nmake =================================================================== --- plugins/agentx/Makefile.nmake (revision 19103) +++ plugins/agentx/Makefile.nmake (working copy) @@ -63,7 +63,7 @@ plugin.c: $(DISSECTOR_SRC) !IFDEF PYTHON @echo Making plugin.c (using python) - @$(PYTHON) ../../tools/make-dissector-reg.py . plugin $(DISSECTOR_SRC) + @$(PYTHON) ..\..\tools\make-dissector-reg.py . plugin $(DISSECTOR_SRC) !ELSE @echo Making plugin.c (using sh) @$(SH) ../../tools/make-dissector-reg . plugin $(DISSECTOR_SRC) Index: plugins/mgcp/Makefile.nmake =================================================================== --- plugins/mgcp/Makefile.nmake (revision 19103) +++ plugins/mgcp/Makefile.nmake (working copy) @@ -63,7 +63,7 @@ plugin.c: $(DISSECTOR_SRC) !IFDEF PYTHON @echo Making plugin.c (using python) - @$(PYTHON) ../../tools/make-dissector-reg.py . plugin $(DISSECTOR_SRC) + @$(PYTHON) ..\..\tools\make-dissector-reg.py . plugin $(DISSECTOR_SRC) !ELSE @echo Making plugin.c (using sh) @$(SH) ../../tools/make-dissector-reg . plugin $(DISSECTOR_SRC) Index: plugins/profinet/Makefile.nmake =================================================================== --- plugins/profinet/Makefile.nmake (revision 19103) +++ plugins/profinet/Makefile.nmake (working copy) @@ -63,7 +63,7 @@ plugin.c: $(DISSECTOR_SRC) !IFDEF PYTHON @echo Making plugin.c (using python) - @$(PYTHON) ../../tools/make-dissector-reg.py . plugin $(DISSECTOR_SRC) + @$(PYTHON) "..\..\tools\make-dissector-reg.py" . plugin $(DISSECTOR_SRC) !ELSE @echo Making plugin.c (using sh) @$(SH) ../../tools/make-dissector-reg . plugin $(DISSECTOR_SRC) Index: plugins/pcli/Makefile.nmake =================================================================== --- plugins/pcli/Makefile.nmake (revision 19103) +++ plugins/pcli/Makefile.nmake (working copy) @@ -63,7 +63,7 @@ plugin.c: $(DISSECTOR_SRC) !IFDEF PYTHON @echo Making plugin.c (using python) - @$(PYTHON) ../../tools/make-dissector-reg.py . plugin $(DISSECTOR_SRC) + @$(PYTHON) ..\..\tools\make-dissector-reg.py . plugin $(DISSECTOR_SRC) !ELSE @echo Making plugin.c (using sh) @$(SH) ../../tools/make-dissector-reg . plugin $(DISSECTOR_SRC) Index: plugins/rlm/Makefile.nmake =================================================================== --- plugins/rlm/Makefile.nmake (revision 19103) +++ plugins/rlm/Makefile.nmake (working copy) @@ -63,7 +63,7 @@ plugin.c: $(DISSECTOR_SRC) !IFDEF PYTHON @echo Making plugin.c (using python) - @$(PYTHON) ../../tools/make-dissector-reg.py . plugin $(DISSECTOR_SRC) + @$(PYTHON) ..\..\tools\make-dissector-reg.py . plugin $(DISSECTOR_SRC) !ELSE @echo Making plugin.c (using sh) @$(SH) ../../tools/make-dissector-reg . plugin $(DISSECTOR_SRC) Index: plugins/megaco/Makefile.nmake =================================================================== --- plugins/megaco/Makefile.nmake (revision 19103) +++ plugins/megaco/Makefile.nmake (working copy) @@ -63,7 +63,7 @@ plugin.c: $(DISSECTOR_SRC) !IFDEF PYTHON @echo Making plugin.c (using python) - @$(PYTHON) ../../tools/make-dissector-reg.py . plugin $(DISSECTOR_SRC) + @$(PYTHON) "..\..\tools\make-dissector-reg.py" . plugin $(DISSECTOR_SRC) !ELSE @echo Making plugin.c (using sh) @$(SH) ../../tools/make-dissector-reg . plugin $(DISSECTOR_SRC) Index: plugins/lwres/Makefile.nmake =================================================================== --- plugins/lwres/Makefile.nmake (revision 19103) +++ plugins/lwres/Makefile.nmake (working copy) @@ -63,7 +63,7 @@ plugin.c: $(DISSECTOR_SRC) !IFDEF PYTHON @echo Making plugin.c (using python) - @$(PYTHON) ../../tools/make-dissector-reg.py . plugin $(DISSECTOR_SRC) + @$(PYTHON) ..\..\tools\make-dissector-reg.py . plugin $(DISSECTOR_SRC) !ELSE @echo Making plugin.c (using sh) @$(SH) ../../tools/make-dissector-reg . plugin $(DISSECTOR_SRC) Index: plugins/rtnet/Makefile.nmake =================================================================== --- plugins/rtnet/Makefile.nmake (revision 19103) +++ plugins/rtnet/Makefile.nmake (working copy) @@ -63,7 +63,7 @@ plugin.c: $(DISSECTOR_SRC) !IFDEF PYTHON @echo Making plugin.c (using python) - @$(PYTHON) ../../tools/make-dissector-reg.py . plugin $(DISSECTOR_SRC) + @$(PYTHON) ..\..\tools\make-dissector-reg.py . plugin $(DISSECTOR_SRC) !ELSE @echo Making plugin.c (using sh) @$(SH) ../../tools/make-dissector-reg . plugin $(DISSECTOR_SRC) Index: plugins/artnet/Makefile.nmake =================================================================== --- plugins/artnet/Makefile.nmake (revision 19103) +++ plugins/artnet/Makefile.nmake (working copy) @@ -63,7 +63,7 @@ plugin.c: $(DISSECTOR_SRC) !IFDEF PYTHON @echo Making plugin.c (using python) - @$(PYTHON) ../../tools/make-dissector-reg.py . plugin $(DISSECTOR_SRC) + @$(PYTHON) ..\..\tools\make-dissector-reg.py . plugin $(DISSECTOR_SRC) !ELSE @echo Making plugin.c (using sh) @$(SH) ../../tools/make-dissector-reg . plugin $(DISSECTOR_SRC) Index: plugins/ciscosm/Makefile.nmake =================================================================== --- plugins/ciscosm/Makefile.nmake (revision 19103) +++ plugins/ciscosm/Makefile.nmake (working copy) @@ -63,7 +63,7 @@ plugin.c: $(DISSECTOR_SRC) !IFDEF PYTHON @echo Making plugin.c (using python) - @$(PYTHON) ../../tools/make-dissector-reg.py . plugin $(DISSECTOR_SRC) + @$(PYTHON) ..\..\tools\make-dissector-reg.py . plugin $(DISSECTOR_SRC) !ELSE @echo Making plugin.c (using sh) @$(SH) ../../tools/make-dissector-reg . plugin $(DISSECTOR_SRC) Index: plugins/acn/Makefile.nmake =================================================================== --- plugins/acn/Makefile.nmake (revision 19103) +++ plugins/acn/Makefile.nmake (working copy) @@ -65,7 +65,7 @@ plugin.c: $(DISSECTOR_SRC) !IFDEF PYTHON @echo Making plugin.c (using python) - @$(PYTHON) ../../tools/make-dissector-reg.py . plugin $(DISSECTOR_SRC) + @$(PYTHON) ..\..\tools\make-dissector-reg.py . plugin $(DISSECTOR_SRC) !ELSE @echo Making plugin.c (using sh) @$(SH) ../../tools/make-dissector-reg . plugin $(DISSECTOR_SRC) Index: plugins/asn1/Makefile.nmake =================================================================== --- plugins/asn1/Makefile.nmake (revision 19103) +++ plugins/asn1/Makefile.nmake (working copy) @@ -63,7 +63,7 @@ plugin.c: $(DISSECTOR_SRC) !IFDEF PYTHON @echo Making plugin.c (using python) - @$(PYTHON) ../../tools/make-dissector-reg.py . plugin $(DISSECTOR_SRC) + @$(PYTHON) ..\..\tools\make-dissector-reg.py . plugin $(DISSECTOR_SRC) !ELSE @echo Making plugin.c (using sh) @$(SH) ../../tools/make-dissector-reg . plugin $(DISSECTOR_SRC) Index: plugins/opsi/Makefile.nmake =================================================================== --- plugins/opsi/Makefile.nmake (revision 19103) +++ plugins/opsi/Makefile.nmake (working copy) @@ -63,7 +63,7 @@ plugin.c: $(DISSECTOR_SRC) !IFDEF PYTHON @echo Making plugin.c (using python) - @$(PYTHON) ../../tools/make-dissector-reg.py . plugin $(DISSECTOR_SRC) + @$(PYTHON) ..\..\tools\make-dissector-reg.py . plugin $(DISSECTOR_SRC) !ELSE @echo Making plugin.c (using sh) @$(SH) ../../tools/make-dissector-reg . plugin $(DISSECTOR_SRC) Index: plugins/rudp/Makefile.nmake =================================================================== --- plugins/rudp/Makefile.nmake (revision 19103) +++ plugins/rudp/Makefile.nmake (working copy) @@ -63,7 +63,7 @@ plugin.c: $(DISSECTOR_SRC) !IFDEF PYTHON @echo Making plugin.c (using python) - @$(PYTHON) ../../tools/make-dissector-reg.py . plugin $(DISSECTOR_SRC) + @$(PYTHON) ..\..\tools\make-dissector-reg.py . plugin $(DISSECTOR_SRC) !ELSE @echo Making plugin.c (using sh) @$(SH) ../../tools/make-dissector-reg . plugin $(DISSECTOR_SRC) Index: plugins/h223/Makefile.nmake =================================================================== --- plugins/h223/Makefile.nmake (revision 19103) +++ plugins/h223/Makefile.nmake (working copy) @@ -65,7 +65,7 @@ plugin.c: $(DISSECTOR_SRC) !IFDEF PYTHON @echo Making plugin.c (using python) - @$(PYTHON) ../../tools/make-dissector-reg.py . plugin $(DISSECTOR_SRC) + @$(PYTHON) ..\..\tools\make-dissector-reg.py . plugin $(DISSECTOR_SRC) !ELSE @echo Making plugin.c (using sh) @$(SH) ../../tools/make-dissector-reg . plugin $(DISSECTOR_SRC) Index: epan/dissectors/Makefile.nmake =================================================================== --- epan/dissectors/Makefile.nmake (revision 19103) +++ epan/dissectors/Makefile.nmake (working copy) @@ -76,7 +76,7 @@ register.c: $(DISSECTOR_SRC) !IFDEF PYTHON @echo Making register.c (using python) - @$(PYTHON) ../../tools/make-dissector-reg.py . dissectors $(DISSECTOR_SRC) + @$(PYTHON) "..\..\tools\make-dissector-reg.py" . dissectors $(DISSECTOR_SRC) !ELSE @echo Making register.c (using sh) @$(SH) ../../tools/make-dissector-reg . dissectors $(DISSECTOR_SRC)
- Follow-Ups:
- Prev by Date: [Wireshark-dev] [PATCH] H.248 Annex C and Annex E support
- Next by Date: [Wireshark-dev] Fwd: Re: Capture problems with 0.99.3 on "huge-amount-of-traffic" interfaces
- Previous by thread: Re: [Wireshark-dev] [PATCH] H.248 Annex C and Annex E support
- Next by thread: Re: [Wireshark-dev] Follow up to making register.c - python problem - patch
- Index(es):