aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPuck Meerburg <puck@puck.moe>2021-06-04 11:25:36 +0000
committerPuck Meerburg <puck@puck.moe>2021-06-04 11:25:36 +0000
commit196b77b686ab407e4e01fb3ecde07a5f199f4045 (patch)
tree78cedf4bee124fa89d103e0ea7b0091f56695cc1
parentbb066409719f3b0e820115a3f89589457bf7f500 (diff)
configure.ac: fix use of unread LIBS variable
This fixes both the SunOS/Solaris check, and the libatomic check, which reference $LIBS, which has not been used since automake was stripped out of the code.
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 3bce401db..03b123366 100644
--- a/configure.ac
+++ b/configure.ac
@@ -65,7 +65,7 @@ AC_SYS_LARGEFILE
AC_STRUCT_DIRENT_D_TYPE
if test "$sys_name" = sunos; then
# Solaris requires -lsocket -lnsl for network functions
- LIBS="-lsocket -lnsl $LIBS"
+ LDFLAGS="-lsocket -lnsl $LDFLAGS"
fi
@@ -150,7 +150,7 @@ int main() {
}]])], GCC_ATOMIC_BUILTINS_NEED_LIBATOMIC=no, GCC_ATOMIC_BUILTINS_NEED_LIBATOMIC=yes)
AC_MSG_RESULT($GCC_ATOMIC_BUILTINS_NEED_LIBATOMIC)
if test "x$GCC_ATOMIC_BUILTINS_NEED_LIBATOMIC" = xyes; then
- LIBS="-latomic $LIBS"
+ LDFLAGS="-latomic $LDFLAGS"
fi
PKG_PROG_PKG_CONFIG