mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
Merge from bittboy/buildroot@db180c0
This commit is contained in:
33
package/nginx/0007-auto-lib-libgd-conf-use-pkg-config.patch
Normal file
33
package/nginx/0007-auto-lib-libgd-conf-use-pkg-config.patch
Normal file
@@ -0,0 +1,33 @@
|
||||
From 0551f2e5eb4143be0aacc0185cdc4afc9ca80204 Mon Sep 17 00:00:00 2001
|
||||
From: Martin Bark <martin@barkynet.com>
|
||||
Date: Fri, 6 May 2016 14:48:49 +0100
|
||||
Subject: [PATCH] auto/lib/libgd/conf: use pkg-config
|
||||
|
||||
Change to using pkg-config to find the path to libgd and its
|
||||
dependencies.
|
||||
|
||||
Signed-off-by: Martin Bark <martin@barkynet.com>
|
||||
[Peter: updated for 1.15.6]
|
||||
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
|
||||
---
|
||||
auto/lib/libgd/conf | 4 ++--
|
||||
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/auto/lib/libgd/conf b/auto/lib/libgd/conf
|
||||
index 67863976..1a4379a5 100644
|
||||
--- a/auto/lib/libgd/conf
|
||||
+++ b/auto/lib/libgd/conf
|
||||
@@ -7,8 +7,8 @@
|
||||
ngx_feature_name=
|
||||
ngx_feature_run=no
|
||||
ngx_feature_incs="#include <gd.h>"
|
||||
- ngx_feature_path=
|
||||
- ngx_feature_libs="-lgd"
|
||||
+ ngx_feature_path="$(${GDLIB_CONFIG:=gdlib-config} --includedir)"
|
||||
+ ngx_feature_libs="$(${GDLIB_CONFIG:=gdlib-config} --libs)"
|
||||
ngx_feature_test="gdImagePtr img = gdImageCreateFromGifPtr(1, NULL);
|
||||
(void) img"
|
||||
. auto/feature
|
||||
--
|
||||
2.11.0
|
||||
|
||||
Reference in New Issue
Block a user