We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5c3bd9 commit 49b9b5dCopy full SHA for 49b9b5d
configure.ac
@@ -26,9 +26,16 @@ ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
26
27
AC_CANONICAL_HOST
28
AC_PROG_CC
29
-PKG_PROG_PKG_CONFIG
30
AC_C_BIGENDIAN
31
+AC_ARG_WITH([pkg-config],
32
+ AS_HELP_STRING([--with-pkg-config=PATH],
33
+ [Specify the pkg-config program to use (default: pkg-config)]),
34
+ [PKG_CONFIG="$withval"],
35
+ [PKG_CONFIG="pkg-config"])
36
+AC_SUBST([PKG_CONFIG])
37
+PKG_PROG_PKG_CONFIG
38
+
39
# we need to set our soversion based on openssl's soversion to avoid
40
# issues with applications linking to new openssl, old libp11, and vice versa
41
opensslversion="$( \
0 commit comments