aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorMartin Pärtel <martin.partel@gmail.com>2013-05-07 07:40:33 +0300
committerMartin Pärtel <martin.partel@gmail.com>2013-05-07 07:40:33 +0300
commitac14077d9fdb226c9c7f6247d6dc884a2c968bac (patch)
treea67a35286c5fee93a355072d110a08f13b228c9a /configure.ac
parentb4a5b3ce14fde94fc34eaccb990544c60472ce19 (diff)
downloadbindfs-ac14077d9fdb226c9c7f6247d6dc884a2c968bac.tar.gz
Add -pthread to LDFLAGS
fuse's pkg-config no longer includes it.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 7d8aec9..5a9ad8f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -33,8 +33,10 @@ fi
my_CPPFLAGS="-D_REENTRANT -D_FILE_OFFSET_BITS=64 -DFUSE_USE_VERSION=25"
my_CFLAGS="$my_CFLAGS -Wall"
+my_LDFLAGS="-pthread"
AC_SUBST([my_CPPFLAGS])
AC_SUBST([my_CFLAGS])
+AC_SUBST([my_LDFLAGS])
# Check for xattrs
AC_CHECK_FUNCS([setxattr getxattr listxattr removexattr])