Skip to content

Commit a661449

Browse files
committed
build: Drop use_pkgconfig check for libmultiprocess check
1 parent 90b95e7 commit a661449

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

configure.ac

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1365,12 +1365,10 @@ dnl libmultiprocess library check
13651365

13661366
libmultiprocess_found=no
13671367
if test "x$with_libmultiprocess" = xyes || test "x$with_libmultiprocess" = xauto; then
1368-
if test "x$use_pkgconfig" = xyes; then
1369-
m4_ifdef([PKG_CHECK_MODULES], [PKG_CHECK_MODULES([LIBMULTIPROCESS], [libmultiprocess], [
1370-
libmultiprocess_found=yes;
1371-
libmultiprocess_prefix=`$PKG_CONFIG --variable=prefix libmultiprocess`;
1372-
], [true])])
1373-
fi
1368+
m4_ifdef([PKG_CHECK_MODULES], [PKG_CHECK_MODULES([LIBMULTIPROCESS], [libmultiprocess], [
1369+
libmultiprocess_found=yes;
1370+
libmultiprocess_prefix=`$PKG_CONFIG --variable=prefix libmultiprocess`;
1371+
], [true])])
13741372
elif test "x$with_libmultiprocess" != xno; then
13751373
AC_MSG_ERROR([--with-libmultiprocess=$with_libmultiprocess value is not yes, auto, or no])
13761374
fi

0 commit comments

Comments
 (0)