Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/3] libgtk2: bump to version 2.20.1 and mark Gtk/DirectFB as broken
From: Martin Banky @ 2010-10-05  2:16 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <20101003131301.6a434c30@surf>

Thomas,
     Do you have a config file that I can use to build libgtk2? I have
gtk2-engines converted to autotargets, and I need to test it, but I don't
know how to build an X server.

Thanks,

Martin

On Sun, Oct 3, 2010 at 4:13 AM, Thomas Petazzoni <
thomas.petazzoni@free-electrons.com> wrote:

> On Thu, 30 Sep 2010 14:35:19 +0200
> Peter Korsgaard <jacmet@uclibc.org> wrote:
>
> >  Thomas> Argh, I checked http://www.gtk.org/download-linux.html
> >  Thomas> yesterday, and it still advertise Gtk 2.20 and Glib 2.24.
> >
> >  Thomas> I will bump those versions, yes, and mark the DirectFB
> >  Thomas> support as working again.
> >
> > Ok, I'll put your pull request on hold for now then. Please resend
> > once ready.
>
> Unfortunately, things are not that simple.
>
> In order to reduce the number of dependencies needed to build
> host-libgtk2 (in which a few tools are needed to build the target
> libgtk2), we apply a patch to libgtk2 configure.in file. Applying a
> patch to the configure.in obviously means that host-libgtk2 needs to be
> auto-reconfigured.
>
> However, libgtk2 2.22 now requires libtool 2.2, and we only have
> libtool 1.5. So unless we upgrade libtool to 2.2, it is not possible to
> autoreconfigure libgtk2 and therefore not possible to apply a patch to
> its configure.in file.
>
> We *really* need to take a decision on the libtool stuff. I've sent a
> summary of the two proposals and would like to see some more reactions
> to it in order to move forward on this topic.
>
> Thanks!
>
> Thomas
> --
> Thomas Petazzoni, Free Electrons
> Kernel, drivers, real-time and embedded Linux
> development, consulting, training and support.
> http://free-electrons.com
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20101004/b589699d/attachment.html>

^ permalink raw reply

* [Buildroot] [Bug 2503] Microperl fails build on MIPSel or with Fedora13.x86_64
From: bugzilla at busybox.net @ 2010-10-05  1:30 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <bug-2503-163@https.bugs.busybox.net/>

https://bugs.busybox.net/show_bug.cgi?id=2503

--- Comment #2 from S?rgio <sergio@sergiomb.no-ip.org>  ---
Created attachment 2557
  --> https://bugs.busybox.net/attachment.cgi?id=2557
this little patch fix compile problem

I hope that patch helps find out the real solution

-- 
Configure bugmail: https://bugs.busybox.net/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

^ permalink raw reply

* [Buildroot] [Bug 2503] Microperl fails build on MIPSel or with Fedora13.x86_64
From: bugzilla at busybox.net @ 2010-10-05  1:28 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <bug-2503-163@https.bugs.busybox.net/>

https://bugs.busybox.net/show_bug.cgi?id=2503

S?rgio <sergio@sergiomb.no-ip.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|Microperl fails build on    |Microperl fails build on
                   |MIPSel or on                |MIPSel or with
                   |Fedora13.x86_64             |Fedora13.x86_64

-- 
Configure bugmail: https://bugs.busybox.net/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

^ permalink raw reply

* [Buildroot] [PATCH 2/2] host-libpng: Symbols creation fails with ccache
From: Martin Banky @ 2010-10-05  0:47 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1286239621-31904-1-git-send-email-Martin.Banky@gmail.com>

Makefile assumes the output from $(CPP) will be to stdout, but ccache does not
pass the output of $(CPP) to stdout. The Makefile creates an empty symbols
file, which causes the version file to be incorrect. This causes ld to exit
with the error 'libpng.vers:2: syntax error in VERSION script'.

See:
https://sourceforge.net/tracker/?func=detail&aid=3081199&group_id=5624&atid=105624
Signed-off-by: Martin Banky <Martin.Banky@gmail.com>
---
 package/libpng/libpng-1.4.4-ccache-version.patch |   25 ++++++++++++++++++++++
 1 files changed, 25 insertions(+), 0 deletions(-)
 create mode 100644 package/libpng/libpng-1.4.4-ccache-version.patch

diff --git a/package/libpng/libpng-1.4.4-ccache-version.patch b/package/libpng/libpng-1.4.4-ccache-version.patch
new file mode 100644
index 0000000..e1f61e6
--- /dev/null
+++ b/package/libpng/libpng-1.4.4-ccache-version.patch
@@ -0,0 +1,25 @@
+--- a/Makefile.am	2010-09-23 05:18:36.000000000 -0700
++++ b/Makefile.am	2010-10-04 15:51:29.000000000 -0700
+@@ -88,7 +88,8 @@ $(PNGLIB_BASENAME)-config: libpng-config
+ 
+ libpng.sym: png.h pngconf.h
+ 	rm -f $@ $@.new
+-	$(CPP) @LIBPNG_DEFINES@ $(CPPFLAGS) -DPNG_BUILDSYMS $(srcdir)/png.h | \
++	$(CPP) @LIBPNG_DEFINES@ $(CPPFLAGS) -DPNG_BUILDSYMS $(srcdir)/png.h $(srcdir)/$@
++	cat $(srcdir)/$@ | \
+ 		$(SED) -n -e \
+ 		's|^.*PNG_FUNCTION_EXPORT[ 	]*\([$(AN)]*\).*$$|$(SYMBOL_PREFIX)\1|p' \
+ 		-e 's|^.*PNG_DATA_EXPORT[ 	]*\([$(AN)]*\).*$$|$(SYMBOL_PREFIX)\1|p' \
+
+--- a/Makefile.in	2010-09-23 05:18:43.000000000 -0700
++++ b/Makefile.in	2010-10-04 15:51:29.000000000 -0700
+@@ -1213,7 +1213,8 @@ $(PNGLIB_BASENAME)-config: libpng-config
+ 
+ libpng.sym: png.h pngconf.h
+ 	rm -f $@ $@.new
+-	$(CPP) @LIBPNG_DEFINES@ $(CPPFLAGS) -DPNG_BUILDSYMS $(srcdir)/png.h | \
++	$(CPP) @LIBPNG_DEFINES@ $(CPPFLAGS) -DPNG_BUILDSYMS $(srcdir)/png.h $(srcdir)/$@
++	cat $(srcdir)/$@ | \
+ 		$(SED) -n -e \
+ 		's|^.*PNG_FUNCTION_EXPORT[ 	]*\([$(AN)]*\).*$$|$(SYMBOL_PREFIX)\1|p' \
+ 		-e 's|^.*PNG_DATA_EXPORT[ 	]*\([$(AN)]*\).*$$|$(SYMBOL_PREFIX)\1|p' \
-- 
1.7.3.1

^ permalink raw reply related

* [Buildroot] [PATCH 1/2] libpng: bump to 1.4.4
From: Martin Banky @ 2010-10-05  0:47 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1286239621-31904-1-git-send-email-Martin.Banky@gmail.com>

Signed-off-by: Martin Banky <Martin.Banky@gmail.com>
---
 package/libpng/libpng.mk |   13 ++++++-------
 1 files changed, 6 insertions(+), 7 deletions(-)

diff --git a/package/libpng/libpng.mk b/package/libpng/libpng.mk
index 5608f4f..cbcedf0 100644
--- a/package/libpng/libpng.mk
+++ b/package/libpng/libpng.mk
@@ -3,26 +3,25 @@
 # libpng (Portable Network Graphic library)
 #
 #############################################################
-LIBPNG_VERSION:=1.2.44
+LIBPNG_VERSION = 1.4.4
+LIBPNG_SERIES = 14
 LIBPNG_SITE = http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/libpng
 LIBPNG_SOURCE = libpng-$(LIBPNG_VERSION).tar.bz2
 LIBPNG_LIBTOOL_PATCH = NO
 LIBPNG_INSTALL_STAGING = YES
-LIBPNG_CONF_OPT = --without-libpng-compat
 LIBPNG_DEPENDENCIES = host-pkg-config zlib
 
-HOST_LIBPNG_CONF_OPT = --without-libpng-compat
 HOST_LIBPNG_DEPENDENCIES = host-pkg-config host-zlib
 
-define LIBPNG_STAGING_LIBPNG12_CONFIG_FIXUP
+define LIBPNG_STAGING_LIBPNG_CONFIG_FIXUP
 	$(SED) "s,^prefix=.*,prefix=\'$(STAGING_DIR)/usr\',g" \
 		-e "s,^exec_prefix=.*,exec_prefix=\'$(STAGING_DIR)/usr\',g" \
-		-e "s,^includedir=.*,includedir=\'$(STAGING_DIR)/usr/include/libpng12\',g" \
+		-e "s,^includedir=.*,includedir=\'$(STAGING_DIR)/usr/include/libpng$(LIBPNG_SERIES)\',g" \
 		-e "s,^libdir=.*,libdir=\'$(STAGING_DIR)/usr/lib\',g" \
-		$(STAGING_DIR)/usr/bin/libpng12-config
+		$(STAGING_DIR)/usr/bin/libpng$(LIBPNG_SERIES)-config
 endef
 
-LIBPNG_POST_INSTALL_STAGING_HOOKS += LIBPNG_STAGING_LIBPNG12_CONFIG_FIXUP
+LIBPNG_POST_INSTALL_STAGING_HOOKS += LIBPNG_STAGING_LIBPNG_CONFIG_FIXUP
 
 $(eval $(call AUTOTARGETS,package,libpng))
 $(eval $(call AUTOTARGETS,package,libpng,host))
-- 
1.7.3.1

^ permalink raw reply related

* [Buildroot] [PATCH 0/2] BugFix host-libpng
From: Martin Banky @ 2010-10-05  0:46 UTC (permalink / raw)
  To: buildroot

Also happens with 1.2.44, but I'm not sure if the patch will apply cleanly. I
didn't have enough time to test it.

[PATCH 1/2] libpng: bump to 1.4.4
[PATCH 2/2] host-libpng: Symbols creation fails with ccache

^ permalink raw reply

* [Buildroot] _MIPS_SZPTR issue
From: Sergio Monteiro Basto @ 2010-10-05  0:04 UTC (permalink / raw)
  To: buildroot

I got :

cd buildroot/output/build/xlib_libX11-1.3.2/src/util && /usr/lib64/ccache/gcc  -Ibuildroot/output/staging/usr/include -o makekeys makekeys.c
(...)
buildroot/output/staging/usr/include/bits/types.h:132:3: error: #error
your machine is neither 32 bit or 64 bit ... it must be magical


cat buildroot/output/staging/usr/include/bits/wordsize.h  
I got 
#define __WORDSIZE  _MIPS_SZPTR                                                                                                             

reading http://lists.busybox.net/pipermail/uclibc/2007-February/038127.html 
and reading http://ibot.rikers.org/%23uclibc/20100122.html.gz

./output/staging/usr/bin/mipsel-linux-gcc  -dM -E - </dev/null | grep _MIPS_SZPTR 
#define _MIPS_SZPTR 32

edit output/staging/usr/include/bits/wordsize.h  and put there 32 works , but why "compilers" don't know that __WORDSIZE is 32 ? 


Thanks, .config in attach 
-- 
S?rgio M. B.
-------------- next part --------------
#
# Automatically generated make config: don't edit
# Tue Oct  5 00:00:12 2010
#
BR2_HAVE_DOT_CONFIG=y
BR2_VERSION="2010.11-git"
# BR2_arm is not set
# BR2_armeb is not set
# BR2_avr32 is not set
# BR2_i386 is not set
# BR2_mips is not set
BR2_mipsel=y
# BR2_powerpc is not set
# BR2_sh is not set
# BR2_sh64 is not set
# BR2_sparc is not set
# BR2_x86_64 is not set
# BR2_xtensa is not set
# BR2_mips_1 is not set
# BR2_mips_2 is not set
# BR2_mips_3 is not set
# BR2_mips_4 is not set
# BR2_mips_32 is not set
BR2_mips_32r2=y
# BR2_mips_64 is not set
# BR2_mips_64r2 is not set
# BR2_mips_16 is not set
BR2_MIPS_OABI32=y
BR2_ARCH="mipsel"
BR2_ENDIAN="LITTLE"
BR2_GCC_TARGET_TUNE="mips32r2"
BR2_GCC_TARGET_ABI="32"

#
# Target options
#

#
# Preset Devices
#
BR2_TARGET_GENERIC_HOSTNAME="buildroot"
BR2_TARGET_GENERIC_ISSUE="Welcome to Buildroot"
# BR2_TARGET_GENERIC_GETTY is not set

#
# Build options
#

#
# Commands
#
BR2_WGET="wget --passive-ftp -nd"
BR2_SVN="svn"
BR2_BZR="bzr"
BR2_GIT="git clone"
BR2_ZCAT="gzip -d -c"
BR2_BZCAT="bzcat"
BR2_TAR_OPTIONS=""
BR2_DL_DIR="$(TOPDIR)/dl"
BR2_STAGING_DIR="$(BASE_DIR)/staging"

#
# Mirrors and Download locations
#
BR2_PRIMARY_SITE=""
BR2_BACKUP_SITE="http://buildroot.net/downloads/sources/"
BR2_SOURCEFORGE_MIRROR="easynews"
BR2_KERNEL_MIRROR="http://www.kernel.org/pub/"
BR2_GNU_MIRROR="http://ftp.gnu.org/pub/gnu"
BR2_DEBIAN_MIRROR="http://ftp.debian.org"
BR2_JLEVEL=2
# BR2_DEPRECATED is not set
# BR2_ENABLE_DEBUG is not set
BR2_STRIP_strip=y
# BR2_STRIP_sstrip is not set
# BR2_STRIP_none is not set
# BR2_OPTIMIZE_0 is not set
# BR2_OPTIMIZE_1 is not set
# BR2_OPTIMIZE_2 is not set
# BR2_OPTIMIZE_3 is not set
BR2_OPTIMIZE_S=y
# BR2_PREFER_STATIC_LIB is not set
# BR2_HAVE_DOCUMENTATION is not set
# BR2_HAVE_DEVFILES is not set

#
# Advanced
#
# BR2_CONFIG_CACHE is not set

#
# Toolchain
#
BR2_TOOLCHAIN_BUILDROOT=y
# BR2_TOOLCHAIN_EXTERNAL is not set
# BR2_TOOLCHAIN_CTNG is not set

#
# Kernel Header Options
#
BR2_KERNEL_HEADERS_2_6_33=y
# BR2_KERNEL_HEADERS_2_6_34 is not set
# BR2_KERNEL_HEADERS_2_6_35 is not set
# BR2_KERNEL_HEADERS_VERSION is not set
# BR2_KERNEL_HEADERS_SNAP is not set
BR2_DEFAULT_KERNEL_HEADERS="2.6.33.7"

#
# uClibc Options
#
# BR2_UCLIBC_VERSION_0_9_30 is not set
BR2_UCLIBC_VERSION_0_9_31=y
# BR2_UCLIBC_VERSION_SNAPSHOT is not set
BR2_UCLIBC_VERSION_STRING="0.9.31"
BR2_UCLIBC_CONFIG="toolchain/uClibc/uClibc-0.9.31.config"
# BR2_PTHREAD_DEBUG is not set
# BR2_UCLIBC_INSTALL_TEST_SUITE is not set

#
# Binutils Options
#
# BR2_BINUTILS_VERSION_2_20 is not set
BR2_BINUTILS_VERSION_2_20_1=y
BR2_BINUTILS_VERSION="2.20.1"
BR2_EXTRA_BINUTILS_CONFIG_OPTIONS=""

#
# GCC Options
#
# BR2_GCC_VERSION_4_2_4 is not set
BR2_GCC_VERSION_4_3_X=y
# BR2_GCC_VERSION_4_4_X is not set
# BR2_GCC_VERSION_SNAP is not set
BR2_GCC_SUPPORTS_FINEGRAINEDMTUNE=y
BR2_GCC_VERSION="4.3.5"
BR2_EXTRA_GCC_CONFIG_OPTIONS=""
# BR2_GCC_CROSS_FORTRAN is not set
# BR2_INSTALL_OBJC is not set
# BR2_INSTALL_FORTRAN is not set
BR2_GCC_SHARED_LIBGCC=y

#
# Ccache Options
#
# BR2_CCACHE is not set

#
# Gdb Options
#
# BR2_PACKAGE_GDB is not set
# BR2_PACKAGE_GDB_SERVER is not set
# BR2_PACKAGE_GDB_HOST is not set

#
# Common Toolchain Options
#
BR2_LARGEFILE=y
BR2_INET_IPV6=y
BR2_INET_RPC=y
BR2_ENABLE_LOCALE=y
# BR2_ENABLE_LOCALE_PURGE is not set
BR2_NEEDS_GETTEXT=y
BR2_NEEDS_GETTEXT_IF_LOCALE=y
BR2_USE_WCHAR=y
BR2_PREFER_SOFT_FLOAT=y
BR2_SOFT_FLOAT=y
BR2_USE_SSP=y
# BR2_PTHREADS_NONE is not set
# BR2_PTHREADS is not set
BR2_PTHREADS_OLD=y
BR2_PROGRAM_INVOCATION=y
BR2_GCC_CROSS_CXX=y
BR2_INSTALL_LIBSTDCPP=y
BR2_TARGET_OPTIMIZATION="-Os -pipe"
BR2_MKLIBS=y
# BR2_PACKAGE_SSTRIP_TARGET is not set
# BR2_PACKAGE_SSTRIP_HOST is not set
BR2_CROSS_TOOLCHAIN_TARGET_UTILS=y

#
# Package Selection for the target
#
BR2_PACKAGE_BUSYBOX=y
# BR2_BUSYBOX_VERSION_1_15_X is not set
BR2_BUSYBOX_VERSION_1_16_X=y
# BR2_BUSYBOX_VERSION_1_17_X is not set
# BR2_PACKAGE_BUSYBOX_SNAPSHOT is not set
BR2_BUSYBOX_VERSION="1.16.2"
BR2_PACKAGE_BUSYBOX_FULLINSTALL=y
BR2_PACKAGE_BUSYBOX_CONFIG="package/busybox/busybox-1.16.x.config"
BR2_PACKAGE_BUSYBOX_SHOW_OTHERS=y
BR2_PACKAGE_CUSTOMIZE=y

#
# Audio and video libraries and applications
#
BR2_PACKAGE_ALSA_LIB=y
# BR2_PACKAGE_ALSA_LIB_PYTHON is not set

#
# ALSA lib selection
#
BR2_PACKAGE_ALSA_LIB_DEVDIR="/dev/snd"
BR2_PACKAGE_ALSA_LIB_PCM_PLUGINS="all"
BR2_PACKAGE_ALSA_LIB_CTL_PLUGINS="all"
BR2_PACKAGE_ALSA_LIB_ALOAD=y
BR2_PACKAGE_ALSA_LIB_MIXER=y
BR2_PACKAGE_ALSA_LIB_PCM=y
BR2_PACKAGE_ALSA_LIB_RAWMIDI=y
BR2_PACKAGE_ALSA_LIB_HWDEP=y
BR2_PACKAGE_ALSA_LIB_SEQ=y
BR2_PACKAGE_ALSA_LIB_ALISP=y
BR2_PACKAGE_ALSA_LIB_OLD_SYMBOLS=y
BR2_PACKAGE_ALSA_UTILS=y

#
# ALSA utils selection
#
BR2_PACKAGE_ALSA_UTILS_ALSACONF=y
BR2_PACKAGE_ALSA_UTILS_ALSACTL=y
BR2_PACKAGE_ALSA_UTILS_ALSAMIXER=y
BR2_PACKAGE_ALSA_UTILS_AMIDI=y
BR2_PACKAGE_ALSA_UTILS_AMIXER=y
BR2_PACKAGE_ALSA_UTILS_APLAY=y
BR2_PACKAGE_ALSA_UTILS_ARECORD=y
BR2_PACKAGE_ALSA_UTILS_IECSET=y
BR2_PACKAGE_ALSA_UTILS_ACONNECT=y
BR2_PACKAGE_ALSA_UTILS_APLAYMIDI=y
BR2_PACKAGE_ALSA_UTILS_ARECORDMIDI=y
BR2_PACKAGE_ALSA_UTILS_ASEQDUMP=y
BR2_PACKAGE_ALSA_UTILS_ASEQNET=y
BR2_PACKAGE_ALSA_UTILS_SPEAKER_TEST=y
BR2_PACKAGE_AUMIX=y
BR2_PACKAGE_FLAC=y
BR2_PACKAGE_FFMPEG=y
BR2_PACKAGE_FFMPEG_GPL=y
BR2_PACKAGE_FFMPEG_NONFREE=y
BR2_PACKAGE_FFMPEG_FFMPEG=y
# BR2_PACKAGE_FFMPEG_FFPLAY is not set
# BR2_PACKAGE_FFMPEG_FFSERVER is not set
BR2_PACKAGE_FFMPEG_ENCODERS="all"
BR2_PACKAGE_FFMPEG_DECODERS="all"
BR2_PACKAGE_FFMPEG_MUXERS="all"
BR2_PACKAGE_FFMPEG_DEMUXERS="all"
BR2_PACKAGE_FFMPEG_PARSERS="all"
BR2_PACKAGE_FFMPEG_BSFS="all"
BR2_PACKAGE_FFMPEG_PROTOCOLS="all"
BR2_PACKAGE_FFMPEG_FILTERS="all"
BR2_PACKAGE_FFMPEG_INDEVS=y
BR2_PACKAGE_FFMPEG_OUTDEVS=y
BR2_PACKAGE_FFMPEG_EXTRACONF=""
BR2_PACKAGE_GSTREAMER=y
BR2_PACKAGE_GSTREAMER_LIBXML2=y
BR2_PACKAGE_GST_PLUGINS_BASE=y

#
# dependency-less plugins
#
# BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_ADDER is not set
# BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_APP is not set
BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_AUDIOCONVERT=y
# BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_AUDIORATE is not set
BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_AUDIORESAMPLE=y
# BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_AUDIOTESTSRC is not set
BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_FFMPEGCOLORSPACE=y
# BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_GDP is not set
BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_PLAYBACK=y
# BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_SUBPARSE is not set
BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_TCP=y
BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_TYPEFIND=y
# BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_VIDEOTESTSRC is not set
# BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_VIDEORATE is not set
BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_VIDEOSCALE=y
BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_VOLUME=y

#
# plugins with external dependencies (there may be more available)
#
BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_OGG=y
BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_PANGO=y
BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_THEORA=y
BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_VORBIS=y
BR2_PACKAGE_GST_PLUGINS_GOOD=y
# BR2_PACKAGE_GST_PLUGINS_GOOD_JPEG is not set
# BR2_PACKAGE_GST_PLUGINS_GOOD_PNG is not set

#
# dependency-less plugins
#
# BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_VIDEOFILTER is not set
# BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_ALPHA is not set
# BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_APETAG is not set
# BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_AUDIOFX is not set
# BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_AUPARSE is not set
# BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_AUTODETECT is not set
BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_AVI=y
# BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_CUTTER is not set
# BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_DEBUGUTILS is not set
# BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_DEINTERLACE is not set
# BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_EFFECTV is not set
# BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_EQUALIZER is not set
BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_FLV=y
# BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_ID3DEMUX is not set
# BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_ICYDEMUX is not set
# BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_INTERLEAVE is not set
# BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_FLX is not set
# BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_GOOM is not set
# BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_GOOM2K1 is not set
# BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_LAW is not set
# BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_LEVEL is not set
# BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_MATROSKA is not set
# BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_MONOSCOPE is not set
# BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_MULTIFILE is not set
# BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_MULTIPART is not set
# BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_QTDEMUX is not set
# BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_REPLAYGAIN is not set
BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_RTP=y
BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_RTPMANAGER=y
BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_RTSP=y
# BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_SMPTE is not set
# BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_SPECTRUM is not set
# BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_UDP is not set
# BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_VIDEOBOX is not set
# BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_VIDEOCROP is not set
# BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_VIDEOMIXER is not set
# BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_WAVENC is not set
BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_WAVPARSE=y
# BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_Y4M is not set

#
# plugins with external dependencies
#
# BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_ANNODEX is not set
# BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_FLAC is not set
# BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_OSS is not set
# BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_SOUPHTTPSRC is not set
BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_SPEEX=y
BR2_PACKAGE_GST_PLUGINS_BAD=y

#
# dependency-less plugins
#
# BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_AACPARSE is not set
# BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_AIFFPARSE is not set
# BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_AMRPARSE is not set
# BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_ASFMUX is not set
# BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_APEXSINK is not set
# BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_AUTOCONVERT is not set
# BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_CAMERABIN is not set
# BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LEGACYRESAMPLE is not set
# BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_BAYER is not set
BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_CDAUDIO=y
# BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_CDXAPARSE is not set
# BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DCCP is not set
# BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DEBUGUTILS is not set
# BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DTMF is not set
BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DVDNAV=y
# BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DVDSPU is not set
# BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FESTIVAL is not set
# BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FREEZE is not set
# BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FREI0R is not set
# BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_H264PARSE is not set
# BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_HDVPARSE is not set
# BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LIBRFB is not set
# BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LIVEADDER is not set
# BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_MPEGDEMUX is not set
# BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_MPEGTSMUX is not set
# BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_MPEG4VIDEOPARSE is not set
# BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_MPEGVIDEOPARSE is not set
# BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_MVE is not set
# BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_MXF is not set
# BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_NSF is not set
# BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_NUVDEMUX is not set
# BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_PCAPPARSE is not set
# BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_QTMUX is not set
# BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_RAWPARSE is not set
# BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_REAL is not set
# BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_RTPMANAGER is not set
# BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_RTPMUX is not set
# BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SCALETEMPO is not set
# BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SDP is not set
# BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SELECTOR is not set
# BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SHAPEWIPE is not set
# BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SIREN is not set
# BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SPEED is not set
# BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SUBENC is not set
# BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_STEREO is not set
# BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_TTA is not set
# BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_VALVE is not set
# BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_VIDEOSIGNAL is not set
# BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_VMNC is not set
# BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_XDGMIME is not set

#
# plugins with external dependencies (there may be more available)
#
BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DIRECTFB=y
# BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DVB is not set
BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FBDEV=y
# BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_NEON is not set
# BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_OSS4 is not set
BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SDL=y
# BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_TREMOR is not set
BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_VCD=y
BR2_PACKAGE_GST_PLUGINS_UGLY=y

#
# dependency-less plugins
#
# BR2_PACKAGE_GST_PLUGINS_UGLY_PLUGIN_ASFDEMUX is not set
# BR2_PACKAGE_GST_PLUGINS_UGLY_PLUGIN_DVDLPCMDEC is not set
# BR2_PACKAGE_GST_PLUGINS_UGLY_PLUGIN_DVDSUB is not set
# BR2_PACKAGE_GST_PLUGINS_UGLY_PLUGIN_IEC958 is not set
# BR2_PACKAGE_GST_PLUGINS_UGLY_PLUGIN_MPEGAUDIOPARSE is not set
# BR2_PACKAGE_GST_PLUGINS_UGLY_PLUGIN_MPEGSTREAM is not set
# BR2_PACKAGE_GST_PLUGINS_UGLY_PLUGIN_REALMEDIA is not set
# BR2_PACKAGE_GST_PLUGINS_UGLY_PLUGIN_SYNAESTHESIA is not set

#
# plugins with external dependencies (there may be more available)
#
# BR2_PACKAGE_GST_PLUGINS_UGLY_PLUGIN_ID3TAG is not set
# BR2_PACKAGE_GST_PLUGINS_UGLY_PLUGIN_MAD is not set
BR2_PACKAGE_LIBCDAUDIO=y
BR2_PACKAGE_LIBDVDREAD=y
BR2_PACKAGE_LIBDVDNAV=y
BR2_PACKAGE_LIBID3TAG=y
BR2_PACKAGE_LIBMAD=y
BR2_PACKAGE_LIBMMS=y
# BR2_PACKAGE_LIBMPD is not set
BR2_PACKAGE_LIBOGG=y
BR2_PACKAGE_LIBSNDFILE=y
BR2_PACKAGE_LIBTHEORA=y
BR2_PACKAGE_LIBVORBIS=y
BR2_PACKAGE_MADPLAY=y
BR2_PACKAGE_MADPLAY_ALSA=y
BR2_PACKAGE_MPG123=y
# BR2_PACKAGE_MPLAYER is not set
BR2_PACKAGE_SPEEX=y
# BR2_PACKAGE_SWFDEC is not set
# BR2_PACKAGE_FESTIVAL is not set
# BR2_PACKAGE_TAGLIB is not set
BR2_PACKAGE_TREMOR=y

#
# Compressors and decompressors
#
BR2_PACKAGE_BZIP2=y
BR2_PACKAGE_GZIP=y
# BR2_PACKAGE_LZOP is not set
# BR2_PACKAGE_XZ is not set

#
# Debugging, profiling and benchmark
#
# BR2_PACKAGE_DMALLOC is not set
# BR2_PACKAGE_KEXEC is not set
# BR2_PACKAGE_LMBENCH is not set
BR2_PACKAGE_LSOF=y
BR2_PACKAGE_MEMSTAT=y
# BR2_PACKAGE_NETPERF is not set
# BR2_PACKAGE_OPROFILE is not set
BR2_PACKAGE_STRACE=y

#
# Development tools
#
BR2_PACKAGE_AUTOCONF=y
BR2_PACKAGE_AUTOMAKE=y
BR2_PACKAGE_BISON=y
BR2_PACKAGE_BSDIFF=y
BR2_PACKAGE_COREUTILS=y
# BR2_PACKAGE_CVS is not set
BR2_PACKAGE_DIFFUTILS=y
BR2_PACKAGE_DISTCC=y
BR2_PACKAGE_FAKEROOT=y
BR2_PACKAGE_FINDUTILS=y
BR2_PACKAGE_FLEX=y
BR2_PACKAGE_FLEX_LIBFL=y
BR2_PACKAGE_GAWK=y

#
# native toolchain needs development files in target filesystem
#
BR2_PACKAGE_GETTEXT=y
BR2_PACKAGE_LIBINTL=y
BR2_PACKAGE_LIBGMP=y
BR2_PACKAGE_LIBGMP_HEADERS=y
# BR2_PACKAGE_GPERF is not set
BR2_PACKAGE_GREP=y
BR2_PACKAGE_MAKE=y
BR2_PACKAGE_LIBMPFR=y
BR2_PACKAGE_LIBMPFR_HEADERS=y
BR2_PACKAGE_LIBTOOL=y
BR2_PACKAGE_M4=y
BR2_PACKAGE_PATCH=y
BR2_PACKAGE_PKG_CONFIG=y
BR2_PACKAGE_SED=y
BR2_PACKAGE_TAR=y

#
# Games
#
# BR2_PACKAGE_GNUCHESS is not set
# BR2_PACKAGE_MAGICCUBE4D is not set
# BR2_PACKAGE_PRBOOM is not set
# BR2_PACKAGE_RUBIX is not set

#
# Graphic libraries and applications (graphic/text)
#

#
# graphic libraries
#
BR2_PACKAGE_DIRECTFB=y
# BR2_PACKAGE_DIRECTFB_DEBUG is not set
BR2_PACKAGE_DIRECTFB_TRACE=y
# BR2_PACKAGE_DIRECTFB_XSERVER is not set
BR2_PACKAGE_DIRECTFB_LINUXINPUT=y
BR2_PACKAGE_DIRECTFB_KEYBOARD=y
BR2_PACKAGE_DIRECTFB_PS2MOUSE=y
BR2_PACKAGE_DIRECTFB_SERIALMOUSE=y
BR2_PACKAGE_DIRECTFB_TSLIB=y
BR2_PACKAGE_DIRECTFB_GIF=y
BR2_PACKAGE_DIRECTFB_JPEG=y
BR2_PACKAGE_DIRECTFB_PNG=y
BR2_PACKAGE_DIRECTB_DITHER_RGB16=y
# BR2_PACKAGE_DIRECTB_TESTS is not set
# BR2_PACKAGE_DIRECTFB_EXAMPLES is not set
BR2_PACKAGE_DIVINE=y
BR2_PACKAGE_FBDUMP=y
BR2_PACKAGE_FBSET=y
BR2_PACKAGE_FBV=y
BR2_PACKAGE_IMAGEMAGICK=y
BR2_PACKAGE_LITE=y
BR2_PACKAGE_SAWMAN=y
BR2_PACKAGE_SDL=y
BR2_PACKAGE_SDL_FBCON=y
BR2_PACKAGE_SDL_DIRECTFB=y
# BR2_PACKAGE_SDL_X11 is not set
BR2_PACKAGE_SDL_IMAGE=y

#
# SDL_image file format support
#
BR2_PACKAGE_SDL_IMAGE_BMP=y
BR2_PACKAGE_SDL_IMAGE_GIF=y
BR2_PACKAGE_SDL_IMAGE_JPEG=y
BR2_PACKAGE_SDL_IMAGE_LBM=y
BR2_PACKAGE_SDL_IMAGE_PCX=y
BR2_PACKAGE_SDL_IMAGE_PNG=y
BR2_PACKAGE_SDL_IMAGE_PNM=y
BR2_PACKAGE_SDL_IMAGE_TARGA=y
BR2_PACKAGE_SDL_IMAGE_TIFF=y
BR2_PACKAGE_SDL_IMAGE_XCF=y
BR2_PACKAGE_SDL_IMAGE_XPM=y
BR2_PACKAGE_SDL_IMAGE_XV=y
BR2_PACKAGE_SDL_MIXER=y
BR2_PACKAGE_SDL_SOUND=y
BR2_PACKAGE_SDL_SOUND_PLAYSOUND=y
BR2_PACKAGE_SDL_NET=y
BR2_PACKAGE_SDL_TTF=y
BR2_PACKAGE_SDL_GFX=y

#
# other GUIs
#
# BR2_PACKAGE_QT is not set
BR2_PACKAGE_XORG7=y
# BR2_PACKAGE_XSERVER_xorg is not set
BR2_PACKAGE_XSERVER_tinyx=y

#
# X11R7 Servers
#
BR2_PACKAGE_XSERVER_XORG_SERVER=y
# BR2_PACKAGE_XSERVER_XORG_SERVER_NULL_CURSOR is not set
BR2_PACKAGE_XSERVER_XORG_SERVER_AIGLX=y

#
# X11R7 Libraries
#
BR2_PACKAGE_LIBXCB=y
BR2_PACKAGE_MESA3D=y
BR2_PACKAGE_PTHREAD_STUBS=y
BR2_PACKAGE_XCB_UTIL=y
BR2_PACKAGE_XLIB_LIBFS=y
BR2_PACKAGE_XLIB_LIBICE=y
BR2_PACKAGE_XLIB_LIBSM=y
BR2_PACKAGE_XLIB_LIBX11=y
BR2_PACKAGE_XLIB_LIBXSCRNSAVER=y
BR2_PACKAGE_XLIB_LIBXAU=y
BR2_PACKAGE_XLIB_LIBXAW=y
BR2_PACKAGE_XLIB_LIBXCOMPOSITE=y
BR2_PACKAGE_XLIB_LIBXCURSOR=y
BR2_PACKAGE_XLIB_LIBXDAMAGE=y
BR2_PACKAGE_XLIB_LIBXDMCP=y
BR2_PACKAGE_XLIB_LIBXEXT=y
BR2_PACKAGE_XLIB_LIBXFIXES=y
BR2_PACKAGE_XLIB_LIBXFONT=y
BR2_PACKAGE_XLIB_LIBXFONTCACHE=y
BR2_PACKAGE_XLIB_LIBXFT=y
BR2_PACKAGE_XLIB_LIBXI=y
BR2_PACKAGE_XLIB_LIBXINERAMA=y
BR2_PACKAGE_XLIB_LIBXMU=y
BR2_PACKAGE_XLIB_LIBXP=y
BR2_PACKAGE_XLIB_LIBXPM=y
# BR2_PACKAGE_XLIB_LIBXPRINTAPPUTIL is not set
# BR2_PACKAGE_XLIB_LIBXPRINTUTIL is not set
BR2_PACKAGE_XLIB_LIBXRANDR=y
BR2_PACKAGE_XLIB_LIBXRENDER=y
BR2_PACKAGE_XLIB_LIBXRES=y
BR2_PACKAGE_XLIB_LIBXT=y
BR2_PACKAGE_XLIB_LIBXTST=y
BR2_PACKAGE_XLIB_LIBXV=y
BR2_PACKAGE_XLIB_LIBXVMC=y
BR2_PACKAGE_XLIB_LIBXXF86DGA=y
BR2_PACKAGE_XLIB_LIBXXF86VM=y
BR2_PACKAGE_XLIB_LIBDMX=y
BR2_PACKAGE_XLIB_LIBFONTENC=y
# BR2_PACKAGE_XLIB_LIBOLDX is not set
BR2_PACKAGE_XLIB_LIBXKBFILE=y
BR2_PACKAGE_XLIB_LIBXKBUI=y
BR2_PACKAGE_XLIB_XTRANS=y
BR2_PACKAGE_XLIB_LIBPCIACCESS=y

#
# X11R7 Applications
#
BR2_PACKAGE_XAPP_APPRES=y
BR2_PACKAGE_XAPP_BDFTOPCF=y
BR2_PACKAGE_XAPP_BEFORELIGHT=y
BR2_PACKAGE_XAPP_BITMAP=y
# BR2_PACKAGE_XAPP_EDITRES is not set
BR2_PACKAGE_XAPP_FONTTOSFNT=y
# BR2_PACKAGE_XAPP_FSLSFONTS is not set
# BR2_PACKAGE_XAPP_FSTOBDF is not set
BR2_PACKAGE_XAPP_ICEAUTH=y
# BR2_PACKAGE_XAPP_ICO is not set
# BR2_PACKAGE_XAPP_LISTRES is not set
# BR2_PACKAGE_XAPP_LUIT is not set
BR2_PACKAGE_XAPP_MKFONTDIR=y
BR2_PACKAGE_XAPP_MKFONTSCALE=y
BR2_PACKAGE_XAPP_OCLOCK=y
BR2_PACKAGE_XAPP_RGB=y
# BR2_PACKAGE_XAPP_RSTART is not set
BR2_PACKAGE_XAPP_SCRIPTS=y
# BR2_PACKAGE_XAPP_SESSREG is not set
BR2_PACKAGE_XAPP_SETXKBMAP=y
BR2_PACKAGE_XAPP_SHOWFONT=y
# BR2_PACKAGE_XAPP_SMPROXY is not set
BR2_PACKAGE_XAPP_TWM=y
# BR2_PACKAGE_XAPP_VIEWRES is not set
# BR2_PACKAGE_XAPP_X11PERF is not set
# BR2_PACKAGE_XAPP_XAUTH is not set
BR2_PACKAGE_XAPP_XBACKLIGHT=y
# BR2_PACKAGE_XAPP_XBIFF is not set
BR2_PACKAGE_XAPP_XCALC=y
BR2_PACKAGE_XAPP_XCLIPBOARD=y
BR2_PACKAGE_XAPP_XCLOCK=y
# BR2_PACKAGE_XAPP_XCMSDB is not set
# BR2_PACKAGE_XAPP_XCURSORGEN is not set
# BR2_PACKAGE_XAPP_XDBEDIZZY is not set
# BR2_PACKAGE_XAPP_XDITVIEW is not set
# BR2_PACKAGE_XAPP_XDM is not set
BR2_PACKAGE_XAPP_XDPYINFO=y
BR2_PACKAGE_XAPP_XDRIINFO=y
# BR2_PACKAGE_XAPP_XEDIT is not set
BR2_PACKAGE_XAPP_XEV=y
# BR2_PACKAGE_XAPP_XEYES is not set
# BR2_PACKAGE_XAPP_XF86DGA is not set
# BR2_PACKAGE_XAPP_XFD is not set
# BR2_PACKAGE_XAPP_XFONTSEL is not set
# BR2_PACKAGE_XAPP_XFS is not set
# BR2_PACKAGE_XAPP_XFSINFO is not set
# BR2_PACKAGE_XAPP_XGAMMA is not set
# BR2_PACKAGE_XAPP_XGC is not set
# BR2_PACKAGE_XAPP_XHOST is not set
# BR2_PACKAGE_XAPP_XINIT is not set
# BR2_PACKAGE_XAPP_XINPUT is not set
BR2_PACKAGE_XAPP_XKBCOMP=y
# BR2_PACKAGE_XAPP_XKBEVD is not set
# BR2_PACKAGE_XAPP_XKBPRINT is not set
# BR2_PACKAGE_XAPP_XKBUTILS is not set
# BR2_PACKAGE_XAPP_XKILL is not set
# BR2_PACKAGE_XAPP_XLOAD is not set
# BR2_PACKAGE_XAPP_XLOGO is not set
# BR2_PACKAGE_XAPP_XLSATOMS is not set
# BR2_PACKAGE_XAPP_XLSCLIENTS is not set
# BR2_PACKAGE_XAPP_XLSFONTS is not set
# BR2_PACKAGE_XAPP_XMAG is not set
# BR2_PACKAGE_XAPP_XMAN is not set
# BR2_PACKAGE_XAPP_XMESSAGE is not set
# BR2_PACKAGE_XAPP_XMH is not set
# BR2_PACKAGE_XAPP_XMODMAP is not set
# BR2_PACKAGE_XAPP_XMORE is not set
# BR2_PACKAGE_XAPP_XPLSPRINTERS is not set
# BR2_PACKAGE_XAPP_XPR is not set
# BR2_PACKAGE_XAPP_XPREHASHPRINTERLIST is not set
# BR2_PACKAGE_XAPP_XPROP is not set
# BR2_PACKAGE_XAPP_XRANDR is not set
# BR2_PACKAGE_XAPP_XRDB is not set
# BR2_PACKAGE_XAPP_XREFRESH is not set
# BR2_PACKAGE_XAPP_XSET is not set
# BR2_PACKAGE_XAPP_XSETMODE is not set
# BR2_PACKAGE_XAPP_XSETPOINTER is not set
# BR2_PACKAGE_XAPP_XSETROOT is not set
# BR2_PACKAGE_XAPP_XSM is not set
# BR2_PACKAGE_XAPP_XSTDCMAP is not set
# BR2_PACKAGE_XAPP_XVIDTUNE is not set
# BR2_PACKAGE_XAPP_XVINFO is not set
# BR2_PACKAGE_XAPP_XWD is not set
# BR2_PACKAGE_XAPP_XWININFO is not set
# BR2_PACKAGE_XAPP_XWUD is not set

#
# X11R7 Fonts
#
BR2_PACKAGE_XFONT_FONT_UTIL=y
BR2_PACKAGE_XFONT_ENCODINGS=y
BR2_PACKAGE_XFONT_FONT_ADOBE_100DPI=y
BR2_PACKAGE_XFONT_FONT_ADOBE_75DPI=y
BR2_PACKAGE_XFONT_FONT_ADOBE_UTOPIA_100DPI=y
BR2_PACKAGE_XFONT_FONT_ADOBE_UTOPIA_75DPI=y
BR2_PACKAGE_XFONT_FONT_ADOBE_UTOPIA_TYPE1=y
BR2_PACKAGE_XFONT_FONT_ALIAS=y
# BR2_PACKAGE_XFONT_FONT_ARABIC_MISC is not set
# BR2_PACKAGE_XFONT_FONT_BH_100DPI is not set
# BR2_PACKAGE_XFONT_FONT_BH_75DPI is not set
# BR2_PACKAGE_XFONT_FONT_BH_LUCIDATYPEWRITER_100DPI is not set
# BR2_PACKAGE_XFONT_FONT_BH_LUCIDATYPEWRITER_75DPI is not set
# BR2_PACKAGE_XFONT_FONT_BH_TTF is not set
# BR2_PACKAGE_XFONT_FONT_BH_TYPE1 is not set
BR2_PACKAGE_XFONT_FONT_BITSTREAM_100DPI=y
BR2_PACKAGE_XFONT_FONT_BITSTREAM_75DPI=y
BR2_PACKAGE_XFONT_FONT_BITSTREAM_SPEEDO=y
BR2_PACKAGE_XFONT_FONT_BITSTREAM_TYPE1=y
BR2_PACKAGE_XFONT_FONT_CRONYX_CYRILLIC=y
BR2_PACKAGE_XFONT_FONT_CURSOR_MISC=y
# BR2_PACKAGE_XFONT_FONT_DAEWOO_MISC is not set
# BR2_PACKAGE_XFONT_FONT_DEC_MISC is not set
# BR2_PACKAGE_XFONT_FONT_IBM_TYPE1 is not set
# BR2_PACKAGE_XFONT_FONT_ISAS_MISC is not set
# BR2_PACKAGE_XFONT_FONT_JIS_MISC is not set
# BR2_PACKAGE_XFONT_FONT_MICRO_MISC is not set
# BR2_PACKAGE_XFONT_FONT_MISC_CYRILLIC is not set
# BR2_PACKAGE_XFONT_FONT_MISC_ETHIOPIC is not set
# BR2_PACKAGE_XFONT_FONT_MISC_MELTHO is not set
BR2_PACKAGE_XFONT_FONT_MISC_MISC=y
# BR2_PACKAGE_XFONT_FONT_MUTT_MISC is not set
# BR2_PACKAGE_XFONT_FONT_SCHUMACHER_MISC is not set
# BR2_PACKAGE_XFONT_FONT_SCREEN_CYRILLIC is not set
# BR2_PACKAGE_XFONT_FONT_SONY_MISC is not set
# BR2_PACKAGE_XFONT_FONT_SUN_MISC is not set
# BR2_PACKAGE_XFONT_FONT_WINITZKI_CYRILLIC is not set
# BR2_PACKAGE_XFONT_FONT_XFREE86_TYPE1 is not set

#
# X11R7 X protocols
#
BR2_PACKAGE_XCB_PROTO=y
# BR2_PACKAGE_XPROTO_APPLEWMPROTO is not set
BR2_PACKAGE_XPROTO_BIGREQSPROTO=y
BR2_PACKAGE_XPROTO_COMPOSITEPROTO=y
BR2_PACKAGE_XPROTO_DAMAGEPROTO=y
BR2_PACKAGE_XPROTO_DMXPROTO=y
BR2_PACKAGE_XPROTO_DRI2PROTO=y
BR2_PACKAGE_XPROTO_FIXESPROTO=y
BR2_PACKAGE_XPROTO_FONTCACHEPROTO=y
BR2_PACKAGE_XPROTO_FONTSPROTO=y
BR2_PACKAGE_XPROTO_GLPROTO=y
BR2_PACKAGE_XPROTO_INPUTPROTO=y
BR2_PACKAGE_XPROTO_KBPROTO=y
BR2_PACKAGE_XPROTO_PRINTPROTO=y
BR2_PACKAGE_XPROTO_RANDRPROTO=y
BR2_PACKAGE_XPROTO_RECORDPROTO=y
BR2_PACKAGE_XPROTO_RENDERPROTO=y
BR2_PACKAGE_XPROTO_RESOURCEPROTO=y
BR2_PACKAGE_XPROTO_SCRNSAVERPROTO=y
BR2_PACKAGE_XPROTO_VIDEOPROTO=y
# BR2_PACKAGE_XPROTO_WINDOWSWMPROTO is not set
BR2_PACKAGE_XPROTO_XCMISCPROTO=y
BR2_PACKAGE_XPROTO_XEXTPROTO=y
BR2_PACKAGE_XPROTO_XF86BIGFONTPROTO=y
BR2_PACKAGE_XPROTO_XF86DGAPROTO=y
BR2_PACKAGE_XPROTO_XF86DRIPROTO=y
BR2_PACKAGE_XPROTO_XF86RUSHPROTO=y
BR2_PACKAGE_XPROTO_XF86VIDMODEPROTO=y
BR2_PACKAGE_XPROTO_XINERAMAPROTO=y
BR2_PACKAGE_XPROTO_XPROTO=y

#
# X11R7 Utilities
#
BR2_PACKAGE_XUTIL_MAKEDEPEND=y
BR2_PACKAGE_XUTIL_UTIL_MACROS=y
BR2_PACKAGE_MCOOKIE=y

#
# X11R7 Other data
#
BR2_PACKAGE_XDATA_XBITMAPS=y
# BR2_PACKAGE_XDATA_XCURSOR_THEMES is not set
BR2_PACKAGE_XKEYBOARD_CONFIG=y

#
# X libraries and helper libraries
#
BR2_PACKAGE_LIBERATION=y
# BR2_PACKAGE_LIBSEXY is not set

#
# X Window managers
#
# BR2_PACKAGE_MATCHBOX is not set
# BR2_PACKAGE_METACITY is not set
# BR2_PACKAGE_BLACKBOX is not set

#
# X applications
#
# BR2_PACKAGE_ALSAMIXERGUI is not set
# BR2_PACKAGE_DOCKER is not set
# BR2_PACKAGE_GQVIEW is not set
# BR2_PACKAGE_GMPC is not set
# BR2_PACKAGE_GOB2 is not set
# BR2_PACKAGE_GTKPERF is not set
# BR2_PACKAGE_LEAFPAD is not set
# BR2_PACKAGE_MIDORI is not set
# BR2_PACKAGE_PCMANFM is not set
# BR2_PACKAGE_RDESKTOP is not set
# BR2_PACKAGE_SYLPHEED is not set
# BR2_PACKAGE_SYNERGY is not set
# BR2_PACKAGE_TORSMO is not set
# BR2_PACKAGE_X11VNC is not set
# BR2_PACKAGE_XSTROKE is not set
# BR2_PACKAGE_XTERM is not set
# BR2_PACKAGE_XVKBD is not set

#
# Hardware handling
#
# BR2_PACKAGE_CDRKIT is not set
# BR2_PACKAGE_CRAMFS is not set
BR2_PACKAGE_DBUS=y
BR2_DBUS_EXPAT=y
# BR2_DBUS_LIBXML2 is not set
BR2_PACKAGE_DBUS_GLIB=y
# BR2_PACKAGE_DBUS_PYTHON is not set
# BR2_PACKAGE_DEVMEM2 is not set
# BR2_PACKAGE_DMRAID is not set
BR2_PACKAGE_DOSFSTOOLS=y
BR2_PACKAGE_DOSFSTOOLS_MKDOSFS=y
BR2_PACKAGE_DOSFSTOOLS_DOSFSCK=y
BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL=y
BR2_PACKAGE_E2FSPROGS=y
BR2_PACKAGE_E2FSPROGS_UTILS=y
BR2_PACKAGE_E2FSPROGS_BADBLOCKS=y
BR2_PACKAGE_E2FSPROGS_BLKID=y
BR2_PACKAGE_E2FSPROGS_CHATTR=y
BR2_PACKAGE_E2FSPROGS_DUMPE2FS=y
BR2_PACKAGE_E2FSPROGS_E2FREEFRAG=y
BR2_PACKAGE_E2FSPROGS_E2FSCK=y
BR2_PACKAGE_E2FSPROGS_E2LABEL=y
BR2_PACKAGE_E2FSPROGS_E2UNDO=y
BR2_PACKAGE_E2FSPROGS_FILEFRAG=y
BR2_PACKAGE_E2FSPROGS_FINDFS=y
BR2_PACKAGE_E2FSPROGS_FSCK=y
BR2_PACKAGE_E2FSPROGS_LOGSAVE=y
BR2_PACKAGE_E2FSPROGS_LSATTR=y
BR2_PACKAGE_E2FSPROGS_MKE2FS=y
BR2_PACKAGE_E2FSPROGS_MKLOSTFOUND=y
BR2_PACKAGE_E2FSPROGS_TUNE2FS=y
BR2_PACKAGE_E2FSPROGS_UUIDGEN=y
BR2_PACKAGE_E2FSPROGS_UUIDD=y

#
# e2fsprogs libraries
#
BR2_PACKAGE_E2FSPROGS_LIBUUID=y
BR2_PACKAGE_E2FSPROGS_LIBBLKID=y
# BR2_PACKAGE_EEPROG is not set
# BR2_PACKAGE_FCONFIG is not set
# BR2_PACKAGE_FIS is not set
# BR2_PACKAGE_GADGETFS_TEST is not set
# BR2_PACKAGE_GENEXT2FS is not set
# BR2_PACKAGE_GENROMFS is not set
BR2_PACKAGE_GVFS=y
BR2_PACKAGE_HAL=y
BR2_PACKAGE_HDPARM=y
BR2_PACKAGE_HWDATA=y
BR2_PACKAGE_I2C_TOOLS=y
BR2_PACKAGE_INPUT_TOOLS=y
BR2_PACKAGE_INPUT_TOOLS_EVTEST=y
BR2_PACKAGE_INPUT_TOOLS_INPUTATTACH=y
BR2_PACKAGE_INPUT_TOOLS_JSCAL=y
BR2_PACKAGE_INPUT_TOOLS_JSTEST=y
BR2_PACKAGE_IOSTAT=y
BR2_PACKAGE_LM_SENSORS=y

#
# lm-sensors tools
#
BR2_PACKAGE_LM_SENSORS_SENSORS=y
BR2_PACKAGE_LM_SENSORS_FANCONTROL=y
BR2_PACKAGE_LM_SENSORS_ISADUMP=y
BR2_PACKAGE_LM_SENSORS_ISASET=y
BR2_PACKAGE_LM_SENSORS_PWMCONFIG=y
BR2_PACKAGE_LM_SENSORS_SENSORS_DETECT=y
# BR2_PACKAGE_LVM2 is not set
BR2_PACKAGE_MAKEDEVS=y
# BR2_PACKAGE_MDADM is not set
BR2_PACKAGE_MEMTESTER=y
# BR2_PACKAGE_MTD is not set
BR2_PACKAGE_NTFS_3G=y
BR2_PACKAGE_NTFSPROGS=y
BR2_PACKAGE_PCIUTILS=y
# BR2_PACKAGE_SETSERIAL is not set
BR2_PACKAGE_SFDISK=y
BR2_PACKAGE_SMARTMONTOOLS=y
# BR2_PACKAGE_SQUASHFS is not set
BR2_PACKAGE_SSHFS=y
BR2_PACKAGE_SYSSTAT=y
BR2_PACKAGE_UDEV=y
BR2_PACKAGE_UDEV_UTILS=y

#
# Extra udev tools
#
BR2_PACKAGE_UDEV_VOLUME_ID=y
BR2_PACKAGE_UDEV_SCSI_ID=y
BR2_PACKAGE_UDEV_PATH_ID=y
BR2_PACKAGE_UDEV_FIRMWARE_SH=y
BR2_PACKAGE_USB_MODESWITCH=y
BR2_PACKAGE_USBMOUNT=y
BR2_PACKAGE_USBUTILS=y
BR2_PACKAGE_USBUTILS_ZLIB=y
# BR2_PACKAGE_WIPE is not set
# BR2_PACKAGE_XFSPROGS is not set

#
# Interpreter languages and scripting
#
# BR2_PACKAGE_HASERL is not set
# BR2_PACKAGE_LUA is not set
BR2_PACKAGE_MICROPERL=y
BR2_PACKAGE_MICROPERL_MODULES=""
# BR2_PACKAGE_PHP is not set
BR2_PACKAGE_PYTHON=y
# BR2_PACKAGE_PYTHON_DEV is not set
# BR2_PACKAGE_PYTHON_PY_ONLY is not set
# BR2_PACKAGE_PYTHON_PYC_ONLY is not set
BR2_PACKAGE_PYTHON_PY_PYC=y

#
# The following modules are unusual or require extra libraries
#
# BR2_PACKAGE_PYTHON_BSDDB is not set
BR2_PACKAGE_PYTHON_CODECSCJK=y
BR2_PACKAGE_PYTHON_CURSES=y
# BR2_PACKAGE_PYTHON_PYEXPAT is not set
# BR2_PACKAGE_PYTHON_READLINE is not set
BR2_PACKAGE_PYTHON_SSL=y
BR2_PACKAGE_PYTHON_TKINTER=y
BR2_PACKAGE_PYTHON_UNICODEDATA=y
# BR2_PACKAGE_RUBY is not set
BR2_PACKAGE_TCL=y
BR2_PACKAGE_TCL_DEL_ENCODINGS=y
BR2_PACKAGE_TCL_SHLIB_ONLY=y

#
# Libraries
#

#
# Compression and decompression
#
# BR2_PACKAGE_LIBARCHIVE is not set
BR2_PACKAGE_LZO=y
BR2_PACKAGE_ZLIB=y

#
# Crypto
#
BR2_PACKAGE_BEECRYPT=y
BR2_PACKAGE_LIBGCRYPT=y
BR2_PACKAGE_LIBGPG_ERROR=y
BR2_PACKAGE_OPENSSL=y
BR2_PACKAGE_OPENSSL_BIN=y
BR2_PACKAGE_OPENSSL_ENGINES=y

#
# Database
#
# BR2_PACKAGE_BERKELEYDB is not set
# BR2_PACKAGE_MYSQL_CLIENT is not set
BR2_PACKAGE_SQLITE=y
BR2_PACKAGE_SQLITE_READLINE=y

#
# Filesystem
#
# BR2_PACKAGE_GAMIN is not set
# BR2_PACKAGE_LIBCONFIG is not set
# BR2_PACKAGE_LIBCONFUSE is not set
BR2_PACKAGE_LIBFUSE=y
BR2_PACKAGE_LIBLOCKFILE=y
BR2_PACKAGE_LIBSYSFS=y

#
# Graphics
#
BR2_PACKAGE_ATK=y
BR2_PACKAGE_CAIRO=y
BR2_PACKAGE_CAIRO_PS=y
BR2_PACKAGE_CAIRO_PDF=y
BR2_PACKAGE_CAIRO_PNG=y
BR2_PACKAGE_CAIRO_SVG=y
# BR2_PACKAGE_FLTK is not set
BR2_PACKAGE_FONTCONFIG=y
BR2_PACKAGE_FREETYPE=y
# BR2_PACKAGE_LIBGTK2_ENGINES is not set

#
# GTK Themes
#
BR2_PACKAGE_GTK2_THEME_HICOLOR=y
BR2_PACKAGE_JPEG=y
BR2_PACKAGE_LIBART=y
BR2_PACKAGE_LIBDRM=y
# BR2_PACKAGE_LIBGAIL is not set
# BR2_PACKAGE_LIBGLADE is not set
BR2_PACKAGE_LIBGTK2=y
BR2_PACKAGE_LIBPNG=y
BR2_PACKAGE_LIBSVGTINY=y
BR2_PACKAGE_LIBUNGIF=y
BR2_PACKAGE_PANGO=y
BR2_PACKAGE_PIXMAN=y
BR2_PACKAGE_TIFF=y
# BR2_PACKAGE_WEBKIT is not set

#
# Hardware handling
#
# BR2_PACKAGE_LIBAIO is not set
# BR2_PACKAGE_LIBRAW1394 is not set
BR2_PACKAGE_TSLIB=y
BR2_PACKAGE_LIBUSB=y
BR2_PACKAGE_LIBUSB_COMPAT=y

#
# Networking
#
# BR2_PACKAGE_LIBCGI is not set
# BR2_PACKAGE_LIBCGICC is not set
BR2_PACKAGE_LIBCURL=y
BR2_PACKAGE_CURL=y
# BR2_PACKAGE_LIBDNET is not set
# BR2_PACKAGE_LIBEXOSIP2 is not set
# BR2_PACKAGE_LIBIDN is not set
# BR2_PACKAGE_LIBMICROHTTPD is not set
# BR2_PACKAGE_NEON is not set
BR2_PACKAGE_LIBNL=y
# BR2_PACKAGE_LIBPCAP is not set
# BR2_PACKAGE_LIBOSIP2 is not set
BR2_PACKAGE_LIBRSYNC=y
BR2_PACKAGE_LIBSOUP=y
BR2_PACKAGE_LIBUPNP=y

#
# Other
#
# BR2_PACKAGE_LIBATOMIC_OPS is not set
# BR2_PACKAGE_LIBCAP is not set
BR2_PACKAGE_LIBDAEMON=y
# BR2_PACKAGE_LIBELF is not set
# BR2_PACKAGE_LIBEVENT is not set
BR2_PACKAGE_LIBGLIB2=y
BR2_PACKAGE_LIBOIL=y
BR2_PACKAGE_STARTUP_NOTIFICATION=y

#
# Text and terminal handling
#
BR2_PACKAGE_ENCHANT=y
BR2_PACKAGE_ICU=y
BR2_PACKAGE_NCURSES=y
BR2_PACKAGE_NCURSES_TARGET_PANEL=y
BR2_PACKAGE_NCURSES_TARGET_FORM=y
BR2_PACKAGE_NCURSES_TARGET_MENU=y
BR2_PACKAGE_NEWT=y
BR2_PACKAGE_PCRE=y
BR2_PACKAGE_POPT=y
BR2_PACKAGE_READLINE=y
BR2_PACKAGE_SLANG=y

#
# XML
#
BR2_PACKAGE_EXPAT=y
# BR2_PACKAGE_EZXML is not set
BR2_PACKAGE_LIBXML2=y
BR2_PACKAGE_LIBXSLT=y
# BR2_PACKAGE_XERCES is not set

#
# Miscellaneous
#
# BR2_PACKAGE_NG_SPICE_REWORK is not set
BR2_PACKAGE_SHARED_MIME_INFO=y

#
# Networking applications
#
# BR2_PACKAGE_ARGUS is not set
# BR2_PACKAGE_AVAHI is not set
# BR2_PACKAGE_AXEL is not set
# BR2_PACKAGE_BOA is not set
# BR2_PACKAGE_BIND is not set
# BR2_PACKAGE_BMON is not set
# BR2_PACKAGE_BRIDGE is not set
# BR2_PACKAGE_CTORRENT is not set
BR2_PACKAGE_CUPS=y
# BR2_PACKAGE_CUPS_PDFTOPS is not set
BR2_PACKAGE_DHCP=y
BR2_PACKAGE_DHCP_SERVER=y
BR2_PACKAGE_DHCP_RELAY=y
BR2_PACKAGE_DHCP_CLIENT=y
BR2_PACKAGE_DNSMASQ=y
BR2_PACKAGE_DNSMASQ_TFTP=y
BR2_PACKAGE_DNSMASQ_DHCP=y
# BR2_PACKAGE_DNSMASQ_IDN is not set
BR2_PACKAGE_DROPBEAR=y
# BR2_PACKAGE_DROPBEAR_DISABLE_REVERSEDNS is not set
BR2_PACKAGE_ETHTOOL=y
# BR2_PACKAGE_HOSTAPD is not set
BR2_PACKAGE_IFPLUGD=y
# BR2_PACKAGE_IPERF is not set
# BR2_PACKAGE_IPROUTE2 is not set
# BR2_PACKAGE_IPSEC_TOOLS is not set
# BR2_PACKAGE_IPTABLES is not set
BR2_PACKAGE_IW=y
# BR2_PACKAGE_KISMET is not set
# BR2_PACKAGE_L2TP is not set
# BR2_PACKAGE_LIGHTTPD is not set
BR2_PACKAGE_LINKS=y
# BR2_PACKAGE_LRZSZ is not set
# BR2_PACKAGE_MIIDIAG is not set
# BR2_PACKAGE_MROUTED is not set
BR2_PACKAGE_MUTT=y
# BR2_PACKAGE_NBD is not set
BR2_PACKAGE_NCFTP=y

#
# ncFTP tools selection
#
BR2_PACKAGE_NCFTP_GET=y
BR2_PACKAGE_NCFTP_PUT=y
BR2_PACKAGE_NCFTP_LS=y
BR2_PACKAGE_NCFTP_BATCH=y
# BR2_PACKAGE_NCFTP_BOOKMARKS is not set
# BR2_PACKAGE_NETCAT is not set
# BR2_PACKAGE_NETKITBASE is not set
# BR2_PACKAGE_NETKITTELNET is not set
BR2_PACKAGE_NETPLUG=y
BR2_PACKAGE_NETSNMP=y
# BR2_PACKAGE_NETSTAT_NAT is not set
BR2_PACKAGE_NFS_UTILS=y

#
# NFS utilities selection
#
# BR2_PACKAGE_NFS_UTILS_RPCDEBUG is not set
BR2_PACKAGE_NFS_UTILS_RPC_LOCKD=y
BR2_PACKAGE_NFS_UTILS_RPC_RQUOTAD=y
BR2_PACKAGE_NTP=y
BR2_PACKAGE_NTP_SNTP=y
# BR2_PACKAGE_NTP_NTP_KEYGEN is not set
# BR2_PACKAGE_NTP_NTP_WAIT is not set
# BR2_PACKAGE_NTP_NTPDC is not set
# BR2_PACKAGE_NTP_NTPQ is not set
# BR2_PACKAGE_NTP_NTPTRACE is not set
# BR2_PACKAGE_NTP_TICKADJ is not set
# BR2_PACKAGE_OLSR is not set
# BR2_PACKAGE_OPENNTPD is not set
BR2_PACKAGE_OPENSSH=y
# BR2_PACKAGE_OPENVPN is not set
BR2_PACKAGE_PORTMAP=y
# BR2_PACKAGE_PPPD is not set
# BR2_PACKAGE_RADVD is not set
# BR2_PACKAGE_PPTP_LINUX is not set
# BR2_PACKAGE_PROFTPD is not set
# BR2_PACKAGE_QUAGGA is not set
BR2_PACKAGE_RSYNC=y
BR2_PACKAGE_SAMBA=y

#
# Samba tools selection
#
BR2_PACKAGE_SAMBA_CIFS=y
BR2_PACKAGE_SAMBA_EVENTLOGADM=y
BR2_PACKAGE_SAMBA_FINDSMB=y
BR2_PACKAGE_SAMBA_NET=y
BR2_PACKAGE_SAMBA_NMBD=y
BR2_PACKAGE_SAMBA_NMBLOOKUP=y
BR2_PACKAGE_SAMBA_NTLM_AUTH=y
BR2_PACKAGE_SAMBA_PDBEDIT=y
BR2_PACKAGE_SAMBA_PROFILES=y
BR2_PACKAGE_SAMBA_RPCCLIENT=y
BR2_PACKAGE_SAMBA_SMBCACLS=y
BR2_PACKAGE_SAMBA_SMBCLIENT=y
BR2_PACKAGE_SAMBA_SMBCONTROL=y
BR2_PACKAGE_SAMBA_SMBCQUOTAS=y
BR2_PACKAGE_SAMBA_SMBGET=y
BR2_PACKAGE_SAMBA_SMBLDBTOOLS=y
BR2_PACKAGE_SAMBA_SMBPASSWD=y
BR2_PACKAGE_SAMBA_SMBSHARESEC=y
BR2_PACKAGE_SAMBA_SMBSPOOL=y
BR2_PACKAGE_SAMBA_SMBSTATUS=y
BR2_PACKAGE_SAMBA_SMBTREE=y
BR2_PACKAGE_SAMBA_SWAT=y
BR2_PACKAGE_SAMBA_SMBTAR=y
BR2_PACKAGE_SAMBA_TDB=y
BR2_PACKAGE_SAMBA_TESTPARM=y
BR2_PACKAGE_SAMBA_WINBINDD=y
BR2_PACKAGE_SAMBA_WBINFO=y

#
# Samba libraries selection
#
BR2_PACKAGE_SAMBA_LIBSMBCLIENT=y

#
# Samba support selection
#

#
# support avahi - disabled (requires avahi-daemon/dbus)
#

#
# support gamin - disabled (requires gamin)
#
# BR2_PACKAGE_SER2NET is not set
# BR2_PACKAGE_SOCAT is not set
# BR2_PACKAGE_SPAWN_FCGI is not set
# BR2_PACKAGE_SQUID is not set
# BR2_PACKAGE_TCPDUMP is not set
# BR2_PACKAGE_DHCPDUMP is not set
# BR2_PACKAGE_TCPREPLAY is not set
# BR2_PACKAGE_TFTPD is not set
# BR2_PACKAGE_THTTPD is not set
# BR2_PACKAGE_TINYHTTPD is not set
# BR2_PACKAGE_TN5250 is not set
# BR2_PACKAGE_TTCP is not set
# BR2_PACKAGE_UDPCAST is not set
# BR2_PACKAGE_VPNC is not set
BR2_PACKAGE_VSFTPD=y
# BR2_PACKAGE_VTUN is not set
# BR2_PACKAGE_WEBIF is not set
BR2_PACKAGE_WGET=y
BR2_PACKAGE_WIRELESS_TOOLS=y
BR2_PACKAGE_WPA_SUPPLICANT=y
BR2_PACKAGE_WPA_SUPPLICANT_EAP=y
BR2_PACKAGE_WPA_SUPPLICANT_OPENSSL=y
BR2_PACKAGE_WPA_SUPPLICANT_CLI=y
BR2_PACKAGE_WPA_SUPPLICANT_PASSPHRASE=y

#
# Package managers
#
# BR2_PACKAGE_IPKG is not set

#
# rpm requires libneon with SSL, XML and ZLIB support
#

#
# Shell and utilities
#
BR2_PACKAGE_AT=y
BR2_PACKAGE_BASH=y
# BR2_PACKAGE_DASH is not set
# BR2_PACKAGE_DIALOG is not set
BR2_PACKAGE_FILE=y
BR2_PACKAGE_LOCKFILE_PROGS=y
BR2_PACKAGE_LOGROTATE=y
BR2_PACKAGE_SCREEN=y
BR2_PACKAGE_SUDO=y
BR2_PACKAGE_WHICH=y

#
# System tools
#
BR2_PACKAGE_BOOTUTILS=y
BR2_PACKAGE_MODULE_INIT_TOOLS=y
BR2_PACKAGE_PROCPS=y
BR2_PACKAGE_PSMISC=y
BR2_PACKAGE_SYSKLOGD=y
BR2_PACKAGE_SYSVINIT=y
BR2_PACKAGE_UTIL-LINUX=y

#
# Text editors and viewers
#
BR2_PACKAGE_ED=y
BR2_PACKAGE_LESS=y
BR2_PACKAGE_NANO=y
# BR2_PACKAGE_UEMACS is not set
BR2_PACKAGE_VIM=y
BR2_PACKAGE_VIM_RUNTIME=y

#
# Target filesystem options
#
BR2_ROOTFS_POST_BUILD_SCRIPT=""
BR2_ROOTFS_DEVICE_TABLE="target/generic/device_table.txt"
BR2_ROOTFS_SKELETON_DEFAULT=y
# BR2_ROOTFS_SKELETON_CUSTOM is not set
# BR2_TARGET_ROOTFS_CRAMFS is not set
# BR2_TARGET_ROOTFS_CLOOP is not set
BR2_TARGET_ROOTFS_EXT2=y
BR2_TARGET_ROOTFS_EXT2_BLOCKS=0
BR2_TARGET_ROOTFS_EXT2_INODES=0
BR2_TARGET_ROOTFS_EXT2_RESBLKS=0
BR2_TARGET_ROOTFS_EXT2_SQUASH=y
# BR2_TARGET_ROOTFS_EXT2_NONE is not set
# BR2_TARGET_ROOTFS_EXT2_GZIP is not set
# BR2_TARGET_ROOTFS_EXT2_BZIP2 is not set
BR2_TARGET_ROOTFS_EXT2_LZMA=y
# BR2_TARGET_ROOTFS_JFFS2 is not set
# BR2_TARGET_ROOTFS_UBIFS is not set
# BR2_TARGET_ROOTFS_SQUASHFS is not set
BR2_TARGET_ROOTFS_TAR=y
BR2_TARGET_ROOTFS_TAR_NONE=y
# BR2_TARGET_ROOTFS_TAR_GZIP is not set
# BR2_TARGET_ROOTFS_TAR_BZIP2 is not set
# BR2_TARGET_ROOTFS_TAR_LZMA is not set
BR2_TARGET_ROOTFS_TAR_OPTIONS=""
# BR2_TARGET_ROOTFS_CPIO is not set

#
# initramfs requires a Linux kernel to be built
#
# BR2_TARGET_ROOTFS_ROMFS is not set

#
# Bootloaders
#
# BR2_TARGET_BAREBOX is not set
# BR2_TARGET_UBOOT is not set

#
# Kernel
#
# BR2_LINUX_KERNEL is not set
-------------- next part --------------
A non-text attachment was scrubbed...
Name: smime.p7s
Type: application/x-pkcs7-signature
Size: 3293 bytes
Desc: not available
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20101005/3bd4fba4/attachment-0001.bin>

^ permalink raw reply

* [Buildroot] Libtool work: a tentative summary
From: Lionel Landwerlin @ 2010-10-05  0:04 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <AANLkTikJojJrmXr-vY-U1RY--SCaxMAxaabQ9X7=Ko5H@mail.gmail.com>

Ok, it didn't work.

As it's probably going to work just as well as what we have now, we
could integrate Martin's patches, thus avoiding to block others bumps.

Regards,

--
Lionel Landwerlin

Le lundi 04 octobre 2010 ? 10:09 +0200, Lionel Landwerlin a ?crit :
> The libtool script patch prevents libtool to give a direct path an
> host system shared lib path.
> The -L$(STAGING_DIR)... is added to the top of link arguments to
> prevent the linker to use the -L/usr/lib outputted by libtool.
> Finally the sed pass avoids libtool to open the .la files from host system.
> 
> So I'm afraid all those items are required even with libtool 2.4
> (without sysroot support).
> 
> From what I remember, we added the -L$(STAGING_DIR)/lib
> -L$(STAGING_DIR)/usr/lib for a libtool problem (commit
> efb1d8d3f40281645c178c150d992601c8042c1a).
> 
> I'm going to check with your libtool 2.4 sysroot setup.
> 
> Regards,
> 
> --
> Lionel Landwerlin
> 
> 
> On Mon, Oct 4, 2010 at 3:19 AM, Martin Banky <Martin.Banky@gmail.com> wrote:
> > Lionel,
> >      On the first three items, won't we always have to keep these until all
> > of the packages either support autoreconfiguring or start using libtool 2.4?
> > Like I said before, I ran into three packages that wouldn't autoreconfigure,
> > so they would still need the traditional approach. Also, I haven't had a
> > chance to really investigate this, but isn't
> > TARGET_LDFLAGS+=-L$(STAGING_DIR)/lib -L$(STAGING_DIR)/usr/lib also needed by
> > gentargets to link to the correct libraries?
> >      As for my setup, the only difference is, I compiled libtool with
> > --with-sysroot (no directory given), and I don't configure the package with
> > it. libtool gets the sysroot directory from gcc's sysroot, if none is
> > specified. Everything else is the same. What kind of problems did you
> > encounter? Was it just the problem with autoreconfiguring packages?
> >
> > Martin
> >
> > On Sun, Oct 3, 2010 at 4:47 PM, Lionel Landwerlin <llandwerlin@gmail.com>
> > wrote:
> >>
> >> As long as we keep the following things, we can bump to 2.2 or 2.4 :
> >>        * sed pass on .la files
> >>        * Add -L$(STAGING_DIR)/lib -L$(STAGING_DIR)/usr/lib to LDFLAGS
> >>        * patches for encountered libtool versions
> >>
> >> I always took the hypothesis that we wanted to get rid of the first 2,
> >> and wanted to keep the third only for special cases.
> >>
> >> I encountered problem with libtool 2.4 for several packages under the
> >> following conditions :
> >>        * run autoreconf on the package
> >>        * do not apply the libtool patch
> >>        * configure the package with --with-sysroot=$(STAGING_DIR) option
> >>
> >> Martin, did you have the same setup ?
> >>
> >> I guess we're back to the current situation if we don't pass the
> >> --with-sysroot option and we apply a libtool patch for the correct
> >> libtool version.
> >>
> >> Regards,
> >>
> >> --
> >> Lionel Landwerlin
> >>
> >> Le dimanche 03 octobre 2010 ? 15:36 -0700, Martin Banky a ?crit :
> >> > If you want to integrate my patches, I would like to submit a new set
> >> > of patches with some changes in preparation for libtool 2.4, mainly
> >> > with Makefile.autotools.in. I have it setup now to distinguish between
> >> > 1.5.x, 2.2.x, and 2.4. Also, in working on converting the packages to
> >> > either gentargets or autotargets, I've been noticing a lot of packages
> >> > have their own libtool patch. I would like to go through, and clean
> >> > them up. I have a question, why can't we upgrade to libtool 2.4? I've
> >> > been running it now since I first posted the heads up patch, and have
> >> > used it with the sysroot option turned on without any obvious issues.
> >> > If the sysroot option is an issue, we could turn it off for now and
> >> > use the libtool patches until we integrate the sysroot option
> >> > properly, right? The imagemagick patch set that I posted, was first
> >> > done with libtool 2.4 and autoreconfigure turned on. I wanted to make
> >> > sure that it would work properly in this configuration, in preparation
> >> > of the coming changes. It was then actually posted with
> >> > autoreconfigure turned off and using the libtool patch. As a side
> >> > note, I just realized that imagemagick is using libtool 2.2.x, which
> >> > means that it's incorporation is blocked until either I add it's own
> >> > libtool patch or we commit my libtool patch set. Sorry about that. If
> >> > anyone would like me to add the libtool patch to imagemagick, and
> >> > repost, let me know.
> >> >
> >> > Martin
> >> >
> >> > On Sun, Oct 3, 2010 at 7:22 AM, Thomas Petazzoni
> >> > <thomas.petazzoni@free-electrons.com> wrote:
> >> >         Hello,
> >> >
> >> >         On Sun, 03 Oct 2010 15:22:26 +0200
> >> >         Lionel Landwerlin <llandwerlin@gmail.com> wrote:
> >> >
> >> >         > Here is what I would like to us to do for the next
> >> >         releases :
> >> >         >
> >> >         > 1) Bump libtool package to 2.2, more and more packages
> >> >         require libtool
> >> >         > 2.2, and we're stuck to not autoreconfigure them without
> >> >         2.2. This is
> >> >         > already creating problems to Thomas when trying to bump host
> >> >         > libglib/libgtk packages.
> >> >
> >> >
> >> >          1a) Integrate Martin Banky's proposal so that packages using
> >> >         libtool
> >> >              2.2 can work without the need to autoreconfigure them.
> >> >
> >> >         > 2) Eventually integrate some patches to libtool 2.2 to be
> >> >         able to
> >> >         > cross compile autoreconfigured packages.
> >> >         >
> >> >         > 3) When the libtool 2.4 sysroot issue is sorted out, bump to
> >> >         libtool
> >> >         > 2.4 and get rid of the patches integrated in 2).
> >> >         >
> >> >         > I think 1) is mandatory for 2010.11.
> >> >
> >> >
> >> >         And 1a).
> >> >
> >> >         So, I would suggest :
> >> >
> >> >          *) Peter merges Martin Banky's set of patches on libtool
> >> >
> >> >
> >> >  http://lists.busybox.net/pipermail/buildroot/2010-September/037505.html
> >> >
> >> >
> >> >          *) Lionel, could you propose a patch that just bumps libtool
> >> >         to 2.2 ?
> >> >
> >> >         Lionel, Martin, Peter, what do you think ?
> >> >
> >> >         Thanks,
> >> >
> >> >         Thomas
> >> >         --
> >> >         Thomas Petazzoni, Free Electrons
> >> >         Kernel, drivers, real-time and embedded Linux
> >> >         development, consulting, training and support.
> >> >         http://free-electrons.com
> >> >         _______________________________________________
> >> >
> >> >
> >> >         buildroot mailing list
> >> >         buildroot at busybox.net
> >> >         http://lists.busybox.net/mailman/listinfo/buildroot
> >> >
> >> >
> >> > _______________________________________________
> >> > buildroot mailing list
> >> > buildroot at busybox.net
> >> > http://lists.busybox.net/mailman/listinfo/buildroot
> >>
> >>
> >
> >
> > _______________________________________________
> > buildroot mailing list
> > buildroot at busybox.net
> > http://lists.busybox.net/mailman/listinfo/buildroot
> >

^ permalink raw reply

* [Buildroot] can't resolve symbol 'atexit'
From: anthony henderson @ 2010-10-04 20:51 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <20101004190204.0405bdc3@surf>

Thanks,
I thought that might be the case, now to try to get them to give the
source...

On 4 October 2010 18:02, Thomas Petazzoni <
thomas.petazzoni@free-electrons.com> wrote:

> Hello Anthony,
>
> On Mon, 4 Oct 2010 14:26:53 +0100
> anthony henderson <development@fair-games.com> wrote:
>
> > I've got busy box working well with my software, however I've tried
> > to run an exe provided by the board vendor and get the following
> > error "can't resolve symbol 'atexit'" is there a way to fix this?
> > It's a bit hard to find details on google, I think it's to do with
> > different versions of uClibc?  However when I've opened buildroot and
> > looked in toolchain -> uClibc I can't see any options to do with
> > atexit.  Can anyone point me in the right direction, thanks.
>
> You cannot expect a random binary taken from your vendor to work with a
> random version/configuration of uClibc. Basically, you need to get the
> source code for this application and recompile it with the toolchain
> used to build your embedded system.
>
> The uClibc library does not provide a stable ABI, both accross versions
> and configurations.
>
> Regards,
>
> Thomas
> --
> Thomas Petazzoni, Free Electrons
> Kernel, drivers, real-time and embedded Linux
> development, consulting, training and support.
> http://free-electrons.com
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
>



-- 
Regards Tony


NOTE: This message is intended solely for the use of the individual or
organization to whom it is addressed. It may contain privileged or
confidential information. If you have received this message in error, please
notify the originator immediately. If you are not the intended recipient,
you should not use, copy, alter, or disclose the contents of this message.
All information or opinions expressed in this message and/or any attachments
are those of the author and are not necessarily those of Fair Games UK LTD
or its affiliates. Fair Games UK LTD accepts no responsibility for loss or
damage arising from its use, including damage from virus.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20101004/800c95cd/attachment-0001.html>

^ permalink raw reply

* [Buildroot] Problems building toolchain for Cyrix III
From: Mike Davies @ 2010-10-04 18:41 UTC (permalink / raw)
  To: buildroot

I'm having problems building the toolchain for the Cyrix III processor.
i.e.

Target Architecture (i386) --->
Target Architecture Variant (cyrix 3 (MMX + 3dNOW!))  --->         

What is happening is the following...

/home/mike/buildroot-2010.08/output/toolchain/gcc-4.3.5/configure  \
--prefix=/home/mike/buildroot-2010.08/output/staging/usr \
--build=x86_64-unknown-linux-gnu \
--host=x86_64-unknown-linux-gnu \
--target=-unknown-linux-uclibc \
--enable-languages=c \
--with-sysroot=/home/mike/buildroot-2010.08/output/toolchain/uClibc_dev/
\
--disable-__cxa_atexit \
--enable-target-optspace \
--with-gnu-ld \
--disable-shared \
--disable-libssp \
--without-headers \
--with-newlib \
--disable-multilib \
--disable-tls \
--with-gmp=/home/mike/buildroot-2010.08/output/toolchain/gmp \
--with-mpfr=/home/mike/buildroot-2010.08/output/toolchain/mpfr \
--disable-nls \
--enable-threads \
--disable-decimal-float \
\
--with-arch="c3" --with-tune="c3" \
--with-pkgversion="Buildroot 2010.08"
--with-bugurl="http://bugs.buildroot.net/" \
\
\
)
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking target system type... configure:
error: /bin/sh /home/mike/buildroot-2010.08/output/toolchain/gcc-4.3.5/config.sub -unknown-linux-uclibc failed
make: ***
[/home/mike/buildroot-2010.08/output/toolchain/gcc-4.3.5-initial/.configured] Error 1
[mike at ceri buildroot-2010.08]$ 

I think what should be happening is the script should have the parameter

--target=viac3-unknown-linux-uclibc \

instead of

--target=-unknown-linux-uclibc \

I can't work out which script needs to be changed or where. Is this a
buildroot problem or something else ?

^ permalink raw reply

* [Buildroot] can't resolve symbol 'atexit'
From: Thomas Petazzoni @ 2010-10-04 17:02 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <AANLkTinDdVF2W2sgU24qBHfDVztgJ-kEy=FQyeuE7fyH@mail.gmail.com>

Hello Anthony,

On Mon, 4 Oct 2010 14:26:53 +0100
anthony henderson <development@fair-games.com> wrote:

> I've got busy box working well with my software, however I've tried
> to run an exe provided by the board vendor and get the following
> error "can't resolve symbol 'atexit'" is there a way to fix this?
> It's a bit hard to find details on google, I think it's to do with
> different versions of uClibc?  However when I've opened buildroot and
> looked in toolchain -> uClibc I can't see any options to do with
> atexit.  Can anyone point me in the right direction, thanks.

You cannot expect a random binary taken from your vendor to work with a
random version/configuration of uClibc. Basically, you need to get the
source code for this application and recompile it with the toolchain
used to build your embedded system.

The uClibc library does not provide a stable ABI, both accross versions
and configurations.

Regards,

Thomas
-- 
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

^ permalink raw reply

* [Buildroot] getkversion.c:17: error: ‘UTS_RELEASE’ undeclared (first use in this function)
From: Sergio Monteiro Basto @ 2010-10-04 16:11 UTC (permalink / raw)
  To: buildroot

Hi, 
After read this:
http://www.mail-archive.com/blfs-support at linuxfromscratch.org/msg06766.html
found this patch solve the problem : 

--- nfs-utils-1.0.9/tools/Makefile.am.orig  2006-07-07 20:04:32.000000000 -0400
+++ nfs-utils-1.0.9/tools/Makefile.am   2006-09-11 14:39:11.000000000 -0400
@@ -1,5 +1,5 @@
 ## Process this file with automake to produce Makefile.in
 
-SUBDIRS = getiversion getkversion locktest rpcdebug rpcgen nlmtest
+SUBDIRS = locktest rpcdebug rpcgen nlmtest
 
 MAINTAINERCLEANFILES = Makefile.in


For this compile error: 
Making install in getkversion
make[3]: Entering directory `/home/sergio/hardware/moviecube/buildroot/output/build/nfs-utils-1.0.10/tools/getkversion'
(...)
getkversion.c: In function ?main?:
getkversion.c:17: error: ?UTS_RELEASE? undeclared (first use in this function)
getkversion.c:17: error: (Each undeclared identifier is reported only once
getkversion.c:17: error: for each function it appears in.)
make[3]: *** [getkversion-getkversion.o] Error 1
make[3]: Leaving directory `/home/sergio/hardware/moviecube/buildroot/output/build/nfs-utils-1.0.10/tools/getkversion'
make[2]: *** [install-recursive] Error 1
make[2]: Leaving directory `/home/sergio/hardware/moviecube/buildroot/output/build/nfs-utils-1.0.10/tools'
make[1]: *** [install-recursive] Error 1
make[1]: Leaving directory `/home/sergio/hardware/moviecube/buildroot/output/build/nfs-utils-1.0.10'

Best regards
-- 
S?rgio M. B.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: smime.p7s
Type: application/x-pkcs7-signature
Size: 3293 bytes
Desc: not available
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20101004/2b34eacc/attachment.bin>

^ permalink raw reply

* [Buildroot] can't resolve symbol 'atexit'
From: anthony henderson @ 2010-10-04 13:26 UTC (permalink / raw)
  To: buildroot

Hi all
I've got busy box working well with my software, however I've tried to run
an exe provided by the board vendor and get the following error "can't
resolve symbol 'atexit'" is there a way to fix this?  It's a bit hard to
find details on google, I think it's to do with different versions of
uClibc?  However when I've opened buildroot and looked in toolchain ->
uClibc I can't see any options to do with atexit.  Can anyone point me in
the right direction, thanks.

-- 
Regards Tony


NOTE: This message is intended solely for the use of the individual or
organization to whom it is addressed. It may contain privileged or
confidential information. If you have received this message in error, please
notify the originator immediately. If you are not the intended recipient,
you should not use, copy, alter, or disclose the contents of this message.
All information or opinions expressed in this message and/or any attachments
are those of the author and are not necessarily those of Fair Games UK LTD
or its affiliates. Fair Games UK LTD accepts no responsibility for loss or
damage arising from its use, including damage from virus.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20101004/cce77f81/attachment.html>

^ permalink raw reply

* [Buildroot] [PATCH 1/2] jpeg: bump to 8b
From: Peter Korsgaard @ 2010-10-04 10:07 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1286052682-22218-2-git-send-email-Martin.Banky@gmail.com>

>>>>> "Martin" == Martin Banky <martin.banky@gmail.com> writes:

 Martin> Signed-off-by: Martin Banky <Martin.Banky@gmail.com>
Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply

* [Buildroot] [git commit master 1/1] jpeg: remove lgpl header
From: Peter Korsgaard @ 2010-10-04  9:51 UTC (permalink / raw)
  To: buildroot


commit: http://git.buildroot.net/buildroot/commit/?id=b808b60b89abf767063172a6c48fab3cc22008f7
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master

Buildroot as a whole is under GPL, so lets not expand each .mk file with
legal matter. The git history nicely shows the origin of each file, and
after the conversion to autotargets there basically isn't anything
left of the original file anymore.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 package/jpeg/jpeg.mk |   17 -----------------
 1 files changed, 0 insertions(+), 17 deletions(-)

diff --git a/package/jpeg/jpeg.mk b/package/jpeg/jpeg.mk
index 1f408a0..6dd4334 100644
--- a/package/jpeg/jpeg.mk
+++ b/package/jpeg/jpeg.mk
@@ -3,23 +3,6 @@
 # jpeg (libraries needed by some apps)
 #
 #############################################################
-# Copyright (C) 2001-2003 by Erik Andersen <andersen@codepoet.org>
-# Copyright (C) 2002 by Tim Riker <Tim@Rikers.org>
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU Library General Public License as
-# published by the Free Software Foundation; either version 2 of the
-# License, or (at your option) any later version.
-#
-# 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 GNU
-# Library General Public License for more details.
-#
-# You should have received a copy of the GNU Library General Public
-# License along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
-# USA
 JPEG_VERSION = 8b
 JPEG_SITE = http://www.ijg.org/files/
 JPEG_SOURCE = jpegsrc.v$(JPEG_VERSION).tar.gz
-- 
1.7.1

^ permalink raw reply related

* [Buildroot] [git commit master 1/1] jpeg: bump to 8b
From: Martin Banky @ 2010-10-04  9:51 UTC (permalink / raw)
  To: buildroot


commit: http://git.buildroot.net/buildroot/commit/?id=ffa57e4e74ad396eec544491d37548050bb950c0
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master

Signed-off-by: Martin Banky <Martin.Banky@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 package/jpeg/jpeg-build.patch   |   99 ---------------------------------------
 package/jpeg/jpeg-libtool.patch |   66 --------------------------
 package/jpeg/jpeg.mk            |    7 +--
 3 files changed, 3 insertions(+), 169 deletions(-)
 delete mode 100644 package/jpeg/jpeg-build.patch
 delete mode 100644 package/jpeg/jpeg-libtool.patch

diff --git a/package/jpeg/jpeg-build.patch b/package/jpeg/jpeg-build.patch
deleted file mode 100644
index 9f3c5c2..0000000
--- a/package/jpeg/jpeg-build.patch
+++ /dev/null
@@ -1,99 +0,0 @@
-- Respect options from configure (bindir/libdir/etc...)
-- Grab AR from the env instead of hardcoding to 'ar'
-- Fix install to respect $(DESTDIR)
-- Also install jpegint.h #64254
-
---- jpeg/makefile.cfg
-+++ jpeg/makefile.cfg
-@@ -11,13 +11,13 @@
- # Where to install the programs and man pages.
- prefix = @prefix@
- exec_prefix = @exec_prefix@
--bindir = $(exec_prefix)/bin
--libdir = $(exec_prefix)/lib
--includedir = $(prefix)/include
-+bindir = @bindir@
-+libdir = @libdir@
-+includedir = @includedir@
- binprefix =
- manprefix =
- manext = 1
--mandir = $(prefix)/man/man$(manext)
-+mandir = @mandir@/man$(manext)
- 
- # The name of your C compiler:
- CC= @CC@
-@@ -60,7 +60,8 @@
- # directory creation command
- MKDIR= mkdir
- # library (.a) file creation command
--AR= ar rc
-+AR = @AR@
-+ARFLAGS = rc
- # second step in .a creation (use "touch" if not needed)
- AR2= @RANLIB@
- # installation program
-@@ -163,7 +164,7 @@
- # without libtool:
- libjpeg.a: @A2K_DEPS@ $(LIBOBJECTS)
- 	$(RM) libjpeg.a
--	$(AR) libjpeg.a  $(LIBOBJECTS)
-+	$(AR) $(ARFLAGS) libjpeg.a  $(LIBOBJECTS)
- 	$(AR2) libjpeg.a
- 
- # with libtool:
-@@ -191,25 +191,29 @@
- # Installation rules:
- 
- install: cjpeg djpeg jpegtran rdjpgcom wrjpgcom @FORCE_INSTALL_LIB@
--	$(INSTALL_PROGRAM) cjpeg $(bindir)/$(binprefix)cjpeg
--	$(INSTALL_PROGRAM) djpeg $(bindir)/$(binprefix)djpeg
--	$(INSTALL_PROGRAM) jpegtran $(bindir)/$(binprefix)jpegtran
--	$(INSTALL_PROGRAM) rdjpgcom $(bindir)/$(binprefix)rdjpgcom
--	$(INSTALL_PROGRAM) wrjpgcom $(bindir)/$(binprefix)wrjpgcom
--	$(INSTALL_DATA) $(srcdir)/cjpeg.1 $(mandir)/$(manprefix)cjpeg.$(manext)
--	$(INSTALL_DATA) $(srcdir)/djpeg.1 $(mandir)/$(manprefix)djpeg.$(manext)
--	$(INSTALL_DATA) $(srcdir)/jpegtran.1 $(mandir)/$(manprefix)jpegtran.$(manext)
--	$(INSTALL_DATA) $(srcdir)/rdjpgcom.1 $(mandir)/$(manprefix)rdjpgcom.$(manext)
--	$(INSTALL_DATA) $(srcdir)/wrjpgcom.1 $(mandir)/$(manprefix)wrjpgcom.$(manext)
-+	mkdir -p $(DESTDIR)$(bindir) $(DESTDIR)$(mandir)
-+	$(INSTALL_PROGRAM) cjpeg $(DESTDIR)$(bindir)/$(binprefix)cjpeg
-+	$(INSTALL_PROGRAM) djpeg $(DESTDIR)$(bindir)/$(binprefix)djpeg
-+	$(INSTALL_PROGRAM) jpegtran $(DESTDIR)$(bindir)/$(binprefix)jpegtran
-+	$(INSTALL_PROGRAM) rdjpgcom $(DESTDIR)$(bindir)/$(binprefix)rdjpgcom
-+	$(INSTALL_PROGRAM) wrjpgcom $(DESTDIR)$(bindir)/$(binprefix)wrjpgcom
-+	$(INSTALL_DATA) $(srcdir)/cjpeg.1 $(DESTDIR)$(mandir)/$(manprefix)cjpeg.$(manext)
-+	$(INSTALL_DATA) $(srcdir)/djpeg.1 $(DESTDIR)$(mandir)/$(manprefix)djpeg.$(manext)
-+	$(INSTALL_DATA) $(srcdir)/jpegtran.1 $(DESTDIR)$(mandir)/$(manprefix)jpegtran.$(manext)
-+	$(INSTALL_DATA) $(srcdir)/rdjpgcom.1 $(DESTDIR)$(mandir)/$(manprefix)rdjpgcom.$(manext)
-+	$(INSTALL_DATA) $(srcdir)/wrjpgcom.1 $(DESTDIR)$(mandir)/$(manprefix)wrjpgcom.$(manext)
- 
- install-lib: libjpeg.$(A) install-headers
--	$(INSTALL_LIB) libjpeg.$(A) $(libdir)/$(binprefix)libjpeg.$(A)
-+	mkdir -p $(DESTDIR)$(libdir)
-+	$(INSTALL_LIB) libjpeg.$(A) $(DESTDIR)$(libdir)/$(binprefix)libjpeg.$(A)
- 
- install-headers: jconfig.h
--	$(INSTALL_DATA) jconfig.h $(includedir)/jconfig.h
--	$(INSTALL_DATA) $(srcdir)/jpeglib.h $(includedir)/jpeglib.h
--	$(INSTALL_DATA) $(srcdir)/jmorecfg.h $(includedir)/jmorecfg.h
--	$(INSTALL_DATA) $(srcdir)/jerror.h $(includedir)/jerror.h
-+	mkdir -p $(DESTDIR)$(includedir)
-+	$(INSTALL_DATA) jconfig.h $(DESTDIR)$(includedir)/jconfig.h
-+	$(INSTALL_DATA) $(srcdir)/jpegint.h $(DESTDIR)$(includedir)/jpegint.h
-+	$(INSTALL_DATA) $(srcdir)/jpeglib.h $(DESTDIR)$(includedir)/jpeglib.h
-+	$(INSTALL_DATA) $(srcdir)/jmorecfg.h $(DESTDIR)$(includedir)/jmorecfg.h
-+	$(INSTALL_DATA) $(srcdir)/jerror.h $(DESTDIR)$(includedir)/jerror.h
- 
- clean:
- 	$(RM) *.o *.lo libjpeg.a libjpeg.la
---- jpeg/configure
-+++ jpeg/configure
-@@ -1777,6 +1777,7 @@
- s%@CPP@%$CPP%g
- s%@INSTALL_PROGRAM@%$INSTALL_PROGRAM%g
- s%@INSTALL_DATA@%$INSTALL_DATA%g
-+s%@AR@%${AR-ar}%g
- s%@RANLIB@%$RANLIB%g
- s%@LIBTOOL@%$LIBTOOL%g
- s%@O@%$O%g
diff --git a/package/jpeg/jpeg-libtool.patch b/package/jpeg/jpeg-libtool.patch
deleted file mode 100644
index 3c4b573..0000000
--- a/package/jpeg/jpeg-libtool.patch
+++ /dev/null
@@ -1,66 +0,0 @@
---- jpeg/configure
-+++ jpeg/configure
-@@ -1559,7 +1559,7 @@
-   if test "x$LTSTATIC" = xno; then
-     disable_static="--disable-static"
-   fi
--  $srcdir/ltconfig $disable_shared $disable_static $srcdir/ltmain.sh
-+  $srcdir/ltconfig $disable_shared $disable_static $srcdir/ltmain.sh $CHOST
- fi
- 
- # Select memory manager depending on user input.
---- jpeg/ltconfig
-+++ jpeg/ltconfig
-@@ -299,6 +299,7 @@
- # Transform linux* to *-*-linux-gnu*, to support old configure scripts.
- case "$host_os" in
- linux-gnu*) ;;
-+linux-uclibc*) ;;
- linux*) host=`echo $host | sed 's/^\(.*-.*-linux\)\(.*\)$/\1-gnu\2/'`
- esac
- 
-@@ -553,7 +553,9 @@
-     # On HP-UX, both CC and GCC only warn that PIC is supported... then they
-     # create non-PIC objects.  So, if there were any warnings, we assume that
-     # PIC is not supported.
-+    # Make sure we only test warnings on HP-UX (pic_flag == +Z) or we can
-+    # easily break Linux builds http://bugs.gentoo.org/70947
--    if test -s conftest.err; then
-+    if test -s conftest.err -a "$pic_flag" = "+Z"; then
-       echo "$ac_t"no 1>&6
-       can_build_shared=no
-       pic_flag=
-@@ -1210,7 +1210,6 @@
-   else
-     # Only the GNU ld.so supports shared libraries on MkLinux.
-     case "$host_cpu" in
--    powerpc*) dynamic_linker=no ;;
-     *) dynamic_linker='Linux ld.so' ;;
-     esac
-   fi
-@@ -1259,6 +1260,25 @@
-   fi
-   ;;
- 
-+linux-uclibc*)
-+  version_type=linux
-+  need_lib_prefix=no
-+  need_version=no
-+  library_names_spec='${libname}${release}.so.$versuffix ${libname}${release}.so.$major $libname.so'
-+  soname_spec='${libname}${release}.so.$major'
-+  finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir'
-+  shlibpath_var=LD_LIBRARY_PATH
-+  shlibpath_overrides_runpath=no
-+  deplibs_check_method=pass_all
-+  # This implies no fast_install, which is unacceptable.
-+  # Some rework will be needed to allow for fast_install
-+  # before this can be enabled.
-+  # Note: copied from linux-gnu, and may not be appropriate.
-+  hardcode_into_libs=yes
-+  # Assume using the uClibc dynamic linker.
-+  dynamic_linker="uClibc ld.so"
-+  ;;
-+
- netbsd* | openbsd*)
-   version_type=sunos
-   library_names_spec='${libname}${release}.so.$versuffix'
diff --git a/package/jpeg/jpeg.mk b/package/jpeg/jpeg.mk
index 4f08534..1f408a0 100644
--- a/package/jpeg/jpeg.mk
+++ b/package/jpeg/jpeg.mk
@@ -20,13 +20,12 @@
 # License along with this program; if not, write to the Free Software
 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
 # USA
-JPEG_VERSION:=6b
-JPEG_SITE:=ftp://ftp.uu.net/graphics/jpeg/
-JPEG_SOURCE=jpegsrc.v$(JPEG_VERSION).tar.gz
+JPEG_VERSION = 8b
+JPEG_SITE = http://www.ijg.org/files/
+JPEG_SOURCE = jpegsrc.v$(JPEG_VERSION).tar.gz
 JPEG_INSTALL_STAGING = YES
 JPEG_INSTALL_TARGET = YES
 JPEG_LIBTOOL_PATCH = NO
-JPEG_CONF_OPT = --without-x --enable-shared --enable-static
 
 define JPEG_REMOVE_USELESS_TOOLS
 	rm -f $(addprefix $(TARGET_DIR)/usr/bin/,cjpeg djpeg jpegtrans rdjpgcom wrjpgcom)
-- 
1.7.1

^ permalink raw reply related

* [Buildroot] [git commit master 1/1] libeXosip2: convert to autotargets and bump to 3.3.0
From: Martin Banky @ 2010-10-04  9:44 UTC (permalink / raw)
  To: buildroot


commit: http://git.buildroot.net/buildroot/commit/?id=05e4b940c94e883afde697c07a37d8a47c81b33e
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master

Signed-off-by: Martin Banky <Martin.Banky@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 CHANGES                          |   23 ++++----
 package/libeXosip2/libeXosip2.mk |  109 +++++++------------------------------
 2 files changed, 33 insertions(+), 99 deletions(-)

diff --git a/CHANGES b/CHANGES
index e14801b..96b6397 100644
--- a/CHANGES
+++ b/CHANGES
@@ -31,17 +31,18 @@
 	gtk2-themes, gtkperf, gvfs, haserl, hdparm, hostapd, hwdata,
 	ifplugd, iperf, iproute2, iptables, iw, jpeg, kexec, kismet,
 	less, libcgi, libcurl, libdaemon, libdnet, liberation,
-	libevent, libglade, libgtk2, libiconv, libidn, libmms, libnl,
-	liboil, libosip2, libpcap, libpng, libtool, libungif, libxml2,
-	libxslt, lighttpd, lite, lm-sensors, lockfile-progs, logrotate,
-	m4, mdadm, mesa3d, metacity, mtd-utils, mysql_client, nano,
-	nbd, ncftp, neon, netperf, netsnmp, ng-spice-rework, ntfsprogs,
-	ntp, openntpd, openssh, openvpn, oprofile, pango, patch, pcre,
-	php, pkg-config, prboom, radvd, rdesktop, ruby, qt, quagga,
-	samba, sawman, sdl_mixer, sdl_sound, setserial,
-	shared-mime-info, speex, sqlite, squashfs, strace, sylpheed,
-	taglib, tcpdump, thttpd, tiff, tn5250, udev, udpcast,
-	usbmount, usbutils, vsftpd, vtun, which, wpa_supplicant,
+	libevent, libeXosip2, libglade, libgtk2, libiconv, libidn,
+	libmms, libnl, liboil, libosip2, libpcap, libpng, libtool,
+	libungif, libxml2, libxslt, lighttpd, lite, lm-sensors,
+	lockfile-progs, logrotate, m4, mdadm, mesa3d, metacity,
+	mtd-utils, mysql_client, nano, nbd, ncftp, neon, netperf,
+	netsnmp, ng-spice-rework, ntfsprogs, ntp, openntpd, openssh,
+	openvpn, oprofile, pango, patch, pcre, php, pkg-config,
+	prboom, radvd, rdesktop, ruby, qt, quagga, samba, sawman,
+	sdl_mixer, sdl_sound, setserial, shared-mime-info, speex,
+	sqlite, squashfs, strace, sylpheed, taglib, tcpdump, thttpd,
+	tiff, tn5250, udev, udpcast, usbmount, usbutils, vsftpd, vtun,
+	which, wpa_supplicant,
 	xdriver_xf86-input-{acecad,aiptek,evdev,joystick,keyboard},
 	xdriver-xf86-input-{mouse,synaptics,vmmouse,void},
 	xdriver-xf86-video-{apm,ark,ast,ati,chips,cirrus,dummy,fbdev},
diff --git a/package/libeXosip2/libeXosip2.mk b/package/libeXosip2/libeXosip2.mk
index 30eac9f..415745b 100644
--- a/package/libeXosip2/libeXosip2.mk
+++ b/package/libeXosip2/libeXosip2.mk
@@ -3,93 +3,26 @@
 # libeXosip2
 #
 #############################################################
+LIBEXOSIP2_VERSION = 3.3.0
+LIBEXOSIP2_SOURCE = libexosip2_$(LIBEXOSIP2_VERSION).orig.tar.gz
+LIBEXOSIP2_PATCH = libexosip2_$(LIBEXOSIP2_VERSION)-1.diff.gz
+LIBEXOSIP2_SITE = $(BR2_DEBIAN_MIRROR)/debian/pool/main/libe/libexosip2
+LIBEXOSIP2_INSTALL_STAGING = YES
+
+LIBEXOSIP2_DEPENDENCIES = host-pkg-config libosip2
+
+ifneq ($(LIBEXOSIP2_PATCH),)
+define LIBEXOSIP2_DEBIAN_PATCHES
+	if [ -d $(@D)/debian/patches ]; then \
+		(cd $(@D)/debian/patches && for i in *; \
+		 do $(SED) 's,^\+\+\+ .*cvs-$(LIBEXOSIP2_VERSION)/,+++ cvs-$(LIBEXOSIP2_VERSION)/,' $$i; \
+		 done; \
+		); \
+		toolchain/patch-kernel.sh $(@D) $(@D)/debian/patches \*; \
+	fi
+endef
+endif
 
-LIBEXOSIP2_VERSION=3.1.0
-LIBEXOSIP2_SOURCE=libeXosip2-$(LIBEXOSIP2_VERSION).tar.gz
-LIBEXOSIP2_SITE=http://www.antisip.com/download/exosip2
-LIBEXOSIP2_DIR=$(BUILD_DIR)/libeXosip2-$(LIBEXOSIP2_VERSION)
-LIBEXOSIP2_CAT:=$(ZCAT)
-
-$(DL_DIR)/$(LIBEXOSIP2_SOURCE):
-	$(call DOWNLOAD,$(LIBEXOSIP2_SITE),$(LIBEXOSIP2_SOURCE))
-
-$(LIBEXOSIP2_DIR)/.unpacked: $(DL_DIR)/$(LIBEXOSIP2_SOURCE)
-	$(LIBEXOSIP2_CAT) $(DL_DIR)/$(LIBEXOSIP2_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
-	$(CONFIG_UPDATE) $(LIBEXOSIP2_DIR)
-	touch $(LIBEXOSIP2_DIR)/.unpacked
-
-$(LIBEXOSIP2_DIR)/.configured: $(LIBEXOSIP2_DIR)/.unpacked
-	(cd $(LIBEXOSIP2_DIR); rm -rf config.cache; \
-		$(TARGET_CONFIGURE_OPTS) \
-		$(TARGET_CONFIGURE_ARGS) \
-		./configure $(QUIET) \
-		--target=$(GNU_TARGET_NAME) \
-		--host=$(GNU_TARGET_NAME) \
-		--build=$(GNU_HOST_NAME) \
-		--prefix=/usr \
-		--enable-shared \
-		--enable-static \
-		$(DISABLE_NLS) \
-	)
-	touch $@
-
-$(LIBEXOSIP2_DIR)/.compiled: $(LIBEXOSIP2_DIR)/.configured
-	$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(LIBEXOSIP2_DIR)
-	touch $@
-
-#LDFLAGS=$(TARGET_LDFLAGS)
-
-$(STAGING_DIR)/usr/lib/libeXosip2.so: $(LIBEXOSIP2_DIR)/.compiled
-	cp -dpf $(LIBEXOSIP2_DIR)/src/.libs/libeXosip2.so* $(STAGING_DIR)/usr/lib
-	touch $@
-
-$(STAGING_DIR)/usr/lib/libeXosip2.a: $(LIBEXOSIP2_DIR)/.compiled
-	cp -dpf $(LIBEXOSIP2_DIR)/src/.libs/libeXosip2.a $(STAGING_DIR)/usr/lib
-	cp -dpf $(LIBEXOSIP2_DIR)/include/*.h $(STAGING_DIR)/usr/include
-	touch $@
-
-$(STAGING_DIR)/usr/lib/libeXosip2.la: $(LIBEXOSIP2_DIR)/.compiled
-	cp -dpf $(LIBEXOSIP2_DIR)/src/libeXosip2.la $(STAGING_DIR)/usr/lib
-	$(SED) "s,^libdir=.*,libdir=\'$(STAGING_DIR)/usr/lib\',g" $(STAGING_DIR)/usr/lib/libeXosip2.la
-	touch $@
-
-$(STAGING_DIR)/usr/bin/sip_reg: $(LIBEXOSIP2_DIR)/.compiled
-	cp -dpf $(LIBEXOSIP2_DIR)/tools/.libs/sip_reg $(STAGING_DIR)/usr/bin
-	touch $@
-
-
-$(TARGET_DIR)/usr/lib/libeXosip2.so: $(STAGING_DIR)/usr/lib/libeXosip2.so
-	mkdir -p $(TARGET_DIR)/usr/lib
-	cp -dpf $(STAGING_DIR)/usr/lib/libeXosip2.so* $(TARGET_DIR)/usr/lib/
-	$(STRIPCMD) $(STRIP_STRIP_UNNEEDED) $(TARGET_DIR)/usr/lib/libeXosip2.so*
-	touch $@
-
-$(TARGET_DIR)/usr/bin/sip_reg: $(STAGING_DIR)/usr/bin/sip_reg
-	mkdir -p $(TARGET_DIR)/usr/bin
-	cp -dpf $(STAGING_DIR)/usr/bin/sip_reg $(TARGET_DIR)/usr/bin
-	touch $@
-
-
-
-libeXosip2: host-pkg-config libosip2 $(TARGET_DIR)/usr/lib/libeXosip2.so
-
-libeXosip2-source: $(DL_DIR)/$(LIBEXOSIP2_SOURCE)
-
-libeXosip2-clean:
-	-$(MAKE) -C $(LIBEXOSIP2_DIR) clean
-	-rm -f $(STAGING_DIR)/usr/lib/libeXosip2.*
-	-rm -f $(TARGET_DIR)/usr/lib/libeXosip2.*
-
-
-libeXosip2-dirclean:
-	rm -rf $(LIBEXOSIP2_DIR)
+LIBEXOSIP2_POST_PATCH_HOOKS += LIBEXOSIP2_DEBIAN_PATCHES
 
-.PHONY: libeXosip2-headers libeXosip2-target-headers
-#############################################################
-#
-# Toplevel Makefile options
-#
-#############################################################
-ifeq ($(BR2_PACKAGE_LIBEXOSIP2),y)
-TARGETS+=libeXosip2
-endif
+$(eval $(call AUTOTARGETS,package,libeXosip2))
-- 
1.7.1

^ permalink raw reply related

* [Buildroot] [git commit master 1/1] scripts: get rid of outdated buildall script
From: Peter Korsgaard @ 2010-10-04  9:44 UTC (permalink / raw)
  To: buildroot


commit: http://git.buildroot.net/buildroot/commit/?id=d6e59652a5045fe2b23e45fe31cf08fe57f11357
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>

Patch is too large, so refusing to show it

^ permalink raw reply

* [Buildroot] [git commit master 1/1] package: get rid of ".. has no inherent support for AVR32" comments
From: Peter Korsgaard @ 2010-10-04  9:44 UTC (permalink / raw)
  To: buildroot


commit: http://git.buildroot.net/buildroot/commit/?id=e7b6b32c5db122bced1466e5affea4ca53b6cbb9
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master

These are probaly out of date by now, and lack of special handling for
avr32 doesn't mean that a package won't work on avr32, so remove them.

Done by sed -i '/comment.*no inherent support for AVR32/{N;N;p}'

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 package/argus/Config.in         |    3 ---
 package/bind/Config.in          |    3 ---
 package/dmraid/Config.in        |    3 ---
 package/kismet/Config.in        |    3 ---
 package/libeXosip2/Config.in    |    3 ---
 package/ntfs-3g/Config.in       |    3 ---
 package/openntpd/Config.in      |    3 ---
 package/pciutils/Config.in      |    3 ---
 package/ruby/Config.in          |    3 ---
 package/smartmontools/Config.in |    3 ---
 package/vtun/Config.in          |    3 ---
 11 files changed, 0 insertions(+), 33 deletions(-)

diff --git a/package/argus/Config.in b/package/argus/Config.in
index 0c00126..6728ae7 100644
--- a/package/argus/Config.in
+++ b/package/argus/Config.in
@@ -1,6 +1,3 @@
-comment "argus has no inherent support for AVR32" 
-	depends on BR2_avr32 && BR2_PACKAGE_ARGUS
-
 config BR2_PACKAGE_ARGUS
 	bool "argus"
 	select BR2_PACKAGE_LIBPCAP
diff --git a/package/bind/Config.in b/package/bind/Config.in
index 72cf3a0..827ee26 100644
--- a/package/bind/Config.in
+++ b/package/bind/Config.in
@@ -1,6 +1,3 @@
-comment "bind has no inherent support for AVR32" 
-	depends on BR2_avr32 && BR2_PACKAGE_BIND
-
 config BR2_PACKAGE_BIND
 	bool "bind"
 	depends on BR2_LARGEFILE
diff --git a/package/dmraid/Config.in b/package/dmraid/Config.in
index 7d6ecfb..7b37244 100644
--- a/package/dmraid/Config.in
+++ b/package/dmraid/Config.in
@@ -1,6 +1,3 @@
-comment "dmraid has no inherent support for AVR32" 
-	depends on BR2_avr32 && BR2_PACKAGE_DMRAID
-
 config BR2_PACKAGE_DMRAID
 	bool "dmraid"
 	depends on BR2_LARGEFILE
diff --git a/package/kismet/Config.in b/package/kismet/Config.in
index 5674fbc..6954665 100644
--- a/package/kismet/Config.in
+++ b/package/kismet/Config.in
@@ -1,6 +1,3 @@
-comment "Kismet has no inherent support for AVR32"
-	depends on BR2_avr32 && BR2_PACKAGE_KISMET
-
 comment "Kismet requires a toolchain with C++ support enabled"
 	depends on !BR2_INSTALL_LIBSTDCPP
 
diff --git a/package/libeXosip2/Config.in b/package/libeXosip2/Config.in
index 5ae3e97..8adca5a 100644
--- a/package/libeXosip2/Config.in
+++ b/package/libeXosip2/Config.in
@@ -1,6 +1,3 @@
-comment "libeXosip2 has no inherent support for AVR32" 
-	depends on BR2_avr32 && BR2_PACKAGE_LIBEXOSIP2
-
 config BR2_PACKAGE_LIBEXOSIP2
 	bool "libeXosip2"
 	select BR2_PACKAGE_LIBOSIP2
diff --git a/package/ntfs-3g/Config.in b/package/ntfs-3g/Config.in
index 6d737e6..865f9b4 100644
--- a/package/ntfs-3g/Config.in
+++ b/package/ntfs-3g/Config.in
@@ -1,6 +1,3 @@
-comment "ntfs-3g has no inherent support for AVR32"
-	depends on BR2_avr32 && BR2_PACKAGE_NTFS_3G
-
 config BR2_PACKAGE_NTFS_3G
 	bool "ntfs-3g"
 	depends on BR2_LARGEFILE
diff --git a/package/openntpd/Config.in b/package/openntpd/Config.in
index 5292259..6b8beb8 100644
--- a/package/openntpd/Config.in
+++ b/package/openntpd/Config.in
@@ -1,6 +1,3 @@
-comment "OpenNTPD has no inherent support for AVR32" 
-	depends on BR2_avr32 && BR2_PACKAGE_OPENNTPD
-
 config BR2_PACKAGE_OPENNTPD
 	bool "OpenNTPD"
 	help
diff --git a/package/pciutils/Config.in b/package/pciutils/Config.in
index 07fc49b..7b318da 100644
--- a/package/pciutils/Config.in
+++ b/package/pciutils/Config.in
@@ -1,6 +1,3 @@
-comment "pciutils has no inherent support for AVR32" 
-	depends on BR2_avr32 && BR2_PACKAGE_PCIUTILS
-
 config BR2_PACKAGE_PCIUTILS
 	bool "pciutils"
 	help
diff --git a/package/ruby/Config.in b/package/ruby/Config.in
index 518302a..c18d8ad 100644
--- a/package/ruby/Config.in
+++ b/package/ruby/Config.in
@@ -1,6 +1,3 @@
-comment "ruby has no inherent support for AVR32" 
-	depends on BR2_avr32 && BR2_PACKAGE_RUBY
-
 config BR2_PACKAGE_RUBY
 	bool "ruby"
 	depends on BR2_USE_WCHAR
diff --git a/package/smartmontools/Config.in b/package/smartmontools/Config.in
index f87020f..a1541d7 100644
--- a/package/smartmontools/Config.in
+++ b/package/smartmontools/Config.in
@@ -1,6 +1,3 @@
-comment "smartmontools has no inherent support for AVR32" 
-	depends on BR2_avr32 && BR2_PACKAGE_SMARTMONTOOLS
-
 config BR2_PACKAGE_SMARTMONTOOLS
 	bool "smartmontools"
 	help
diff --git a/package/vtun/Config.in b/package/vtun/Config.in
index ad9d9e5..b40de25 100644
--- a/package/vtun/Config.in
+++ b/package/vtun/Config.in
@@ -1,6 +1,3 @@
-comment "vtun has no inherent support for AVR32" 
-	depends on BR2_avr32 && BR2_PACKAGE_VTUN
-
 config BR2_PACKAGE_VTUN
 	bool "vtun - BEWARE: read package/vtun/README.txt before use"
 	select BR2_PACKAGE_LZO
-- 
1.7.1

^ permalink raw reply related

* [Buildroot] [git commit master 1/1] libosip2: change site location and bump to 3.3.0
From: Martin Banky @ 2010-10-04  9:44 UTC (permalink / raw)
  To: buildroot


commit: http://git.buildroot.net/buildroot/commit/?id=3d1de0ed96f6f8f87e45bc5326005f0cde41f900
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master

Change the site location to debian mirror to get the latest debian patches.

Signed-off-by: Martin Banky <Martin.Banky@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 CHANGES                      |    8 ++++----
 package/libosip2/libosip2.mk |   26 ++++++++++++++++++--------
 2 files changed, 22 insertions(+), 12 deletions(-)

diff --git a/CHANGES b/CHANGES
index 69ec5d0..e14801b 100644
--- a/CHANGES
+++ b/CHANGES
@@ -32,10 +32,10 @@
 	ifplugd, iperf, iproute2, iptables, iw, jpeg, kexec, kismet,
 	less, libcgi, libcurl, libdaemon, libdnet, liberation,
 	libevent, libglade, libgtk2, libiconv, libidn, libmms, libnl,
-	liboil, libpcap, libpng, libtool, libungif, libxml2, libxslt,
-	lighttpd, lite, lm-sensors, lockfile-progs, logrotate, m4,
-	mdadm, mesa3d, metacity, mtd-utils, mysql_client, nano, nbd,
-	ncftp, neon, netperf, netsnmp, ng-spice-rework, ntfsprogs,
+	liboil, libosip2, libpcap, libpng, libtool, libungif, libxml2,
+	libxslt, lighttpd, lite, lm-sensors, lockfile-progs, logrotate,
+	m4, mdadm, mesa3d, metacity, mtd-utils, mysql_client, nano,
+	nbd, ncftp, neon, netperf, netsnmp, ng-spice-rework, ntfsprogs,
 	ntp, openntpd, openssh, openvpn, oprofile, pango, patch, pcre,
 	php, pkg-config, prboom, radvd, rdesktop, ruby, qt, quagga,
 	samba, sawman, sdl_mixer, sdl_sound, setserial,
diff --git a/package/libosip2/libosip2.mk b/package/libosip2/libosip2.mk
index 441b84c..aa15332 100644
--- a/package/libosip2/libosip2.mk
+++ b/package/libosip2/libosip2.mk
@@ -3,14 +3,24 @@
 # libosip2
 #
 #############################################################
-LIBOSIP2_VERSION=3.1.0
-LIBOSIP2_SOURCE=libosip2-$(LIBOSIP2_VERSION).tar.gz
-LIBOSIP2_SITE=http://www.antisip.com/download/exosip2
-LIBOSIP2_INSTALL_STAGING=YES
+LIBOSIP2_VERSION = 3.3.0
+LIBOSIP2_SOURCE = libosip2_$(LIBOSIP2_VERSION).orig.tar.gz
+LIBOSIP2_PATCH = libosip2_$(LIBOSIP2_VERSION)-1.diff.gz
+LIBOSIP2_SITE = $(BR2_DEBIAN_MIRROR)/debian/pool/main/libo/libosip2
+LIBOSIP2_INSTALL_STAGING = YES
 
-LIBOSIP2_CONF_OPT = \
-	--with-gnu-ld \
-	--enable-shared \
-	--enable-static
+ifneq ($(LIBOSIP2_PATCH),)
+define LIBOSIP2_DEBIAN_PATCHES
+	if [ -d $(@D)/debian/patches ]; then \
+		(cd $(@D)/debian/patches && for i in *; \
+		 do $(SED) 's,^\+\+\+ .*cvs-$(LIBOSIP2_VERSION)/,+++ cvs-$(LIBOSIP2_VERSION)/,' $$i; \
+		 done; \
+		); \
+		toolchain/patch-kernel.sh $(@D) $(@D)/debian/patches \*; \
+	fi
+endef
+endif
+
+LIBOSIP2_POST_PATCH_HOOKS += LIBOSIP2_DEBIAN_PATCHES
 
 $(eval $(call AUTOTARGETS,package,libosip2))
-- 
1.7.1

^ permalink raw reply related

* [Buildroot] [PATCH 0/2] libeXosip2: convert to autotargets and bump to 3.3.0
From: Peter Korsgaard @ 2010-10-04  9:32 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1286057184-3486-1-git-send-email-Martin.Banky@gmail.com>

>>>>> "Martin" == Martin Banky <martin.banky@gmail.com> writes:

 Martin> Both patches are needed for this to work properly.

Committed both, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply

* [Buildroot] [PATCH] xterm: should select libXaw and bump to latest version
From: Peter Korsgaard @ 2010-10-04  9:19 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <20100928115214.10039.12962.stgit@localhost6.localdomain6>

>>>>> "Paulius" == Paulius Zaleckas <paulius.zaleckas@gmail.com> writes:

 Paulius> Signed-off-by: Paulius Zaleckas <paulius.zaleckas@gmail.com>

Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply

* [Buildroot] [git commit master 1/1] xterm: should select libXaw and bump to latest version
From: Peter Korsgaard @ 2010-10-04  9:19 UTC (permalink / raw)
  To: buildroot


commit: http://git.buildroot.net/buildroot/commit/?id=1f4000e562040046aef1ec79e33abdeedbe33005
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master

Signed-off-by: Paulius Zaleckas <paulius.zaleckas@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 CHANGES                 |    2 +-
 package/xterm/Config.in |    1 +
 package/xterm/xterm.mk  |    4 ++--
 3 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/CHANGES b/CHANGES
index a1168d7..69ec5d0 100644
--- a/CHANGES
+++ b/CHANGES
@@ -51,7 +51,7 @@
 	xdriver-xf86-video-{sis,sisusb,suncg3,suncg6,suncg14,sunffb},
 	xdriver-xf86-video-{sunleo,suntcx,tdfx,tga,trident,v4l,vesa},
 	xdriver-xf86-video-{vmware,voodeo,wsfb,xgi,xgixp},
-	xkeyboard-config, xlib_libX11, xstroke, xvkbd, zlib
+	xkeyboard-config, xlib_libX11, xstroke, xterm, xvkbd, zlib
 
 	Deprecated packages: hotplug, lzma
 
diff --git a/package/xterm/Config.in b/package/xterm/Config.in
index da3e9fe..9473fad 100644
--- a/package/xterm/Config.in
+++ b/package/xterm/Config.in
@@ -1,5 +1,6 @@
 config BR2_PACKAGE_XTERM
 	bool "xterm"
+	select BR2_PACKAGE_XLIB_LIBXAW
 	depends on BR2_PACKAGE_XORG7
 	help
 	  xterm terminal emulator
diff --git a/package/xterm/xterm.mk b/package/xterm/xterm.mk
index b07eda4..8952e24 100644
--- a/package/xterm/xterm.mk
+++ b/package/xterm/xterm.mk
@@ -4,10 +4,10 @@
 #
 #############################################################
 
-XTERM_VERSION:=259
+XTERM_VERSION:=262
 XTERM_SOURCE:=xterm-$(XTERM_VERSION).tgz
 XTERM_SITE:=ftp://invisible-island.net/xterm
-XTERM_DEPENDENCIES = xserver_xorg-server
+XTERM_DEPENDENCIES = xserver_xorg-server xlib_libXaw
 XTERM_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install
 
 $(eval $(call AUTOTARGETS,package,xterm))
-- 
1.7.1

^ permalink raw reply related

* [Buildroot] Libtool work: a tentative summary
From: Lionel Landwerlin @ 2010-10-04  8:09 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <AANLkTimOovYkLJg1GVSQzNCyW1h3ZkJ7zbJTH9-JDRLY@mail.gmail.com>

The libtool script patch prevents libtool to give a direct path an
host system shared lib path.
The -L$(STAGING_DIR)... is added to the top of link arguments to
prevent the linker to use the -L/usr/lib outputted by libtool.
Finally the sed pass avoids libtool to open the .la files from host system.

So I'm afraid all those items are required even with libtool 2.4
(without sysroot support).

From what I remember, we added the -L$(STAGING_DIR)/lib
-L$(STAGING_DIR)/usr/lib for a libtool problem (commit
efb1d8d3f40281645c178c150d992601c8042c1a).

I'm going to check with your libtool 2.4 sysroot setup.

Regards,

--
Lionel Landwerlin


On Mon, Oct 4, 2010 at 3:19 AM, Martin Banky <Martin.Banky@gmail.com> wrote:
> Lionel,
> ???? On the first three items, won't we always have to keep these until all
> of the packages either support autoreconfiguring or start using libtool 2.4?
> Like I said before, I ran into three packages that wouldn't autoreconfigure,
> so they would still need the traditional approach. Also, I haven't had a
> chance to really investigate this, but isn't
> TARGET_LDFLAGS+=-L$(STAGING_DIR)/lib -L$(STAGING_DIR)/usr/lib also needed by
> gentargets to link to the correct libraries?
> ???? As for my setup, the only difference is, I compiled libtool with
> --with-sysroot (no directory given), and I don't configure the package with
> it. libtool gets the sysroot directory from gcc's sysroot, if none is
> specified. Everything else is the same. What kind of problems did you
> encounter? Was it just the problem with autoreconfiguring packages?
>
> Martin
>
> On Sun, Oct 3, 2010 at 4:47 PM, Lionel Landwerlin <llandwerlin@gmail.com>
> wrote:
>>
>> As long as we keep the following things, we can bump to 2.2 or 2.4 :
>> ? ? ? ?* sed pass on .la files
>> ? ? ? ?* Add -L$(STAGING_DIR)/lib -L$(STAGING_DIR)/usr/lib to LDFLAGS
>> ? ? ? ?* patches for encountered libtool versions
>>
>> I always took the hypothesis that we wanted to get rid of the first 2,
>> and wanted to keep the third only for special cases.
>>
>> I encountered problem with libtool 2.4 for several packages under the
>> following conditions :
>> ? ? ? ?* run autoreconf on the package
>> ? ? ? ?* do not apply the libtool patch
>> ? ? ? ?* configure the package with --with-sysroot=$(STAGING_DIR) option
>>
>> Martin, did you have the same setup ?
>>
>> I guess we're back to the current situation if we don't pass the
>> --with-sysroot option and we apply a libtool patch for the correct
>> libtool version.
>>
>> Regards,
>>
>> --
>> Lionel Landwerlin
>>
>> Le dimanche 03 octobre 2010 ? 15:36 -0700, Martin Banky a ?crit :
>> > If you want to integrate my patches, I would like to submit a new set
>> > of patches with some changes in preparation for libtool 2.4, mainly
>> > with Makefile.autotools.in. I have it setup now to distinguish between
>> > 1.5.x, 2.2.x, and 2.4. Also, in working on converting the packages to
>> > either gentargets or autotargets, I've been noticing a lot of packages
>> > have their own libtool patch. I would like to go through, and clean
>> > them up. I have a question, why can't we upgrade to libtool 2.4? I've
>> > been running it now since I first posted the heads up patch, and have
>> > used it with the sysroot option turned on without any obvious issues.
>> > If the sysroot option is an issue, we could turn it off for now and
>> > use the libtool patches until we integrate the sysroot option
>> > properly, right? The imagemagick patch set that I posted, was first
>> > done with libtool 2.4 and autoreconfigure turned on. I wanted to make
>> > sure that it would work properly in this configuration, in preparation
>> > of the coming changes. It was then actually posted with
>> > autoreconfigure turned off and using the libtool patch. As a side
>> > note, I just realized that imagemagick is using libtool 2.2.x, which
>> > means that it's incorporation is blocked until either I add it's own
>> > libtool patch or we commit my libtool patch set. Sorry about that. If
>> > anyone would like me to add the libtool patch to imagemagick, and
>> > repost, let me know.
>> >
>> > Martin
>> >
>> > On Sun, Oct 3, 2010 at 7:22 AM, Thomas Petazzoni
>> > <thomas.petazzoni@free-electrons.com> wrote:
>> > ? ? ? ? Hello,
>> >
>> > ? ? ? ? On Sun, 03 Oct 2010 15:22:26 +0200
>> > ? ? ? ? Lionel Landwerlin <llandwerlin@gmail.com> wrote:
>> >
>> > ? ? ? ? > Here is what I would like to us to do for the next
>> > ? ? ? ? releases :
>> > ? ? ? ? >
>> > ? ? ? ? > 1) Bump libtool package to 2.2, more and more packages
>> > ? ? ? ? require libtool
>> > ? ? ? ? > 2.2, and we're stuck to not autoreconfigure them without
>> > ? ? ? ? 2.2. This is
>> > ? ? ? ? > already creating problems to Thomas when trying to bump host
>> > ? ? ? ? > libglib/libgtk packages.
>> >
>> >
>> > ? ? ? ? ?1a) Integrate Martin Banky's proposal so that packages using
>> > ? ? ? ? libtool
>> > ? ? ? ? ? ? ?2.2 can work without the need to autoreconfigure them.
>> >
>> > ? ? ? ? > 2) Eventually integrate some patches to libtool 2.2 to be
>> > ? ? ? ? able to
>> > ? ? ? ? > cross compile autoreconfigured packages.
>> > ? ? ? ? >
>> > ? ? ? ? > 3) When the libtool 2.4 sysroot issue is sorted out, bump to
>> > ? ? ? ? libtool
>> > ? ? ? ? > 2.4 and get rid of the patches integrated in 2).
>> > ? ? ? ? >
>> > ? ? ? ? > I think 1) is mandatory for 2010.11.
>> >
>> >
>> > ? ? ? ? And 1a).
>> >
>> > ? ? ? ? So, I would suggest :
>> >
>> > ? ? ? ? ?*) Peter merges Martin Banky's set of patches on libtool
>> >
>> >
>> > ?http://lists.busybox.net/pipermail/buildroot/2010-September/037505.html
>> >
>> >
>> > ? ? ? ? ?*) Lionel, could you propose a patch that just bumps libtool
>> > ? ? ? ? to 2.2 ?
>> >
>> > ? ? ? ? Lionel, Martin, Peter, what do you think ?
>> >
>> > ? ? ? ? Thanks,
>> >
>> > ? ? ? ? Thomas
>> > ? ? ? ? --
>> > ? ? ? ? Thomas Petazzoni, Free Electrons
>> > ? ? ? ? Kernel, drivers, real-time and embedded Linux
>> > ? ? ? ? development, consulting, training and support.
>> > ? ? ? ? http://free-electrons.com
>> > ? ? ? ? _______________________________________________
>> >
>> >
>> > ? ? ? ? buildroot mailing list
>> > ? ? ? ? buildroot at busybox.net
>> > ? ? ? ? http://lists.busybox.net/mailman/listinfo/buildroot
>> >
>> >
>> > _______________________________________________
>> > buildroot mailing list
>> > buildroot at busybox.net
>> > http://lists.busybox.net/mailman/listinfo/buildroot
>>
>>
>
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
>

^ permalink raw reply

* [Buildroot] [PATCH] Bump lighttpd to 1.4.28
From: Peter Korsgaard @ 2010-10-04  7:08 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <4CA48C85.7070502@zacarias.com.ar>

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 Gustavo> Bump lighttpd to version 1.4.28.
 Gustavo> Fixes to SSL, IPv6, proxy and CGI handling.

Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox