Eelco Dolstra
da4fb573a7
* Added ATerm 2.8. Also removed some old versions and patches that
...
were no longer in use.
* A patch for compiling the ATerm library with GCC 4.3. Without it,
the code for resizing ATerm tables gets stuck in an infinite loop
(http://bugzilla.sen.cwi.nl:8080/show_bug.cgi?id=841 ). The problem
is in this bit of code in hash.c, which tries to dynamically figure
out the maximum signed integer:
long try_long_max;
long long_max;
long delta;
try_long_max = 1;
do {
long_max = try_long_max;
try_long_max = long_max * 2;
} while (try_long_max > 0);
At -O2, GCC 4.3 determines that 1 * 2 * 2 * ... can never be <= 0,
and so it optimises this into a 1-instruction infinite loop:
0x0805a782 <keyPut+1282>: jmp 0x805a782 <keyPut+1282>
Quite beautiful really. ;-)
The fix is to use the LONG_MAX macro instead.
svn path=/nixpkgs/branches/stdenv-updates/; revision=13888
2009-01-27 17:46:07 +00:00
Eelco Dolstra
76efe57d1b
* GCC mirrors.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=13878
2009-01-27 12:48:32 +00:00
Eelco Dolstra
cfda61c7c6
* GCC 4.3.3, just in time too :-)
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=13877
2009-01-27 11:53:35 +00:00
Eelco Dolstra
a5b607ef4f
* Bash 3.2.48.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=13876
2009-01-27 11:03:41 +00:00
Eelco Dolstra
88c502217b
* coreutils 7.0 already has the backwards compatibility patch for old
...
Linux kernels.
svn path=/nixpkgs/branches/stdenv-updates/; revision=13875
2009-01-27 10:51:54 +00:00
Ludovic Courtès
6927ec314e
GNU Coreutils 7.0.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=13829
2009-01-24 19:05:35 +00:00
Eelco Dolstra
c91168a600
* Bootstrap tools: build on x86_64-linux.
...
* Removed Perl from the bootstrap tools.
svn path=/nixpkgs/branches/stdenv-updates/; revision=13827
2009-01-23 15:09:56 +00:00
Eelco Dolstra
4274b92cda
* Remove unused versions of tar.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=13826
2009-01-23 10:55:41 +00:00
Eelco Dolstra
3709e0e666
* GNU sed 4.1.2: obsolete.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=13825
2009-01-23 10:50:53 +00:00
Eelco Dolstra
d73c2175e0
* lzma 4.32.7.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=13818
2009-01-21 16:07:31 +00:00
Eelco Dolstra
581af921ea
* Latest OpenSSL, Curl.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=13817
2009-01-21 14:11:22 +00:00
Eelco Dolstra
fce6b5a233
* Use GCC 4.3.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=13811
2009-01-19 20:35:03 +00:00
Eelco Dolstra
63246c648f
* Turn on Make indentation.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=13810
2009-01-19 20:31:02 +00:00
Eelco Dolstra
808bf6d34a
* Make the nested output patch in GNU Make runtime configurable (by
...
setting the NIX_INDENT_MAKE variable; disabled by default) so we
don't need a separate gnumakeNix package.
svn path=/nixpkgs/branches/stdenv-updates/; revision=13807
2009-01-19 18:49:58 +00:00
Eelco Dolstra
72822ebbc0
* Put Glibc at the very end of the GCC header search path. This
...
should fix previous problems with GCC 4.3 in compiling C++ code
where e.g. <cassert> has to appear before <assert.h> in the search
path due to the former's use of #include_next. The previous "fix"
broke compilation of C code by placing the C++ include directory
before the Glibc include directory (which would barf on
e.g. <complex.h>, which appears in both).
svn path=/nixpkgs/branches/stdenv-updates/; revision=13806
2009-01-19 16:22:27 +00:00
Eelco Dolstra
f7ad184041
* ncurses: don't do make check because it doesn't have one.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=13804
2009-01-19 11:01:20 +00:00
Eelco Dolstra
d8f6e06ae4
* Latest gmp, mpfr libraries.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=13803
2009-01-19 10:45:46 +00:00
Eelco Dolstra
88ba45c499
svn path=/nixpkgs/branches/stdenv-updates/; revision=13791
2009-01-16 17:13:35 +00:00
Eelco Dolstra
60ac36f9c5
* Ignore symlinks.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=13790
2009-01-16 17:13:14 +00:00
Eelco Dolstra
2f88c471d4
svn path=/nixpkgs/branches/stdenv-updates/; revision=13789
2009-01-16 17:12:55 +00:00
Eelco Dolstra
1134464c49
* Start of the new, simplified stdenv-linux bootstrap binaries.
...
Instead of using a mishmash of statically linked and dietlibc
programs (which often have problems on various platforms), we just
use normal, dynamically linked binaries, and use some patchelf magic
to rewrite them so that they can find Glibc. Also include G++ and
Perl, since there are some builds in the bootstrap that need them.
svn path=/nixpkgs/branches/stdenv-updates/; revision=13788
2009-01-16 17:10:29 +00:00
Eelco Dolstra
4998f96209
* GNU tar 1.21.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=13787
2009-01-16 16:11:22 +00:00
Eelco Dolstra
c1579d2e78
* stdenv branch: synced with the trunk.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=13785
2009-01-16 10:59:27 +00:00
Eelco Dolstra
4eedf7dae8
* Install the arch-specific headers for Linux <= 2.6.27 properly
...
again.
svn path=/nixpkgs/trunk/; revision=13783
2009-01-16 10:28:18 +00:00
Eelco Dolstra
8236fa02be
svn path=/nixpkgs/trunk/; revision=13782
2009-01-15 20:52:33 +00:00
Eelco Dolstra
89364df3e9
svn path=/nixpkgs/trunk/; revision=13781
2009-01-15 16:22:01 +00:00
Eelco Dolstra
7df6cdf6da
* Doh.
...
svn path=/nixpkgs/trunk/; revision=13780
2009-01-15 15:59:59 +00:00
Eelco Dolstra
f89876974e
* Use the generic kernel builder.
...
svn path=/nixpkgs/trunk/; revision=13779
2009-01-15 15:54:24 +00:00
Eelco Dolstra
a0670a904e
* Reduce duplication between kernel expressions.
...
svn path=/nixpkgs/trunk/; revision=13778
2009-01-15 15:40:23 +00:00
Eelco Dolstra
2188660f2d
* CONFIG_LSF should be set on i686, otherwise ext4 can't even mount
...
filesystems created by mkfs.ext4 with default options.
svn path=/nixpkgs/trunk/; revision=13777
2009-01-15 15:11:14 +00:00
Sander van der Burg
2d0881a5ff
Updated Apache Tomcat to 6.0.18
...
svn path=/nixpkgs/trunk/; revision=13776
2009-01-15 15:06:20 +00:00
Eelco Dolstra
739ef5e82a
* Various hacks needed to get the NVIDIA driver to build on
...
Linux 2.6.28. In particular the arch-specific headers
are in a different place now. (I'd like to do "make
headers_install", but it doesn't install all the headers
that are needed to build external kernel modules. What
a mess.)
* Add Linux 2.6.28 to the channel.
svn path=/nixpkgs/trunk/; revision=13775
2009-01-15 15:00:30 +00:00
Eelco Dolstra
eeb63a3ed4
* Latest splashutils.
...
svn path=/nixpkgs/trunk/; revision=13774
2009-01-15 14:58:50 +00:00
Eelco Dolstra
164e1a7ff2
* Latest Intel 3945/4965 wireless firmwares. Actually there are newer
...
versions, but they're apparently for Linux >= 2.6.29 (e.g. they
provide iwlwifi-3945-2.ucode instead of iwlwifi-3945-1.ucode).
svn path=/nixpkgs/trunk/; revision=13771
2009-01-15 10:36:21 +00:00
Marc Weber
b92b8242fd
bazaar version bump to 1.10 (by Jan Kroeze)
...
svn path=/nixpkgs/trunk/; revision=13768
2009-01-14 16:26:53 +00:00
Marc Weber
e6ab06e3fa
python wrapper: install pydoc as well
...
svn path=/nixpkgs/trunk/; revision=13767
2009-01-14 16:23:17 +00:00
Marc Weber
91f9300897
added dvdauthor
...
svn path=/nixpkgs/trunk/; revision=13766
2009-01-14 16:23:06 +00:00
Ludovic Courtès
3a1e0aa114
Build Teeworlds.
...
svn path=/nixpkgs/trunk/; revision=13765
2009-01-14 00:24:02 +00:00
Ludovic Courtès
474ff7c05c
Teeworlds 0.5.0.
...
svn path=/nixpkgs/trunk/; revision=13764
2009-01-14 00:23:11 +00:00
Ludovic Courtès
dc28c92e63
Teeworlds: install all the executables (client, server, etc.).
...
svn path=/nixpkgs/trunk/; revision=13763
2009-01-13 20:36:09 +00:00
Ludovic Courtès
e71dbdbb83
Add Teeworlds, a Worms-like game, if you see what I mean.
...
svn path=/nixpkgs/trunk/; revision=13762
2009-01-13 19:44:11 +00:00
Andres Löh
4d5c788b81
Removed broken quotes.
...
svn path=/nixpkgs/trunk/; revision=13761
2009-01-13 16:36:47 +00:00
Eelco Dolstra
20cb460c67
* Updated DBIx::Class.
...
svn path=/nixpkgs/trunk/; revision=13760
2009-01-13 15:56:55 +00:00
Eelco Dolstra
1a3a6835c2
* KVM 82.
...
* Kernel headers for Linux 2.6.28.
svn path=/nixpkgs/trunk/; revision=13755
2009-01-13 12:40:58 +00:00
Eelco Dolstra
6c0b144efc
* Linux 2.6.27.10.
...
svn path=/nixpkgs/trunk/; revision=13752
2009-01-13 09:05:05 +00:00
Peter Simons
6fb297513a
Committing Lluís Batlle's submissions from mailing list posting
...
<45219fb00901110456i6f21db35tbd1894eaea2146ff@mail.gmail.com>:
* nixpkgs-ccrypt-1.7-new.patch
* nixpkgs-cmake-add-ccmake.patch
* nixpkgs-cpufrequtils-005-new.patch
* nixpkgs-dwm-5.1-fix.patch
* nixpkgs-freeimage-3.11.0-new.patch
* nixpkgs-proxychains-3.1-new.patch
* nixpkgs-psi-to-0.12.patch
* nixpkgs-skype-to-2.0.0.72.patch
* nixpkgs-truecrypt-6.1a-fix.patch
* nixpkgs-vxl-1.11.0-new.patch
* nixpkgs-xkb-popular-esperanto-symbols.patch
* nixpkgs-xorg-via-video-fix.patch
svn path=/nixpkgs/trunk/; revision=13751
2009-01-12 21:12:07 +00:00
Ludovic Courtès
4080ba42c5
Build GnuPG 2.x.
...
svn path=/nixpkgs/trunk/; revision=13750
2009-01-12 20:23:10 +00:00
Ludovic Courtès
abfb6c220d
GnuPG 2.0.10.
...
svn path=/nixpkgs/trunk/; revision=13749
2009-01-12 20:20:18 +00:00
Ludovic Courtès
0d579bfcda
Libgpg-error 1.7.
...
svn path=/nixpkgs/trunk/; revision=13748
2009-01-12 19:13:34 +00:00
Ludovic Courtès
c50a4146c6
Libassuan 1.0.5.
...
svn path=/nixpkgs/trunk/; revision=13747
2009-01-12 19:06:35 +00:00