diff options
author | alexv-smirnov <alex@ydb.tech> | 2023-03-15 19:59:12 +0300 |
---|---|---|
committer | alexv-smirnov <alex@ydb.tech> | 2023-03-15 19:59:12 +0300 |
commit | 056bb284ccf8dd6793ec3a54ffa36c4fb2b9ad11 (patch) | |
tree | 4740980126f32e3af7937ba0ca5f83e59baa4ab0 /contrib/libs/libxml/ya.make | |
parent | 269126dcced1cc8b53eb4398b4a33e5142f10290 (diff) | |
download | ydb-056bb284ccf8dd6793ec3a54ffa36c4fb2b9ad11.tar.gz |
add library/cpp/actors, ymake build to ydb oss export
Diffstat (limited to 'contrib/libs/libxml/ya.make')
-rw-r--r-- | contrib/libs/libxml/ya.make | 94 |
1 files changed, 94 insertions, 0 deletions
diff --git a/contrib/libs/libxml/ya.make b/contrib/libs/libxml/ya.make new file mode 100644 index 0000000000..bcf10ef16f --- /dev/null +++ b/contrib/libs/libxml/ya.make @@ -0,0 +1,94 @@ +# Generated by devtools/yamaker from nixpkgs 22.05. + +LIBRARY() + +LICENSE( + MIT AND + Mit-Veillard-Variant +) + +LICENSE_TEXTS(.yandex_meta/licenses.list.txt) + +VERSION(2.9.13) + +ORIGINAL_SOURCE(https://gitlab.gnome.org/api/v4/projects/GNOME%2Flibxml2/repository/archive.tar.gz?sha=v2.9.13) + +PEERDIR( + contrib/libs/libiconv + contrib/libs/zlib +) + +ADDINCL( + GLOBAL contrib/libs/libxml/include + contrib/libs/libxml +) + +NO_COMPILER_WARNINGS() + +CFLAGS( + -DHAVE_CONFIG_H + GLOBAL -DLIBXML_STATIC +) + +SRCS( + HTMLparser.c + HTMLtree.c + SAX.c + SAX2.c + buf.c + c14n.c + catalog.c + chvalid.c + debugXML.c + dict.c + encoding.c + entities.c + error.c + globals.c + hash.c + legacy.c + list.c + nanoftp.c + nanohttp.c + parser.c + parserInternals.c + pattern.c + relaxng.c + schematron.c + threads.c + tree.c + uri.c + valid.c + xinclude.c + xlink.c + xmlIO.c + xmlmemory.c + xmlmodule.c + xmlreader.c + xmlregexp.c + xmlsave.c + xmlschemas.c + xmlschemastypes.c + xmlstring.c + xmlunicode.c + xmlwriter.c + xpath.c + xpointer.c + xzlib.c +) + +IF (ARCADIA_LIBXML_DISABLE_EXTRA_ENCODINGS) + NO_RUNTIME() + CFLAGS( + -DARCADIA_LIBXML_DISABLE_EXTRA_ENCODINGS + ) +ELSE() + PEERDIR( + library/cpp/charset + ) + SRCS( + yencoding.cpp + ) +ENDIF() + +END() |