Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
 

126 lignes
3.9 KiB

Index: runConfigure
--- runConfigure.orig 2005-08-17 01:48:26 +0200
+++ runConfigure 2005-12-09 11:51:25 +0100
@@ -563,16 +563,16 @@
# Set the extra C and C++ compiler flags
#
-CXXFLAGS="$compileroptions $debugflag $transcodingDefines $threadingDefines $bitstobuildDefines "
+CXXFLAGS="$CXXFLAGS $compileroptions $debugflag $transcodingDefines $threadingDefines $bitstobuildDefines "
export CXXFLAGS
-CFLAGS="$compileroptions $debugflag $transcodingDefines $threadingDefines $bitstobuildDefines "
+CFLAGS="$CFLAGS $compileroptions $debugflag $transcodingDefines $threadingDefines $bitstobuildDefines "
export CFLAGS
-LDFLAGS="$LDFLAGS $linkeroptions $bitstobuildLink"
+LDFLAGS="$LDFLAGS $LDFLAGS $linkeroptions $bitstobuildLink"
export LDFLAGS
-LIBS="$transcodingLibs $threadingLibs "
+LIBS="$LIBS $transcodingLibs $threadingLibs "
export LIBS
Index: src/xalanc/ICUBridge/ICUFormatNumberFunctor.hpp
--- src/xalanc/ICUBridge/ICUFormatNumberFunctor.hpp.orig 2005-05-10 23:02:04 +0200
+++ src/xalanc/ICUBridge/ICUFormatNumberFunctor.hpp 2005-12-09 11:51:25 +0100
@@ -146,6 +146,8 @@
private:
DecimalFormatCacheStruct();
+
+public:
DecimalFormatCacheStruct(const DecimalFormatCacheStruct& other);
};
Index: src/xalanc/Utils/MsgCreator/Makefile.in
--- src/xalanc/Utils/MsgCreator/Makefile.in.orig 2004-04-06 17:08:45 +0200
+++ src/xalanc/Utils/MsgCreator/Makefile.in 2005-12-09 11:51:25 +0100
@@ -29,7 +29,7 @@
$(XSL_BIN_DIR)/MsgCreator : $(MSG_CREATOR_OBJECTS)
${LINK} $(XSL_BUILD_OPTIONS) ${PLATFORM_LIB_LINK_OPTIONS} ${LIBRARY_SEARCH_PATHS} \
- ${EXTRA_LINK_OPTIONS} $(XERCES_LIB) $^ -o $@ $(LOC_OTHER_LINK_PARAMETERS)
+ ${EXTRA_LINK_OPTIONS} $^ -o $@ $(LOC_OTHER_LINK_PARAMETERS) $(XERCES_LIB)
$(XSL_OBJ_DIR)/%.o : $(MSG_CREATOR_SRC)/%.cpp
$(CC1) $(XSL_BUILD_OPTIONS) -c $(XSL_INCL) $(EXTRA_COMPILE_OPTIONS) -o $@ $<
Index: src/xalanc/XMLSupport/FormatterToText.hpp
--- src/xalanc/XMLSupport/FormatterToText.hpp.orig 2004-12-14 19:59:06 +0100
+++ src/xalanc/XMLSupport/FormatterToText.hpp 2005-12-09 11:51:25 +0100
@@ -221,7 +221,9 @@
private:
// These are not implemented.
+#if 0
FormatterToText(const FormatterToText&);
+#endif
FormatterToText&
operator=(const FormatterToText&);
Index: src/xalanc/XPath/ElementPrefixResolverProxy.hpp
--- src/xalanc/XPath/ElementPrefixResolverProxy.hpp.orig 2004-11-10 20:09:11 +0100
+++ src/xalanc/XPath/ElementPrefixResolverProxy.hpp 2005-12-09 11:51:25 +0100
@@ -86,7 +86,9 @@
private:
//notimplemented
+#if 0
ElementPrefixResolverProxy(const ElementPrefixResolverProxy&);
+#endif
const XalanElement* const m_namespaceContext;
Index: src/xalanc/XPath/NameSpace.hpp
--- src/xalanc/XPath/NameSpace.hpp.orig 2004-11-09 17:06:05 +0100
+++ src/xalanc/XPath/NameSpace.hpp 2005-12-09 11:51:25 +0100
@@ -191,7 +191,9 @@
}
private:
+#if 0
NameSpace(const NameSpace&);
+#endif
XalanDOMString m_prefix;
Index: src/xalanc/XPath/XalanQNameByValue.hpp
--- src/xalanc/XPath/XalanQNameByValue.hpp.orig 2004-11-08 19:17:11 +0100
+++ src/xalanc/XPath/XalanQNameByValue.hpp 2005-12-09 11:51:25 +0100
@@ -290,7 +290,9 @@
private:
// not implemented
+#if 0
XalanQNameByValue(const XalanQNameByValue& theSource);
+#endif
void
initialize(
const XalanDOMChar* qname,
Index: src/xalanc/XSLT/FunctionSystemProperty.hpp
--- src/xalanc/XSLT/FunctionSystemProperty.hpp.orig 2004-11-09 17:06:05 +0100
+++ src/xalanc/XSLT/FunctionSystemProperty.hpp 2005-12-09 11:51:25 +0100
@@ -73,7 +73,9 @@
private:
+#if 0
FunctionSystemProperty(const FunctionSystemProperty&);
+#endif
// Not implemented...
FunctionSystemProperty&
Index: src/xalanc/XSLT/TopLevelArg.hpp
--- src/xalanc/XSLT/TopLevelArg.hpp.orig 2004-11-09 17:06:05 +0100
+++ src/xalanc/XSLT/TopLevelArg.hpp 2005-12-09 11:51:25 +0100
@@ -147,7 +147,9 @@
private:
// not implemented
+#if 0
TopLevelArg(const TopLevelArg& theSource);
+#endif
XalanQNameByValue m_qname;