summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--aclocal.m417
1 files changed, 17 insertions, 0 deletions
diff --git a/aclocal.m4 b/aclocal.m4
new file mode 100644
index 0000000..5b1f7c7
--- /dev/null
+++ b/aclocal.m4
@@ -0,0 +1,17 @@
+m4_include([libptytty/ptytty.m4])
+
+dnl maybe import pkg.m4 and use PKG_CHECK_MODULES in place of this macro
+AC_DEFUN([RXVT_CHECK_MODULES],
+[
+ AC_MSG_CHECKING(for $2)
+ if test $PKG_CONFIG != no && $PKG_CONFIG --exists $2; then
+ $1[]_CFLAGS="`$PKG_CONFIG --cflags $2`"
+ $1[]_LIBS="`$PKG_CONFIG --libs $2`"
+
+ AC_MSG_RESULT(ok)
+ $3
+ else
+ AC_MSG_RESULT(no)
+ $4
+ fi
+])