diff options
author | Dimitri Karamazov <deserter666@danwin1210.me> | 2020-11-22 20:03:04 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2020-11-22 20:03:04 +0100 |
commit | 5cc2e000c7e9424edfd7643db495e17bc148ecc7 (patch) | |
tree | ce5a550ea6e262b3eac6ba788e8752e789883a32 /configure.ac | |
parent | 23138bf682d5f3ab2baff99874af0924250981dd (diff) |
Fall back to using glob when wordexp is not available.v0.9.19
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 1151ad1..e1b7e05 100644 --- a/configure.ac +++ b/configure.ac @@ -362,6 +362,11 @@ AS_IF( dnl ====================== AC_CHECK_HEADERS(getopt.h) + dnl ====================== + dnl Check for wordexp + dnl ====================== + AC_CHECK_FUNCS([wordexp]) + dnl *** dnl *** Input plugins dnl *** |