summaryrefslogtreecommitdiff
path: root/package/libgtk2
AgeCommit message (Collapse)Author
2008-12-26libgtk: don't list cups/png/jpeg/tiff as hard dependenciesPeter Korsgaard
GTK can be compiled without the above, so don't list them as hard dependencies, and simply adjust the build depending on what the user has enabled.
2008-12-26libgtk2: remove unneeded configure optsPeter Korsgaard
This stuff is all handled by Makefile.autotools.in
2008-11-28Adding Central config.cache optionsDaniel Laird
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>
2008-11-02libpng: fix Makefile.autotools.in falloutPeter Korsgaard
libpng used to have the 'png' Makefile alias, which some packages used in their dependencies list. With the move to Makefile.autotools.in this is now gone, so update the packages to match.
2008-10-27Strip libgtk2 in the targetPeter Korsgaard
Rely on the sane default values of Makefile.autotools.in for the staging and target installs. The immediate benefit is that the target install will use install-strip instead of install, leading to a quite nice size reduction in the libraries. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2008-10-18Bump up libgtk2 versionPeter Korsgaard
Bump up libgtk2 version The version of libgtk2 currently used doesn't build when built against DirectFB. The issue has been fixed in a later version of the 2.12.x series, so let's upgrade to this version. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2008-08-26select CUPS if XORG/XORG7/TINYX.Daniel Laird
This makes the behaviour the same as before for X users. Although is CUPS a necessary dependancy? Daniel Laird
2008-08-26The changes below add better support for DirectFB and libgtk2.Daniel Laird
Should be no different for X builds. Config.in | 3 +-- libgtk2.mk | 7 +++---- 2 files changed, 4 insertions(+), 6 deletions(-) Signed-off-by: daniel.j.laird@nxp.com package/libgtk2/Config.in Allow DirectFB to turn on LIBGTK2 support without X being enabled. Disable autoselection of cups. May not be wanted (Can cause crosscompilation issues). package/libgtk2/libgtk2.mk Remove unnessary redefine of PKG_CONFIG_* Pass $(DISABLE_LARGEFILE) to configure (supports large file or not) Move 'cups' to X extra dependencies instead of general.
2008-08-04buildroot: remove trailing spacesPeter Korsgaard
for i in `find -name 'Config*' -o -name 'Makefile*' -o -name '*.mk'`; do sed -i 's/ \+$//' $i; done
2008-07-17Kconfig: remove 'default n'Peter Korsgaard
'default n' is the default, so there's no need to say it explicitly.
2008-07-08Support ARCH-unknown-linux-gnu, Use target library paths instead of the host ↵Ulf Samuelsson
library paths.
2008-07-07Remove duplicated select LIBPNG and use alphabetical order for selectsUlf Samuelsson
2008-07-06Improve readability of libgtk2 configurationUlf Samuelsson
2008-07-05Use HOST_GLIB for packagesUlf Samuelsson
2008-06-14packages: fix pkgconfig depencies and select pkgconfig where neededPeter Korsgaard
2008-05-01remove unnecessary libdir-la.patch patches and modify Makefile.autotools.in ↵John Voltz
to patch libtool automatically.
2008-03-06updated libgtk2John Voltz
2007-10-01- just use the strip binary to avoid confusing libtool (quotes)Bernhard Reutner-Fischer
- use $(STRIPCMD) in packages to avoid clashes with $(STRIP)
2007-09-12Update various packages to make X runUlf Samuelsson
2007-08-22- global whitespace trimmingBernhard Reutner-Fischer
2007-08-21- sed -i -e "/;$/s/;$//g" $(egrep ";$" package/* package/*/*.mk toolchain/* ↵Bernhard Reutner-Fischer
toolchain/*/*.mk */Makefile.in -l)
2007-08-21Remove switches if sstrip is runUlf Samuelsson
2007-08-11Use STAGING_DIR/usr/lib instead of STAGING_DIR/libUlf Samuelsson
2007-08-11Reintroduce dependencies on tinyx for libgtk[1]2 and cairoUlf Samuelsson
2007-08-10Merge in X11R7 patches from Julien Letessier, posted 04 Jul 2007. Doesn'tEric Andersen
quite work yet for me, but this clearly is a huge project and not having it quite work on the first pass is hardly unexpected. We definately want this stuff in buildroot.
2007-06-27- add endian handling, mmap, memcmp checks to TARGET_CONFIGURE_ARGSBernhard Reutner-Fischer
- use TARGET_CONFIGURE_ARGS where appropriate.
2007-03-13fixup package LDFLAGS handlingEric Andersen
2007-02-04- the $(XSERVER) target can be provided by different X server impls. Adjust ↵Bernhard Reutner-Fischer
users - rdesktop needs an xserver impl
2007-02-01bump versionEric Andersen
2007-01-17PNG package is called BR2_PACKAGE_LIBPNGPeter Korsgaard
2007-01-17select XORG rather than depend on it.Eric Andersen
2007-01-14oops, embed $(STAGING_DIR) rather than hard coding my home dir...Eric Andersen
2007-01-14fix build and ensure we install needed runtime componentsEric Andersen
2007-01-14fixup a whole steaming pile of insanity. When packages are configured,Eric Andersen
they should be configured with --prefix=/usr and we then need to use make DESTDIR=$(STAGING_DIR) install to get things installed into the staging directory. The current situation for many packages, which use --prefix=$(STAGING_DIR) results in the staging_dir paths getting compiled into the binary itself. This also adds in a pile of libtool fixups. Between broken pkgconfig, broken libtool handling, and broken --prefix settings, its a wonder things have worked as well as they have up till now. -Erik
2007-01-11add Gtk+ version 2Eric Andersen