Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
libxml2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OpenVMS
libraries
libxml2
Commits
368d29f9f2d4
Commit
368d29f9f2d4
authored
3 years ago
by
Nick Wellnhofer
Browse files
Options
Downloads
Patches
Plain Diff
Add WIN32_EXTRA_LIBADD to XML_PRIVATE_LIBS
parent
7b97af457558
No related branches found
No related tags found
No related merge requests found
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
CMakeLists.txt
+1
-1
1 addition, 1 deletion
CMakeLists.txt
configure.ac
+1
-1
1 addition, 1 deletion
configure.ac
libxml-2.0.pc.in
+1
-1
1 addition, 1 deletion
libxml-2.0.pc.in
xml2-config.in
+0
-2
0 additions, 2 deletions
xml2-config.in
with
3 additions
and
5 deletions
CMakeLists.txt
+
1
−
1
View file @
368d29f9
...
...
@@ -650,7 +650,7 @@
set
(
XML_INCLUDEDIR
"-I
\$
{includedir}/libxml2"
)
set
(
XML_LIBDIR
"-L
\$
{libdir}"
)
set
(
XML_LIBS
"-lxml2"
)
set
(
XML_PRIVATE_LIBS
"
${
Z_LIBS
}
${
LZMA_LIBS
}
${
THREAD_LIBS
}
${
ICONV_LIBS
}
${
ICU_LIBS
}
${
LIBM
}
"
)
set
(
XML_PRIVATE_LIBS
"
${
Z_LIBS
}
${
LZMA_LIBS
}
${
THREAD_LIBS
}
${
ICONV_LIBS
}
${
ICU_LIBS
}
${
LIBM
}
${
WIN32_EXTRA_LIBADD
}
"
)
file
(
RELATIVE_PATH PACKAGE_RELATIVE_PATH
"
${
CMAKE_INSTALL_FULL_LIBDIR
}
/pkgconfig"
"
${
CMAKE_INSTALL_PREFIX
}
"
)
string
(
REGEX REPLACE
"/$"
""
PACKAGE_RELATIVE_PATH
"
${
PACKAGE_RELATIVE_PATH
}
"
)
...
...
This diff is collapsed.
Click to expand it.
configure.ac
+
1
−
1
View file @
368d29f9
...
...
@@ -1311,7 +1311,7 @@
fi
fi
XML_LIBS="-lxml2"
XML_PRIVATE_LIBS="$Z_LIBS $LZMA_LIBS $THREAD_LIBS $ICONV_LIBS $ICU_LIBS $LIBM $LIBS"
XML_PRIVATE_LIBS="$Z_LIBS $LZMA_LIBS $THREAD_LIBS $ICONV_LIBS $ICU_LIBS $LIBM
$WIN32_EXTRA_LIBADD
$LIBS"
XML_LIBTOOLLIBS="libxml2.la"
AC_SUBST(WITH_ICU)
...
...
This diff is collapsed.
Click to expand it.
libxml-2.0.pc.in
+
1
−
1
View file @
368d29f9
...
...
@@ -9,5 +9,5 @@
Description: libXML library version2.
Requires:
Libs: -L${libdir} @XML_LIBS@
Libs.private: @XML_PRIVATE_LIBS@
@WIN32_EXTRA_LIBADD@
@LIBS@
Libs.private: @XML_PRIVATE_LIBS@ @LIBS@
Cflags: @XML_INCLUDEDIR@ @XML_CFLAGS@
This diff is collapsed.
Click to expand it.
xml2-config.in
+
0
−
2
View file @
368d29f9
...
...
@@ -92,8 +92,6 @@
if
[
"@XML_LIBDIR@"
!=
"-L/usr/lib"
-a
"@XML_LIBDIR@"
!=
"-L/usr/lib64"
]
;
then
libs
=
"@XML_LIBDIR@
$libs
"
fi
libs
=
"
$libs
@WIN32_EXTRA_LIBADD@"
;;
*
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment