We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9cc3aa commit e6af52fCopy full SHA for e6af52f
confdb/aclocal_util.m4
@@ -1,3 +1,11 @@
1
+dnl PAC_APPEND_CSV - Append value to comma separated list
2
+dnl Usage: PAC_APPEND_CSV([foo], [bar])
3
+AC_DEFUN([PAC_APPEND_CSV],[
4
+ AS_IF([test -n "$$2"],
5
+ [$2="$$2, $1"],
6
+ [$2=$1])
7
+])
8
+
9
dnl Nesting safe macros for saving variables
10
dnl Usage: PAC_PUSH_FLAG(CFLAGS)
11
AC_DEFUN([PAC_PUSH_FLAG],[
0 commit comments