SPECS (DEVEL): crosssparc64-uClibc.spec (NEW) - NEW, based on uCli...
sparky
sparky at pld-linux.org
Fri Oct 27 21:54:32 CEST 2006
Author: sparky Date: Fri Oct 27 19:54:32 2006 GMT
Module: SPECS Tag: DEVEL
---- Log message:
- NEW, based on uClibc.spec at DEVEL
- shared library fails to link
---- Files affected:
SPECS:
crosssparc64-uClibc.spec (NONE -> 1.1.2.1) (NEW)
---- Diffs:
================================================================
Index: SPECS/crosssparc64-uClibc.spec
diff -u /dev/null SPECS/crosssparc64-uClibc.spec:1.1.2.1
--- /dev/null Fri Oct 27 21:54:32 2006
+++ SPECS/crosssparc64-uClibc.spec Fri Oct 27 21:54:27 2006
@@ -0,0 +1,686 @@
+# $Revision$, $Date$
+%define _src_name uClibc
+Summary: C library optimized for size
+Summary(pl): Biblioteka C zoptymalizowana na rozmiar
+Name: crosssparc64-uClibc
+Version: 0.9.29
+%define _snap 20061027
+Release: 0.%{_snap}.0.1
+Epoch: 0
+License: LGPL
+Group: Libraries
+Source0: http://www.uclibc.org/downloads/snapshots/%{_src_name}-%{_snap}.tar.bz2
+# Source0-md5: 024126ec6501f9fda021fb6513e98120
+Patch0: %{_src_name}-newsoname.patch
+Patch1: %{_src_name}-alpha.patch
+Patch2: %{_src_name}-toolchain-wrapper.patch
+Patch3: %{_src_name}-targetcpu.patch
+Patch4: %{_src_name}-sparc.patch
+Patch5: %{_src_name}-ppc-ioctl-errno.patch
+Patch6: %{_src_name}-syscallerror.patch
+Patch7: %{_src_name}-sparc64_fixes.patch
+URL: http://uclibc.org/
+#BuildRequires: linux-libc-headers for sparc64
+BuildRequires: crosssparc64-gcc >= 3.0
+BuildRequires: sed >= 4.0
+BuildRequires: which
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%define TARGET_ARCH sparc
+%define TARGET_CPU sparc64
+
+%define _noautostrip .*/lib.*\\.a
+%define _target_cflags -fno-strict-aliasing -fwrapv -mcpu=ultrasparc -m64 -Os
+
+# FIXME: build fails if CC contains spaces
+%undefine with_ccache
+
+%description
+Small libc for building embedded applications.
+
+%description -l pl
+Mała libc do budowania aplikacji wbudowanych.
+
+%package devel
+Summary: Development files for uClibc
+Summary(pl): Pliki dla programistów uClibc
+Group: Development/Libraries
+Requires: %{name} = %{epoch}:%{version}-%{release}
+Requires: crosssparc64-binutils
+#Requires: linux-libc-headers
+#Requires: crosssparc64-linux-libc-headers ?
+%requires_eq crosssparc64-gcc
+
+%description devel
+Small libc for building embedded applications.
+
+%description devel -l pl
+Mała libc do budowania aplikacji wbudowanych.
+
+%package static
+Summary: Static uClibc libraries
+Summary(pl): Biblioteki statyczne uClibc
+Group: Development/Libraries
+Requires: %{name}-devel = %{epoch}:%{version}-%{release}
+#Provides: libc-static
+
+%description static
+Static uClibc libraries.
+
+%description static -l pl
+Biblioteki statyczne uClibc.
+
+%prep
+%setup -q -n %{_src_name}
+%patch0 -p1
+%patch1 -p1
+%patch2 -p1
+%patch3 -p1
+%patch4 -p1
+%patch5 -p1
+#%%patch6 -p1 # what should be done ?
+%patch7 -p1
+
+find -name .svn | xargs rm -rf
+
+sed -i -e 's/default TARGET_i386/default TARGET_sparc/' \
+ extra/Configs/Config.in
+sed -i -e 's/default CONFIG_SPARC_V8/default CONFIG_SPARC_V9B/' \
+ extra/Configs/Config.sparc
+
+sed -i -e '/HAS_NO_THREADS/d' extra/Configs/Config.alpha
+
+%ifarch sparc sparc64 sparcv9
+ln -sf /usr/include/asm-sparc include/asm-sparc
+ln -sf /usr/include/asm-sparc64 include/asm-sparc64
+%{__perl} -pi -e 's/^(rm.*asm)\*/$1/' extra/scripts/fix_includes.sh
+%endif
+
+%build
+%{__make} defconfig \
+ TARGET_ARCH="%{TARGET_ARCH}" \
+ TARGET_CPU="%{TARGET_CPU}" \
+ KERNEL_SOURCE=%{_prefix} \
+ HOSTCC=%{__cc} \
+ HOSTCFLAGS="%{rpmcflags} %{rpmldflags}" \
+ OPTIMIZATION="%{_target_cflags}" \
+ CROSS="%{TARGET_CPU}-pld-linux-"
+
+# disable shared library, for now (fails to link)
+sed 's/HAVE_SHARED=y/# HAVE_SHARED is not set/' -i .config
+
+mv -f .config .config.tmp
+sed -e 's/^.*UCLIBC_HAS_IPV6.*$/UCLIBC_HAS_IPV6=y/;
+ s/^.*DO_C99_MATH.*$/DO_C99_MATH=y/;
+ s/^.*UCLIBC_HAS_RPC.*/UCLIBC_HAS_RPC=y\n# UCLIBC_HAS_FULL_RPC is not set\n# UCLIBC_HAS_REENTRANT_RPC is not set/;
+ s/^.*UCLIBC_HAS_SYS_SIGLIST.*$/UCLIBC_HAS_SYS_SIGLIST=y/;
+ s,^SHARED_LIB_LOADER_PREFIX=.*,SHARED_LIB_LOADER_PREFIX="$(RUNTIME_PREFIX)/lib",
+ s/^.*UCLIBC_HAS_PRINTF_M_SPEC.*$/UCLIBC_HAS_PRINTF_M_SPEC=y/;
+ ' .config.tmp > .config
+%{?debug:echo 'DODEBUG=y' >> .config}
+%{?debug:echo 'SUPPORT_LD_DEBUG=y' >> .config}
+
+# force regeneration after .config changes
+rm -f include/bits/uClibc_config.h
+
+# note: defconfig and all must be run in separate make process because of macros
+%{__make} \
+ TARGET_ARCH="%{TARGET_ARCH}" \
+ TARGET_CPU="%{TARGET_CPU}" \
+ KERNEL_SOURCE=%{_prefix} \
+ HOSTCC=%{__cc} \
+ HOSTCFLAGS="%{rpmcflags} %{rpmldflags}" \
+ OPTIMIZATION="%{_target_cflags}" \
+ CROSS="%{TARGET_CPU}-pld-linux-" V=1
+
+%install
+rm -rf $RPM_BUILD_ROOT
+install -d $RPM_BUILD_ROOT%{_bindir}
+
+%{__make} install \
+ NATIVE_CC=%{__cc} \
+ NATIVE_CFLAGS="%{rpmcflags} %{rpmldflags}" \
+ TARGET_ARCH="%{TARGET_ARCH}" \
+ TARGET_CPU="%{TARGET_CPU}" \
+ CC="%{__cc}" \
+ CROSS="%{TARGET_CPU}-pld-linux-" \
+ PREFIX=$RPM_BUILD_ROOT
+
+# these links are *needed* (by stuff in bin/)
+for f in $RPM_BUILD_ROOT/usr/%{TARGET_CPU}-linux-uclibc/bin/*; do
+ mv -f $f $RPM_BUILD_ROOT%{_bindir}
+ ln -sf ../../bin/`basename $f` $f
+done
+
+for f in c++ cc g++ gcc ld; do
+ ln -sf /usr/bin/%{TARGET_CPU}-uclibc-$f \
+ $RPM_BUILD_ROOT/usr/%{TARGET_CPU}-linux-uclibc/usr/bin/$f
+done
+
+rm -rf $RPM_BUILD_ROOT/usr/%{TARGET_CPU}-linux-uclibc/usr/include/{linux,asm*}
+ln -sf /usr/include/asm $RPM_BUILD_ROOT/usr/%{TARGET_CPU}-linux-uclibc/usr/include/asm
+%ifarch %{x8664}
+ ln -sf /usr/include/asm-%{TARGET_ARCH} $RPM_BUILD_ROOT/usr/%{TARGET_CPU}-linux-uclibc/usr/include/asm-%{TARGET_ARCH}
+%endif
+%ifarch sparc sparc64 sparcv9
+ln -sf /usr/include/asm-sparc $RPM_BUILD_ROOT/usr/%{TARGET_CPU}-linux-uclibc/usr/include/asm-sparc
+ln -sf /usr/include/asm-sparc64 $RPM_BUILD_ROOT/usr/%{TARGET_CPU}-linux-uclibc/usr/include/asm-sparc64
+%endif
+ln -sf /usr/include/linux $RPM_BUILD_ROOT/usr/%{TARGET_CPU}-linux-uclibc/usr/include/linux
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc Changelog* DEDICATION.mjn3 MAINTAINERS README TODO docs/threads.txt
+%dir %{_prefix}/%{TARGET_CPU}-linux-uclibc
+#%dir %{_prefix}/%{TARGET_CPU}-linux-uclibc/lib
+#%attr(755,root,root) %{_prefix}/%{TARGET_CPU}-linux-uclibc/lib/*.so*
+
+%files devel
+%defattr(644,root,root,755)
+%doc docs/uclibc.org/*
+%attr(755,root,root) %{_bindir}/%{TARGET_CPU}-uclibc-*
+%{_prefix}/%{TARGET_CPU}-linux-uclibc/usr/lib/*.o
+%dir %{_prefix}/%{TARGET_CPU}-linux-uclibc/usr
+%dir %{_prefix}/%{TARGET_CPU}-linux-uclibc/usr/bin
+%attr(755,root,root) %{_prefix}/%{TARGET_CPU}-linux-uclibc/usr/bin/*
+%dir %{_prefix}/%{TARGET_CPU}-linux-uclibc/usr/lib
+#%{_prefix}/%{TARGET_CPU}-linux-uclibc/usr/lib/uclibc_nonshared.a
+#%attr(755,root,root) %{_prefix}/%{TARGET_CPU}-linux-uclibc/usr/lib/*.so
+%{_prefix}/%{TARGET_CPU}-linux-uclibc/usr/include
+
+%files static
+%defattr(644,root,root,755)
+%{_prefix}/%{TARGET_CPU}-linux-uclibc/usr/lib/lib*.a
+
+%define date %(echo `LC_ALL="C" date +"%a %b %d %Y"`)
+%changelog
+* %{date} PLD Team <feedback at pld-linux.org>
+All persons listed below can be reached at <cvs_login>@pld-linux.org
+
+$Log$
+Revision 1.1.2.1 2006/10/27 19:54:27 sparky
+- NEW, based on uClibc.spec at DEVEL
+- shared library fails to link
+
+Revision 1.121.2.13 2006/10/17 14:14:17 glen
+- disable ccache
+
+Revision 1.121.2.12 2006/07/17 16:06:53 sparky
+- up to 20060717, now we know it will be 0.9.29, so bump version
+
+Revision 1.121.2.11 2006/07/12 14:09:12 sparky
+- updated to 20060712; builds and busybox linked with it works (on x86_64)
+
+Revision 1.121.2.10 2006/06/20 09:56:26 pluto
+- ldso enabled for x86-64.
+
+Revision 1.121.2.9 2006/04/28 21:43:54 sparky
+- snapshot updated
+
+Revision 1.121.2.8 2006/03/10 11:18:02 sparky
+- up to 20060310 snap; builds no ppc, again
+
+Revision 1.121.2.7 2006/02/03 23:01:44 sparky
+- updated to 20060203 snap
+
+Revision 1.121.2.6 2006/01/05 23:33:50 sparky
+- amd64 is not yet supported
+
+Revision 1.121.2.5 2006/01/04 19:21:29 sparky
+- statically linked apps finally work on ppc ! hooray !
+
+Revision 1.121.2.4 2006/01/04 18:41:50 sparky
+- package uclibc_nonshared.a
+- builds on ppc, but toolchain needs to be fixed - tries to link crt0.o
+
+Revision 1.121.2.3 2006/01/04 17:53:42 sparky
+- builds on athlon, amd64 don't, ppc not checked yet
+
+Revision 1.121.2.2 2006/01/04 11:17:46 glen
+- english
+
+Revision 1.121.2.1 2006/01/04 01:02:13 sparky
+- people from uclibc said it should work on ppc with current kernel,
+ last versions makes statically linked application segfault at exit time
+- patches needs update: Makefile ideology has changed totally
+- everything i've done today, i'm so weak :(
+
+Revision 1.121 2005/10/18 14:37:41 jpc
+- add UCLIBC_HAS_PRINTF_M_SPEC to config (needed by busybox, will
+ print 'm' in place of error messages if not set)
+
+Revision 1.120 2005/09/29 12:00:11 pluto
+- typos.
+
+Revision 1.119 2005/09/24 00:48:10 pluto
+- ppc patchset added (from busybox bts), release 1.1.
+
+Revision 1.118 2005/09/04 21:58:37 arekm
+- rel 1
+
+Revision 1.117 2005/09/04 18:32:38 arekm
+- more predictable rule
+
+Revision 1.116 2005/09/04 18:25:13 arekm
+- rel 0.2; make asm-target_arch symlink, too (when needed); fixes amd64
+
+Revision 1.115 2005/08/28 09:23:31 qboosh
+- disable shared on x86_64 (not ready yet), added x86_64 patch; builds now
+- more docs (and base docs moved to base)
+
+Revision 1.114 2005/08/28 08:33:15 qboosh
+- updated targetcpu,toolchain-wrapper patches - now dynamic linking works again
+
+Revision 1.113 2005/08/28 07:54:20 qboosh
+- fix ldso prefix (use runtime, not devel)
+
+Revision 1.112 2005/08/28 07:25:22 qboosh
+- updated to 0.9.28 (x86_64 port introduced)
+- updated newsoname,sparc patches, removed obsolete gcc4 patch
+
+Revision 1.111 2005/02/16 23:19:22 tommat
+- be more compatible with our glibc, allow to build for example ash
+
+Revision 1.110 2005/02/05 20:12:43 pluto
+- gcc4 fixes.
+
+Revision 1.109 2005/01/16 16:01:54 qboosh
+- release 1
+
+Revision 1.108 2005/01/16 11:32:28 qboosh
+- added sparc patch (now builds again)
+- removed asmflags patch (no longer needed)
+
+Revision 1.107 2005/01/16 11:06:26 qboosh
+- why no libpthread on alpha? it builds and is needed for librt
+
+Revision 1.106 2005/01/15 22:39:19 qboosh
+- updated to 0.9.27
+- removed obsolete use-kernel-headers,sparc,linux2.6,gcc34,libgcc,return,sparc-ldso,g patches
+- updated alpha,toolchain-wrapper,O_DIRECT patches
+
+Revision 1.105 2004/10/10 11:38:02 havner
+- rel 11 for gcc 3.3.5
+
+Revision 1.104 2004/06/27 14:39:44 qboosh
+- added O_DIRECT patch (sparc+ppc), release 10
+
+Revision 1.103 2004/06/20 19:42:03 qboosh
+- fixed asm includes with current llh on sparc*; release 9
+
+Revision 1.102 2004/06/20 16:54:47 qboosh
+- added g patch (avoid -ggdb build breakage); release 8
+
+Revision 1.101 2004/06/19 19:48:34 averne
+- rel7 for Ac
+
+Revision 1.100 2004/05/30 11:21:42 pluto
+- ops, cleanup.
+
+Revision 1.99 2004/05/30 11:20:52 pluto
+- invalid symlinks fixed.
+
+Revision 1.98 2004/05/27 21:10:45 qboosh
+- added sparc-ldso patch, release 6
+
+Revision 1.97 2004/05/26 16:25:01 qboosh
+- debug support at .config level
+
+Revision 1.96 2004/05/25 17:21:08 qboosh
+- added return patch (one more fix needed on sparc); release 5
+
+Revision 1.95 2004/05/05 21:31:58 qboosh
+- added libgcc patch (fixes __muldi3 issue on sparc); release 4
+
+Revision 1.94 2004/05/05 09:37:30 pluto
+- pentiumX support.
+
+Revision 1.93 2004/05/05 09:35:27 pluto
+- fixed %%files.
+- removed cvs stuff.
+
+Revision 1.92 2004/04/29 07:22:31 pluto
+- gcc 3.4 fixes
+
+Revision 1.91 2004/04/25 12:23:14 qboosh
+- release 3: more fixes in alpha patch
+
+Revision 1.90 2004/03/16 14:52:20 qboosh
+- gcc 2.95 won't compile i386/crt*.S without nasty workarounds - BR gcc 3
+
+Revision 1.89 2004/03/16 14:25:13 qboosh
+- \n on right side of s requires sed 4.0
+
+Revision 1.88 2004/03/16 13:40:39 qboosh
+- cleanups
+
+Revision 1.87 2004/03/03 21:15:11 andree
+- added pentium3/i386 to TARGET_ARCH
+
+Revision 1.86 2004/02/19 13:25:38 qboosh
+- release 2: rebuild for gcc 3.3.3, strict deps
+
+Revision 1.85 2004/02/09 13:45:57 pluto
+- s/glibc-kernel-headers/linux-libc-headers/
+
+Revision 1.84 2004/02/03 19:27:25 qboosh
+- merged 0.9.26 from DEVEL; release 1
+
+Revision 1.83.2.7 2004/02/01 00:43:45 qboosh
+- release 0.2 (maybe 1 and merge?)
+
+Revision 1.83.2.6 2004/01/31 23:24:41 qboosh
+- enable shared lib on sparc (builds with sparc patch)
+
+Revision 1.83.2.5 2004/01/31 23:19:49 qboosh
+- added linux2.6 patch (for 2.6-based (g-)k-h); busybox builds now
+
+Revision 1.83.2.4 2004/01/31 20:28:16 qboosh
+- fixed config changes
+- removed unneeded part of alpha patch, fixed files on alpha
+- added ExclusiveArch (amd64 is not supported yet)
+
+Revision 1.83.2.3 2004/01/31 18:33:13 qboosh
+- revised patches:
+ - lfs,no_bogus_gai probably obsolete
+ - awk,gmon obsolete
+ - asmflags is back (updated) - needed on i686
+ - alpha,sparc are back (just apply cleanly!)
+ - targetcpu is back (updated), link hacking no longer needed
+- fixed config stuff (was heavily broken, totally broken on !x86)
+- changed ugly dynamic linker path in toolchain-wrapper patch to more sane
+
+Revision 1.83.2.2 2004/01/25 19:45:45 arekm
+- now works, wow
+
+Revision 1.83.2.1 2004/01/25 16:47:57 arekm
+- update to 0.9.26 (builds but doesn't work; weird)
+
+Revision 1.83 2004/01/24 23:26:40 arekm
+- use external glibc-kernel-headers
+
+Revision 1.82 2003/11/23 20:47:25 qboosh
+- added sparc patch, fixed file lists for sparc
+
+Revision 1.81 2003/11/23 19:42:53 qboosh
+- added alpha and gmon patches, fixed files on alpha (no shared yet)
+- copy non-existing sparc config from ppc
+- why g+s for libm??? killed
+- release 4
+
+Revision 1.80 2003/10/25 20:21:12 arekm
+- rel 3
+
+Revision 1.79 2003/09/25 09:08:33 arekm
+- fix what areq broke (always use /usr/include/{asm,linux}); rel 2
+
+Revision 1.78 2003/09/13 13:59:29 areq
+- 0.9.21
+
+Revision 1.77 2003/09/11 17:23:19 mmazur
+- uClibc rel 2; libtool rel 9
+- fuck fuck fuck shit fuck fuck fuck... ppc builder was broken all the time
+ and I hadn't noticed. FUCK
+
+Revision 1.76 2003/09/03 13:29:24 mmazur
+- killed _with_lfs bcond cause this is ac
+
+Revision 1.75 2003/08/26 18:19:12 malekith
+- yet another try on alpha
+
+Revision 1.74 2003/08/26 18:15:59 malekith
+- second try on alpha
+
+Revision 1.73 2003/08/26 18:13:36 malekith
+- first try on alpha
+
+Revision 1.72 2003/08/15 20:31:26 arekm
+- rebuild
+
+Revision 1.71 2003/08/15 19:47:12 arekm
+- use headers from /usr/include not from /usr/src/linux
+
+Revision 1.70 2003/08/06 18:53:24 arekm
+- change soname for libpthread.so; rel 0.2
+
+Revision 1.69 2003/07/24 15:22:27 qboosh
+- added asmflags, per-arch optimizations are back
+
+Revision 1.68 2003/07/15 17:49:16 areq
+- 0.9.20
+- remove {rpmcflags} from OPTIMIZATION, build with -Os
+
+Revision 1.67 2003/06/27 13:10:48 mmazur
+- mass commit; now req: name = epoch:version
+
+Revision 1.66 2003/05/28 13:02:24 malekith
+- massive attack: source-md5
+
+Revision 1.65 2003/05/25 06:27:30 misi3k
+- massive attack s/pld.org.pl/pld-linux.org/
+
+Revision 1.64 2003/05/22 21:45:52 malekith
+- release 0.4; %requires_eq gcc for devel
+
+Revision 1.63 2003/05/22 21:13:42 malekith
+- enable RPC
+- release 0.3
+
+Revision 1.62 2003/04/06 18:17:21 malekith
+- added awk patch (now it builds fine for me)
+- release 0.2
+
+Revision 1.61 2003/04/02 22:44:56 qboosh
+- started update to 0.9.19
+- updated targetcpu patch, removed obsolete no_hardcoded_gcc, __thread patches
+ and unneeded noinstalled patch
+
+Revision 1.60 2003/03/27 21:53:05 malekith
+- fix build on uClibc; release 0.2
+
+Revision 1.59 2002/11/03 21:10:36 wolf
+- CC=.. is also needed
+
+Revision 1.58 2002/08/25 16:23:57 qboosh
+- commented out lfs and no_bogus_gai patches - need check/update
+- build different packages for i[356]86 (with a little help of targetcpu patch)
+- noinstalled patch - don't require /usr/*-uclibc-linux/lib/crt0.o to build
+- release 0.1 - please check commented patches
+
+Revision 1.57 2002/07/16 21:51:53 kloczek
+- start update to 0.9.12,
+- removed outdated Makefile patch,
+- enable shadow support.
+
+Revision 1.56 2002/04/25 08:52:09 kloczek
+- release 6: added Provides: libc-static in static subpackage.
+
+Revision 1.55 2002/03/26 15:51:17 malekith
+- ppc thinko fixed
+
+Revision 1.54 2002/03/26 01:03:33 speedy
+- sparc doesn't have ld.so
+
+Revision 1.53 2002/03/18 18:34:32 malekith
+- workaround for uClibc thinking ppc is called powerpc :)
+
+Revision 1.52 2002/03/18 18:12:33 malekith
+- br: which
+
+Revision 1.51 2002/03/18 09:34:41 malekith
+- rel 5
+- updates lfs patch again
+
+Revision 1.50 2002/03/15 14:40:22 malekith
+- new version of lfs patch (always export {,f}open64 syscalls)
+- added no_hardcoded_gcc patch -- allows build with itself
+- rel 4
+
+Revision 1.49 2002/03/08 15:13:19 malekith
+- DO_C99_MATH = true (rint for iproute2)
+- rel 3, stbr
+
+Revision 1.48 2002/03/04 11:03:47 misiek
+- now it builds on powerpc
+
+Revision 1.47 2002/02/24 00:21:47 filon
+- fixed inserted rubbish
+
+Revision 1.46 2002/02/23 23:11:26 filon
+- fix install section, tell make what TARGET_ARCH is
+- release 2
+
+Revision 1.45 2002/02/22 23:29:49 kloczek
+- removed all Group fields translations (oure rpm now can handle translating
+ Group field using gettext).
+
+Revision 1.44 2002/02/05 18:14:40 kloczek
+- typo.
+
+Revision 1.43 2002/02/05 15:39:31 kloczek
+- fixes for sparc: shared libraries are now builded but ld.so still not :(
+
+Revision 1.42 2002/02/05 09:34:18 kloczek
+- updated to 0.9.9 (new feactures and bugfixes),
+- removed obsoleted setfsuid patch.
+
+Revision 1.41 2002/02/02 03:22:37 kloczek
+- release 5.
+
+Revision 1.40 2002/02/02 02:20:29 misiek
+- missing defattr for static subpackage
+
+Revision 1.39 2002/01/23 16:14:53 malekith
+- no_bogus_gai patch added (fixes openssh compilation)
+
+Revision 1.38 2002/01/22 17:55:49 malekith
+- more lfs fixes (new version of patch), finally builds
+
+Revision 1.37 2002/01/22 14:26:52 malekith
+- fixed lfs bcond
+
+Revision 1.36 2002/01/22 12:49:59 malekith
+- rel 4
+- with lfs bcond added
+- added patch to workaround uclibc bugs in lfs
+
+Revision 1.35 2002/01/21 17:26:53 malekith
+- rel 3
+- added -Os to cflags
+- added links in /usr/*-uclibc/usr/bin
+
+Revision 1.34 2002/01/18 02:15:14 kloczek
+- perl -pi -e "s/pld-list\@pld.org.pl/feedback\@pld.org.pl/"
+
+Revision 1.33 2002/01/05 16:51:51 kloczek
+- release 2.
+
+Revision 1.32 2002/01/04 16:40:38 malekith
+- don't create /usr/bin/bin
+
+Revision 1.31 2002/01/04 16:31:20 malekith
+- s/perl/sed
+- include .html docs
+
+Revision 1.30 2002/01/03 21:51:31 kloczek
+- enable ipv6 support.
+
+Revision 1.29 2002/01/03 21:34:45 kloczek
<<Diff was trimmed, longer than 597 lines>>
More information about the pld-cvs-commit
mailing list