diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2014-04-29 08:29:49 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2014-04-29 08:29:49 +0200 |
commit | 871082dc018815261b6ec75a8e4933505389ffae (patch) | |
tree | 6b92641afc8dbbf234fa5b46569ed4335cb4204b /m4/pkgconfig.m4 | |
parent | eb95d50569946def5e55c73445c1d85f603e8536 (diff) |
Support for autotools and VC++ 9, 10, 11 build systems
Diffstat (limited to 'm4/pkgconfig.m4')
-rw-r--r-- | m4/pkgconfig.m4 | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/m4/pkgconfig.m4 b/m4/pkgconfig.m4 new file mode 100644 index 0000000..59439fc --- /dev/null +++ b/m4/pkgconfig.m4 @@ -0,0 +1,12 @@ +dnl file : m4/pkgconfig.m4 +dnl copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC +dnl license : MIT; see accompanying LICENSE file +dnl +AC_DEFUN([PKGCONFIG],[ +AC_ARG_WITH( + [pkgconfigdir], + [AC_HELP_STRING([--with-pkgconfigdir=DIR],[location of pkgconfig dir (default is libdir/pkgconfig)])], + [pkgconfigdir=${withval}], + [pkgconfigdir='${libdir}/pkgconfig']) +AC_SUBST([pkgconfigdir]) +])dnl |