diff options
author | dholland <dholland> | 2012-05-23 05:08:00 +0000 |
---|---|---|
committer | dholland <dholland> | 2012-05-23 05:08:00 +0000 |
commit | d0ead8b5c50b4937629a553b2c2ddc568c8cb322 (patch) | |
tree | 2edbad7d83d03073191ee99c0850084348c6b316 /emulators | |
parent | 3dbe28830246d70ee72e71cc09b38ded7a953ef1 (diff) | |
download | pkgsrc-d0ead8b5c50b4937629a553b2c2ddc568c8cb322.tar.gz |
Treat Linux 3.x like Linux 2.6 for PCI handling purposes.
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/bochs/distinfo | 3 | ||||
-rw-r--r-- | emulators/bochs/patches/patch-configure | 17 |
2 files changed, 19 insertions, 1 deletions
diff --git a/emulators/bochs/distinfo b/emulators/bochs/distinfo index 828ed03c141..793ff843079 100644 --- a/emulators/bochs/distinfo +++ b/emulators/bochs/distinfo @@ -1,9 +1,10 @@ -$NetBSD: distinfo,v 1.26 2012/01/09 06:38:44 ryoon Exp $ +$NetBSD: distinfo,v 1.27 2012/05/23 05:08:00 dholland Exp $ SHA1 (bochs-2.5.1.tar.gz) = e1052e943ebb8e3b84f407e0e3f17607268253b6 RMD160 (bochs-2.5.1.tar.gz) = 25b515d46032626921a8cf995183116e28eba9e2 Size (bochs-2.5.1.tar.gz) = 4126651 bytes SHA1 (patch-.bochsrc) = df5b8879ec005fe44bca8bee42c549095012013d SHA1 (patch-Makefile.in) = ca8d485a9f4901df15eb3e521105de2ae833cfcb +SHA1 (patch-configure) = b8ee4eb622e434472b4a6fa66088e15333ef291f SHA1 (patch-iodev_soundosx.cc) = e53434c1796133b1275a167bcec606bb185e283d SHA1 (patch-main.cc) = 77296af5e8101c7c9ded37ec77571dbc61f98e4b diff --git a/emulators/bochs/patches/patch-configure b/emulators/bochs/patches/patch-configure new file mode 100644 index 00000000000..c532f810c54 --- /dev/null +++ b/emulators/bochs/patches/patch-configure @@ -0,0 +1,17 @@ +$NetBSD: patch-configure,v 1.3 2012/05/23 05:08:00 dholland Exp $ + +Treat Linux 3.x like 2.6. + +--- configure~ 2012-01-06 18:51:12.000000000 +0000 ++++ configure +@@ -22005,6 +22005,10 @@ $as_echo "$as_me: Linux detected as host + PCIDEV_MODULE_MAKE_ALL="all-kernel26" + KERNEL_MODULE_SUFFIX="ko" + ;; ++ 3*) ++ PCIDEV_MODULE_MAKE_ALL="all-kernel26" ++ KERNEL_MODULE_SUFFIX="ko" ++ ;; + *) + as_fn_error "Linux kernel 2.4 or 2.6 is required for PCI host device mapping" "$LINENO" 5 + ;; |