Michael Forney
acff6469fe
libdrm: Update to 2.4.131
2026-03-14 20:52:31 -07:00
cytokine-storm666
8dccf30234
libdrm: Fix build of libdrm_intel.a
...
intel_chipset.c was removed from libdrm_intel in libdrm-2.4.115.
2024-03-11 13:32:21 -07:00
Michael Forney
bc9548d3a2
libdrm: Update to 2.4.120
2024-02-08 22:49:01 -08:00
Michael Forney
7a316d9bf4
libdrm: Update to 2.4.106
2021-06-06 03:04:01 -07:00
Michael Forney
41bded8245
libdrm: Update to 2.4.105
2021-04-17 14:22:30 -07:00
Michael Forney
01075ba722
libdrm: Update to 2.4.104
2021-01-20 03:33:11 -08:00
Michael Forney
1c0abf3397
libdrm: Update to 2.4.103
2020-11-04 15:33:23 -08:00
Michael Forney
d4297a13c8
Use -isystem to include library headers
...
This way, warnings from headers that come from another package (in
particular linux-headers) won't show up when they get included.
To make sure we still track dependencies, use -MD instead of -MMD.
2020-06-05 03:01:44 -07:00
Michael Forney
f658aebd42
libpciaccess: Add header target
2020-06-02 04:22:27 -07:00
Michael Forney
9f44ace11c
libdrm: Update to 2.4.102
2020-05-27 14:16:06 -07:00
Michael Forney
f0fb0e5177
Start to support configurable prefix
2020-05-25 21:11:21 -07:00
Michael Forney
2c2744f7b6
libdrm: Update to 2.4.101
2020-04-04 22:13:58 -07:00
Michael Forney
aea11e0e4a
Use our own linux-headers
2020-02-20 20:10:31 -08:00
Michael Forney
13876852ca
libdrm: Use header directory
2020-01-29 15:41:37 -08:00
Michael Forney
2255c43da7
Use $basedir to refer to paths relative to base source tree
2019-12-16 23:48:22 -08:00
Michael Forney
307c22e46d
libdrm: Update to 2.4.100
2019-10-17 20:40:53 -07:00
Michael Forney
1c12f85e27
libdrm: Update config.h to include sys/sysmacros.h
2019-08-06 11:55:02 -07:00
Michael Forney
edc2c4d68a
libdrm: Update to 2.4.99
2019-07-06 01:24:36 -07:00
Michael Forney
9c934f9e6e
libdrm: Update to 2.4.98
2019-04-24 00:21:18 -07:00
Michael Forney
4332740046
Rename rev to ver, and keep track of package versions as well
2019-03-19 00:14:12 -07:00
Michael Forney
fa6843f48b
libdrm: Update to 2.4.97
2019-03-04 00:15:33 -08:00
Michael Forney
69124d0baa
libdrm: Update to 2.4.96
2018-11-03 01:20:57 -07:00
Michael Forney
5712d8faf1
libdrm: Update to 2.4.94
2018-08-27 16:07:37 -07:00
Michael Forney
8e634bb2fd
libdrm: Update to 2.4.93
2018-08-11 17:54:14 -07:00
Michael Forney
b99ef6bfc5
libdrm: Check if config.video_drivers is set
2018-03-10 19:08:35 -08:00
Michael Forney
c4e9c53cdc
libdrm: Update to 2.4.91
2018-03-10 17:46:22 -08:00
Michael Forney
05df55d270
libdrm: Update to 2.4.89
2017-12-24 09:45:03 -08:00
Michael Forney
0ca1a4ab49
libdrm: Build libdrm_amdgpu.a
2017-11-14 22:47:29 -08:00
Michael Forney
75788172a7
libdrm: Update to 2.4.88
2017-11-10 10:30:37 -08:00
Michael Forney
0b23e42ac5
libdrm: Update to 2.4.87
2017-10-31 20:25:55 -07:00
Michael Forney
e0039eb59f
libdrm: Update to 2.4.85
2017-10-23 22:01:49 -07:00
Michael Forney
e5cfa84477
Move $outdir/fetch.stamp -> $dir/fetch
2017-10-23 21:43:33 -07:00
Michael Forney
0784c7279d
libdrm: Update to 2.4.84
2017-10-13 01:29:02 -07:00
Michael Forney
ba94a8513d
Rewrite ninja generation scripts in Lua
2017-09-25 19:23:06 -07:00
Michael Forney
579ebe2f9f
libdrm: Update to 2.4.83
2017-09-01 19:07:45 -07:00
Michael Forney
6fa5f88e60
Don't use -isystem
...
This way we can use -MMD to exclude system header files and still retain
dependency tracking within oasis.
2017-08-19 19:07:18 -07:00
Michael Forney
79d22c9cc2
libdrm: Update to 2.4.82
2017-08-04 00:19:39 -07:00
Michael Forney
c5c588197c
libdrm: Update to 2.4.81
2017-05-28 17:22:26 -07:00
Michael Forney
fbf3b365db
libdrm: Update to 2.4.77
2017-04-14 13:31:41 -07:00
Michael Forney
c4866bddef
libdrm: Update to 2.4.76
2017-03-29 21:01:14 -07:00
Michael Forney
2af27f239f
libdrm: Update to 2.4.75
2017-02-01 16:55:31 -08:00
Michael Forney
293f5a93b7
Move to flat package hierarchy
...
Note to self: never try to move submodules again
To migrate your existing submodules (more or less):
set -x
set -e
mkdir .git/modules/pkg
for old in */*/src ; do
new="pkg/${old#*/}"
if ! [ -f "$old/.git" ] || [ "${old%%/*}" = pkg ] ; then
continue
fi
git -C ".git/modules/$old" config core.worktree "../../../../../$new"
rmdir "$new"
mv "$old" "$new"
sed -e "s,$old,$new," "$new/.git" > "$new/.git.tmp"
mv "$new/.git.tmp" "$new/.git"
mkdir ".git/modules/${new%/src}"
mv ".git/modules/$old" ".git/modules/$new"
rm "${old%/src}"/*.ninja
mv "${old%/src}"/*.tar.{gz,xz,bz2} "${new%/src}/"
rmdir "${old%/src}" || true
done
sed -e 's,^\[submodule "[^/]*/,[submodule "pkg/,' .git/config > .git/config.tmp
mv .git/config.tmp .git/config
2016-12-13 23:10:30 -08:00