mirror of
https://git.yoctoproject.org/git/poky
synced 2026-01-01 13:58:04 +00:00
Having one monolithic packages directory makes it hard to find things and is generally overwhelming. This commit splits it into several logical sections roughly based on function, recipes.txt gives more information about the classifications used. The opportunity is also used to switch from "packages" to "recipes" as used in OpenEmbedded as the term "packages" can be confusing to people and has many different meanings. Not all recipes have been classified yet, this is just a first pass at separating things out. Some packages are moved to meta-extras as they're no longer actively used or maintained. Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
91 lines
2.6 KiB
Plaintext
91 lines
2.6 KiB
Plaintext
## this one is commonly used with AM_PATH_PYTHONDIR ...
|
|
dnl AM_CHECK_PYMOD(MODNAME [,SYMBOL [,ACTION-IF-FOUND [,ACTION-IF-NOT-FOUND]]])
|
|
dnl Check if a module containing a given symbol is visible to python.
|
|
AC_DEFUN(AM_CHECK_PYMOD,
|
|
[AC_REQUIRE([AM_PATH_PYTHON])
|
|
py_mod_var=`echo $1['_']$2 | sed 'y%./+-%__p_%'`
|
|
AC_MSG_CHECKING(for ifelse([$2],[],,[$2 in ])python module $1)
|
|
AC_CACHE_VAL(py_cv_mod_$py_mod_var, [
|
|
ifelse([$2],[], [prog="
|
|
import sys
|
|
try:
|
|
import $1
|
|
except ImportError:
|
|
sys.exit(1)
|
|
except:
|
|
sys.exit(0)
|
|
sys.exit(0)"], [prog="
|
|
import $1
|
|
$1.$2"])
|
|
if $PYTHON -c "$prog" 1>&AC_FD_CC 2>&AC_FD_CC
|
|
then
|
|
eval "py_cv_mod_$py_mod_var=yes"
|
|
else
|
|
eval "py_cv_mod_$py_mod_var=no"
|
|
fi
|
|
])
|
|
py_val=`eval "echo \`echo '$py_cv_mod_'$py_mod_var\`"`
|
|
if test "x$py_val" != xno; then
|
|
AC_MSG_RESULT(yes)
|
|
ifelse([$3], [],, [$3
|
|
])dnl
|
|
else
|
|
AC_MSG_RESULT(no)
|
|
ifelse([$4], [],, [$4
|
|
])dnl
|
|
fi
|
|
])
|
|
|
|
dnl a macro to check for ability to create python extensions
|
|
dnl AM_CHECK_PYTHON_HEADERS([ACTION-IF-POSSIBLE], [ACTION-IF-NOT-POSSIBLE])
|
|
dnl function also defines PYTHON_INCLUDES
|
|
AC_DEFUN([AM_CHECK_PYTHON_HEADERS],
|
|
[AC_REQUIRE([AM_PATH_PYTHON])
|
|
AC_MSG_CHECKING(for headers required to compile python extensions)
|
|
dnl deduce PYTHON_INCLUDES
|
|
AC_ARG_WITH(python-includes,
|
|
[ --with-python-includes=DIR path to Python includes], py_exec_prefix=$withval)
|
|
if test x$py_exec_prefix != x; then
|
|
PYTHON_INCLUDES="-I${py_exec_prefix}/include/python${PYTHON_VERSION}"
|
|
else
|
|
py_prefix=`$PYTHON -c "import sys; print sys.prefix"`
|
|
py_exec_prefix=`$PYTHON -c "import sys; print sys.exec_prefix"`
|
|
PYTHON_INCLUDES="-I${py_prefix}/include/python${PYTHON_VERSION}"
|
|
if test "$py_prefix" != "$py_exec_prefix"; then
|
|
PYTHON_INCLUDES="$PYTHON_INCLUDES -I${py_exec_prefix}/include/python${PYTHON_VERSION}"
|
|
fi
|
|
fi
|
|
AC_SUBST(PYTHON_INCLUDES)
|
|
dnl check if the headers exist:
|
|
save_CPPFLAGS="$CPPFLAGS"
|
|
CPPFLAGS="$CPPFLAGS $PYTHON_INCLUDES"
|
|
AC_TRY_CPP([#include <Python.h>],dnl
|
|
[AC_MSG_RESULT(found)
|
|
$1],dnl
|
|
[AC_MSG_RESULT(not found)
|
|
$2])
|
|
CPPFLAGS="$save_CPPFLAGS"
|
|
])
|
|
|
|
dnl
|
|
dnl JH_ADD_CFLAG(FLAG)
|
|
dnl checks whether the C compiler supports the given flag, and if so, adds
|
|
dnl it to $CFLAGS. If the flag is already present in the list, then the
|
|
dnl check is not performed.
|
|
AC_DEFUN([JH_ADD_CFLAG],
|
|
[
|
|
case " $CFLAGS " in
|
|
*@<:@\ \ @:>@$1@<:@\ \ @:>@*)
|
|
;;
|
|
*)
|
|
save_CFLAGS="$CFLAGS"
|
|
CFLAGS="$CFLAGS $1"
|
|
AC_MSG_CHECKING([whether [$]CC understands $1])
|
|
AC_TRY_COMPILE([], [], [jh_has_option=yes], [jh_has_option=no])
|
|
AC_MSG_RESULT($jh_has_option)
|
|
if test $jh_has_option = no; then
|
|
CFLAGS="$save_CFLAGS"
|
|
fi
|
|
;;
|
|
esac])
|