summaryrefslogtreecommitdiffstats
path: root/package/Makefile.autotools.in
Commit message (Collapse)AuthorAgeFilesLines
* Fix autotools configuration cache handlingThomas Petazzoni2010-05-031-1/+1
| | | | | | | | It got broken by the introduction of the new autotools infrastructure based on the generic infrastructure. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* autotools: fix referencing to LIBTOOL_PATCH variableThomas Petazzoni2010-05-021-1/+1
| | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* autotools: inherit LIBTOOL_PATCH for host packagesThomas Petazzoni2010-05-021-1/+8
| | | | | | | | When FOO_LIBTOOL_PATCH is defined, assume that the same value should be used for HOST_FOO_LIBTOOL_PATCH. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* autotools: fix autoreconf checkThomas Petazzoni2010-05-021-1/+1
| | | | | | | | | | | | | | | | | | | | | The autoreconf check was incorrect, missing a $ sign to properly reference a package-specific variable. There was no visible effect until now since : * The existing syntax allowed to access the value defined in the package specific .mk file, so when AUTORECONF was set to YES by a package, it was working. * The default value in Makefile.autotools.in was NO. In fact, when a package .mkf file wasn't defining the AUTORECONF variable, the Makefile.autotools.in test was testing the empty string against 'YES', which was false, leading to the AUTORECONF not being done, which was the desired effect. However, in a later patch, we intend to change this default value. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package: Force copy of .la files at the post install hook (readonly files ↵Lionel Landwerlin2010-05-021-1/+1
| | | | | | | might be problematic) Signed-off-by: Lionel Landwerlin <llandwerlin@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package: add PKG_CONF_ENV variables to host packagesLionel Landwerlin2010-05-021-0/+1
| | | | | | Signed-off-by: Lionel Landwerlin <llandwerlin@gmail.com> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Update config.{guess,sub} unconditionallyThomas Petazzoni2010-04-111-2/+0
| | | | | | | | Remove the BR2_UPDATE_CONFIG option which allowed to globally enable/disable the replacement of config.{guess,sub} for autotools-based packages. Doing it unconditionnally just works. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* Fix autotools instalation with symbolsPaulius Zaleckas2010-03-301-1/+1
| | | | | | | | | | | | | | | Closes #1447 When installing without symbols install-strip is used, with symbols - install-exec. Since install-exec installs only executables, we should use simple install, to install other needed files also (like files in /usr/shared) as install-strip does. Signed-off-by: Paulius Zaleckas <paulius.zaleckas@gmail.com> Acked-by: Lionel Landwerlin <llandwerlin@gmail.com> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Makefile.autotools.in: fixup .la files in all lib dirsPeter Korsgaard2010-01-181-1/+1
| | | | | | | | | Sometimes usr/lib32 or usr/lib64 is used instead of usr/lib, so search those for .la files as well. Fixes .la fixup for beecrypt on x86-64. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Makefile.autotools.in: fix libtool patchingPeter Korsgaard2009-12-301-2/+3
| | | | | | | | | | | | | Fixes two issues with libtool patching: - It seems like the default value for <package>_LIBTOOL_PATCH only gets set AFTER the ifdef check, so the conditional was never taken. Fix it by instead checking that it isn't explicitly set to not do the patching instead. - The $i in the libtool patching for loop needed an extra level of escaping to work. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Rework autotools infrastructure on top of the generic infrastructureThomas Petazzoni2009-12-151-408/+216
| | | | | | | | | | | | Now that the previous commit implemented a generic package infrastructure, we make the autotools infrastructure inherit from the generic one so that the code is not duplicated. The new AUTOTARGETS macro works by defining what should be done at the configure, build and install steps of a package and then calls the GENTARGETS macro of the generic package infrastructure. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* honour DISABLE_IPV6Bernhard Reutner-Fischer2009-10-071-0/+1
| | | | | | | pass --disable-ipv6 to autoconfig packages if IPv6 support is turned off Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Prevent libtool patching before autoreconf when autoreconf is requiredLionel Landwerlin2009-10-051-1/+2
| | | | | | Signed-off-by: Lionel Landwerlin <lionel.landwerlin@openwide.fr> Tested-By: Sven Neumann <s.neumann@raumfeld.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package/Makefile.autotools.in: Add $(PKG)_AUTORECONF_OPT variable.Will Newton2009-09-201-1/+4
| | | | | | Allow options to be passed to the autoreconf script if necessary. Signed-off-by: Will Newton <will.newton@gmail.com>
* Remove the "project" featureThomas Petazzoni2009-09-161-5/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The "project" feature was designed to allow to several projects to be built inside the same Buildroot source tree and allowing the toolchain and non-configurable packages to be shared between the different projects on the same architecture. While being interesting in theory, this feature adds a level of complexity to Buildroot, both from an user perspective and from a developer perspective, while one of the main Buildroot strengh is to be simple. Moreover, this feature is only seldomly used by our users. From a user-level perspective, this for example allows to remove the project_build_ARCH directory, which was very confusing. The autotools-stamps directory is also removed, since these stamps are back at their normal location. Description of the changes involved : * project/, directory removed * Makefile - Don't include project/Makefile.in and project/project.mk anymore - Grab a copy of the contents of project/Makefile.in at the location it was imported, but remove the definition related to PROJECT_BUILD_DIR. The TARGET_DIR is now in $(BUILD_DIR)/target_dir - Remove the creation/removal of the $(PROJECT_BUILD_DIR) and $(PROJECT_BUILD_DIR)/autotools-stamps directories - Don't make world depends on target-host-info. This target was defined by project/project.mk to customize /etc/issue, /etc/hostname and create /etc/br-version depending on the project definitions. We can of course imagine re-adding such a feature later. - Replace PROJECT_BUILD_DIR by BUILD_DIR everywhere - Remove the update, log and lognr.$(PROJECT) target, they were specific to the project feature. * package/Makefile.autotools.in - Replace PROJECT_BUILD_DIR by BUILD_DIR for the location of the configure cache - Move the INSTALL_TARGET and HOOK_POST_INSTALL stamps to the same directory as the other stamps (i.e, in the package directory). * package/Makefile.in - Replace PROJECT_BUILD_DIR by BUILD_DIR for the location of the configure cache * package/at/at.mk, package/busybox/busybox.mk, package/busybox/initramfs.mk, package/customize/customize.mk, package/linux-fusion/linux-fusion.mk, package/ltp-testsuite/ltp-testsuite.mk, package/nfs-utils/nfs-utils.mk, target/cpio/cpioroot.mk, target/cramfs/cramfs.mk, target/device/Atmel/DataFlashBoot/DataflashBoot.mk, target/device/Atmel/Makefile.in, target/device/Atmel/at91bootstrap/at91bootstrap.mk, target/device/KwikByte/Makefile.in, target/ext2/ext2root.mk, target/initramfs/initramfs.mk, target/iso9660/iso9660.mk, target/jffs2/jffs2root.mk, target/linux/Makefile.in, target/romfs/romfs.mk, target/squashfs/squashfsroot.mk, target/tar/tarroot.mk, target/ubifs/ubifsroot.mk - Replace PROJECT_BUILD_DIR by BUILD_DIR * target/device/Config.in - Do not include project/Config.in anymore * target/linux/Makefile.in.advanced - Replace PROJECT_BUILD_DIR by BUILD_DIR - Store the stamps file in $(STAMP_DIR) instead of $(PROJECT_BUILD_DIR)/autotools-stamps * target/u-boot/Makefile.in - Replace PROJECT_BUILD_DIR by BUILD_DIR - Remove $(PROJECT) from the U-Boot target binary name - Remove the insertion in the configuration of the project name as the hostname - The u-boot-autoscript target now generates $(U_BOOT_AUTOSCRIPT).img instead of $(U_BOOT_AUTOSCRIPT).$(PROJECT) * toolchain/gcc/gcc-uclibc-3.x.mk toolchain/gcc/gcc-uclibc-4.x.mk - Move the stamps files to $(STAMP_DIR) Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* packages: use qstripThomas Petazzoni2009-09-051-1/+1
| | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* Makefile.autotools.in: fix minimal foo.mk exampleMarkus Heidelberg2009-05-031-1/+1
| | | | | | | | The directory argument was introduced to support packages in subdirectories of package/ several months ago. Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Makefile.autotools.in: use TARGET_PATH for compile stepPeter Korsgaard2009-03-171-1/+1
| | | | | This ensures that the correct build tools are found rather than the host versions (glib-genmarshal, ..)
* Makefile.autotools.in: add FOO_MAKE for packages needing to use $(MAKE1)Peter Korsgaard2009-01-281-6/+9
| | | | As requested on irc.
* Finish the gtk-doc stuff and start on the smae thing with LARGEFILE and NLS.Thomas Lundquist2009-01-181-0/+2
|
* Easier with one place for configure options for disabling gtk-docThomas Lundquist2009-01-171-0/+1
|
* DOWNLOAD: don't use := assignment for function implementationPeter Korsgaard2009-01-161-1/+1
| | | | | | | := causes the function parameters to get evaluated at definition time instead of implementation time, which is kind of silly for a function. Fixes make source-check / external-deps
* buildroot: add BR2_BACKUP_SITE and DOWNLOAD helperPeter Korsgaard2009-01-161-9/+28
| | | | | | | | This is the long requested backup mirror support. So far only enabled for Makefile.autotools.in, but there's no reason why we cannot use DOWNLOAD everywhere. Notice, I'm still syncing http://buildroot.uclibc.org/downloads/sources/
* buildroot: set SHELL instead of messing around with CONFIG_SHELLPeter Korsgaard2009-01-011-1/+1
| | | | | Simply set SHELL to bash instead of adding CONFIG_SHELL to all shell invocations. CONFIG_SHELL is still set, as it is used by kconfig.
* package/: get rid of unneeded $(strip ..)Peter Korsgaard2008-12-081-1/+1
|
* Adding Central config.cache optionsDaniel Laird2008-11-281-1/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The following changes allow for use of a central configure cache file. This speeds up configuration of packages. Its use is configurable at the top level (BR2_CONFIG_CACHE - default n). Old style makefiles can use it if they use the following MACRO in makefiles: $(AUTO_CONFIGURE_TARGET) see my change to directfb.mk. New style Autotools.in will use it if you set the global option. However you can enable the global option and on a per package overrule it by doing the following: $(PKGNAME)_USE_CONFIG_CACHE = NO see fontconfig.mk for an example of this. Finally I have removed a few config variable settings which indicated no CXX compiler as this is wrong and breaks the build when using this central cache. Config.in | 8 ++++++++ package/Makefile.autotools.in | 5 ++++- package/Makefile.in | 28 +++++++++++++++++++++++++++- package/atk/atk.mk | 2 +- package/directfb/directfb.mk | 7 +------ package/fontconfig/fontconfig.mk | 3 +++ package/libglib2/libglib2.mk | 2 +- package/libgtk2/libgtk2.mk | 1 - 8 files changed, 45 insertions(+), 11 deletions(-) I would appreciate feedback on this change (I have been testing for 2-3 weeks) But I can never test all cases! If you enable the BR2_CONFIG_CACHE option some Makefile.autotools.in based packages may now break - I cannot build them all. In this case you may need to remove config options that are being hardcoded all over the place (like gtk saying we have 2 CXX compiler) or disable the use of CONFIG CACHE file like I have done in fontconfig. I can build all packages required to get WebKit on DirectFB up and running and it runs fine. I will try to resolve any issues this creates as fast as I can. Signed-off-by: Daniel Laird <daniel.j.laird@nxp.com>
* Makefile.autotools.in: make MESSAGE output stand outPeter Korsgaard2008-11-071-2/+2
| | | | | | | | | | | | | The following patch makes the MESSAGE Macro in Makefile.autotools.in work. I think it was originally intended to print the messages in bold type but it doesn't appear to work correctly. This patch should work on all platforms. Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com> (Fixed to not continously call tput)
* Move creation of $(PROJECT_BUILD_DIR)/autotools-stamps into top level MakefileHans-Christian Egtvedt2008-11-051-1/+0
| | | | | | | | | This patch will create the autotools-stamps directory early in the build process, thus making it possible for non Makefile.autotools.in packages to use this directory to hold stamp files. Signed-off-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
* buildroot: add QUIET variable and use it for wget/git/svn/configurePeter Korsgaard2008-10-211-2/+1
| | | | | | A lot of tools take a -q option to be quiet. Set this if make is called with the -s (silent) option and use for wget, git, svn and configure.
* BR2_HAVE_DOCUMENTATION: add option to remove documentation from targetPeter Korsgaard2008-10-201-0/+3
| | | | | Some packages' install-strip target install quite big documentation, so create an option to remove it similar to the existing man/info options.
* Makefile.autotools.in: default to install-strip for non-debug target installPeter Korsgaard2008-10-201-1/+5
|
* Makefile.autotools.in: honor CONFIG_SHELL and TAR.Wade Berrier2008-10-071-1/+1
| | | | | Don't use recursively expanded definition (Use ':=' instead of '=')
* Makefile.autotools.in:Wade Berrier2008-10-061-1/+3
| | | | | | -Make tar switches 1.14 compatible (Not sure of a more elegant way to handle this ... ?)
* Makefile.autotools.in: Get my $(Q)'s in the correct placeDaniel Laird2008-09-191-2/+2
| | | | | | | | Minor fix for Makefile.autotools.in that deals with the packages that use AUTOCONF to regenerate configure etc. (my mistake to start with) Daniel Laird
* Makefile.autotools.in: Extended to cope with more bad packagesDaniel Laird2008-09-191-4/+19
| | | | | | | | | | | | | | | | | | | | | | 1. I added a HOOK_POST_EXTRACT previously so that I could cope with the bad libxml2 package. This required me to remove some dead patches (.rej) files after I extracted the package, the issue is that the EXTRACT target runs patch-kernel.sh to patch the ltmain.sh. It then finds some.rej files and bombs out. I have altered the sequence so that the HOOK_POST_EXTRACT target runs before the make target that patches libtool to deal with this. 2.) I have added a $(PKG)_LIBTOOL_PATCH variable. This is defaulted to YES however if you override it in the package makefile to NO then the ltmain.sh file will not be patched automatically but only if you have added your own patches. This is necessary for freetype 2.3.7 as it cannot use the buildroot-libtool patch. I am using this patch for building a set of packages, however it is not a complete set of packages so await feedback of issues (if any) Daniel Laird
* Makefile.autotools.in: fix DESTDIR= help textPeter Korsgaard2008-09-141-4/+4
| | | | | DESTDIR per default points to TARGET_DIR / STAGING_DIR without /usr appended.
* Makefile.autotools.in: fix FOO_UNINSTALL_TARGET_OPT help textPeter Korsgaard2008-09-141-1/+1
| | | | It defaults to TARGET_DIR, not STAGING_DIR.
* Move project-specific stamp files into a project-specific directoryHamish Moffatt2008-09-111-6/+8
| | | | | $(PROJECT_BUILD_DIR)/autotools-stamps. Without this, autotools-using packages won't be installed into any other projects than the first.
* Make the autotools xyz-clean target call xyz-uninstall first, rather than ↵Hamish Moffatt2008-09-041-5/+2
| | | | duplicating its actions
* Fix duplicate $(AUTORECONF) run in autoreconf and configure targetsHamish Moffatt2008-09-041-6/+4
|
* In the uninstall and clean targets, remove the built/installed stamp filesHamish Moffatt2008-09-041-0/+5
| | | | so that those actions will do something if executed again.
* Makefile.autotools.in: Add extra POST_HOOK targetsDaniel Laird2008-08-291-2/+13
| | | | | | | | | | | | | | | It is not possible currently in Makefile.autotools.in packages to do something extra after an extract or configure. This may be useful for example extract libxml2-2.6.32 POST_EXTRACT = remove some .rej files that are in offical release patch (not fail because of remaining .rej files) configure I think this is useful improvement (necessary for Makefile.autotools.in packages) Daniel Laird
* Makefile.autotools.in: remove unused BR2_HAVE_INCLUDES handlingPeter Korsgaard2008-08-221-3/+0
| | | | Patch by Wade Berrier.
* Makefile.autotools.in: add missing continuation for PKG_CONF_OPTPeter Korsgaard2008-08-161-1/+1
| | | | | The silent support added in r23041 was missing a shell continuation character breaking PKG_CONF_OPT support - Fixed.
* Makefile.autotools.in: remove extra newlines in MESSAGE macroPeter Korsgaard2008-08-041-3/+1
|
* Makefile.autotools.in: quiet configure on silent (-s) buildsPeter Korsgaard2008-08-041-0/+1
| | | | | Use --quiet configure argument when make is invoked with the -s (silent) option.
* Makefile.autotools.in: fix patch dir for version specific subdirPeter Korsgaard2008-08-041-1/+1
|
* buildroot: remove trailing spacesPeter Korsgaard2008-08-041-1/+1
| | | | | | | for i in `find -name 'Config*' -o -name 'Makefile*' -o -name '*.mk'`; do sed -i 's/ \+$//' $i; done
* Makefile.autotools.in: fix make source-check/external-deps differentlyPeter Korsgaard2008-07-241-1/+1
| | | | | | | | The MAKELEVEL test is not that robust; It fails with the recent log support or if buildroot is driven from an external Makefile. Rework it to instead detect source-check/external-deps by the fact that they set SPIDER.
* Makefile.autotools.in: revert broken r22659Peter Korsgaard2008-07-071-3/+1
| | | | Ulfs r22659 commit broke make source-check/external deps, so reverting it.