-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
UBUNTU: SAUCE: (noup) Update spl to 0.6.5.11-1, zfs to 0.6.5.11-1ubuntu1
Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
- Loading branch information
Colin Ian King
authored and
Seth Forshee
committed
Aug 8, 2017
1 parent
dbc6631
commit 65b0a22
Showing
33 changed files
with
350 additions
and
775 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
Meta: 1 | ||
Name: spl | ||
Branch: 1.0 | ||
Version: 0.6.5.10 | ||
Version: 0.6.5.11 | ||
Release: 1 | ||
Release-Tags: relext | ||
License: GPL | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
Meta: 1 | ||
Name: zfs | ||
Branch: 1.0 | ||
Version: 0.6.5.10 | ||
Release: 1ubuntu2~2 | ||
Version: 0.6.5.11 | ||
Release: 1ubuntu1 | ||
Release-Tags: relext | ||
License: CDDL | ||
Author: OpenZFS on Linux |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
dnl # | ||
dnl # glibc 2.25 | ||
dnl # | ||
AC_DEFUN([ZFS_AC_CONFIG_USER_MAKEDEV_IN_SYSMACROS], [ | ||
AC_MSG_CHECKING([makedev() is declared in sys/sysmacros.h]) | ||
AC_TRY_COMPILE( | ||
[ | ||
#include <sys/sysmacros.h> | ||
],[ | ||
int k; | ||
k = makedev(0,0); | ||
],[ | ||
AC_MSG_RESULT(yes) | ||
AC_DEFINE(HAVE_MAKEDEV_IN_SYSMACROS, 1, | ||
[makedev() is declared in sys/sysmacros.h]) | ||
],[ | ||
AC_MSG_RESULT(no) | ||
]) | ||
]) | ||
|
||
dnl # | ||
dnl # glibc X < Y < 2.25 | ||
dnl # | ||
AC_DEFUN([ZFS_AC_CONFIG_USER_MAKEDEV_IN_MKDEV], [ | ||
AC_MSG_CHECKING([makedev() is declared in sys/mkdev.h]) | ||
AC_TRY_COMPILE( | ||
[ | ||
#include <sys/mkdev.h> | ||
],[ | ||
int k; | ||
k = makedev(0,0); | ||
],[ | ||
AC_MSG_RESULT(yes) | ||
AC_DEFINE(HAVE_MAKEDEV_IN_MKDEV, 1, | ||
[makedev() is declared in sys/mkdev.h]) | ||
],[ | ||
AC_MSG_RESULT(no) | ||
]) | ||
]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
dnl # | ||
dnl # Check if gcc supports -Wno-format-truncation option. | ||
dnl # | ||
AC_DEFUN([ZFS_AC_CONFIG_USER_NO_FORMAT_TRUNCATION], [ | ||
AC_MSG_CHECKING([for -Wno-format-truncation support]) | ||
saved_flags="$CFLAGS" | ||
CFLAGS="$CFLAGS -Wno-format-truncation" | ||
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [])], | ||
[ | ||
NO_FORMAT_TRUNCATION=-Wno-format-truncation | ||
AC_MSG_RESULT([yes]) | ||
], | ||
[ | ||
NO_FORMAT_TRUNCATION= | ||
AC_MSG_RESULT([no]) | ||
]) | ||
CFLAGS="$saved_flags" | ||
AC_SUBST([NO_FORMAT_TRUNCATION]) | ||
]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.