summaryrefslogtreecommitdiff
path: root/ac/aclocal-include.m4
diff options
context:
space:
mode:
authorSimeon Simeonov2018-02-26 11:23:00 +0100
committerSimeon Simeonov2018-02-26 11:23:00 +0100
commit0b3cbf57875fd692e4ba0b336fefa4bee1ed00dc (patch)
treeaf916a30553c78ce9d4f2d8658656a175c5b6921 /ac/aclocal-include.m4
Initial commit for sylpheed 3.7.0
Diffstat (limited to 'ac/aclocal-include.m4')
-rw-r--r--ac/aclocal-include.m412
1 files changed, 12 insertions, 0 deletions
diff --git a/ac/aclocal-include.m4 b/ac/aclocal-include.m4
new file mode 100644
index 0000000..aac5f8a
--- /dev/null
+++ b/ac/aclocal-include.m4
@@ -0,0 +1,12 @@
1# aclocal-include.m4
2#
3# This macro adds the name macrodir to the set of directories
4# that `aclocal' searches for macros.
5
6dnl SYLPHEED_ACLOCAL_INCLUDE(macrodir)
7AC_DEFUN([SYLPHEED_ACLOCAL_INCLUDE],
8[
9 test -n "$ACLOCAL_FLAGS" && ACLOCAL="$ACLOCAL $ACLOCAL_FLAGS"
10
11 for k in $1 ; do ACLOCAL="$ACLOCAL -I $k" ; done
12])