X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=m4%2Fsigrok.m4;h=2d0d70fc0af83da629ec5f21e3dc7a9a85e6dee6;hb=bbb3996c06f2b1ebc9529d1e2181ddc55f70d9da;hp=6bf008401fb77ccb7279ee4b86e0dd849e862a2b;hpb=1bb196e4969b299d316bdcff2201a44dd517f240;p=libsigrok.git diff --git a/m4/sigrok.m4 b/m4/sigrok.m4 index 6bf00840..2d0d70fc 100644 --- a/m4/sigrok.m4 +++ b/m4/sigrok.m4 @@ -1,22 +1,24 @@ -## Copyright (c) 2009 Openismus GmbH -## Copyright (c) 2015 Daniel Elstner ## ## This file is part of the sigrok project. ## -## sigrok is free software: you can redistribute it and/or modify it -## under the terms of the GNU General Public License as published by +## Copyright (C) 2009 Openismus GmbH +## Copyright (C) 2015 Daniel Elstner +## +## This program is free software: you can redistribute it and/or modify +## it under the terms of the GNU General Public License as published by ## the Free Software Foundation, either version 3 of the License, or ## (at your option) any later version. ## -## sigrok is distributed in the hope that it will be useful, +## This program is distributed in the hope that it will be useful, ## but WITHOUT ANY WARRANTY; without even the implied warranty of -## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with sigrok. If not, see . +## along with this program. If not, see . +## -#serial 20150823 +#serial 20150825 ## SR_APPEND(var-name, [list-sep,] element) ## @@ -31,6 +33,19 @@ m4_assert([$# >= 2])[]dnl $1=[$]{$1[}]m4_if([$#], [2], [[$]{$1:+' '}$2], [[$]{$1:+$2}$3])[]dnl ]) +## SR_PREPEND(var-name, [list-sep,] element) +## +## Prepend the shell word to the shell variable named , +## suffixed by unless the list was empty before prepending. If +## only two arguments are supplied, defaults to a single space +## character. +## +AC_DEFUN([SR_PREPEND], +[dnl +m4_assert([$# >= 2])[]dnl +$1=m4_if([$#], [2], [$2[$]{$1:+' '}], [$3[$]{$1:+$2}])[$]$1[]dnl +]) + ## _SR_PKG_VERSION_SET(var-prefix, pkg-name, tag-prefix, base-version, major, minor, [micro]) ## m4_define([_SR_PKG_VERSION_SET], @@ -115,6 +130,24 @@ _SR_LIB_VERSION_SET([$1], [$2], m4_unquote(m4_split([$2], [:]))) ]) +## SR_SEARCH_LIBS(libs-var, function, search-libs, +## [action-if-found], [action-if-not-found], [other-libs]) +## +## Same as AC_SEARCH_LIBS, except that the result is prepended +## to instead of LIBS. Calls AC_SUBST on . +## +AC_DEFUN([SR_SEARCH_LIBS], +[dnl +m4_assert([$# >= 3])[]dnl +sr_sl_save_LIBS=$LIBS +AC_SEARCH_LIBS([$2], [$3],,, m4_join([$6], [[$]$1])) +LIBS=$sr_sl_save_LIBS +AS_CASE([$ac_cv_search_$2], [no*],, + [SR_PREPEND([$1], [$ac_cv_search_$2])]) +m4_ifvaln([$4$5], [AS_IF([test "x$ac_cv_search_$2" = xno], [$5], [$4])])[]dnl +AC_SUBST([$1])[]dnl +]) + ## _SR_VAR_SUMMARY(tag, var-name, line-leader, align-columns, align-char) ## m4_define([_SR_VAR_SUMMARY], [dnl @@ -237,6 +270,32 @@ _SR_ARG_OPT_PKG(m4_expand([AS_TR_SH([$1])]), $@)[]dnl ]) +## SR_CHECK_COMPILE_FLAGS(flags-var, description, flags) +## +## Find a compiler flag for . For each flag in , check +## if the compiler for the current language accepts it. On success, stop the +## search and append the last tested flag to . Calls AC_SUBST +## on . +## +AC_DEFUN([SR_CHECK_COMPILE_FLAGS], +[dnl +m4_assert([$# >= 3])[]dnl +AC_MSG_CHECKING([compiler flag for $2]) +sr_ccf_result=no +sr_ccf_save_CPPFLAGS=$CPPFLAGS +for sr_flag in $3 +do + CPPFLAGS="$sr_ccf_save_CPPFLAGS $sr_flag" + AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [])], [sr_ccf_result=$sr_flag]) + test "x$sr_ccf_result" = xno || break +done +CPPFLAGS=$sr_ccf_save_CPPFLAGS +AS_IF([test "x$sr_ccf_result" != xno], + [SR_APPEND([$1], [$sr_ccf_result])]) +AC_MSG_RESULT([$sr_ccf_result]) +AC_SUBST([$1]) +]) + ## _SR_ARG_ENABLE_WARNINGS_ONCE ## ## Implementation helper macro of SR_ARG_ENABLE_WARNINGS. Pulled in