Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Sean McGovern
VLC
Commits
c26c3d6f
Commit
c26c3d6f
authored
1 year ago
by
Sean McGovern
Browse files
Options
Downloads
Patches
Plain Diff
contrib: vncclient: ensure to link with libm when checking for libpng
parent
89b9586a
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
contrib/src/vncclient/png-detection.patch
+1
-1
1 addition, 1 deletion
contrib/src/vncclient/png-detection.patch
with
1 addition
and
1 deletion
contrib/src/vncclient/png-detection.patch
+
1
−
1
View file @
c26c3d6f
...
...
@@ -5,7 +5,7 @@
AC_CHECK_HEADER(png.h, HAVE_PNGLIB_H="true")
if test "x$HAVE_PNGLIB_H" = "xtrue"; then
- AC_CHECK_LIB(png, png_create_write_struct, , HAVE_PNGLIB_H="")
+ AC_CHECK_LIB(png, png_create_write_struct, , HAVE_PNGLIB_H="", -lz)
+ AC_CHECK_LIB(png, png_create_write_struct, , HAVE_PNGLIB_H="", -lz
-lm
)
fi
if test ! -z "$with_png" -a "x$with_png" != "xyes"; then
if test "x$HAVE_PNGLIB_H" != "xtrue"; then
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