Prep for for 0.3.0 tag, this is the tag which was used for all

the performance results to date.



git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@112 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c
This commit is contained in:
behlendo 2008-05-21 21:11:47 +00:00
parent cc7449ccd6
commit b2585b36d3
3 changed files with 8 additions and 30 deletions

View File

@ -1,3 +1,9 @@
2008-05-21 Brian Behlendorf <behlendorf1@llnl.gov>
* : Tag spl-0.3.0
* configure.ac: Improved autotools support.
2008-04-26 Brian Behlendorf <behlendorf1@llnl.gov> 2008-04-26 Brian Behlendorf <behlendorf1@llnl.gov>
* include/sys/mutex.h : Implemented a close approximation * include/sys/mutex.h : Implemented a close approximation

View File

@ -1,7 +1,7 @@
AC_INIT AC_INIT
AC_CANONICAL_SYSTEM AC_CANONICAL_SYSTEM
AM_INIT_AUTOMAKE(spl, 0.2.2) AM_INIT_AUTOMAKE(spl, 0.3.0)
AC_CONFIG_HEADERS([config.h]) AC_CONFIG_HEADERS([config.h])
AC_PROG_INSTALL AC_PROG_INSTALL
@ -19,7 +19,7 @@ AC_DEFUN([SPL_AC_KERNEL], [
[Path to kernel source]), [Path to kernel source]),
[kernelsrc="$withval"; kernelbuild="$withval"]) [kernelsrc="$withval"; kernelbuild="$withval"])
AC_ARG_WITH([linux-build], AC_ARG_WITH([linux-obj],
AS_HELP_STRING([--with-linux-obj=PATH], AS_HELP_STRING([--with-linux-obj=PATH],
[Path to kernel build objects]), [Path to kernel build objects]),
[kernelbuild="$withval"]) [kernelbuild="$withval"])

View File

@ -1,28 +0,0 @@
# spl
%define name spl
%define version 0.2.2
Summary: Solaris Porting Layer
Name: %{name}
Version: %{version}
Release: 1
Copyright: GPL
Group: Utilities/System
BuildRoot: /tmp/%{name}-%{version}
Source: %{name}-%{version}.tar.gz
%description
Abstration layer to provide Solaris style primatives in the linux kernel.
%prep
%setup -q
./configure
%build
rm -rf $RPM_BUILD_ROOT
make
%install
make install "DESTDIR=$RPM_BUILD_ROOT"
%files