aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--configure.ac4
-rw-r--r--scripts/spl.spec28
3 files changed, 8 insertions, 30 deletions
diff --git a/ChangeLog b/ChangeLog
index a65d6b15d..5f5e2fe11 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-05-21 Brian Behlendorf <[email protected]>
+
+ * : Tag spl-0.3.0
+
+ * configure.ac: Improved autotools support.
+
2008-04-26 Brian Behlendorf <[email protected]>
* include/sys/mutex.h : Implemented a close approximation
diff --git a/configure.ac b/configure.ac
index a1b051c0f..af47481b3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,7 +1,7 @@
AC_INIT
AC_CANONICAL_SYSTEM
-AM_INIT_AUTOMAKE(spl, 0.2.2)
+AM_INIT_AUTOMAKE(spl, 0.3.0)
AC_CONFIG_HEADERS([config.h])
AC_PROG_INSTALL
@@ -19,7 +19,7 @@ AC_DEFUN([SPL_AC_KERNEL], [
[Path to kernel source]),
[kernelsrc="$withval"; kernelbuild="$withval"])
- AC_ARG_WITH([linux-build],
+ AC_ARG_WITH([linux-obj],
AS_HELP_STRING([--with-linux-obj=PATH],
[Path to kernel build objects]),
[kernelbuild="$withval"])
diff --git a/scripts/spl.spec b/scripts/spl.spec
deleted file mode 100644
index 31ea18fc6..000000000
--- a/scripts/spl.spec
+++ /dev/null
@@ -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