--- libpciaccess-0.17.orig/.gitlab-ci.yml +++ libpciaccess-0.17/.gitlab-ci.yml @@ -0,0 +1,180 @@ +# vim: set expandtab shiftwidth=2 tabstop=8 textwidth=0 filetype=yaml: +# +# This CI uses the freedesktop.org ci-templates. +# Please see the ci-templates documentation for details: +# https://freedesktop.pages.freedesktop.org/ci-templates/ + +.templates_sha: &template_sha 34f4ade99434043f88e164933f570301fd18b125 # see https://docs.gitlab.com/ee/ci/yaml/#includefile + + +include: + # Arch container builder template + - project: 'freedesktop/ci-templates' + ref: *template_sha + file: '/templates/arch.yml' + - project: 'freedesktop/ci-templates' + ref: *template_sha + file: '/templates/ci-fairy.yml' + - template: Security/SAST.gitlab-ci.yml + + +stages: + - prep # prep work like rebuilding the container images if there is a change + - build # for actually building and testing things in a container + - test + - deploy + + +variables: + FDO_UPSTREAM_REPO: 'xorg/lib/libpciaccess' + # The tag should be updated each time the list of packages is updated. + # Changing a tag forces the associated image to be rebuilt. + # Note: the tag has no meaning, we use a date format purely for readability + FDO_DISTRIBUTION_TAG: '2022-04-02.0' + BASE_PACKAGES: 'git meson ninja gcc autoconf automake libtool make xorg-util-macros pkgconf zlib' + # extra packages we need for various tests + EXTRA_PACKAGES: 'jq' + FDO_DISTRIBUTION_PACKAGES: $BASE_PACKAGES $EXTRA_PACKAGES + +# +# Verify that commit messages are as expected, signed-off, etc. +# +check-commits: + extends: + - .fdo.ci-fairy + stage: prep + script: + - ci-fairy check-commits --junit-xml=results.xml + except: + - master@xorg/lib/libpciaccess + variables: + GIT_DEPTH: 100 + artifacts: + reports: + junit: results.xml + +# +# Verify that the merge request has the allow-collaboration checkbox ticked +# +check-merge-request: + extends: + - .fdo.ci-fairy + stage: deploy + script: + - ci-fairy check-merge-request --require-allow-collaboration --junit-xml=results.xml + artifacts: + when: on_failure + reports: + junit: results.xml + allow_failure: true + + +# +# Build a container with the given tag and the packages pre-installed. +# This only happens if/when the tag changes, otherwise the existing image is +# re-used. +# +container-prep: + extends: + - .fdo.container-build@arch + stage: prep + variables: + GIT_STRATEGY: none + +# +# Builds run on the image built above. +# + +meson: + extends: + - .fdo.distribution-image@arch + stage: build + parallel: + matrix: + - MESON_OPTIONS: ['-Dzlib=disabled', '-Dzlib=enabled'] + script: + - mkdir -p ../_inst + - meson builddir --prefix="$PWD/../_inst" -Dwarning_level=3 $MESON_OPTIONS + - meson configure builddir + - ninja -C builddir test + - ninja -C builddir install + +autotools: + extends: + - .fdo.distribution-image@arch + stage: build + parallel: + matrix: + - CONFIGURE_OPTIONS: ['', '--with-zlib'] + script: + - mkdir -p ../_inst _build + - autoreconf -ivf + - pushd _build + - ../configure --prefix="$PWD/../_inst" $CONFIGURE_OPTIONS + - make check + - make install + - make distcheck + - mv libpciaccess*.tar.gz .. + - popd + artifacts: + paths: + - libpciaccess*.tar.gz + +meson from tarball: + extends: + - .fdo.distribution-image@arch + stage: test + script: + - mkdir -p _tarball_build + - tar xf libpciaccess-*.tar.gz -C _tarball_build + - pushd _tarball_build/libpciaccess-* + - meson builddir + - meson configure builddir + - ninja -C builddir test + needs: + - autotools + variables: + GIT_STRATEGY: none + +# +# Unlike the xproto version this was copied from, this just compares +# the ls output to make sure the same files were installed, since +# comparing file contents lists mismatches with the ELF binaries and +# in the generated pkg-config files that are not issues here. +# +compare meson and autotools: + extends: + - .fdo.distribution-image@arch + stage: test + script: + - mkdir -p $PWD/_meson_inst + - mkdir -p $PWD/_autotools_inst + # the prefix ends up in the pkgconfig files, so we use a symlink + # to use the same --prefix for meson and autotools + - ln -sf $PWD/_meson_inst $PWD/_inst + - meson builddir + - meson configure builddir --prefix=$PWD/_inst + - ninja -C builddir install + - ls -R _inst > _meson_inst.ls + - rm $PWD/_inst + - ln -sf $PWD/_autotools_inst $PWD/_inst + - autoreconf -ivf + - ./configure --prefix=$PWD/_inst --enable-shared --disable-static + - make && make install + - rm -f $PWD/_inst/lib/lib*.la + - ls -R _inst > _autotools_inst.ls + - diff -u $PWD/_meson_inst.ls $PWD/_autotools_inst.ls + +check versions are in sync: + extends: + - .fdo.distribution-image@arch + stage: test + script: + - autoreconf -ivf + - ./configure --version | head -n 1 | sed -e 's/libpciaccess configure //' > autotools.version + - | + meson builddir + pushd builddir + meson introspect --projectinfo | jq -r '.version' > ../meson.version + popd + - diff -u autotools.version meson.version || (echo "ERROR - autotools and meson versions not in sync" && false) --- libpciaccess-0.17.orig/ChangeLog +++ libpciaccess-0.17/ChangeLog @@ -1,557 +1,3 @@ -commit 935f0b4d6983f77c4f35e6d492f9f2c2d1ed57f9 -Author: Alan Coopersmith -Date: Mon Oct 17 18:41:02 2022 -0700 - - libpciaccess 0.17 - - Signed-off-by: Alan Coopersmith - -commit d193fa690415333420b435edb5782789a6f3ea57 -Author: Samuel Thibault -Date: Tue Aug 23 19:27:27 2022 +0200 - - hurd: Fix pci_device_hurd_map_legacy - - It was not passing a proper region number to pci_device_hurd_map_range, - and that would not make sense anyway since the rom is not a region for - instance, and the video memory, interrupt vector etc. aren't a region or - the rom. - - So this uses pci_device_hurd_map_range for the rom, and - pci_system_x86_map_dev_mem for non-rom. Unfortunately pci-arbiter - currently cannot get the rom_base from libpciaccess, so we can only - guess that we are trying to map a rom. - -commit 361356b08003f5e3c606e16eeb6a17fe02ff2726 -Author: Moritz Fischer -Date: Mon Mar 8 12:02:33 2021 -0800 - - Add pci_device_disable() function - - This implements a pci_device_disable() function, currently only for - the linux_sysfs() backend. - - This mirrors the implementation for pci_device_enable() - - Signed-off-by: Moritz Fischer - -commit a8abf913ad6b60492ef7b6ae512c4f879604a6a7 -Author: zhanghongtao -Date: Mon Aug 1 16:20:28 2022 +0800 - - Delete redundant symbols ';' - - Signed-off-by: zhanghongtao - -commit ab475c645ff9fc40e18af739eb4b81a5eb7f783c -Author: zhanghongtao -Date: Mon Aug 1 16:13:40 2022 +0800 - - Add header protection macro in linux_devmem.h - - Signed-off-by: zhanghongtao - -commit b8de959615449fdf5b58ef08d881a77d397e86e2 -Author: zhanghongtao -Date: Mon Aug 1 15:53:57 2022 +0800 - - pci_sys set NULL after free - - Signed-off-by: zhanghongtao - -commit f93c0dae5a837404a48ea7f3609c6c5c30691a7b -Author: zhanghongtao -Date: Mon Aug 1 15:28:14 2022 +0800 - - Add parentheses to the macro definition - - Signed-off-by: zhanghongtao - -commit 1fa5d4bdfcc6fea44f9abf353d25f3a5d013f5d7 -Author: Satadru Pramanik -Date: Tue Jun 21 20:44:30 2022 +0000 - - Add support for building on macOS w/o X11, using endian code from "portable_endian.h"... - -commit 22a93f8b9b4a79eefbdd0b2c412526f6141ac7a8 -Author: Alan Coopersmith -Date: Wed Apr 6 11:46:45 2022 -0700 - - configure.ac: Use pkg-config to find zlib dependency info - - Matches what we already do in meson.build - - Signed-off-by: Alan Coopersmith - -commit 0ae62706c34e4abc581d4c42ce9807e2898fac1d -Author: Alan Coopersmith -Date: Wed Apr 6 16:30:51 2022 -0700 - - gitlab CI: stop requiring Signed-off-by in commits - - Signed-off-by: Alan Coopersmith - -commit 831b467b2e3876c4e0c307d1e3eae2746ce805a7 -Author: Chester Gillon -Date: Sun Sep 5 13:37:56 2021 +0100 - - Obtain correct value of is_64 and is_prefetchable PCI device fields - - Correct setting of the is_64 and is_prefetchable pci_device fields in - pci_device_linux_sysfs_probe(). - The pci_device struct defines is_64 and is_prefetchable as single bits, - but the previous code was attempting to store the result of a bit-masked - field in a single bit which always resulted in is_64 and is_prefetchable - being zero regardless of the actual capabilities of the PCI device. - - Fixes: #15 - - Signed-off-by: Chester Gillon - -commit 28d6dd72e5d6fa907dbccd310cc516e7012a60bd -Author: Alan Coopersmith -Date: Sat Apr 2 16:00:56 2022 -0700 - - gitlab CI: add a basic build test for both autotools and meson - - Signed-off-by: Alan Coopersmith - -commit 465aecdce47040a211fddc29186a4b1aa2ad5648 -Author: Alan Coopersmith -Date: Sat Apr 2 15:27:10 2022 -0700 - - meson: install man page in mandir/man1/, not mandir/1/ - - But don't install it by default, since neither meson nor autotools - installs the scanpci program by default - - Signed-off-by: Alan Coopersmith - -commit 5cf85c28ad5f0811d53e5d70eac384dfe8e86cd6 -Author: Alan Coopersmith -Date: Sat Apr 2 14:54:06 2022 -0700 - - Fix spelling/wording issues - - Found by using: - codespell --builtin clear,rare,usage,informal,code,names - - Signed-off-by: Alan Coopersmith - -commit 9ad16d4da14905abfac50e41105dd1ceba877b07 -Author: Alan Coopersmith -Date: Sat Apr 2 14:44:13 2022 -0700 - - Build xz tarballs instead of bzip2 - - Signed-off-by: Alan Coopersmith - -commit 21aa2bf6edda711cc4a883e89fd4d3c337c76d6b -Author: Joan Lledó -Date: Sat Mar 12 19:28:04 2022 +0100 - - Hurd: Fix initialization order - - This allows non-root programs to to rely on /servers/bus/pci - - Message-Id: <20220312182804.9318-2-jlledom@mailfence.com> - - Reviewed-by: Samuel Thibault - -commit 4ef1660667425c0f171949aacae9d07b10a40d7f -Author: Damien Zammit -Date: Tue Feb 15 06:44:23 2022 +0000 - - hurd: Don't necessarily look up _SERVERS_BUS_PCI - - This allows the fallback mechanism in the hurd create method to be - used in the map range method by reusing the mach port that - corresponds to the root of the pci filesystem. - - Message-Id: <20220215064411.68671-1-damien@zamaudio.com> - - Reviewed-by: Samuel Thibault - -commit 740d2f29700af38b01ca68e3e834db164cc1b789 -Author: Samuel Thibault -Date: Sun Jan 9 01:09:04 2022 +0100 - - hurd: Restore initialization order - - 3e0d1cde0187 ("hurd: Implement device memory mapping") was making - root-running processes insist on using the pci device, and never try the - fs-provided translator. This reverts back to trying the pci device - first, but completely, and then revert to the fs-provided translator. - -commit 3e0d1cde01872d605c267c61094e44315a3e7467 -Author: Joan Lledó -Date: Wed Jan 5 13:08:01 2022 +0100 - - hurd: Implement device memory mapping - - * src/hurd_pci.c: - * Implement device memory mapping functions - * pci_device_hurd_map_range - * pci_device_hurd_unmap_range - * pci_device_hurd_map_legacy - * pci_device_hurd_unmap_legacy - * src/x86_pci.h: - * Remove unused declarations - * pci_device_x86_map_range() - * pci_device_x86_unmap_range() - * pci_device_x86_map_legacy() - * pci_device_x86_unmap_legacy() - * src/x86_pci.c: - * Fix port leaks - * Make mapping function static again - * map_dev_mem(): use device_map() support for offsets - Message-Id: <20220105120802.14008-2-jlledom@mailfence.com> - - Reviewed-by: Samuel Thibault - -commit 9c01fdd7c02d8b9b5003e659ebca0b3643bd47c4 -Author: Damien Zammit -Date: Wed Apr 7 18:29:13 2021 +1000 - - x86: Sort devices by B/D/F due to recursive scan - -commit 50e7de7a81be35bb4e5799cb5562d18683c05ade -Author: Damien Zammit -Date: Sun Mar 7 10:32:33 2021 +1100 - - hurd: device_open(pci), /servers/bus/pci fallback - - Reviewed-by: Samuel Thibault - -commit b4bde8fe4e2872be8d0c527f5c9e155603f5d01f -Author: Petr Ovtchenkov -Date: Wed Dec 2 10:52:28 2020 +0300 - - missed library installation in meson - - Signed-off-by: Petr Ovtchenkov - Reviewed-by: Dylan Baker - -commit f51e2f1e96db2acd426ac3f6bb066f314a7eee46 -Author: Dylan Baker -Date: Sun Oct 25 11:14:56 2020 -0700 - - autoconf: Add meson files to dist tarball - - Reviewed-by: Eric Anholt - -commit 89fcd717a60e7a6440b56ff7c82b5eeb80b92a2f -Author: Dylan Baker -Date: Wed Sep 19 16:15:41 2018 -0700 - - Add a meson build system - - I believe this is correct and complete, but I could have missed - something on non-linux OSes. - - Reviewed-by: Eric Anholt - -commit 1ebcfe918a0da46a5b7ab44fc3ec0e6c65f98043 -Author: Samuel Thibault -Date: Thu Sep 10 00:20:33 2020 +0200 - - hurd: Fix map_dev_mem from non-zero address - - device_map needs to create a big-enough object so it can then be mapped. - - Signed-off-by: Samuel Thibault - -commit b82b779247b2adb164afed85a7e06cf3ca0d8ade -Author: Samuel Thibault -Date: Thu Sep 10 00:19:41 2020 +0200 - - hurd: Fix letting map_dev_mem map anywhere - - Signed-off-by: Samuel Thibault - -commit 790ef9888a23fc257a66e742baf3b162b8c1f7c5 -Author: Samuel Thibault -Date: Thu Sep 10 00:18:12 2020 +0200 - - hurd: Add missing round up size in map_dev_mem - - Signed-off-by: Samuel Thibault - -commit 3e5ae795a265b8843c09cba310a5582c909f97a4 -Author: Damien Zammit -Date: Sat Aug 22 22:31:11 2020 +1000 - - x86: Remove probe during create, other backends don't do this - -commit 9effa77676207d547dc869ecb8c342869e14ef70 -Author: Damien Zammit -Date: Fri May 8 10:22:34 2020 +1000 - - x86: Remove mapping of regions during probe - otherwise remapping later fails - -commit b37ffbd94b4a270e62b752bdced882ce12b7610c -Author: Damien Zammit -Date: Fri May 8 10:19:23 2020 +1000 - - x86: Use gnumach device instead of /dev/mem on GNU systems && factorise ifdefs - -commit 6c0eebdf3a72d372de9aa1226ce889bdf56440b0 -Author: Damien Zammit -Date: Sun Mar 15 12:42:51 2020 +1100 - - hurd_pci: Use __pci_conf_ variants of pci_conf_ - -commit 1a7dab7b7c36b73d2a2d7e8b5c288c71542de11e -Author: Fabrice Fontaine -Date: Fri Oct 25 19:03:32 2019 +0200 - - pciaccess.pc.in: add Libs.Private - - Add Libs.Private in pciaccess.pc.in so applications that wants to link - statically with pciaccess will know that they have to link with its - dependencies such as -lz - - Signed-off-by: Fabrice Fontaine - -commit 73901e7f7c03a5cdea317fd3d36feb978ef34a02 -Author: Joan Lledó -Date: Sun Nov 24 11:17:30 2019 +0100 - - Hurd: avoid using the deprecated RPC pci_get_ndevs() - -commit fbd1f0fe79ba25b72635f8e36a6c33d7e0ca19f6 -Author: Adam Jackson -Date: Wed Jul 17 12:24:48 2019 -0400 - - libpciaccess 0.16 - -commit f834c15afb49aa340c44374c6e00ef303b076ace -Author: Damien Zammit -Date: Sun May 19 20:33:21 2019 +1000 - - x86: Use MAP_SHARED for memory/rom region mmap && fix mode - -commit 1d71669e577f5f2eb02542851696d3bcb722a80b -Author: Adam Jackson -Date: Thu Jul 11 12:56:40 2019 -0400 - - linux: Don't try to include on arm - - It no longer exists in newer glibc, and didn't work like you'd have - hoped on anything but strongarm anyway. - -commit 726e27bedf163597b5c948b66daeacf9b76f441a -Author: Adam Jackson -Date: Thu Jul 11 12:27:36 2019 -0400 - - libpciaccess 0.15 - -commit 53e53b09eb80e4e2b3e1fad3f4886bf9290a61e0 -Author: Lichao Mu -Date: Thu Jul 11 12:19:34 2019 -0400 - - Fix pci_device_get_bridge_info() for multifunction bridges - - Fixes: xorg/lib/libpciaccess#9 - -commit 640f114e3bf195f77a2151fc6cbdfed8ace8b6ae -Author: Damien Zammit -Date: Sat Nov 10 06:48:42 2018 -0500 - - Use recursive scan bus - - Switch over to the new recursive scan bus routine for x86 - - Signed-off-by: Damien Zammit - -commit 95fbfeeacfd054de1037d6a10dee03b2b2cbc290 -Author: Damien Zammit -Date: Sat Nov 10 06:23:40 2018 -0500 - - Add better probe cmds for non-VGA roms and regions on x86 - - Also add a recursive scan-bus routine that uses the new probe cmds. - - Signed-off-by: Damien Zammit - -commit 048fe0613847e3a9b39bbc3ea3e6db0f54517191 -Author: Damien Zammit -Date: Sat Nov 10 06:11:19 2018 -0500 - - New module for the Hurd - - This new module uses Hurd's RPCs for accessing the PCI configuration space. - Direct access as in {read_write}_{8,16,32} functions is done by the old x86 - module. - - Some x86 function prototypes are now declared in a new header for the Hurd - module to use them, in order to duplicate as little code as possible. - - Author: Joan Lledó - Also-by: Damien Zammit - Signed-off-by: Damien Zammit - -commit 6e3837284372d70a9427918f622bf1dc7e2a3db6 -Author: Niclas Zeising -Date: Sat Jun 15 11:12:51 2019 +0200 - - freebsd_pci: remove old probe method - - Remove the old probe method. The PCIOCGETBAR ioctl has been in FreeBSD - since 8.0 release, if not earlier. Remove the old way of doing it. - This is done using unifdef -DPCIOCGETBAR and cleaning up whitespace. - - Signed-off-by: Niclas Zeising - -commit e8c7e461e43e96f7cf8b121d20d83dc6d8997f91 -Author: Niclas Zeising -Date: Sat Jun 15 11:02:07 2019 +0200 - - freebsd_pci: format freebsd_pci_methods - - Format freebsd_pci_methods a bit, adding some whitespace and assigning - NULL to methods not implemented. This makes it easier to see the names - of various methods, as well as which methods are not implemented. - Idea from src/linux_sysfs.c - - Signed-off-by: Niclas Zeising - -commit b40f387048a5c7b280d0c83d3af9d34ceca7f4f8 -Author: Niclas Zeising -Date: Sat Jun 15 10:59:00 2019 +0200 - - freebsd_pci: Add has_kernel_driver function - - Add a has_kernel_driver function to the FreeBSD libpciaccess functions. - This uses the PCIOCATTACHED ioctl to check if a driver is attached to a - specific PCI device. - Idea taken from the FreeBSD system utility pciconf. - - Signed-off-by: Niclas Zeising - -commit baa4084474665e34a8d6a9bba0e97d9aa5dcd88a -Author: Niclas Zeising -Date: Sun Jun 16 10:42:08 2019 +0200 - - freebsd_pci: Remove unused variable - - Remove unused variable, it's written to, but never used. - - Signed-off-by: Niclas Zeising - -commit 976e661ee193941f9928353db365f14654a934db -Author: Niclas Zeising -Date: Sun Jun 16 10:41:03 2019 +0200 - - freebsd_pci: Make this work on sparc64 - - Make the FreeBSD libpciaccess routines work on FreeBSD. The FreeBSD - sparc64 architecture needs special treatment, similar to the - PCI_MAGIC_IO_RANGE code. However, PCI_MAGIC_IO_RANGE has been gone for - some time. Give this a chance to work on sparc64 anyway. - - This code has been in the FreeBSD ports tree for some time. - -commit a1b528c4ae00972640d7a24f049c3fe9055ffe3b -Author: Niclas Zeising -Date: Fri Jun 14 23:40:33 2019 +0200 - - freebsd_pci: update legacy I/O for new architectures - - Update FreeBSD legacy I/O routines for new architectures. When we're - not on amd64 or i386, and PCI_MAGIC_IO_RANGE is not defined, use IOCTLs - to handle reads and writes through /dev/io. - This is accomplished by opening /dev/io and using IOCTLs from - dev/io/iodev.h, an interface that exists on most FreeBSD architectures. - - This change has been in the FreeBSD ports tree for quite some time. - -commit b6de3c42cdc8fdb3acdd0b0a119e8848f1339950 -Author: Niclas Zeising -Date: Sat Jun 15 00:06:54 2019 +0200 - - freebsd_pci: Fix types in write functions - - Fix the type used in write functions to match the size of the write. - - Signed-off-by: Niclas Zeising - -commit 735c8a5f6649d1b13fdc932f1b0b1e9e94512949 -Author: Niclas Zeising -Date: Thu Jun 13 17:36:35 2019 +0200 - - Don't check for struct pci_io.pi_sel.pc_domain - - Autoconf has a check that pci_io.pi_sel.pc_domain exists. This is only - used on FreeBSD. pc_domain was added to pci_io.pi_sel on FreeBSD many - many releases ago, and exists on all current FreeBSD releases. - - Remove the check, and the corresponding HAVE_PCI_IO_PC_DOMAIN, and - update the code to take into account that #ifdef HAVE_PCI_IO_PC_DOMAIN - is now always true. - - Signed-off-by: Niclas Zeising - -commit 4fef4d2978619e9f198a17176afc88ba27ff6ab7 -Author: Niclas Zeising -Date: Thu Jun 13 17:14:53 2019 +0200 - - freebsd_pci: Try to conform to uniform style - - Try to make freebsd_pci.c conform to a more uniform style. - This change is whitespace only, no functional change intended. - - Signed-off-by: Niclas Zeising - -commit 404f6aadaeeef03fedca52a822871675a652692f -Author: Conrad Meyer -Date: Sun Jun 16 02:30:41 2019 -0700 - - freebsd: Add !legacy open_device_io implementation - - Some drivers, such as QXL, rely on this method and do not check for errors - when it is unavailable. FreeBSD's legacy method can enumerate any d/b/s/f - just fine, so it should be adequate for the !legacy API, as far as I can - tell. - - With this change, QXL doesn't crash on startup on FreeBSD. - - Signed-off-by: Conrad Meyer - -commit fbed5d2b478cd33870c8eb6f0a12893193d7e32c -Author: Alan Coopersmith -Date: Fri Dec 7 19:31:52 2018 -0800 - - Update configure.ac bug URL for gitlab migration - - Signed-off-by: Alan Coopersmith - -commit d30934ee6e0ee48cc10c141d5681be847e28e974 -Author: Alan Coopersmith -Date: Mon Nov 19 23:03:36 2018 -0800 - - Update README for gitlab migration - - Signed-off-by: Alan Coopersmith - -commit 44f3dd08f99ba67e967980daaea2b800c68e2659 -Author: Olivier Fourdan -Date: Wed Oct 24 10:11:49 2018 +0200 - - linux: Set number of devices to 0 in case of error - - pci_sys is a global variable which is populated on init, and in case of - error reading sysfs on Linux, the devices are NULL, but the number of - devices is left unchanged. - - As a result, we may crash in `pci_device_next()` which relies on the - number of devices. - - To fix the issue, simply reset the number of devices to zero in case of - error so we don't try to access indices of a NULL array later on. - - Signed-off-by: Olivier Fourdan - commit 13854f603f720c45caf51d785a874d3c7e8c5f58 Author: Adam Jackson Date: Mon Oct 23 11:44:32 2017 -0400 @@ -3473,7 +2919,7 @@ everything now. commit d890ded5312dc88455fd332e03a4f212ba587e9d -Author: Kristian Høgsberg +Author: Kristian Høgsberg Date: Mon Mar 20 20:13:34 2006 +0000 Add scanpci as a noinst target. --- libpciaccess-0.17.orig/README.cygwin +++ libpciaccess-0.17/README.cygwin @@ -0,0 +1,25 @@ += libpciaccess support under Windows through WinIo and Cygwin = + +== Platforms supported == + +The support should work on Windows NT/2000/XP/2003/Vista/7 and 2008 but has +only been tested on Windows 7, 32 bits + +== Dependencies == + +This support depends of WinIo which allows direct I/O port and physical +memory access under Windows NT/2000/XP/2003/Vista/7 and 2008. + +== How to install WinIo ? == + +First, you need to download WinIo from http://www.internals.com/. Then, you +have to copy WinIo32.dll and WinIo32.sys to the same directory as the +executables. + +== TODO == + +Check and fix 64 bits support. + +== Contact == + +If you have any problems, please send an email to samuel.pitoiset at gmail.com --- libpciaccess-0.17.orig/autogen.sh +++ libpciaccess-0.17/autogen.sh @@ -0,0 +1,17 @@ +#! /bin/sh + +srcdir=`dirname "$0"` +test -z "$srcdir" && srcdir=. + +ORIGDIR=`pwd` +cd "$srcdir" + +autoreconf --force --verbose --install || exit 1 +cd "$ORIGDIR" || exit $? + +git config --local --get format.subjectPrefix >/dev/null 2>&1 || + git config --local format.subjectPrefix "PATCH libpciaccess" + +if test -z "$NOCONFIGURE"; then + exec "$srcdir"/configure "$@" +fi --- libpciaccess-0.17.orig/debian/README.source +++ libpciaccess-0.17/debian/README.source @@ -0,0 +1,7 @@ +This package uses quilt to manage modifications to the upstream source. +Changes are stored in the source package as diffs in debian/patches and +applied during the build. + +See /usr/share/doc/quilt/README.source in the quilt package for details. + + -- Julien Cristau Sat, 08 Aug 2009 18:42:21 +0200 --- libpciaccess-0.17.orig/debian/changelog +++ libpciaccess-0.17/debian/changelog @@ -0,0 +1,285 @@ +libpciaccess (0.17-2) unstable; urgency=medium + + * symbols: Update for Hurd. (Closes: #1023418) + + -- Timo Aaltonen Tue, 08 Nov 2022 12:39:24 +0200 + +libpciaccess (0.17-1) unstable; urgency=medium + + * New upstream release. + * symbols: Updated. + + -- Timo Aaltonen Thu, 03 Nov 2022 16:10:09 +0100 + +libpciaccess (0.16-3) unstable; urgency=medium + + [ Pino Toscano ] + * Update the symbols file for Hurd and kFreeBSD archs. + * Add Build-Depends-Package to the symbols file. + + -- Timo Aaltonen Wed, 12 Jan 2022 15:33:02 +0200 + +libpciaccess (0.16-2) unstable; urgency=medium + + * libpciaccess0.symbols.hurd-i386: Add a symbols file for Hurd. + (Closes: #997009) + + -- Timo Aaltonen Wed, 12 Jan 2022 15:24:41 +0200 + +libpciaccess (0.16-1) unstable; urgency=medium + + * New upstream release. + * control, rules: Use debhelper-compat, bump to 12. + * control: Bump policy to 4.5.0. + + -- Timo Aaltonen Fri, 31 Jul 2020 16:14:47 +0300 + +libpciaccess (0.14-1) unstable; urgency=medium + + * Use https URL in debian/watch. + * Add Adam Jackson's new key to signing-key.asc. + * New upstream release. + + delete Include-config.h-before-anything-else-in-.c.diff, applied + upstream + * Update Vcs-* control fields for move to salsa. + + -- Julien Cristau Sun, 18 Mar 2018 15:50:43 +0100 + +libpciaccess (0.13.4-1) unstable; urgency=medium + + * New upstream release. + + -- Julien Cristau Sat, 01 Aug 2015 10:43:08 +0200 + +libpciaccess (0.13.3-1) unstable; urgency=medium + + * Let uscan verify tarball signatures. + * New upstream release. + * Include config.h in all C files (closes: #749008). Thanks, Michael + Tautschnig! + + -- Julien Cristau Sun, 26 Apr 2015 15:25:45 +0200 + +libpciaccess (0.13.2-3) unstable; urgency=medium + + * Remove David and Cyril from Uploaders. + * Bump debhelper build-dep to 9, drop lintian override. + * Disable silent build rules. + + -- Julien Cristau Sat, 12 Jul 2014 16:25:55 +0200 + +libpciaccess (0.13.2-2) unstable; urgency=low + + [ Robert Hooker ] + * Fix typo in libpciaccess0 and libpciaccess-dev package descriptions. + Thanks Steve Magoun! (LP: #1274241) + + -- Julien Cristau Sat, 12 Jul 2014 15:35:44 +0200 + +libpciaccess (0.13.2-1) unstable; urgency=low + + * New upstream release. + - FreeBSD legacy map and io patch is now upstream + - implements hurd legacy map and io (closes: #675289) + * Update d/copyright from COPYING. + + -- Julien Cristau Mon, 12 Aug 2013 12:10:47 +0200 + +libpciaccess (0.13.1-2) unstable; urgency=medium + + * FreeBSD: implement map_legacy and legacy_io (closes: #669062). Thanks, + Robert Millan! + + -- Julien Cristau Sun, 22 Apr 2012 12:11:53 +0200 + +libpciaccess (0.13.1-1) unstable; urgency=low + + * New upstream release + - fix FTBFS due to broken out[bwl] macros on non-I/O architectures + + -- Julien Cristau Mon, 09 Apr 2012 19:55:26 +0200 + +libpciaccess (0.13-1) unstable; urgency=low + + * New upstream release. + + -- Cyril Brulebois Sun, 04 Mar 2012 09:48:43 +0100 + +libpciaccess (0.12.902-1) unstable; urgency=low + + * New upstream release candidate. + * Add -c4 to dh_makeshlibs. + * Sort libpciaccess0.symbols. + * Add pci_device_{,un}map_legacy symbols, and bump shlibs accordingly. + * Use --parallel to simplify parallel build handling. + * Use dpkg-buildflags to set CFLAGS automatically. + + -- Cyril Brulebois Thu, 15 Dec 2011 15:55:57 +0100 + +libpciaccess (0.12.1-2) unstable; urgency=low + + [ Christopher James Halse Rogers ] + * Switch to dh. + * Switch to debhelper compat 9 and build multiarch libraries (closes: + #635251). + * Add lintian override for not-yet-finalised debhelper compat level. + * Bump standards version to 3.9.2 (no changes). + + [ Julien Cristau ] + * Cherry-pick a couple patches from upstream git to: + - not return garbage from read/write on eof + - fix a crash in populate_entries if scandir(/sys/bus/pci) returns an + error + + -- Julien Cristau Thu, 22 Sep 2011 21:37:55 +0200 + +libpciaccess (0.12.1-1) unstable; urgency=low + + * New upstream release. + * Bump Standards-Version to 3.9.1 (no changes). + * debian/copyright: Sun's copyrights belong to Oracle now. + + -- Julien Cristau Sun, 06 Feb 2011 16:09:22 +0100 + +libpciaccess (0.12.0-1) unstable; urgency=low + + * New upstream release: + - x86 backend for hurd + - various fixes for vgaarb, leak, use after free + - fix long standing MTRR bug + * Drop pciaccess-hurd-hack.diff and patch system. + * Update debian/copyright from upstream COPYING. + * Bump Standards-Version to 3.9.0. + + -- Julien Cristau Sat, 24 Jul 2010 11:20:30 +0200 + +libpciaccess (0.11.0-2) unstable; urgency=low + + [ Julien Cristau ] + * Remove myself from Uploaders + + [ Cyril Brulebois ] + * Add udeb needed for the graphical installer: libpciaccess0-udeb. + * Add myself to Uploaders. + * Bump Standards-Version from 3.7.3 to 3.8.4 (no changes needed). + + -- Cyril Brulebois Tue, 09 Mar 2010 02:05:55 +0100 + +libpciaccess (0.11.0-1) unstable; urgency=low + + * New upstream release. + * Bump xutils-dev build-dep for util-macros 1.4. + * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no + good reason. Thanks, Colin Watson! + * Refresh pciaccess-hurd-hack.diff. + * Update libpciaccess0.symbols and bump shlibs. + * Add build-dep on pkg-config. + * Bump Standards-Version to 3.8.3. + + -- Julien Cristau Sun, 17 Jan 2010 14:36:38 +0000 + +libpciaccess (0.10.9-1) unstable; urgency=low + + * New upstream release. + * Refresh pciaccess-hurd-hack.diff. + * Update shlibs and symbols file. + + -- Julien Cristau Mon, 28 Sep 2009 18:29:27 +0200 + +libpciaccess (0.10.6-2) unstable; urgency=low + + * Apply patch from Samuel Thibault to tinker with I/O ports on systems + without a PCI interface, such as GNU/Hurd (closes: #524111). + * debian/rules: clean out libtool m4 files. + * Make glob in debian/libpciaccess0.install more strict. + * Add README.source pointing at the quilt package. + * Bump Standards-Version to 3.8.2. + * Version debhelper build-dep to silence lintian. + + -- Julien Cristau Sat, 08 Aug 2009 18:49:40 +0200 + +libpciaccess (0.10.6-1) unstable; urgency=low + + * New upstream release + + Update debian/copyright with new information from COPYING + + Add versioned xutils-dev to build-dep, as the macros are now required + * Update standards version to 3.8.1.0. No changes necessary. + + -- David Nusinow Mon, 27 Apr 2009 21:16:01 -0400 + +libpciaccess (0.10.5-3) unstable; urgency=low + + * Upload to unstable, for real this time. + + -- Julien Cristau Mon, 16 Feb 2009 15:52:10 +0100 + +libpciaccess (0.10.5-2) experimental; urgency=low + + * Upload to unstable. + + -- Julien Cristau Mon, 16 Feb 2009 01:12:29 +0100 + +libpciaccess (0.10.5-1) experimental; urgency=low + + * New upstream release + + Fixes PCI domain support on kfreebsd (closes: #501333) + * Run autoreconf at build time, cleanup generated files in clean. + * Allow reading compressed pci.ids file (closes: #478696). + + -- Julien Cristau Wed, 12 Nov 2008 20:13:13 +0100 + +libpciaccess (0.10.3-1) unstable; urgency=low + + [ Julien Cristau ] + * Add watch file. + * New upstream release. + * Bump shlibs and update symbols file. + * Suggest pciutils, which provides the pci.ids list. + + [ Brice Goglin ] + * Update upstream URL in debian/copyright. + * Drop the XS- prefix from Vcs-Git and Vcs-Browser fields in debian/control. + + -- Julien Cristau Sun, 13 Jul 2008 14:58:51 +0200 + +libpciaccess (0.10-1) unstable; urgency=low + + * New upstream release. + * Install the upstream changelog. + + -- Julien Cristau Fri, 07 Mar 2008 14:43:39 +0100 + +libpciaccess (0.9.1+git20080219-1) unstable; urgency=low + + * Add a symbols file for libpciaccess.so.0. + * Bump shlibs to >= 0.8.0+git20071002 (this version added the + pci_device_{un,}map_range functions) + * Bump Standards-Version to 3.7.3. + * New upstream snapshot. + * Fix build on non-linux glibc architectures. + + -- Julien Cristau Tue, 19 Feb 2008 16:13:05 +0100 + +libpciaccess (0.8.0+git20071002-1) experimental; urgency=low + + * Debian stores its pci.ids list in /usr/share/misc. Use that for the + --with-pciids-path configure option so the library can fill in certain + values correctly + * New upstream git pull + * Add myself to uploaders + + -- David Nusinow Tue, 02 Oct 2007 21:40:38 -0400 + +libpciaccess (0.8.0+git20070628-1) experimental; urgency=low + + * New upstream snapshot. + * Make configure executable in debian/rules clean (closes: #430932); thanks, + Frank Lichtenheld! + + -- Julien Cristau Fri, 29 Jun 2007 01:02:18 +0100 + +libpciaccess (0.8.0+git20070613-1) experimental; urgency=low + + * Initial upload (closes: #428776). + + -- Julien Cristau Thu, 14 Jun 2007 23:09:50 +0200 --- libpciaccess-0.17.orig/debian/control +++ libpciaccess-0.17/debian/control @@ -0,0 +1,45 @@ +Source: libpciaccess +Section: devel +Priority: optional +Maintainer: Debian X Strike Force +Build-Depends: + debhelper-compat (= 12), + zlib1g-dev, + xutils-dev (>= 1:7.5), + pkg-config, + quilt (>= 0.46-7), +Standards-Version: 4.5.0 +Vcs-Git: https://salsa.debian.org/xorg-team/lib/libpciaccess.git +Vcs-Browser: https://salsa.debian.org/xorg-team/lib/libpciaccess + +Package: libpciaccess0 +Section: libs +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Suggests: pciutils +Pre-Depends: ${misc:Pre-Depends} +Multi-Arch: same +Description: Generic PCI access library for X + Provides functionality for X to access the PCI bus and devices + in a platform-independent way. + +Package: libpciaccess0-udeb +XC-Package-Type: udeb +Section: debian-installer +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Suggests: pciutils +Description: Generic PCI access library for X + This is a udeb, or a microdeb, for the debian-installer. + +Package: libpciaccess-dev +Section: libdevel +Architecture: any +Pre-Depends: ${misc:Pre-Depends} +Multi-Arch: same +Depends: libpciaccess0 (= ${binary:Version}), ${shlibs:Depends}, ${misc:Depends} +Description: Generic PCI access library for X - development files + Provides functionality for X to access the PCI bus and devices + in a platform-independent way. + . + This package contains the development files for libpciaccess. --- libpciaccess-0.17.orig/debian/copyright +++ libpciaccess-0.17/debian/copyright @@ -0,0 +1,116 @@ +This package was downloaded from +http://xorg.freedesktop.org/releases/individual/lib/ + +It was debianized by Julien Cristau on +Wed, 13 Jun 2007, with package descriptions taken from a package by +Matthew Garrett . + +The Debian packaging is (C) 2007, Matthew Garrett and +Julien Cristau , and is licensed under the GPL, see +`/usr/share/common-licenses/GPL'. + +Upstream authors: + + Ian Romanick + Eric Anholt + edward shu + +Copyright: + +(C) Copyright IBM Corporation 2006, 2007 +(C) Copyright Eric Anholt 2006 +(C) Copyright Mark Kettenis 2011 +(C) Copyright Robert Millan 2012 +Copyright (c) 2007, 2008, 2009, 2011, 2012, 2013 Oracle and/or its affiliates. +Copyright 2009, 2012 Red Hat, Inc. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to +deal in the Software without restriction, including without limitation on +the rights to use, copy, modify, merge, publish, distribute, sub license, +and/or sell copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice (including the next +paragraph) shall be included in all copies or substantial portions of the +Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL +IBM AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +IN THE SOFTWARE. + +------------------------------------------------------------------------------ + +Copyright (c) 2008 Juan Romero Pardines +Copyright (c) 2008, 2011 Mark Kettenis +Copyright (c) 2009 Michael Lorenz +Copyright (c) 2009, 2012 Samuel Thibault + +Permission to use, copy, modify, and distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +------------------------------------------------------------------------------ + +Copyright (C) 2000 The XFree86 Project, Inc. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to +deal in the Software without restriction, including without limitation the +rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +sell copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +XFREE86 PROJECT BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +Except as contained in this notice, the name of the XFree86 Project shall +not be used in advertising or otherwise to promote the sale, use or other +dealings in this Software without prior written authorization from the +XFree86 Project. + +------------------------------------------------------------------------------ + +Copyright (c) 2007 Paulo R. Zanoni, Tiago Vignatti +Copyright (c) 2009 Tiago Vignatti + +Permission is hereby granted, free of charge, to any person +obtaining a copy of this software and associated documentation +files (the "Software"), to deal in the Software without +restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE. --- libpciaccess-0.17.orig/debian/libpciaccess-dev.install +++ libpciaccess-0.17/debian/libpciaccess-dev.install @@ -0,0 +1,4 @@ +usr/lib/*/pkgconfig +usr/lib/*/lib*.a +usr/lib/*/lib*.so +usr/include --- libpciaccess-0.17.orig/debian/libpciaccess0-udeb.install +++ libpciaccess-0.17/debian/libpciaccess0-udeb.install @@ -0,0 +1 @@ +usr/lib/*/libpciaccess.so.0* usr/lib --- libpciaccess-0.17.orig/debian/libpciaccess0.install +++ libpciaccess-0.17/debian/libpciaccess0.install @@ -0,0 +1 @@ +usr/lib/*/libpciaccess.so.0* --- libpciaccess-0.17.orig/debian/libpciaccess0.symbols +++ libpciaccess-0.17/debian/libpciaccess0.symbols @@ -0,0 +1,73 @@ +libpciaccess.so.0 libpciaccess0 #MINVER# +* Build-Depends-Package: libpciaccess-dev + pci_device_cfg_read@Base 0 + pci_device_cfg_read_u16@Base 0 + pci_device_cfg_read_u32@Base 0 + pci_device_cfg_read_u8@Base 0 + pci_device_cfg_write@Base 0 + pci_device_cfg_write_bits@Base 0 + pci_device_cfg_write_u16@Base 0 + pci_device_cfg_write_u32@Base 0 + pci_device_cfg_write_u8@Base 0 + pci_device_close_io@Base 0.11.0 + pci_device_disable@Base 0.17 + pci_device_enable@Base 0.10.2 + pci_device_find_by_slot@Base 0 + pci_device_get_agp_info@Base 0 + pci_device_get_bridge_buses@Base 0 + pci_device_get_bridge_info@Base 0 + pci_device_get_device_name@Base 0 + pci_device_get_parent_bridge@Base 0.11.0 + pci_device_get_pcmcia_bridge_info@Base 0 + pci_device_get_subdevice_name@Base 0 + pci_device_get_subvendor_name@Base 0 + pci_device_get_vendor_name@Base 0 + pci_device_has_kernel_driver@Base 0.10.7 + pci_device_is_boot_vga@Base 0.10.7 + pci_device_map_legacy@Base 0.12.902 + pci_device_map_memory_range@Base 0 + pci_device_map_range@Base 0.8.0+git20071002 + pci_device_map_region@Base 0 + pci_device_next@Base 0 + pci_device_open_io@Base 0.11.0 + pci_device_probe@Base 0 + pci_device_read_rom@Base 0 + pci_device_unmap_legacy@Base 0.12.902 + pci_device_unmap_memory_range@Base 0 + pci_device_unmap_range@Base 0.8.0+git20071002 + pci_device_unmap_region@Base 0 + pci_device_vgaarb_decodes@Base 0.10.7 + pci_device_vgaarb_fini@Base 0.10.7 + pci_device_vgaarb_get_info@Base 0.10.7 + pci_device_vgaarb_init@Base 0.10.7 + pci_device_vgaarb_lock@Base 0.10.7 + pci_device_vgaarb_set_target@Base 0.10.7 + pci_device_vgaarb_trylock@Base 0.10.7 + pci_device_vgaarb_unlock@Base 0.10.7 + (arch=hurd-i386)pci_device_x86_close_io@Base 0.16 + (arch=hurd-i386)pci_device_x86_open_legacy_io@Base 0.16 + (arch=hurd-i386)pci_device_x86_read16@Base 0.16 + (arch=hurd-i386)pci_device_x86_read32@Base 0.16 + (arch=hurd-i386)pci_device_x86_read8@Base 0.16 + (arch=hurd-i386)pci_device_x86_write16@Base 0.16 + (arch=hurd-i386)pci_device_x86_write32@Base 0.16 + (arch=hurd-i386)pci_device_x86_write8@Base 0.16 + pci_get_strings@Base 0 + pci_id_match_iterator_create@Base 0 + pci_io_read16@Base 0.11.0 + pci_io_read32@Base 0.11.0 + pci_io_read8@Base 0.11.0 + pci_io_write16@Base 0.11.0 + pci_io_write32@Base 0.11.0 + pci_io_write8@Base 0.11.0 + pci_iterator_destroy@Base 0 + pci_legacy_open_io@Base 0.11.0 + pci_slot_match_iterator_create@Base 0 + pci_system_cleanup@Base 0 + (arch=kfreebsd-any)pci_system_freebsd_init_dev_mem@Base 0.16 + pci_system_init@Base 0 + pci_system_init_dev_mem@Base 0.10.2 + (arch=hurd-i386)pci_system_x86_destroy@Base 0.16 + (arch=hurd-i386)pci_system_x86_map_dev_mem@Base 0.17 + (arch=hurd-i386)x86_disable_io@Base 0.16 + (arch=hurd-i386)x86_enable_io@Base 0.16 --- libpciaccess-0.17.orig/debian/patches/series +++ libpciaccess-0.17/debian/patches/series @@ -0,0 +1 @@ +# placeholder --- libpciaccess-0.17.orig/debian/rules +++ libpciaccess-0.17/debian/rules @@ -0,0 +1,22 @@ +#!/usr/bin/make -f + +PACKAGE = libpciaccess0 + +%: + dh $@ --with quilt --builddirectory=build/ + +override_dh_auto_configure: + dh_auto_configure -- \ + --disable-silent-rules \ + --with-pciids-path=\$${prefix}/share/misc \ + --with-zlib + +override_dh_install: + find debian/tmp -type f -name *.la -delete + dh_install + +override_dh_missing: + dh_missing --fail-missing + +override_dh_makeshlibs: + dh_makeshlibs -V'libpciaccess0 (>= 0.12.902)' --add-udeb=$(PACKAGE)-udeb -- -c4 --- libpciaccess-0.17.orig/debian/upstream/signing-key.asc +++ libpciaccess-0.17/debian/upstream/signing-key.asc @@ -0,0 +1,101 @@ +-----BEGIN PGP PUBLIC KEY BLOCK----- +Version: GnuPG v1 + +mQGiBEab+moRBACDH5yKqS3wcc5bdxY7PBNuwKvF5TKMfagmSvuRDtZjjIIWaA/n +Z1KboV9Gq5g7kP7+Kfu+Qgd8u65eVsWwmPW10fXvj3aCU53glx2EdGdrHcgiyH2g +EQfPiyBw+trIppWFRV0IDXSLMA1FNC92t2nSG/VFHaPTVwcgkIRSfcXDvwCglGdE +a6f4uLqoNHP+m4yYnzapFuMD/R4+2AJDAvEWKDdYCGZzlawjAmmWyXrmT7/C/mx9 +8qUR473l4buXjHgDkkXXlHqdzil1vK85PhrKzNJDCCmlHUJNz+QwiAMOLwpD+kwV +Pb57RG7y+a5JQ5+jtVw4RlUxZIk/wj2An9YBO3A5vR7PdjM32ZJCN2+aM4dYfNzQ +xQKTA/47icvBaBVTl9rztjg2pd2Aqpc1P/GsIYLGj7XjnnJvGAENBHSH1QjpZMJG +CTS9oJ+B0/wrIr+pA+MdFgYAb6ojMQJOO6UChjWWSGjMFcs/CeXhxlLBido3DtAE +TbNTwO6OEfAvdosvTdhJFnwvZlJ+zZGGy5CrF2Fd9PUe9tmASbQoQWxhbiBDb29w +ZXJzbWl0aCA8YWxhbmNAZnJlZWRlc2t0b3Aub3JnPohoBBMRAgAoAhsDBgsJCAcD +AgYVCAIJCgsEFgIDAQIeAQIXgAUCUXnRYgUJFEPYeAAKCRCi+54IHy0TDonxAKCP +cAgXNojuujUg5Wqi6v0RBFVSUgCggq1SsVEdq9NDWvXvkeGyNaBivSK0K0FsYW4g +Q29vcGVyc21pdGggPGFsYW4uY29vcGVyc21pdGhAc3VuLmNvbT6IZgQTEQIAJgIb +AwYLCQgHAwIEFQIIAwQWAgMBAh4BAheABQJRedFiBQkUQ9h4AAoJEKL7nggfLRMO +6sUAn0jl3h9rY4OJ13Lu7nsKclyhDpOqAKCFgTmaDGRuDRxloLg9jftrn7a7vrQu +QWxhbiBDb29wZXJzbWl0aCA8YWxhbi5jb29wZXJzbWl0aEBvcmFjbGUuY29tPohr +BBMRAgArAhsDBgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAIZAQUCUXnRYgUJFEPY +eAAKCRCi+54IHy0TDtBZAJ9IgVVNoFIPRjTsNjcSFaLznuDRJgCcC/WgV312IrxS +Q8PRAyEgozSB9Ke5Ag0ERpv6bxAIAJp5aUlho5rUhpS6ik7spsAQFPRuycPKMNu0 +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 +=tc6G +-----END PGP PUBLIC KEY BLOCK----- +-----BEGIN PGP PUBLIC KEY BLOCK----- + +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 +gPSRdLLYOLo= +=+H4u +-----END PGP PUBLIC KEY BLOCK----- --- libpciaccess-0.17.orig/debian/watch +++ libpciaccess-0.17/debian/watch @@ -0,0 +1,4 @@ +#git=git://anongit.freedesktop.org/xorg/lib/libpciaccess +version=3 +opts=pgpsigurlmangle=s/$/.sig/ \ +https://xorg.freedesktop.org/releases/individual/lib/ libpciaccess-(.*)\.tar\.gz --- libpciaccess-0.17.orig/src/Doxyfile +++ libpciaccess-0.17/src/Doxyfile @@ -0,0 +1,1228 @@ +# Doxyfile 1.4.4 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project +# +# All text after a hash (#) is considered a comment and will be ignored +# The format is: +# TAG = value [value, ...] +# For lists items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (" ") + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +# The PROJECT_NAME tag is a single word (or a sequence of words surrounded +# by quotes) that should identify the project. + +PROJECT_NAME = libpciaccess + +# The PROJECT_NUMBER tag can be used to enter a project or revision number. +# This could be handy for archiving the generated documentation or +# if some version control system is used. + +PROJECT_NUMBER = + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) +# base path where the generated documentation will be put. +# If a relative path is entered, it will be relative to the location +# where doxygen was started. If left blank the current directory will be used. + +OUTPUT_DIRECTORY = + +# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create +# 4096 sub-directories (in 2 levels) under the output directory of each output +# format and will distribute the generated files over these directories. +# Enabling this option can be useful when feeding doxygen a huge amount of +# source files, where putting all generated files in the same directory would +# otherwise cause performance problems for the file system. + +CREATE_SUBDIRS = NO + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# The default language is English, other supported languages are: +# Brazilian, Catalan, Chinese, Chinese-Traditional, Croatian, Czech, Danish, +# Dutch, Finnish, French, German, Greek, Hungarian, Italian, Japanese, +# Japanese-en (Japanese with English messages), Korean, Korean-en, Norwegian, +# Polish, Portuguese, Romanian, Russian, Serbian, Slovak, Slovene, Spanish, +# Swedish, and Ukrainian. + +OUTPUT_LANGUAGE = English + +# This tag can be used to specify the encoding used in the generated output. +# The encoding is not always determined by the language that is chosen, +# but also whether or not the output is meant for Windows or non-Windows users. +# In case there is a difference, setting the USE_WINDOWS_ENCODING tag to YES +# forces the Windows encoding (this is the default for the Windows binary), +# whereas setting the tag to NO uses a Unix-style encoding (the default for +# all platforms other than Windows). + +USE_WINDOWS_ENCODING = NO + +# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will +# include brief member descriptions after the members that are listed in +# the file and class documentation (similar to JavaDoc). +# Set to NO to disable this. + +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend +# the brief description of a member or function before the detailed description. +# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. + +REPEAT_BRIEF = YES + +# This tag implements a quasi-intelligent brief description abbreviator +# that is used to form the text in various listings. Each string +# in this list, if found as the leading text of the brief description, will be +# stripped from the text and the result after processing the whole list, is +# used as the annotated text. Otherwise, the brief description is used as-is. +# If left blank, the following values are used ("$name" is automatically +# replaced with the name of the entity): "The $name class" "The $name widget" +# "The $name file" "is" "provides" "specifies" "contains" +# "represents" "a" "an" "the" + +ABBREVIATE_BRIEF = + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# Doxygen will generate a detailed section even if there is only a brief +# description. + +ALWAYS_DETAILED_SEC = NO + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all +# inherited members of a class in the documentation of that class as if those +# members were ordinary class members. Constructors, destructors and assignment +# operators of the base classes will not be shown. + +INLINE_INHERITED_MEMB = NO + +# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full +# path before files name in the file list and in the header files. If set +# to NO the shortest path that makes the file name unique will be used. + +FULL_PATH_NAMES = YES + +# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag +# can be used to strip a user-defined part of the path. Stripping is +# only done if one of the specified strings matches the left-hand part of +# the path. The tag can be used to show relative paths in the file list. +# If left blank the directory from which doxygen is run is used as the +# path to strip. + +STRIP_FROM_PATH = + +# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of +# the path mentioned in the documentation of a class, which tells +# the reader which header file to include in order to use a class. +# If left blank only the name of the header file containing the class +# definition is used. Otherwise one should specify the include paths that +# are normally passed to the compiler using the -I flag. + +STRIP_FROM_INC_PATH = + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter +# (but less readable) file names. This can be useful is your file systems +# doesn't support long names like on DOS, Mac, or CD-ROM. + +SHORT_NAMES = NO + +# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen +# will interpret the first line (until the first dot) of a JavaDoc-style +# comment as the brief description. If set to NO, the JavaDoc +# comments will behave just like the Qt-style comments (thus requiring an +# explicit @brief command for a brief description. + +JAVADOC_AUTOBRIEF = NO + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen +# treat a multi-line C++ special comment block (i.e. a block of //! or /// +# comments) as a brief description. This used to be the default behaviour. +# The new default is to treat a multi-line C++ comment block as a detailed +# description. Set this tag to YES if you prefer the old behaviour instead. + +MULTILINE_CPP_IS_BRIEF = NO + +# If the DETAILS_AT_TOP tag is set to YES then Doxygen +# will output the detailed description near the top, like JavaDoc. +# If set to NO, the detailed description appears after the member +# documentation. + +DETAILS_AT_TOP = NO + +# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented +# member inherits the documentation from any documented member that it +# re-implements. + +INHERIT_DOCS = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES, then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. + +DISTRIBUTE_GROUP_DOC = NO + +# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce +# a new page for each member. If set to NO, the documentation of a member will +# be part of the file/class/namespace that contains it. + +SEPARATE_MEMBER_PAGES = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. +# Doxygen uses this value to replace tabs by spaces in code fragments. + +TAB_SIZE = 8 + +# This tag can be used to specify a number of aliases that acts +# as commands in the documentation. An alias has the form "name=value". +# For example adding "sideeffect=\par Side Effects:\n" will allow you to +# put the command \sideeffect (or @sideeffect) in the documentation, which +# will result in a user-defined paragraph with heading "Side Effects:". +# You can put \n's in the value part of an alias to insert newlines. + +ALIASES = + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C +# sources only. Doxygen will then generate output that is more tailored for C. +# For instance, some of the names that are used will be different. The list +# of all members will be omitted, etc. + +OPTIMIZE_OUTPUT_FOR_C = YES + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java sources +# only. Doxygen will then generate output that is more tailored for Java. +# For instance, namespaces will be presented as packages, qualified scopes +# will look different, etc. + +OPTIMIZE_OUTPUT_JAVA = NO + +# Set the SUBGROUPING tag to YES (the default) to allow class member groups of +# the same type (for instance a group of public functions) to be put as a +# subgroup of that type (e.g. under the Public Functions section). Set it to +# NO to prevent subgrouping. Alternatively, this can be done per class using +# the \nosubgrouping command. + +SUBGROUPING = YES + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in +# documentation are documented, even if no documentation was available. +# Private class members and static file members will be hidden unless +# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES + +EXTRACT_ALL = NO + +# If the EXTRACT_PRIVATE tag is set to YES all private members of a class +# will be included in the documentation. + +EXTRACT_PRIVATE = NO + +# If the EXTRACT_STATIC tag is set to YES all static members of a file +# will be included in the documentation. + +EXTRACT_STATIC = NO + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) +# defined locally in source files will be included in the documentation. +# If set to NO only classes defined in header files are included. + +EXTRACT_LOCAL_CLASSES = YES + +# This flag is only useful for Objective-C code. When set to YES local +# methods, which are defined in the implementation section but not in +# the interface are included in the documentation. +# If set to NO (the default) only methods in the interface are included. + +EXTRACT_LOCAL_METHODS = NO + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all +# undocumented members of documented classes, files or namespaces. +# If set to NO (the default) these members will be included in the +# various overviews, but no documentation section is generated. +# This option has no effect if EXTRACT_ALL is enabled. + +HIDE_UNDOC_MEMBERS = NO + +# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. +# If set to NO (the default) these classes will be included in the various +# overviews. This option has no effect if EXTRACT_ALL is enabled. + +HIDE_UNDOC_CLASSES = NO + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all +# friend (class|struct|union) declarations. +# If set to NO (the default) these declarations will be included in the +# documentation. + +HIDE_FRIEND_COMPOUNDS = NO + +# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any +# documentation blocks found inside the body of a function. +# If set to NO (the default) these blocks will be appended to the +# function's detailed documentation block. + +HIDE_IN_BODY_DOCS = NO + +# The INTERNAL_DOCS tag determines if documentation +# that is typed after a \internal command is included. If the tag is set +# to NO (the default) then the documentation will be excluded. +# Set it to YES to include the internal documentation. + +INTERNAL_DOCS = NO + +# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate +# file names in lower-case letters. If set to YES upper-case letters are also +# allowed. This is useful if you have classes or files whose names only differ +# in case and if your file system supports case sensitive file names. Windows +# and Mac users are advised to set this option to NO. + +CASE_SENSE_NAMES = YES + +# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen +# will show members with their full class and namespace scopes in the +# documentation. If set to YES the scope will be hidden. + +HIDE_SCOPE_NAMES = NO + +# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen +# will put a list of the files that are included by a file in the documentation +# of that file. + +SHOW_INCLUDE_FILES = YES + +# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] +# is inserted in the documentation for inline members. + +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen +# will sort the (detailed) documentation of file and class members +# alphabetically by member name. If set to NO the members will appear in +# declaration order. + +SORT_MEMBER_DOCS = YES + +# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the +# brief documentation of file, namespace and class members alphabetically +# by member name. If set to NO (the default) the members will appear in +# declaration order. + +SORT_BRIEF_DOCS = NO + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be +# sorted by fully-qualified names, including namespaces. If set to +# NO (the default), the class list will be sorted only by class name, +# not including the namespace part. +# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +# Note: This option applies only to the class list, not to the +# alphabetical list. + +SORT_BY_SCOPE_NAME = NO + +# The GENERATE_TODOLIST tag can be used to enable (YES) or +# disable (NO) the todo list. This list is created by putting \todo +# commands in the documentation. + +GENERATE_TODOLIST = YES + +# The GENERATE_TESTLIST tag can be used to enable (YES) or +# disable (NO) the test list. This list is created by putting \test +# commands in the documentation. + +GENERATE_TESTLIST = YES + +# The GENERATE_BUGLIST tag can be used to enable (YES) or +# disable (NO) the bug list. This list is created by putting \bug +# commands in the documentation. + +GENERATE_BUGLIST = YES + +# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or +# disable (NO) the deprecated list. This list is created by putting +# \deprecated commands in the documentation. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional +# documentation sections, marked by \if sectionname ... \endif. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines +# the initial value of a variable or define consists of for it to appear in +# the documentation. If the initializer consists of more lines than specified +# here it will be hidden. Use a value of 0 to hide initializers completely. +# The appearance of the initializer of individual variables and defines in the +# documentation can be controlled using \showinitializer or \hideinitializer +# command in the documentation regardless of this setting. + +MAX_INITIALIZER_LINES = 30 + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated +# at the bottom of the documentation of classes and structs. If set to YES the +# list will mention the files that were used to generate the documentation. + +SHOW_USED_FILES = YES + +# If the sources in your project are distributed over multiple directories +# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy +# in the documentation. The default is YES. + +SHOW_DIRECTORIES = YES + +# The FILE_VERSION_FILTER tag can be used to specify a program or script that +# doxygen should invoke to get the current version for each file (typically from the +# version control system). Doxygen will invoke the program by executing (via +# popen()) the command , where is the value of +# the FILE_VERSION_FILTER tag, and is the name of an input file +# provided by doxygen. Whatever the program writes to standard output +# is used as the file version. See the manual for examples. + +FILE_VERSION_FILTER = + +#--------------------------------------------------------------------------- +# configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated +# by doxygen. Possible values are YES and NO. If left blank NO is used. + +QUIET = NO + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated by doxygen. Possible values are YES and NO. If left blank +# NO is used. + +WARNINGS = YES + +# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings +# for undocumented members. If EXTRACT_ALL is set to YES then this flag will +# automatically be disabled. + +WARN_IF_UNDOCUMENTED = YES + +# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for +# potential errors in the documentation, such as not documenting some +# parameters in a documented function, or documenting parameters that +# don't exist or using markup commands wrongly. + +WARN_IF_DOC_ERROR = YES + +# This WARN_NO_PARAMDOC option can be abled to get warnings for +# functions that are documented, but have no documentation for their parameters +# or return value. If set to NO (the default) doxygen will only warn about +# wrong or incomplete parameter documentation, but not about the absence of +# documentation. + +WARN_NO_PARAMDOC = NO + +# The WARN_FORMAT tag determines the format of the warning messages that +# doxygen can produce. The string should contain the $file, $line, and $text +# tags, which will be replaced by the file and line number from which the +# warning originated and the warning text. Optionally the format may contain +# $version, which will be replaced by the version of the file (if it could +# be obtained via FILE_VERSION_FILTER) + +WARN_FORMAT = "$file:$line: $text" + +# The WARN_LOGFILE tag can be used to specify a file to which warning +# and error messages should be written. If left blank the output is written +# to stderr. + +WARN_LOGFILE = + +#--------------------------------------------------------------------------- +# configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag can be used to specify the files and/or directories that contain +# documented source files. You may enter file names like "myfile.cpp" or +# directories like "/usr/src/myproject". Separate the files or directories +# with spaces. + +INPUT = + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +# and *.h) to filter out the source-files in the directories. If left +# blank the following patterns are tested: +# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx +# *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm + +FILE_PATTERNS = + +# The RECURSIVE tag can be used to turn specify whether or not subdirectories +# should be searched for input files as well. Possible values are YES and NO. +# If left blank NO is used. + +RECURSIVE = NO + +# The EXCLUDE tag can be used to specify files and/or directories that should +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. + +EXCLUDE = + +# The EXCLUDE_SYMLINKS tag can be used select whether or not files or +# directories that are symbolic links (a Unix filesystem feature) are excluded +# from the input. + +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. Note that the wildcards are matched +# against the file with absolute path, so to exclude all test directories +# for example use the pattern */test/* + +EXCLUDE_PATTERNS = + +# The EXAMPLE_PATH tag can be used to specify one or more files or +# directories that contain example code fragments that are included (see +# the \include command). + +EXAMPLE_PATH = + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +# and *.h) to filter out the source-files in the directories. If left +# blank all files are included. + +EXAMPLE_PATTERNS = + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude +# commands irrespective of the value of the RECURSIVE tag. +# Possible values are YES and NO. If left blank NO is used. + +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or +# directories that contain image that are included in the documentation (see +# the \image command). + +IMAGE_PATH = + +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command , where +# is the value of the INPUT_FILTER tag, and is the name of an +# input file. Doxygen will then use the output that the filter program writes +# to standard output. If FILTER_PATTERNS is specified, this tag will be +# ignored. + +INPUT_FILTER = + +# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern +# basis. Doxygen will compare the file name with each pattern and apply the +# filter if there is a match. The filters are a list of the form: +# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further +# info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER +# is applied to all files. + +FILTER_PATTERNS = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER) will be used to filter the input files when producing source +# files to browse (i.e. when SOURCE_BROWSER is set to YES). + +FILTER_SOURCE_FILES = NO + +#--------------------------------------------------------------------------- +# configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will +# be generated. Documented entities will be cross-referenced with these sources. +# Note: To get rid of all source code in the generated output, make sure also +# VERBATIM_HEADERS is set to NO. + +SOURCE_BROWSER = NO + +# Setting the INLINE_SOURCES tag to YES will include the body +# of functions and classes directly in the documentation. + +INLINE_SOURCES = NO + +# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct +# doxygen to hide any special comment blocks from generated source code +# fragments. Normal C and C++ comments will always remain visible. + +STRIP_CODE_COMMENTS = YES + +# If the REFERENCED_BY_RELATION tag is set to YES (the default) +# then for each documented function all documented +# functions referencing it will be listed. + +REFERENCED_BY_RELATION = YES + +# If the REFERENCES_RELATION tag is set to YES (the default) +# then for each documented function all documented entities +# called/used by that function will be listed. + +REFERENCES_RELATION = YES + +# If the USE_HTAGS tag is set to YES then the references to source code +# will point to the HTML generated by the htags(1) tool instead of doxygen +# built-in source browser. The htags tool is part of GNU's global source +# tagging system (see http://www.gnu.org/software/global/global.html). You +# will need version 4.8.6 or higher. + +USE_HTAGS = NO + +# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen +# will generate a verbatim copy of the header file for each class for +# which an include is specified. Set to NO to disable this. + +VERBATIM_HEADERS = YES + +#--------------------------------------------------------------------------- +# configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index +# of all compounds will be generated. Enable this if the project +# contains a lot of classes, structs, unions or interfaces. + +ALPHABETICAL_INDEX = NO + +# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then +# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns +# in which this list will be split (can be a number in the range [1..20]) + +COLS_IN_ALPHA_INDEX = 5 + +# In case all classes in a project start with a common prefix, all +# classes will be put under the same header in the alphabetical index. +# The IGNORE_PREFIX tag can be used to specify one or more prefixes that +# should be ignored while generating the index headers. + +IGNORE_PREFIX = + +#--------------------------------------------------------------------------- +# configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES (the default) Doxygen will +# generate HTML output. + +GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `html' will be used as the default path. + +HTML_OUTPUT = html + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for +# each generated HTML page (for example: .htm,.php,.asp). If it is left blank +# doxygen will generate files with .html extension. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a personal HTML header for +# each generated HTML page. If it is left blank doxygen will generate a +# standard header. + +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a personal HTML footer for +# each generated HTML page. If it is left blank doxygen will generate a +# standard footer. + +HTML_FOOTER = + +# The HTML_STYLESHEET tag can be used to specify a user-defined cascading +# style sheet that is used by each HTML page. It can be used to +# fine-tune the look of the HTML output. If the tag is left blank doxygen +# will generate a default style sheet. Note that doxygen will try to copy +# the style sheet file to the HTML output directory, so don't put your own +# stylesheet in the HTML output directory as well, or it will be erased! + +HTML_STYLESHEET = + +# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, +# files or namespaces will be aligned in HTML using tables. If set to +# NO a bullet list will be used. + +HTML_ALIGN_MEMBERS = YES + +# If the GENERATE_HTMLHELP tag is set to YES, additional index files +# will be generated that can be used as input for tools like the +# Microsoft HTML help workshop to generate a compressed HTML help file (.chm) +# of the generated HTML documentation. + +GENERATE_HTMLHELP = NO + +# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can +# be used to specify the file name of the resulting .chm file. You +# can add a path in front of the file if the result should not be +# written to the html output directory. + +CHM_FILE = + +# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can +# be used to specify the location (absolute path including file name) of +# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run +# the HTML help compiler on the generated index.hhp. + +HHC_LOCATION = + +# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag +# controls if a separate .chi index file is generated (YES) or that +# it should be included in the master .chm file (NO). + +GENERATE_CHI = NO + +# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag +# controls whether a binary table of contents is generated (YES) or a +# normal table of contents (NO) in the .chm file. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members +# to the contents of the HTML help documentation and to the tree view. + +TOC_EXPAND = NO + +# The DISABLE_INDEX tag can be used to turn on/off the condensed index at +# top of each HTML page. The value NO (the default) enables the index and +# the value YES disables it. + +DISABLE_INDEX = NO + +# This tag can be used to set the number of enum values (range [1..20]) +# that doxygen will group on one line in the generated HTML documentation. + +ENUM_VALUES_PER_LINE = 4 + +# If the GENERATE_TREEVIEW tag is set to YES, a side panel will be +# generated containing a tree-like index structure (just like the one that +# is generated for HTML Help). For this to work a browser that supports +# JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+, +# Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are +# probably better off using the HTML help feature. + +GENERATE_TREEVIEW = NO + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be +# used to set the initial width (in pixels) of the frame in which the tree +# is shown. + +TREEVIEW_WIDTH = 250 + +#--------------------------------------------------------------------------- +# configuration options related to the LaTeX output +#--------------------------------------------------------------------------- + +# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will +# generate Latex output. + +GENERATE_LATEX = YES + +# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `latex' will be used as the default path. + +LATEX_OUTPUT = latex + +# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be +# invoked. If left blank `latex' will be used as the default command name. + +LATEX_CMD_NAME = latex + +# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to +# generate index for LaTeX. If left blank `makeindex' will be used as the +# default command name. + +MAKEINDEX_CMD_NAME = makeindex + +# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact +# LaTeX documents. This may be useful for small projects and may help to +# save some trees in general. + +COMPACT_LATEX = NO + +# The PAPER_TYPE tag can be used to set the paper type that is used +# by the printer. Possible values are: a4, a4wide, letter, legal and +# executive. If left blank a4wide will be used. + +PAPER_TYPE = a4wide + +# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX +# packages that should be included in the LaTeX output. + +EXTRA_PACKAGES = + +# The LATEX_HEADER tag can be used to specify a personal LaTeX header for +# the generated latex document. The header should contain everything until +# the first chapter. If it is left blank doxygen will generate a +# standard header. Notice: only use this tag if you know what you are doing! + +LATEX_HEADER = + +# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated +# is prepared for conversion to pdf (using ps2pdf). The pdf file will +# contain links (just like the HTML output) instead of page references +# This makes the output suitable for online browsing using a pdf viewer. + +PDF_HYPERLINKS = NO + +# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of +# plain latex in the generated Makefile. Set this option to YES to get a +# higher quality PDF documentation. + +USE_PDFLATEX = NO + +# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. +# command to the generated LaTeX files. This will instruct LaTeX to keep +# running if errors occur, instead of asking the user for help. +# This option is also used when generating formulas in HTML. + +LATEX_BATCHMODE = NO + +# If LATEX_HIDE_INDICES is set to YES then doxygen will not +# include the index chapters (such as File Index, Compound Index, etc.) +# in the output. + +LATEX_HIDE_INDICES = NO + +#--------------------------------------------------------------------------- +# configuration options related to the RTF output +#--------------------------------------------------------------------------- + +# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output +# The RTF output is optimized for Word 97 and may not look very pretty with +# other RTF readers or editors. + +GENERATE_RTF = NO + +# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `rtf' will be used as the default path. + +RTF_OUTPUT = rtf + +# If the COMPACT_RTF tag is set to YES Doxygen generates more compact +# RTF documents. This may be useful for small projects and may help to +# save some trees in general. + +COMPACT_RTF = NO + +# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated +# will contain hyperlink fields. The RTF file will +# contain links (just like the HTML output) instead of page references. +# This makes the output suitable for online browsing using WORD or other +# programs which support those fields. +# Note: wordpad (write) and others do not support links. + +RTF_HYPERLINKS = NO + +# Load stylesheet definitions from file. Syntax is similar to doxygen's +# config file, i.e. a series of assignments. You only have to provide +# replacements, missing definitions are set to their default value. + +RTF_STYLESHEET_FILE = + +# Set optional variables used in the generation of an rtf document. +# Syntax is similar to doxygen's config file. + +RTF_EXTENSIONS_FILE = + +#--------------------------------------------------------------------------- +# configuration options related to the man page output +#--------------------------------------------------------------------------- + +# If the GENERATE_MAN tag is set to YES (the default) Doxygen will +# generate man pages + +GENERATE_MAN = NO + +# The MAN_OUTPUT tag is used to specify where the man pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `man' will be used as the default path. + +MAN_OUTPUT = man + +# The MAN_EXTENSION tag determines the extension that is added to +# the generated man pages (default is the subroutine's section .3) + +MAN_EXTENSION = .3 + +# If the MAN_LINKS tag is set to YES and Doxygen generates man output, +# then it will generate one additional man file for each entity +# documented in the real man page(s). These additional files +# only source the real man page, but without them the man command +# would be unable to find the correct page. The default is NO. + +MAN_LINKS = NO + +#--------------------------------------------------------------------------- +# configuration options related to the XML output +#--------------------------------------------------------------------------- + +# If the GENERATE_XML tag is set to YES Doxygen will +# generate an XML file that captures the structure of +# the code including all documentation. + +GENERATE_XML = NO + +# The XML_OUTPUT tag is used to specify where the XML pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `xml' will be used as the default path. + +XML_OUTPUT = xml + +# The XML_SCHEMA tag can be used to specify an XML schema, +# which can be used by a validating XML parser to check the +# syntax of the XML files. + +XML_SCHEMA = + +# The XML_DTD tag can be used to specify an XML DTD, +# which can be used by a validating XML parser to check the +# syntax of the XML files. + +XML_DTD = + +# If the XML_PROGRAMLISTING tag is set to YES Doxygen will +# dump the program listings (including syntax highlighting +# and cross-referencing information) to the XML output. Note that +# enabling this will significantly increase the size of the XML output. + +XML_PROGRAMLISTING = YES + +#--------------------------------------------------------------------------- +# configuration options for the AutoGen Definitions output +#--------------------------------------------------------------------------- + +# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will +# generate an AutoGen Definitions (see autogen.sf.net) file +# that captures the structure of the code including all +# documentation. Note that this feature is still experimental +# and incomplete at the moment. + +GENERATE_AUTOGEN_DEF = NO + +#--------------------------------------------------------------------------- +# configuration options related to the Perl module output +#--------------------------------------------------------------------------- + +# If the GENERATE_PERLMOD tag is set to YES Doxygen will +# generate a Perl module file that captures the structure of +# the code including all documentation. Note that this +# feature is still experimental and incomplete at the +# moment. + +GENERATE_PERLMOD = NO + +# If the PERLMOD_LATEX tag is set to YES Doxygen will generate +# the necessary Makefile rules, Perl scripts and LaTeX code to be able +# to generate PDF and DVI output from the Perl module output. + +PERLMOD_LATEX = NO + +# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be +# nicely formatted so it can be parsed by a human reader. This is useful +# if you want to understand what is going on. On the other hand, if this +# tag is set to NO the size of the Perl module output will be much smaller +# and Perl will parse it just the same. + +PERLMOD_PRETTY = YES + +# The names of the make variables in the generated doxyrules.make file +# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. +# This is useful so different doxyrules.make files included by the same +# Makefile don't overwrite each other's variables. + +PERLMOD_MAKEVAR_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the preprocessor +#--------------------------------------------------------------------------- + +# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will +# evaluate all C-preprocessor directives found in the sources and include +# files. + +ENABLE_PREPROCESSING = YES + +# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro +# names in the source code. If set to NO (the default) only conditional +# compilation will be performed. Macro expansion can be done in a controlled +# way by setting EXPAND_ONLY_PREDEF to YES. + +MACRO_EXPANSION = NO + +# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES +# then the macro expansion is limited to the macros specified with the +# PREDEFINED and EXPAND_AS_PREDEFINED tags. + +EXPAND_ONLY_PREDEF = NO + +# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files +# in the INCLUDE_PATH (see below) will be search if a #include is found. + +SEARCH_INCLUDES = YES + +# The INCLUDE_PATH tag can be used to specify one or more directories that +# contain include files that are not input files but should be processed by +# the preprocessor. + +INCLUDE_PATH = + +# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard +# patterns (like *.h and *.hpp) to filter out the header-files in the +# directories. If left blank, the patterns specified with FILE_PATTERNS will +# be used. + +INCLUDE_FILE_PATTERNS = + +# The PREDEFINED tag can be used to specify one or more macro names that +# are defined before the preprocessor is started (similar to the -D option of +# gcc). The argument of the tag is a list of macros of the form: name +# or name=definition (no spaces). If the definition and the = are +# omitted =1 is assumed. To prevent a macro definition from being +# undefined via #undef or recursively expanded use the := operator +# instead of the = operator. + +PREDEFINED = + +# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then +# this tag can be used to specify a list of macro names that should be expanded. +# The macro definition that is found in the sources will be used. +# Use the PREDEFINED tag if you want to use a different macro definition. + +EXPAND_AS_DEFINED = + +# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then +# doxygen's preprocessor will remove all function-like macros that are alone +# on a line, have an all uppercase name, and do not end with a semicolon. Such +# function macros are typically used for boiler-plate code, and will confuse +# the parser if not removed. + +SKIP_FUNCTION_MACROS = YES + +#--------------------------------------------------------------------------- +# Configuration::additions related to external references +#--------------------------------------------------------------------------- + +# The TAGFILES option can be used to specify one or more tagfiles. +# Optionally an initial location of the external documentation +# can be added for each tagfile. The format of a tag file without +# this location is as follows: +# TAGFILES = file1 file2 ... +# Adding location for the tag files is done as follows: +# TAGFILES = file1=loc1 "file2 = loc2" ... +# where "loc1" and "loc2" can be relative or absolute paths or +# URLs. If a location is present for each tag, the installdox tool +# does not have to be run to correct the links. +# Note that each tag file must have a unique name +# (where the name does NOT include the path) +# If a tag file is not located in the directory in which doxygen +# is run, you must also specify the path to the tagfile here. + +TAGFILES = + +# When a file name is specified after GENERATE_TAGFILE, doxygen will create +# a tag file that is based on the input files it reads. + +GENERATE_TAGFILE = + +# If the ALLEXTERNALS tag is set to YES all external classes will be listed +# in the class index. If set to NO only the inherited external classes +# will be listed. + +ALLEXTERNALS = NO + +# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed +# in the modules index. If set to NO, only the current project's groups will +# be listed. + +EXTERNAL_GROUPS = YES + +# The PERL_PATH should be the absolute path and name of the perl script +# interpreter (i.e. the result of `which perl'). + +PERL_PATH = /usr/bin/perl + +#--------------------------------------------------------------------------- +# Configuration options related to the dot tool +#--------------------------------------------------------------------------- + +# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will +# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base +# or super classes. Setting the tag to NO turns the diagrams off. Note that +# this option is superseded by the HAVE_DOT option below. This is only a +# fallback. It is recommended to install and use dot, since it yields more +# powerful graphs. + +CLASS_DIAGRAMS = YES + +# If set to YES, the inheritance and collaboration graphs will hide +# inheritance and usage relations if the target is undocumented +# or is not a class. + +HIDE_UNDOC_RELATIONS = YES + +# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is +# available from the path. This tool is part of Graphviz, a graph visualization +# toolkit from AT&T and Lucent Bell Labs. The other options in this section +# have no effect if this option is set to NO (the default) + +HAVE_DOT = NO + +# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for each documented class showing the direct and +# indirect inheritance relations. Setting this tag to YES will force the +# the CLASS_DIAGRAMS tag to NO. + +CLASS_GRAPH = YES + +# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for each documented class showing the direct and +# indirect implementation dependencies (inheritance, containment, and +# class references variables) of the class with other documented classes. + +COLLABORATION_GRAPH = YES + +# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for groups, showing the direct groups dependencies + +GROUP_GRAPHS = YES + +# If the UML_LOOK tag is set to YES doxygen will generate inheritance and +# collaboration diagrams in a style similar to the OMG's Unified Modeling +# Language. + +UML_LOOK = NO + +# If set to YES, the inheritance and collaboration graphs will show the +# relations between templates and their instances. + +TEMPLATE_RELATIONS = NO + +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT +# tags are set to YES then doxygen will generate a graph for each documented +# file showing the direct and indirect include dependencies of the file with +# other documented files. + +INCLUDE_GRAPH = YES + +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and +# HAVE_DOT tags are set to YES then doxygen will generate a graph for each +# documented header file showing the documented files that directly or +# indirectly include this file. + +INCLUDED_BY_GRAPH = YES + +# If the CALL_GRAPH and HAVE_DOT tags are set to YES then doxygen will +# generate a call dependency graph for every global function or class method. +# Note that enabling this option will significantly increase the time of a run. +# So in most cases it will be better to enable call graphs for selected +# functions only using the \callgraph command. + +CALL_GRAPH = NO + +# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen +# will graphical hierarchy of all classes instead of a textual one. + +GRAPHICAL_HIERARCHY = YES + +# If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES +# then doxygen will show the dependencies a directory has on other directories +# in a graphical way. The dependency relations are determined by the #include +# relations between the files in the directories. + +DIRECTORY_GRAPH = YES + +# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images +# generated by dot. Possible values are png, jpg, or gif +# If left blank png will be used. + +DOT_IMAGE_FORMAT = png + +# The tag DOT_PATH can be used to specify the path where the dot tool can be +# found. If left blank, it is assumed the dot tool can be found in the path. + +DOT_PATH = + +# The DOTFILE_DIRS tag can be used to specify one or more directories that +# contain dot files that are included in the documentation (see the +# \dotfile command). + +DOTFILE_DIRS = + +# The MAX_DOT_GRAPH_WIDTH tag can be used to set the maximum allowed width +# (in pixels) of the graphs generated by dot. If a graph becomes larger than +# this value, doxygen will try to truncate the graph, so that it fits within +# the specified constraint. Beware that most browsers cannot cope with very +# large images. + +MAX_DOT_GRAPH_WIDTH = 1024 + +# The MAX_DOT_GRAPH_HEIGHT tag can be used to set the maximum allows height +# (in pixels) of the graphs generated by dot. If a graph becomes larger than +# this value, doxygen will try to truncate the graph, so that it fits within +# the specified constraint. Beware that most browsers cannot cope with very +# large images. + +MAX_DOT_GRAPH_HEIGHT = 1024 + +# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the +# graphs generated by dot. A depth value of 3 means that only nodes reachable +# from the root by following a path via at most 3 edges will be shown. Nodes +# that lay further from the root node will be omitted. Note that setting this +# option to 1 or 2 may greatly reduce the computation time needed for large +# code bases. Also note that a graph may be further truncated if the graph's +# image dimensions are not sufficient to fit the graph (see MAX_DOT_GRAPH_WIDTH +# and MAX_DOT_GRAPH_HEIGHT). If 0 is used for the depth value (the default), +# the graph is not depth-constrained. + +MAX_DOT_GRAPH_DEPTH = 0 + +# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent +# background. This is disabled by default, which results in a white background. +# Warning: Depending on the platform used, enabling this option may lead to +# badly anti-aliased labels on the edges of a graph (i.e. they become hard to +# read). + +DOT_TRANSPARENT = NO + +# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output +# files in one run (i.e. multiple -o and -T options on the command line). This +# makes dot run faster, but since only newer versions of dot (>1.8.10) +# support this, this feature is disabled by default. + +DOT_MULTI_TARGETS = NO + +# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will +# generate a legend page explaining the meaning of the various boxes and +# arrows in the dot generated graphs. + +GENERATE_LEGEND = YES + +# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will +# remove the intermediate dot files that are used to generate +# the various graphs. + +DOT_CLEANUP = YES + +#--------------------------------------------------------------------------- +# Configuration::additions related to the search engine +#--------------------------------------------------------------------------- + +# The SEARCHENGINE tag specifies whether or not a search engine should be +# used. If set to NO the values of all tags below this one will be ignored. + +SEARCHENGINE = NO