View | Details | Raw Unified | Return to bug 72784
Collapse All | Expand All

(-)/usr/ports/textproc/xerces-c2/Makefile (-34 / +52 lines)
Lines 6-13 Link Here
6
#
6
#
7
7
8
PORTNAME=	xerces-c2
8
PORTNAME=	xerces-c2
9
PORTVERSION=	2.5.0
9
PORTVERSION=	2.6.0
10
PORTREVISION=	2
11
CATEGORIES=	textproc
10
CATEGORIES=	textproc
12
MASTER_SITES=	${MASTER_SITE_APACHE_XML}
11
MASTER_SITES=	${MASTER_SITE_APACHE_XML}
13
MASTER_SITE_SUBDIR=	xerces-c/source
12
MASTER_SITE_SUBDIR=	xerces-c/source
Lines 16-24 Link Here
16
MAINTAINER=	bzeeb+freebsdports@zabbadoz.net
15
MAINTAINER=	bzeeb+freebsdports@zabbadoz.net
17
COMMENT=	Validating XML parser from the Apache XML Project
16
COMMENT=	Validating XML parser from the Apache XML Project
18
17
18
OPTIONS=	THREADS "Build a thread enabled shared library." on \
19
		SAMPLES "Copy sample binaries and sources." on \
20
		PORTDOCS "Copy documentation." on \
21
		DEBUG "Include debugging information, do not strip." off \
22
		ICONVFBSD "Use IconvFBSD transcoder." on \
23
		ICU "Use ICU transcoder." off \
24
		NATIVE "Use native transcoder." off
25
26
.include <bsd.port.pre.mk>
27
28
.if defined(TRANSCODER)
29
.error command line transcoder selection is no longer supported - \
30
	please use make config
31
.endif
32
33
.if defined(WITH_ICONVFBSD)
34
TRANSCODER=		IconvFBSD
35
.endif
36
.if defined(WITH_ICU)
37
.if defined(TRANSCODER)
38
.warning ICU selected but transcoder already set - \
39
	please only select one transcoder type
40
.else
41
TRANSCODER=		icu
42
.endif
43
.endif
44
.if defined(WITH_NATIVE)
45
.if defined(TRANSCODER)
46
.warning NATIVE selected but transcoder already set - \
47
	please only select one transcoder type
48
.else
49
TRANSCODER=		native
50
.endif
51
.endif
52
19
.if !defined(TRANSCODER)
53
.if !defined(TRANSCODER)
20
USE_ICONV=		yes
54
USE_ICONV=		yes
21
TRANSCODER=		"IconvFBSD"
55
TRANSCODER=		IconvFBSD
22
ICONVROOT?=		${LOCALBASE}
56
ICONVROOT?=		${LOCALBASE}
23
CONFIGURE_ENV+=		ICONVROOT=${ICONVROOT}
57
CONFIGURE_ENV+=		ICONVROOT=${ICONVROOT}
24
MAKE_ENV+=		ICONVROOT=${ICONVROOT}
58
MAKE_ENV+=		ICONVROOT=${ICONVROOT}
Lines 39-45 Link Here
39
PLIST_SUB+=		TRANSICU="@comment "
73
PLIST_SUB+=		TRANSICU="@comment "
40
.else
74
.else
41
USE_ICONV=		yes
75
USE_ICONV=		yes
42
TRANSCODER=		"IconvFBSD"
76
TRANSCODER=		IconvFBSD
43
ICONVROOT?=		${LOCALBASE}
77
ICONVROOT?=		${LOCALBASE}
44
CONFIGURE_ENV+=		ICONVROOT=${ICONVROOT}
78
CONFIGURE_ENV+=		ICONVROOT=${ICONVROOT}
45
MAKE_ENV+=		ICONVROOT=${ICONVROOT}
79
MAKE_ENV+=		ICONVROOT=${ICONVROOT}
Lines 68-80 Link Here
68
102
69
CONFIGURE_ARGS+=	-t ${TRANSCODER}
103
CONFIGURE_ARGS+=	-t ${TRANSCODER}
70
104
71
.if defined(DEBUG)
105
.if !defined(WITHOUT_DEBUG)
72
CONFIGURE_ARGS+=	-d
106
CONFIGURE_ARGS+=	-d
73
STRIP=
107
STRIP=
74
.endif
108
.endif
75
109
76
.include <bsd.port.pre.mk>
77
78
.if defined(ARCH) && \
110
.if defined(ARCH) && \
79
	(${ARCH} == "alpha" || ${ARCH} == "sparc64" || \
111
	(${ARCH} == "alpha" || ${ARCH} == "sparc64" || \
80
	${ARCH} == "amd64" || ${ARCH} == "ia64")
112
	${ARCH} == "amd64" || ${ARCH} == "ia64")
Lines 83-89 Link Here
83
SAMPLES_CONFIG_ARGS+=	-b 64
115
SAMPLES_CONFIG_ARGS+=	-b 64
84
.endif
116
.endif
85
117
86
.if defined(NO_THREADS)
118
.if defined(WITHOUT_THREADS)
87
CONFIGURE_ARGS+=	-r none
119
CONFIGURE_ARGS+=	-r none
88
.else
120
.else
89
CONFIGURE_ENV+=		PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" \
121
CONFIGURE_ENV+=		PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" \
Lines 92-107 Link Here
92
124
93
XERCESC_LIB_VERSION=	${PORTVERSION:S/.//:R}
125
XERCESC_LIB_VERSION=	${PORTVERSION:S/.//:R}
94
XERCESC_LIB=		libxerces-c.so.${PORTVERSION:S/.//}
126
XERCESC_LIB=		libxerces-c.so.${PORTVERSION:S/.//}
127
XERCESC_DEPDOM_LIB=	libxerces-depdom.so.${PORTVERSION:S/.//}
95
PLIST_SUB+=		XERCESC_LIB=${XERCESC_LIB} \
128
PLIST_SUB+=		XERCESC_LIB=${XERCESC_LIB} \
129
			XERCESC_DEPDOM_LIB=${XERCESC_DEPDOM_LIB} \
96
				XERCESC_LIB_VERSION=${XERCESC_LIB_VERSION}
130
				XERCESC_LIB_VERSION=${XERCESC_LIB_VERSION}
97
131
98
.if !defined(NO_SAMPLES)
132
.if !defined(WITHOUT_SAMPLES)
99
PLIST_SUB+=	NO_SAMPLES=""
133
PLIST_SUB+=	NO_SAMPLES=""
100
ALL_TARGET?=	all samples
134
ALL_TARGET?=	all samples
101
XERCES_BINS?=	CreateDOMDocument DOMCount DOMPrint EnumVal MemParse PParse \
135
XERCES_BINS?=	CreateDOMDocument DOMCount DOMPrint EnumVal MemParse PParse \
102
	Redirect SAX2Count SAX2Print SAXCount SAXPrint SEnumVal StdInParse
136
		PSVIWriter Redirect SAX2Count SAX2Print SAXCount SAXPrint \
137
		SCMPrint SEnumVal StdInParse
103
SAMPLES_CONFIG_ARGS+=	-p freebsd -c ${CC} -x ${CXX}
138
SAMPLES_CONFIG_ARGS+=	-p freebsd -c ${CC} -x ${CXX}
104
.if defined(NO_THREADS)
139
.if defined(WITHOUT_THREADS)
105
SAMPLES_CONFIG_ARGS+=	-r none
140
SAMPLES_CONFIG_ARGS+=	-r none
106
.else
141
.else
107
SAMPLES_CONFIG_ARGS+=	-r pthread
142
SAMPLES_CONFIG_ARGS+=	-r pthread
Lines 112-139 Link Here
112
PLIST_SUB+=	NO_SAMPLES="@comment "
147
PLIST_SUB+=	NO_SAMPLES="@comment "
113
.endif
148
.endif
114
149
115
.if !defined(NOPORTDOCS)
150
.if !defined(WITHOUT_PORTDOCS)
116
PORTDOCS=	*
151
PORTDOCS=	*
117
.endif
152
.endif
118
153
119
pre-everything::
120
.if !defined(BATCH) && !defined(PACKAGE_BUILDING)
121
	@${ECHO} ''
122
	@${ECHO} 'You may use the following build options by defining'
123
	@${ECHO} 'them on the command line with -D'
124
	@${ECHO} ''
125
	@${ECHO} 'NO_THREADS	do not build a thread enabled shared library'
126
	@${ECHO} 'NO_SAMPLES	do not copy sample binaries and sources'
127
	@${ECHO} 'NOPORTDOCS	do not copy documentation'
128
	@${ECHO} 'DEBUG		include debugging information, do not strip'
129
	@${ECHO} ''
130
	@${ECHO} 'Also you may set TRANSCODER to the following values (without -D):'
131
	@${ECHO} ''
132
	@${ECHO} 'TRANSCODER=[icu|IconvFBSD|native]	default: IconvFBSD'
133
	@${ECHO} ''
134
	@/bin/sleep 2
135
.endif
136
137
post-patch:
154
post-patch:
138
	@${REINPLACE_CMD} -e 's#CP = -cp -p#CP = -cp#'	\
155
	@${REINPLACE_CMD} -e 's#CP = -cp -p#CP = -cp#'	\
139
		${WRKSRC}/src/xercesc/Makefile.incl
156
		${WRKSRC}/src/xercesc/Makefile.incl
Lines 143-149 Link Here
143
	@${CHMOD} 700 ${CONFIGURE_WRKSRC}/configure
160
	@${CHMOD} 700 ${CONFIGURE_WRKSRC}/configure
144
161
145
post-configure:
162
post-configure:
146
.if !defined(NO_SAMPLES)
163
.if !defined(WITHOUT_SAMPLES)
147
.if defined(TRANSCODER) && (${TRANSCODER} == "icu")
164
.if defined(TRANSCODER) && (${TRANSCODER} == "icu")
148
	@(cd ${WRKSRC}/samples && \
165
	@(cd ${WRKSRC}/samples && \
149
		${SETENV} \
166
		${SETENV} \
Lines 162-175 Link Here
162
.endif
179
.endif
163
180
164
post-install:
181
post-install:
165
.if !defined(DEBUG)
182
.if defined(WITHOUT_DEBUG)
166
	@${STRIP_CMD} ${PREFIX}/lib/${XERCESC_LIB}
183
	@${STRIP_CMD} ${PREFIX}/lib/${XERCESC_LIB}
184
	@${STRIP_CMD} ${PREFIX}/lib/${XERCESC_DEPDOM_LIB}
167
.endif
185
.endif
168
.if !defined(NOPORTDOCS)
186
.if !defined(WITHOUT_PORTDOCS)
169
	@${MKDIR} ${DOCSDIR}
187
	@${MKDIR} ${DOCSDIR}
170
	@${CP} -r ${WRKSRC}/doc/ ${DOCSDIR}
188
	@${CP} -r ${WRKSRC}/doc/ ${DOCSDIR}
171
.endif
189
.endif
172
.if !defined(NO_SAMPLES)
190
.if !defined(WITHOUT_SAMPLES)
173
	@${MKDIR} ${EXAMPLESDIR}
191
	@${MKDIR} ${EXAMPLESDIR}
174
.for i in ${XERCES_BINS} data
192
.for i in ${XERCES_BINS} data
175
	@${CP} -r ${WRKSRC}/samples/$i ${EXAMPLESDIR}
193
	@${CP} -r ${WRKSRC}/samples/$i ${EXAMPLESDIR}
(-)/usr/ports/textproc/xerces-c2/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
MD5 (xerces-c-src_2_5_0.tar.gz) = e7ff7d007fabfa7e3fc8c75a8007b0b1
1
MD5 (xerces-c-src_2_6_0.tar.gz) = 038b3614ae82d2878bcc820b9ccbe853
2
SIZE (xerces-c-src_2_5_0.tar.gz) = 9379748
2
SIZE (xerces-c-src_2_6_0.tar.gz) = 9324884
(-)/usr/ports/textproc/xerces-c2/files/patch-ab (-14 / +15 lines)
Lines 1-14 Link Here
1
--- src/xercesc/util/Transcoders/IconvFBSD/IconvFBSDTransService.cpp.orig	Thu Mar 18 10:44:13 2004
1
--- obj/Makefile.in.orig	Fri Oct 15 19:55:39 2004
2
+++ src/xercesc/util/Transcoders/IconvFBSD/IconvFBSDTransService.cpp	Thu Mar 18 10:47:04 2004
2
+++ obj/Makefile.in	Fri Oct 15 19:55:53 2004
3
@@ -1340,6 +1340,11 @@
3
@@ -247,10 +247,10 @@
4
     if (wBufPtr)
4
 	(cd ${DESTDIR}$(PREFIX)/lib; rm -f ${LINK_DEPDOM}.a libxercesdepdom.dll.a; ln -s ${LIBDEPDOM}${SO_TARGET_VERSION}${SHLIBSUFFIX}.a ${LINK_NAME}.a; ln -s ${LIBDEPDOM}${SO_TARGET_VERSION}${SHLIBSUFFIX}.a libxercesdepdom.dll.a)
5
         manager->deallocate(wBufPtr);//delete [] wBufPtr;
5
 else
6
 
6
 	$(CP) ${FQ_REAL_NAME} ${DESTDIR}$(PREFIX)/lib
7
+    // iconvTo resp. iconv(3) doe NOT return number of characters
7
-	(cd ${DESTDIR}$(PREFIX)/lib; ln -s ${REAL_NAME} ${SO_NAME}; ln -s ${REAL_NAME} ${LINK_NAME})
8
+    // converted but only number of non-reversible conversions;
8
+	(cd ${DESTDIR}$(PREFIX)/lib; ln -sf ${REAL_NAME} ${SO_NAME}; ln -sf ${REAL_NAME} ${LINK_NAME})
9
+    // thus we need to calculate correct mblen on our own
9
 	
10
+    mblen = ptr - toFill;
10
 	$(CP) ${FQ_REAL_DEPDOM} ${DESTDIR}$(PREFIX)/lib
11
+
11
-	(cd ${DESTDIR}$(PREFIX)/lib; ln -s ${REAL_DEPDOM} ${SO_DEPDOM}; ln -s ${REAL_DEPDOM} ${LINK_DEPDOM})	
12
 #endif /* !XML_USE_LIBICONV */
12
+	(cd ${DESTDIR}$(PREFIX)/lib; ln -sf ${REAL_DEPDOM} ${SO_DEPDOM}; ln -sf ${REAL_DEPDOM} ${LINK_DEPDOM})	
13
 
13
 endif
14
     // Cap it off just in case
14
 ifeq (${PLATFORM},OS390)
15
 	$(CP) ${LIBNAME}${VER}${OS390SIDEDECK} ${DESTDIR}$(PREFIX)/lib
(-)/usr/ports/textproc/xerces-c2/files/patch-ac (-19 lines)
Lines 1-19 Link Here
1
--- src/xercesc/util/RefArrayOf.hpp	2004/01/29 11:48:46	1.6
2
+++ src/xercesc/util/RefArrayOf.hpp	2004/06/23 22:19:35	1.7
3
@@ -56,6 +56,9 @@
4
 
5
 /*
6
  * $Log: RefArrayOf.hpp,v $
7
+ * Revision 1.7  2004/06/23 22:19:35  neilg
8
+ * fix for compilation under gcc 3.5
9
+ *
10
  * Revision 1.6  2004/01/29 11:48:46  cargilld
11
  * Code cleanup changes to get rid of various compiler diagnostic messages.
12
  *
13
@@ -101,6 +104,7 @@
14
 #include <xercesc/util/ArrayIndexOutOfBoundsException.hpp>
15
 #include <xercesc/util/IllegalArgumentException.hpp>
16
 #include <xercesc/util/XMLEnumerator.hpp>
17
+#include <xercesc/framework/MemoryManager.hpp>
18
 
19
 XERCES_CPP_NAMESPACE_BEGIN
(-)/usr/ports/textproc/xerces-c2/pkg-plist (-1 / +25 lines)
Lines 29-34 Link Here
29
include/xercesc/dom/DOMNodeIterator.hpp
29
include/xercesc/dom/DOMNodeIterator.hpp
30
include/xercesc/dom/DOMNodeList.hpp
30
include/xercesc/dom/DOMNodeList.hpp
31
include/xercesc/dom/DOMNotation.hpp
31
include/xercesc/dom/DOMNotation.hpp
32
include/xercesc/dom/DOMPSVITypeInfo.hpp
32
include/xercesc/dom/DOMProcessingInstruction.hpp
33
include/xercesc/dom/DOMProcessingInstruction.hpp
33
include/xercesc/dom/DOMRange.hpp
34
include/xercesc/dom/DOMRange.hpp
34
include/xercesc/dom/DOMRangeException.hpp
35
include/xercesc/dom/DOMRangeException.hpp
Lines 135-140 Link Here
135
include/xercesc/framework/psvi/XSParticle.hpp
136
include/xercesc/framework/psvi/XSParticle.hpp
136
include/xercesc/framework/psvi/XSSimpleTypeDefinition.hpp
137
include/xercesc/framework/psvi/XSSimpleTypeDefinition.hpp
137
include/xercesc/framework/psvi/XSTypeDefinition.hpp
138
include/xercesc/framework/psvi/XSTypeDefinition.hpp
139
include/xercesc/framework/psvi/XSValue.hpp
138
include/xercesc/framework/psvi/XSWildcard.hpp
140
include/xercesc/framework/psvi/XSWildcard.hpp
139
include/xercesc/internal/BinFileOutputStream.hpp
141
include/xercesc/internal/BinFileOutputStream.hpp
140
include/xercesc/internal/BinMemOutputStream.hpp
142
include/xercesc/internal/BinMemOutputStream.hpp
Lines 159-164 Link Here
159
include/xercesc/internal/XMLScannerResolver.hpp
161
include/xercesc/internal/XMLScannerResolver.hpp
160
include/xercesc/internal/XObjectComparator.hpp
162
include/xercesc/internal/XObjectComparator.hpp
161
include/xercesc/internal/XProtoType.hpp
163
include/xercesc/internal/XProtoType.hpp
164
include/xercesc/internal/XSAXMLScanner.hpp
162
include/xercesc/internal/XSObjectFactory.hpp
165
include/xercesc/internal/XSObjectFactory.hpp
163
include/xercesc/internal/XSerializable.hpp
166
include/xercesc/internal/XSerializable.hpp
164
include/xercesc/internal/XSerializationException.hpp
167
include/xercesc/internal/XSerializationException.hpp
Lines 416-424 Link Here
416
include/xercesc/validators/datatype/StringDatatypeValidator.hpp
419
include/xercesc/validators/datatype/StringDatatypeValidator.hpp
417
include/xercesc/validators/datatype/TimeDatatypeValidator.hpp
420
include/xercesc/validators/datatype/TimeDatatypeValidator.hpp
418
include/xercesc/validators/datatype/UnionDatatypeValidator.hpp
421
include/xercesc/validators/datatype/UnionDatatypeValidator.hpp
422
include/xercesc/validators/datatype/XMLCanRepGroup.hpp
419
include/xercesc/validators/datatype/YearDatatypeValidator.hpp
423
include/xercesc/validators/datatype/YearDatatypeValidator.hpp
420
include/xercesc/validators/datatype/YearMonthDatatypeValidator.hpp
424
include/xercesc/validators/datatype/YearMonthDatatypeValidator.hpp
421
include/xercesc/validators/datatype/XMLCanRepGroup.hpp
422
include/xercesc/validators/schema/ComplexTypeInfo.hpp
425
include/xercesc/validators/schema/ComplexTypeInfo.hpp
423
include/xercesc/validators/schema/GeneralAttributeCheck.hpp
426
include/xercesc/validators/schema/GeneralAttributeCheck.hpp
424
include/xercesc/validators/schema/NamespaceScope.hpp
427
include/xercesc/validators/schema/NamespaceScope.hpp
Lines 448-453 Link Here
448
include/xercesc/validators/schema/identity/IC_Selector.hpp
451
include/xercesc/validators/schema/identity/IC_Selector.hpp
449
include/xercesc/validators/schema/identity/IC_Unique.hpp
452
include/xercesc/validators/schema/identity/IC_Unique.hpp
450
include/xercesc/validators/schema/identity/IdentityConstraint.hpp
453
include/xercesc/validators/schema/identity/IdentityConstraint.hpp
454
include/xercesc/validators/schema/identity/IdentityConstraintHandler.hpp
451
include/xercesc/validators/schema/identity/ValueStore.hpp
455
include/xercesc/validators/schema/identity/ValueStore.hpp
452
include/xercesc/validators/schema/identity/ValueStoreCache.hpp
456
include/xercesc/validators/schema/identity/ValueStoreCache.hpp
453
include/xercesc/validators/schema/identity/XPathException.hpp
457
include/xercesc/validators/schema/identity/XPathException.hpp
Lines 460-465 Link Here
460
@exec ln -sf %%XERCESC_LIB%% %D/lib/libxerces-c.so.%%XERCESC_LIB_VERSION%%
464
@exec ln -sf %%XERCESC_LIB%% %D/lib/libxerces-c.so.%%XERCESC_LIB_VERSION%%
461
@unexec if test ! -r %D/lib/libxerces-c.so; then rm -f %D/lib/libxerces-c.so; fi
465
@unexec if test ! -r %D/lib/libxerces-c.so; then rm -f %D/lib/libxerces-c.so; fi
462
@unexec if test ! -r %D/lib/libxerces-c.so.%%XERCESC_LIB_VERSION%%; then rm -f %D/lib/libxerces-c.so.%%XERCESC_LIB_VERSION%%; fi
466
@unexec if test ! -r %D/lib/libxerces-c.so.%%XERCESC_LIB_VERSION%%; then rm -f %D/lib/libxerces-c.so.%%XERCESC_LIB_VERSION%%; fi
467
lib/%%XERCESC_DEPDOM_LIB%%
468
@exec ln -sf %%XERCESC_DEPDOM_LIB%% %D/lib/libxerces-depdom.so
469
@exec ln -sf %%XERCESC_DEPDOM_LIB%% %D/lib/libxerces-depdom.so.%%XERCESC_LIB_VERSION%%
470
@unexec if test ! -r %D/lib/libxerces-depdom.so; then rm -f %D/lib/libxerces-depdom.so; fi
471
@unexec if test ! -r %D/lib/libxerces-depdom.so.%%XERCESC_LIB_VERSION%%; then rm -f %D/lib/libxerces-depdom.so.%%XERCESC_LIB_VERSION%%; fi
463
@dirrm include/xercesc/validators/schema/identity
472
@dirrm include/xercesc/validators/schema/identity
464
@dirrm include/xercesc/validators/schema
473
@dirrm include/xercesc/validators/schema
465
@dirrm include/xercesc/validators/datatype
474
@dirrm include/xercesc/validators/datatype
Lines 495-505 Link Here
495
%%NO_SAMPLES%%bin/EnumVal
504
%%NO_SAMPLES%%bin/EnumVal
496
%%NO_SAMPLES%%bin/MemParse
505
%%NO_SAMPLES%%bin/MemParse
497
%%NO_SAMPLES%%bin/PParse
506
%%NO_SAMPLES%%bin/PParse
507
%%NO_SAMPLES%%bin/PSVIWriter
498
%%NO_SAMPLES%%bin/Redirect
508
%%NO_SAMPLES%%bin/Redirect
499
%%NO_SAMPLES%%bin/SAX2Count
509
%%NO_SAMPLES%%bin/SAX2Count
500
%%NO_SAMPLES%%bin/SAX2Print
510
%%NO_SAMPLES%%bin/SAX2Print
501
%%NO_SAMPLES%%bin/SAXCount
511
%%NO_SAMPLES%%bin/SAXCount
502
%%NO_SAMPLES%%bin/SAXPrint
512
%%NO_SAMPLES%%bin/SAXPrint
513
%%NO_SAMPLES%%bin/SCMPrint
503
%%NO_SAMPLES%%bin/SEnumVal
514
%%NO_SAMPLES%%bin/SEnumVal
504
%%NO_SAMPLES%%bin/StdInParse
515
%%NO_SAMPLES%%bin/StdInParse
505
%%NO_SAMPLES%%%%EXAMPLESDIR%%/CreateDOMDocument/CreateDOMDocument.cpp
516
%%NO_SAMPLES%%%%EXAMPLESDIR%%/CreateDOMDocument/CreateDOMDocument.cpp
Lines 533-538 Link Here
533
%%NO_SAMPLES%%%%EXAMPLESDIR%%/PParse/PParse.hpp
544
%%NO_SAMPLES%%%%EXAMPLESDIR%%/PParse/PParse.hpp
534
%%NO_SAMPLES%%%%EXAMPLESDIR%%/PParse/PParseHandlers.cpp
545
%%NO_SAMPLES%%%%EXAMPLESDIR%%/PParse/PParseHandlers.cpp
535
%%NO_SAMPLES%%%%EXAMPLESDIR%%/PParse/PParseHandlers.hpp
546
%%NO_SAMPLES%%%%EXAMPLESDIR%%/PParse/PParseHandlers.hpp
547
%%NO_SAMPLES%%%%EXAMPLESDIR%%/PSVIWriter/Makefile
548
%%NO_SAMPLES%%%%EXAMPLESDIR%%/PSVIWriter/Makefile.in
549
%%NO_SAMPLES%%%%EXAMPLESDIR%%/PSVIWriter/PSVIUni.cpp
550
%%NO_SAMPLES%%%%EXAMPLESDIR%%/PSVIWriter/PSVIUni.hpp
551
%%NO_SAMPLES%%%%EXAMPLESDIR%%/PSVIWriter/PSVIWriter.cpp
552
%%NO_SAMPLES%%%%EXAMPLESDIR%%/PSVIWriter/PSVIWriter.hpp
553
%%NO_SAMPLES%%%%EXAMPLESDIR%%/PSVIWriter/PSVIWriterHandlers.cpp
554
%%NO_SAMPLES%%%%EXAMPLESDIR%%/PSVIWriter/PSVIWriterHandlers.hpp
536
%%NO_SAMPLES%%%%EXAMPLESDIR%%/Redirect/Makefile
555
%%NO_SAMPLES%%%%EXAMPLESDIR%%/Redirect/Makefile
537
%%NO_SAMPLES%%%%EXAMPLESDIR%%/Redirect/Makefile.in
556
%%NO_SAMPLES%%%%EXAMPLESDIR%%/Redirect/Makefile.in
538
%%NO_SAMPLES%%%%EXAMPLESDIR%%/Redirect/Redirect.cpp
557
%%NO_SAMPLES%%%%EXAMPLESDIR%%/Redirect/Redirect.cpp
Lines 563-568 Link Here
563
%%NO_SAMPLES%%%%EXAMPLESDIR%%/SAXPrint/SAXPrint.hpp
582
%%NO_SAMPLES%%%%EXAMPLESDIR%%/SAXPrint/SAXPrint.hpp
564
%%NO_SAMPLES%%%%EXAMPLESDIR%%/SAXPrint/SAXPrintHandlers.cpp
583
%%NO_SAMPLES%%%%EXAMPLESDIR%%/SAXPrint/SAXPrintHandlers.cpp
565
%%NO_SAMPLES%%%%EXAMPLESDIR%%/SAXPrint/SAXPrintHandlers.hpp
584
%%NO_SAMPLES%%%%EXAMPLESDIR%%/SAXPrint/SAXPrintHandlers.hpp
585
%%NO_SAMPLES%%%%EXAMPLESDIR%%/SCMPrint/Makefile
586
%%NO_SAMPLES%%%%EXAMPLESDIR%%/SCMPrint/Makefile.in
587
%%NO_SAMPLES%%%%EXAMPLESDIR%%/SCMPrint/SCMPrint.cpp
566
%%NO_SAMPLES%%%%EXAMPLESDIR%%/SEnumVal/Makefile
588
%%NO_SAMPLES%%%%EXAMPLESDIR%%/SEnumVal/Makefile
567
%%NO_SAMPLES%%%%EXAMPLESDIR%%/SEnumVal/Makefile.in
589
%%NO_SAMPLES%%%%EXAMPLESDIR%%/SEnumVal/Makefile.in
568
%%NO_SAMPLES%%%%EXAMPLESDIR%%/SEnumVal/SEnumVal.cpp
590
%%NO_SAMPLES%%%%EXAMPLESDIR%%/SEnumVal/SEnumVal.cpp
Lines 580-590 Link Here
580
%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/data
602
%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/data
581
%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/StdInParse
603
%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/StdInParse
582
%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/SEnumVal
604
%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/SEnumVal
605
%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/SCMPrint
583
%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/SAXPrint
606
%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/SAXPrint
584
%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/SAXCount
607
%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/SAXCount
585
%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/SAX2Print
608
%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/SAX2Print
586
%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/SAX2Count
609
%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/SAX2Count
587
%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/Redirect
610
%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/Redirect
611
%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/PSVIWriter
588
%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/PParse
612
%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/PParse
589
%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/MemParse
613
%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/MemParse
590
%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/EnumVal
614
%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/EnumVal

Return to bug 72784