udev.spec revision 8b36cc0f179ee35176016ab67ae53078df4110fa
# if we want to build against the included version of klibc or not.
# 0 - do not use klibc
# 1 - use klibc
# Watch out for where the linux symlink is in the klibc part of the tarball,
# it probably is not where you want it to be.
# if we want to have logging support in or not.
# 0 - no logging support
# 1 - logging support
# Note, it is not recommend if you use klibc to enable logging.
# if we want to enable debugging support in udev. If it is enabled, lots of
# stuff will get sent to the debug syslog.
# 0 - debugging disabled
# 1 - debugging enabled
# if we want to build the scsi_id "extra" package or not
# 0 - do not build the package
# 1 - build it
# if we want to build the volume_id "extra" package or not
# 0 - do not build the package
# 1 - build it
Version: 050
Release: 1
%prep
%setup -q
%if %{klibc}
USE_KLIBC=true \
%if %{log}
USE_LOG=true \
%else
USE_LOG=false \
%if %{debug}
DEBUG=true \
%else
DEBUG=false \
EXTRAS=" \
%if %{scsi_id}
%endif
%if %{volume_id}
%endif
"
EXTRAS=" \
%if %{scsi_id}
%endif
%if %{volume_id}
%endif
"
%post
if [ $1 = 0 ]; then
fi
%if %{scsi_id}
%if %{volume_id}
- add udevtest to list of files
- more Red Hat sync ups.
* Thu Feb 12 2004 Greg Kroah-Hartman <greg@kroah.com>
- add some changes from the latest Fedora udev release.
* Mon Feb 2 2004 Greg Kroah-Hartman <greg@kroah.com>
- add udevsend, and udevd to the files
- add ability to build udevd with glibc after the rest is build with klibc
* Mon Jan 26 2004 Greg Kroah-Hartman <greg@kroah.com>
- added udevinfo to rpm
- added URL to spec file