mirror of
https://github.com/Yubico/yubico-pam.git
synced 2025-01-19 16:52:17 +01:00
Bump version. Use silent rules. Bump copyright years.
This commit is contained in:
parent
d5978df794
commit
3828953374
2
COPYING
2
COPYING
@ -1,4 +1,4 @@
|
|||||||
Copyright (c) 2006, 2007, 2008, 2009, 2011 Yubico AB
|
Copyright (c) 2006-2012 Yubico AB
|
||||||
All rights reserved.
|
All rights reserved.
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
Redistribution and use in source and binary forms, with or without
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
# Written by Simon Josefsson <simon@yubico.com>.
|
# Written by Simon Josefsson <simon@yubico.com>.
|
||||||
# Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011 Yubico AB
|
# Copyright (c) 2006-2012 Yubico AB
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
# Redistribution and use in source and binary forms, with or without
|
# Redistribution and use in source and binary forms, with or without
|
||||||
|
2
NEWS
2
NEWS
@ -1,5 +1,7 @@
|
|||||||
pam_yubico NEWS -- History of user-visible changes. -*- outline -*-
|
pam_yubico NEWS -- History of user-visible changes. -*- outline -*-
|
||||||
|
|
||||||
|
* Version 2.11 (unreleased)
|
||||||
|
|
||||||
* Version 2.10 (released 2011-12-14)
|
* Version 2.10 (released 2011-12-14)
|
||||||
|
|
||||||
** Drop permissions (to the user that is trying to authenticate) before
|
** Drop permissions (to the user that is trying to authenticate) before
|
||||||
|
7
README
7
README
@ -25,9 +25,10 @@ The development community is co-ordinated via Google Code :
|
|||||||
|
|
||||||
http://code.google.com/p/yubico-pam/
|
http://code.google.com/p/yubico-pam/
|
||||||
|
|
||||||
The license for pam_yubico is the 2-clause BSD license, which is
|
The project is licensed under a BSD license. See the file COPYING for
|
||||||
compatible with the Linux-PAM BSD/GPL license. See the file COPYING
|
exact wording. For any copyright year range specified as YYYY-ZZZZ in
|
||||||
for more information.
|
this package note that the range specifies every single year in that
|
||||||
|
closed interval.
|
||||||
|
|
||||||
|
|
||||||
Building from Git
|
Building from Git
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
# Written by Simon Josefsson <simon@yubico.com>.
|
# Written by Simon Josefsson <simon@yubico.com>.
|
||||||
# Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011 Yubico AB
|
# Copyright (c) 2006-2012 Yubico AB
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
# Redistribution and use in source and binary forms, with or without
|
# Redistribution and use in source and binary forms, with or without
|
||||||
@ -26,10 +26,11 @@
|
|||||||
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||||
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
AC_INIT([pam_yubico], [2.10], [yubico-devel@googlegroups.com])
|
AC_INIT([pam_yubico], [2.11], [yubico-devel@googlegroups.com])
|
||||||
AC_CONFIG_AUX_DIR([build-aux])
|
AC_CONFIG_AUX_DIR([build-aux])
|
||||||
AC_CONFIG_MACRO_DIR([m4])
|
AC_CONFIG_MACRO_DIR([m4])
|
||||||
AM_INIT_AUTOMAKE([foreign])
|
AM_INIT_AUTOMAKE([1.10 foreign -Wall -Werror])
|
||||||
|
AM_SILENT_RULES([yes])
|
||||||
AC_PROG_CC
|
AC_PROG_CC
|
||||||
AC_LIBTOOL_WIN32_DLL
|
AC_LIBTOOL_WIN32_DLL
|
||||||
AC_DISABLE_STATIC
|
AC_DISABLE_STATIC
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
/* Written by Ricky Zhou <ricky@fedoraproject.org>
|
/* Written by Ricky Zhou <ricky@fedoraproject.org>
|
||||||
* Fredrik Thulin <fredrik@yubico.com> implemented pam_modutil_drop_priv
|
* Fredrik Thulin <fredrik@yubico.com> implemented pam_modutil_drop_priv
|
||||||
*
|
*
|
||||||
|
* Copyright (c) 2011-2012 Yubico AB
|
||||||
* Copyright (c) 2011 Ricky Zhou <ricky@fedoraproject.org>
|
* Copyright (c) 2011 Ricky Zhou <ricky@fedoraproject.org>
|
||||||
* Copyright (c) 2011 Yubico AB
|
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* Redistribution and use in source and binary forms, with or without
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
28
drop_privs.h
28
drop_privs.h
@ -1,3 +1,31 @@
|
|||||||
|
/* Copyright (c) 2011-2012 Yubico AB
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are
|
||||||
|
* met:
|
||||||
|
*
|
||||||
|
* * Redistributions of source code must retain the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer.
|
||||||
|
*
|
||||||
|
* * Redistributions in binary form must reproduce the above
|
||||||
|
* copyright notice, this list of conditions and the following
|
||||||
|
* disclaimer in the documentation and/or other materials provided
|
||||||
|
* with the distribution.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||||
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||||
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||||
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||||
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||||
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||||
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||||
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||||
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||||
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef __PAM_YUBICO_DROP_PRIVS_H_INCLUDED__
|
#ifndef __PAM_YUBICO_DROP_PRIVS_H_INCLUDED__
|
||||||
#define __PAM_YUBICO_DROP_PRIVS_H_INCLUDED__
|
#define __PAM_YUBICO_DROP_PRIVS_H_INCLUDED__
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* Written by Simon Josefsson <simon@yubico.com>.
|
/* Written by Simon Josefsson <simon@yubico.com>.
|
||||||
* Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011 Yubico AB
|
* Copyright (c) 2006-2012 Yubico AB
|
||||||
* Copyright (c) 2011 Tollef Fog Heen <tfheen@err.no>
|
* Copyright (c) 2011 Tollef Fog Heen <tfheen@err.no>
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
|
2
test.c
2
test.c
@ -1,5 +1,5 @@
|
|||||||
/* Written by Simon Josefsson <simon@yubico.com>.
|
/* Written by Simon Josefsson <simon@yubico.com>.
|
||||||
* Copyright (c) 2007, 2008, 2009, 2011 Yubico AB
|
* Copyright (c) 2007-2012 Yubico AB
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* Redistribution and use in source and binary forms, with or without
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
2
util.c
2
util.c
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2011 Yubico AB.
|
* Copyright (c) 2011-2012 Yubico AB
|
||||||
* Copyright (c) 2011 Tollef Fog Heen <tfheen@err.no>
|
* Copyright (c) 2011 Tollef Fog Heen <tfheen@err.no>
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
|
2
util.h
2
util.h
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2011 Yubico AB.
|
* Copyright (c) 2011-2012 Yubico AB
|
||||||
* Copyright (c) 2011 Tollef Fog Heen <tfheen@err.no>
|
* Copyright (c) 2011 Tollef Fog Heen <tfheen@err.no>
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
.\" Copyright (c) 2011 Yubico AB
|
.\" Copyright (c) 2011-2012 Yubico AB
|
||||||
.\" All rights reserved.
|
.\" All rights reserved.
|
||||||
.\"
|
.\"
|
||||||
.\" Redistribution and use in source and binary forms, with or without
|
.\" Redistribution and use in source and binary forms, with or without
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2011 Yubico AB.
|
* Copyright (c) 2011-2012 Yubico AB
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* Author : Fredrik Thulin <fredrik@yubico.com>
|
* Author : Fredrik Thulin <fredrik@yubico.com>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user