Home
last modified time | relevance | path

Searched +full:autotools +full:- +full:build +full:- +full:and +full:- +full:test (Results 1 – 25 of 92) sorted by relevance

1234

/OK3568_Linux_fs/yocto/poky/meta/recipes-gnome/gtk-doc/files/
H A Dno-clobber.patch4 Subject: [PATCH] gtk-doc: don't regenerate gtk-doc in do_install
6 In out-of-tree builds gtk-doc's setup-build target copies all the content from $srcdir to $builddir.
10 1) configure writes new build/version.xml
12 to build/version.xml, and generates gtk-doc.
13 3) make install notices build/version.xml is older than configure.status,
14 so regenerates gtk-doc.
16 gtk-doc generation is a slow process at the best of times, so doing it twice isn't good.
18 Solve this by changing cp --force to cp --no-clobber, so setup-build only copies
21 Upstream-Status: Submitted [https://bugzilla.gnome.org/show_bug.cgi?id=794571]
22 Signed-off-by: Ross Burton <ross.burton@intel.com>
[all …]
/OK3568_Linux_fs/buildroot/package/libnfc/
H A D0001-autotools-make-example-build-optional.patch4 Subject: [PATCH] autotools: make example build optional
6 This patch makes example build optional for autotools build system.
8 In order to keep the former behavior, example build is enabled by default.
10 Signed-off-by: Samuel Martin <s.martin49@gmail.com>
11 [Retrieved (and slightly updated to remove CMakeLists.txt) from:
12 https://git.buildroot.net/buildroot/tree/package/libnfc/0001-build-systems-make-example-build-optio…
13 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
15 https://github.com/nfc-tools/libnfc/commit/874d9605aa9cd028aed149c2dd1bb410856477fb]
16 ---
17 Makefile.am | 8 +++++++-
[all …]
/OK3568_Linux_fs/buildroot/package/
H A Dpkg-autotools.mk2 # Autotools package infrastructure
5 # package .mk files for autotools packages. It should be used for all
6 # packages that use the autotools as their build system.
11 # In terms of implementation, this autotools infrastructure requires
18 # build the package, instead of the default autotools behaviour. The
25 # Utility function to upgrade config.sub and config.guess files
27 # argument 1 : directory into which config.guess and config.sub need
28 # to be updated. Note that config.sub and config.guess are searched
33 for i in $$(find $(1) -name $$file); do \
42 # tests cannot be done in a cross-compilation context. This function
[all …]
/OK3568_Linux_fs/buildroot/package/softether/
H A D0001-Create-autotools-plumbing-for-SoftEther.patch3 Date: Sat, 12 Apr 2014 17:46:04 -0400
4 Subject: [PATCH] Create autotools plumbing for SoftEther.
6 Add autoconf and automake capabilities to SoftEther so that it can be built
9 # autoreconf --force --install
15 # ./configure --enable-debug
17 Autotools support makes porting, cross compiling, and optimization much easier.
19 These GNU autoconf-archive components are used for dependency checking:
27 NB: http://www.gnu.org/software/autoconf-archive/
30 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
31 [Fabrice: update for 4.30-9700-beta]
[all …]
/OK3568_Linux_fs/yocto/poky/documentation/migration-guides/
H A Dmigration-1.7.rst7 .. _migration-1.7-changes-to-setting-qemu-packageconfig-options:
10 -------------------------------------------------------------------
16 append to :term:`PACKAGECONFIG` for ``qemu-native`` and ``nativesdk-qemu``
20 PACKAGECONFIG_append_pn-qemu-native = " sdl"
21 PACKAGECONFIG_append_pn-nativesdk-qemu = " sdl"
23 .. _migration-1.7-minimum-git-version:
26 -------------------
28 The minimum :ref:`overview-manual/development-environment:git`
30 build host is now 1.7.8 because the ``--list`` option is now required by
33 ``buildtools-tarball`` that does. See the
[all …]
H A Dmigration-1.6.rst7 .. _migration-1.6-archiver-class:
10 ------------------
12 The :ref:`archiver <ref-classes-archiver>` class has been rewritten
13 and its configuration has been simplified. For more details on the
15 ":ref:`dev-manual/common-tasks:maintaining open source license compliance during your product's lif…
18 .. _migration-1.6-packaging-changes:
21 -----------------
25 - The ``binutils`` recipe no longer produces a ``binutils-symlinks``
26 package. ``update-alternatives`` is now used to handle the preferred
29 - The tc (traffic control) utilities have been split out of the main
[all …]
H A Dmigration-2.1.rst7 .. _migration-2.1-variable-expansion-in-python-functions:
10 --------------------------------------
21 .. _migration-2.1-overrides-must-now-be-lower-case:
23 Overrides Must Now be Lower-Case
24 --------------------------------
26 The convention for overrides has always been for them to be lower-case
28 now assumes lower-case characters in order to give a slight performance
31 appear in lower-case characters (e.g. values for :term:`MACHINE`,
32 :term:`TARGET_ARCH`, :term:`DISTRO`, and also recipe names if
33 ``_pn-``\ recipename overrides are to be effective).
[all …]
/OK3568_Linux_fs/external/xserver/
H A D.gitlab-ci.yml1 # IMAGE_TAG is the tag of the docker image used for the build jobs. If the
2 # image doesn't exist yet, the docker-image stage generates it.
8 # gcc/clang or other packages, which might break the build with older commits
16 IMAGE_TAG: "debian-testing-20190219"
21 - docker-image
22 - build-and-test
24 debian-testing:
25 stage: docker-image
27 name: gcr.io/kaniko-project/executor:debug
30- echo "{\"auths\":{\"$CI_REGISTRY\":{\"username\":\"$CI_REGISTRY_USER\",\"password\":\"$CI_REGIST…
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-core/ndctl/ndctl/
H A D0001-build-set-HAVE_STATEMENT_EXPR-var.patch4 Subject: [PATCH] build: set HAVE_STATEMENT_EXPR var
6 The v73 version tries to build and run a test program at compile
7 time to check whether compiler supports sizeof and expression statements
8 and sets HAVE_STATEMENT_EXPR accordingly. This requires EXEWRAPPER_ENABLED
9 in meson.bbclass to be True and qemu-usermode to be working.
11 In cases when EXEWRAPPER_ENABLED is False, build fails with error:
13 | ../git/meson.build:213:0: ERROR: Can not run test applications in
16 We don't really need to do this as these have been supported since gcc3 and can set the configs to …
18 The autotools implementation also used to set it to 1 so this doesn't change anything:
22 Upstream-Status: Inappropriate
[all …]
/OK3568_Linux_fs/yocto/poky/meta/recipes-support/apr/
H A Dapr_1.7.2.bb3 DESCRIPTION = "Create and maintain software libraries that provide a predictable \
4 and consistent interface to underlying platform-specific implementations."
8 DEPENDS = "util-linux"
10 LICENSE = "Apache-2.0"
16 SRC_URI = "${APACHE_MIRROR}/apr/${BPN}-${PV}.tar.bz2 \
17 file://run-ptest \
18 file://0002-apr-Remove-workdir-path-references-from-installed-ap.patch \
19 file://0004-Fix-packet-discards-HTTP-redirect.patch \
20 file://0005-configure.in-fix-LTFLAGS-to-make-it-work-with-ccache.patch \
21 file://0007-explicitly-link-libapr-against-phtread-to-make-gold-.patch \
[all …]
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/manual/
H A Declipse-plugin.json3 "test": { object
4 "@alias": "eclipse-plugin.eclipse-plugin.support_SSH_connection_to_Target",
13 …P address as the Host name, make sure disable the proxy in Window->Preferences->General->Network C…
17 …"Configure connection from Eclipse: Run->Run Configurations->C/C++ Remote Application\\ ->New Conn…
21 "action": "Then right click to connect, input the user ID and password. ",
25 … etc. \nNOTE. Might need to change dropbear to openssh and add the packagegroup-core-eclipse-deb…
33 "test": { object
34 "@alias": "eclipse-plugin.eclipse-plugin.Launch_QEMU_from_Eclipse",
43 …octo ADT's toolchain root location, sysroot location and kernel, in the menu Window -> Preferences…
47-$VERSION/machines/qemu/qemux86/ (ex:core-image-sato-sdk-qemux86-date-rootfs-tar-bz2) \nsource /op…
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/onig/
H A Donig_6.9.4.bb2 DESCRIPTION = "Oniguruma is a modern and flexible regular expressions library. \
7 LICENSE = "BSD-2-Clause"
12 file://0001-build-don-t-link-against-host-system-libraries.patch \
13 file://0001-build-enable-serial-tests-automake-option-for-ptest.patch \
14 file://run-ptest \
20 BINCONFIG = "${bindir}/onig-config"
22 inherit autotools binconfig-disabled ptest
27 oe_runmake -C test buildtest-TESTS
31 mkdir -p ${D}${PTEST_PATH}/tests
32 install -m 0755 -t ${D}${PTEST_PATH}/tests/ ${B}/test/.libs/*
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/valgrind/
H A Dvalgrind_3.18.1.bb1 SUMMARY = "Valgrind memory debugger and instrumentation framework"
3 …grind tools that can automatically detect many memory management and threading bugs, and profile y…
5 LICENSE = "GPL-2.0-only & GPL-2.0-or-later & BSD-3-Clause"
15 SRC_URI = "https://sourceware.org/pub/valgrind/valgrind-${PV}.tar.bz2 \
16 file://fixed-perl-path.patch \
17 file://Added-support-for-PPC-instructions-mfatbu-mfatbl.patch \
18 file://run-ptest \
19 file://remove-for-aarch64 \
20 file://remove-for-all \
22 file://0004-Fix-out-of-tree-builds.patch \
[all …]
/OK3568_Linux_fs/yocto/poky/documentation/ref-manual/
H A Dclasses.rst1 .. SPDX-License-Identifier: CC-BY-SA-2.0-UK
7 Class files are used to abstract common functionality and share it
16 ``.bbclass`` and are usually placed in a ``classes/`` directory beneath
19 :term:`BUILDDIR` (e.g. ``build/``) in the same way as
24 This chapter discusses only the most useful and important classes. Other
29 .. _ref-classes-allarch:
35 architecture-specific output. The class disables functionality that is
37 building the cross-compiler and a C library as pre-requisites, and
44 :term:`RDEPENDS` and
47 even if the recipes do not produce architecture-specific output.
[all …]
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/sdk/cases/
H A Dbuildgalculator.py2 # SPDX-License-Identifier: MIT
16 Test that autotools and GTK+ 3 compiles correctly.
20 self.tc.hasTargetPackage("libgtk-3.0", multilib=True)):
22 if not (self.tc.hasHostPackage("nativesdk-gettext-dev")):
27 ….fetch(testdir, self.td["DL_DIR"], "http://galculator.mnim.org/downloads/galculator-2.1.4.tar.bz2")
30 dirs["source"] = os.path.join(testdir, "galculator-2.1.4")
31 dirs["build"] = os.path.join(testdir, "build")
34 subprocess.check_output(["tar", "xf", tarball, "-C", testdir], stderr=subprocess.STDOUT)
36 os.makedirs(dirs["build"])
38 …n("cd {source} && sed -i -e '/s_preferences.*prefs;/d' src/main.c && autoreconf -i -f -I $OECORE_T…
[all …]
/OK3568_Linux_fs/buildroot/package/gutenprint/
H A Dgutenprint.mk9 GUTENPRINT_SITE = http://downloads.sourceforge.net/project/gimp-print/gutenprint-$(GUTENPRINT_VERSI…
10 GUTENPRINT_SOURCE = gutenprint-$(GUTENPRINT_VERSION).tar.bz2
11 GUTENPRINT_LICENSE = GPL-2.0+
20 mkdir -p $(@D)/m4local
26 cups host-pkgconf \
30 # host-gutenprint is needed to generate XML as part of compilation
32 # so we need to build both a host package and a target package
33 GUTENPRINT_DEPENDENCIES += host-gutenprint
36 ac_cv_path_CUPS_CONFIG=$(STAGING_DIR)/usr/bin/cups-config \
40 --disable-libgutenprintui2 \
[all …]
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/pkgconfig/pkgconfig/
H A D0001-autotools-use-C99-printf-format-specifiers-on-Window.patch4 Subject: [PATCH] autotools: use C99 printf format specifiers on Windows. Fixes
7 Since we now require a C99 compatible printf and use gnulib on Windows,
10 autotools build.
17 Signed-off-by: Khem Raj <raj.khem@gmail.com>
18 Upstream-Status: Backport [https://github.com/GNOME/glib/commit/3d7cde654c]
19 ---
20 configure.ac | 18 +++++++++---------
21 1 file changed, 9 insertions(+), 9 deletions(-)
23 --- a/glib/configure.ac
25 @@ -576,7 +576,7 @@ AS_IF([test x$ac_cv_sizeof_long_long = x
[all …]
/OK3568_Linux_fs/yocto/poky/meta/recipes-support/gpgme/
H A Dgpgme_1.17.1.bb1 SUMMARY = "High-level GnuPG encryption/signing API"
2 …for applications. It provides a High-Level Crypto API for encryption, decryption, signing, signatu…
6 LICENSE = "GPL-2.0-or-later & LGPL-2.1-or-later"
14 file://0001-Revert-build-Make-gpgme.m4-use-gpgrt-config-with-.pc.patch \
15 file://0001-pkgconfig.patch \
16 file://0002-gpgme-lang-python-gpg-error-config-should-not-be-use.patch \
17 file://0003-Correctly-install-python-modules.patch \
18 file://0004-python-import.patch \
19 file://0005-gpgme-config-skip-all-lib-or-usr-lib-directories-in-.patch \
20 file://0006-fix-build-path-issue.patch \
[all …]
/OK3568_Linux_fs/yocto/poky/meta/recipes-multimedia/mpeg2dec/
H A Dmpeg2dec_0.5.1.bb1 SUMMARY = "Library and test program for decoding MPEG-2 and MPEG-1 video streams"
2 DESCRIPTION = "mpeg2dec is a test program for libmpeg2. It decodes \
3 mpeg-1 and mpeg-2 video streams, and also includes a demultiplexer \
4 for mpeg-1 and mpeg-2 program streams. The main purpose of mpeg2dec \
5 is to have a simple test bed for libmpeg2."
8 LICENSE = "GPL-2.0-or-later"
13 SRC_URI = "http://libmpeg2.sourceforge.net/files/libmpeg2-${PV}.tar.gz \
15 file://0001-check-for-available-arm-optimizations.patch \
16 file://0002-Set-visibility-of-global-symbols-used-in-ARM-specifi.patch \
17 file://61_global-symbol-test.patch \
[all …]
/OK3568_Linux_fs/buildroot/package/python3/
H A Dpython3.mk9 PYTHON3_SOURCE = Python-$(PYTHON3_VERSION).tar.xz
11 PYTHON3_LICENSE = Python-2.0, others
17 # cross-compiling third-party Python modules.
20 --without-ensurepip \
21 --without-cxx-main \
22 --disable-sqlite3 \
23 --disable-tk \
24 --with-expat=system \
25 --disable-curses \
26 --disable-codecs-cjk \
[all …]
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/strace/
H A Dstrace_5.16.bb3and instructional userspace utility for Linux. It is used to monitor and tamper with interactions …
5 LICENSE = "LGPL-2.1-or-later & GPL-2.0-or-later"
8 SRC_URI = "https://strace.io/files/${PV}/strace-${PV}.tar.xz \
9 file://update-gawk-paths.patch \
10 file://Makefile-ptest.patch \
11 file://run-ptest \
12 file://0001-caps-abbrev.awk-fix-gawk-s-path.patch \
13 file://ptest-spacesave.patch \
14 file://0001-strace-fix-reproducibilty-issues.patch \
15 file://skip-load.patch \
[all …]
/OK3568_Linux_fs/buildroot/package/apr/
H A Dapr.mk8 APR_SOURCE = apr-$(APR_VERSION).tar.bz2
10 APR_LICENSE = Apache-2.0
15 # We have a patch touching configure.in and Makefile.in,
19 # avoid apr_hints.m4 by setting apr_preload_done=yes and set
20 # the needed CFLAGS on our own (avoids '-D_REENTRANT' in case
21 # not supported by toolchain and subsequent configure failure)
22 APR_CFLAGS = $(TARGET_CFLAGS) -DLINUX -D_GNU_SOURCE
24 APR_CFLAGS += -D_REENTRANT
47 APR_CONFIG_SCRIPTS = apr-1-config
51 APR_CONF_ENV += apr_cv_pthreads_lib="-lpthread"
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-extended/libreport/
H A Dlibreport_2.10.0.bb5 LICENSE = "GPL-2.0-or-later"
6 DEPENDS = "xmlrpc-c xmlrpc-c-native intltool-native \
7 json-c libtar libnewt libproxy rpm \
15 SRC_URI += "file://0001-Makefile.am-remove-doc-and-apidoc.patch \
16 file://0002-configure.ac-remove-prog-test-of-xmlto-and-asciidoc.patch \
17 file://0003-without-build-plugins.patch \
18 file://0004-configure.ac-remove-prog-test-of-augparse.patch \
29 inherit gettext autotools python3native pkgconfig
32 PACKAGECONFIG[gtk] = "--with-gtk, --without-gtk, gtk+3,"
34 EXTRA_OECONF += "--without-python2 --with-python3"
[all …]
/OK3568_Linux_fs/buildroot/package/libgpgme/
H A Dlibgpgme.mk9 LIBGPGME_SOURCE = gpgme-$(LIBGPGME_VERSION).tar.bz2
10 LIBGPGME_LICENSE = LGPL-2.1+
15 LIBGPGME_DEPENDENCIES = libassuan libgpg-error
16 LIBGPGME_CONFIG_SCRIPTS = gpgme-config
19 # C++ bindings require a C++11 capable gcc, and -Wsuggest-override support
25 --with-gpg-error-prefix=$(STAGING_DIR)/usr \
26 --with-libassuan-prefix=$(STAGING_DIR)/usr \
27 --disable-gpgsm-test \
28 --disable-gpgconf-test \
29 --disable-g13-test \
[all …]
/OK3568_Linux_fs/yocto/poky/meta/recipes-support/attr/
H A Dacl_2.3.1.bb3 and folders for different users."
10 LICENSE = "LGPL-2.1-or-later & GPL-2.0-or-later"
11 LICENSE:${PN} = "GPL-2.0-or-later"
12 LICENSE:lib${BPN} = "LGPL-2.1-or-later"
19 file://run-ptest \
20 file://0001-tests-do-not-hardcode-the-build-path-into-a-helper-l.patch \
21 file://0001-test-patch-out-failing-bits.patch \
26 inherit autotools gettext ptest
40 cp -rf ${S}/test/ ${D}${PTEST_PATH}
41 cp -rf ${S}/build-aux/ ${D}${PTEST_PATH}
[all …]

1234