Le Thursday 10 July 2003 10:10, Stefan van der Eijk a �crit :
> > --=-=-=
> >
> > * Thu Jul 10 2003 Laurent MONTEL <[EMAIL PROTECTED]> 0.75-34mdk
> >
> > - Rebuild
>
> Q: is this changelog accurate? If the package is only rebuilt, I would
> expect the release number to upped and a changelog entry to be added. From
> what I see here, some more things have changed and therefore the changelog
> entry is incomplete. Or am I missing something?
Just a rebuild.
I didn't touch patchs
Regards.
> regards,
>
> Stefan
>
> > --=-=-=
> >
> > --=-=-=
> > pam.spec changed
> > diff -u Linux-PAM-0.75.headers/modules/pam_group/pam_group.c
> > Linux-PAM-0.75/modules/pam_group/pam_group.c ---
> > Linux-PAM-0.75.headers/modules/pam_group/pam_group.c Mon Oct 1 16:11:07
> > 2001 +++ Linux-PAM-0.75/modules/pam_group/pam_group.c Tue Jul 10
> > 04:37:58 2001 @@ -11,7 +11,7 @@
> > "Version 0.5 for Linux-PAM\n"
> > "Copyright (c) Andrew G. Morgan 1996 <[EMAIL PROTECTED]>\n";
> >
> > -#define _BSD_SOURCE
> > +#include "../../_pam_aconf.h"
> >
> > #include <sys/file.h>
> > #include <stdio.h>
> > @@ -47,9 +47,9 @@
> > */
> >
> > #define PAM_SM_AUTH
> > -#include "../../libpam/include/security/pam_modules.h"
> >
> > -#include "../../libpam/include/security/_pam_macros.h"
> > +#include <security/pam_modules.h>
> > +#include <security/_pam_macros.h>
> >
> > /* --- static functions for checking whether the user should be let in
> > --- */
> >
> > diff -u Linux-PAM-0.75.headers/modules/pam_issue/pam_issue.c
> > Linux-PAM-0.75/modules/pam_issue/pam_issue.c ---
> > Linux-PAM-0.75.headers/modules/pam_issue/pam_issue.c Mon Oct 1 16:11:07
> > 2001 +++ Linux-PAM-0.75/modules/pam_issue/pam_issue.c Tue Jul 10
> > 04:38:04 2001 @@ -14,8 +14,7 @@
> > * Released under the GNU LGPL version 2 or later
> > */
> >
> > -#define _GNU_SOURCE
> > -#define _BSD_SOURCE
> > +#include "../../_pam_aconf.h"
> >
> > #include <string.h>
> > #include <stdio.h>
> > @@ -29,13 +28,12 @@
> > #include <sys/utsname.h>
> > #include <utmp.h>
> > #include <malloc.h>
> > -#include <time.h>
> >
> > -#include "../../libpam/include/security/_pam_macros.h"
> > +#include <security/_pam_macros.h>
> >
> > #define PAM_SM_AUTH
> >
> > -#include "../../libpam/include/security/pam_modules.h"
> > +#include <security/pam_modules.h>
> >
> > static int _user_prompt_set = 0;
> >
> > diff -u Linux-PAM-0.75.headers/modules/pam_mkhomedir/pam_mkhomedir.c
> > Linux-PAM-0.75/modules/pam_mkhomedir/pam_mkhomedir.c ---
> > Linux-PAM-0.75.headers/modules/pam_mkhomedir/pam_mkhomedir.c Mon Oct 1
> > 16:11:07 2001 +++
> > Linux-PAM-0.75/modules/pam_mkhomedir/pam_mkhomedir.c Tue Jul 10 04:41:48
> > 2001 @@ -27,13 +27,11 @@
> > <[EMAIL PROTECTED]> 1996
> > */
> >
> > -/* I want snprintf dammit */
> > -#define _GNU_SOURCE 1
> > +#include "../../_pam_aconf.h"
> > #include <stdarg.h>
> > #include <sys/types.h>
> > #include <sys/stat.h>
> > #include <fcntl.h>
> > -#include <limits.h>
> > #include <unistd.h>
> > #include <pwd.h>
> > #include <stdlib.h>
> > @@ -49,9 +47,9 @@
> > */
> >
> > #define PAM_SM_SESSION
> > -#include "../../libpam/include/security/pam_modules.h"
> >
> > -#include "../../libpam/include/security/_pam_macros.h"
> > +#include <security/pam_modules.h>
> > +#include <security/_pam_macros.h>
> >
> > /* argument parsing */
> > #define MKHOMEDIR_DEBUG 020 /* keep quiet about things */
> > diff -u Linux-PAM-0.75.headers/modules/pam_rhosts/pam_rhosts_auth.c
> > Linux-PAM-0.75/modules/pam_rhosts/pam_rhosts_auth.c ---
> > Linux-PAM-0.75.headers/modules/pam_rhosts/pam_rhosts_auth.c Mon Oct 1
> > 16:11:07 2001 +++
> > Linux-PAM-0.75/modules/pam_rhosts/pam_rhosts_auth.c Tue Jul 10 04:38:27
> > 2001 @@ -38,12 +38,18 @@
> > * SUCH DAMAGE.
> > */
> >
> > -#define _BSD_SOURCE
> > +#include "../../_pam_aconf.h"
> >
> > #define USER_RHOSTS_FILE "/.rhosts" /* prefixed by user's home dir
> > */
> >
> > +#ifdef linux
> > #include <endian.h>
> > +#endif
> > +
> > +#ifdef NEED_FSUID_H
> > #include <sys/fsuid.h>
> > +#endif /* NEED_FSUID_H */
> > +
> > #include <sys/types.h>
> > #include <sys/uio.h>
> > #include <string.h>
> > @@ -70,7 +76,10 @@
> > #include <net/if.h>
> > #ifdef linux
> > # include <linux/sockios.h>
> > -# include <sys/fsuid.h>
> > +# ifndef __USE_MISC
> > +# define __USE_MISC
> > +# include <sys/fsuid.h>
> > +# endif /* __USE_MISC */
> > #endif
> >
> > #include <pwd.h>
> > @@ -78,19 +87,18 @@
> > #include <sys/file.h>
> > #include <sys/signal.h>
> > #include <sys/stat.h>
> > -#include <sys/types.h>
> > #include <syslog.h>
> > #ifndef _PATH_HEQUIV
> > #define _PATH_HEQUIV "/etc/hosts.equiv"
> > #endif /* _PATH_HEQUIV */
> >
> > #define PAM_SM_AUTH /* only defines this management group */
> > -#include "../../libpam/include/security/pam_modules.h"
> >
> > -#include "../../libpam/include/security/_pam_macros.h"
> > +#include <security/pam_modules.h>
> > +#include <security/_pam_macros.h>
> >
> > /* to the best of my knowledge, all modern UNIX boxes have 32 bit
> > integers */
> > -#define U32 u_int32_t
> > +#define U32 unsigned int
> >
> >
> > /*
> > diff -u Linux-PAM-0.75.headers/modules/pam_stress/pam_stress.c
> > Linux-PAM-0.75/modules/pam_stress/pam_stress.c ---
> > Linux-PAM-0.75.headers/modules/pam_stress/pam_stress.c Mon Oct 1
> > 16:11:09 2001 +++ Linux-PAM-0.75/modules/pam_stress/pam_stress.c Tue Jul
> > 10 04:32:55 2001 @@ -5,12 +5,11 @@
> > * created by Andrew Morgan <[EMAIL PROTECTED]> 1996/3/12
> > */
> >
> > -#include "../../_pam_aconf.h"
> > +#include <security/_pam_aconf.h>
> >
> > #include <stdlib.h>
> > #include <stdio.h>
> >
> > -#define __USE_BSD
> > #include <syslog.h>
> >
> > #include <stdarg.h>
> > @@ -29,8 +28,8 @@
> > #define PAM_SM_SESSION
> > #define PAM_SM_PASSWORD
> >
> > -#include "../../libpam/include/security/pam_modules.h"
> > -#include "../../libpam/include/security/_pam_macros.h"
> > +#include <security/pam_modules.h>
> > +#include <security/_pam_macros.h>
> >
> > static char *_strdup(const char *x)
> > {
> > diff -u Linux-PAM-0.75.headers/modules/pam_warn/pam_warn.c
> > Linux-PAM-0.75/modules/pam_warn/pam_warn.c ---
> > Linux-PAM-0.75.headers/modules/pam_warn/pam_warn.c Mon Oct 1 16:11:09
> > 2001 +++ Linux-PAM-0.75/modules/pam_warn/pam_warn.c Tue Jul 10 04:38:57
> > 2001 @@ -6,7 +6,7 @@
> > * Written by Andrew Morgan <[EMAIL PROTECTED]> 1996/3/11
> > */
> >
> > -#define _BSD_SOURCE
> > +#include "../../_pam_aconf.h"
> >
> > #include <stdio.h>
> > #include <unistd.h>
> > @@ -23,7 +23,7 @@
> > #define PAM_SM_AUTH
> > #define PAM_SM_PASSWORD
> >
> > -#include "../../libpam/include/security/pam_modules.h"
> > +#include <security/pam_modules.h>
> >
> > /* some syslogging */
> >
> > diff -u Linux-PAM-0.75.headers/modules/pam_wheel/pam_wheel.c
> > Linux-PAM-0.75/modules/pam_wheel/pam_wheel.c ---
> > Linux-PAM-0.75.headers/modules/pam_wheel/pam_wheel.c Mon Oct 1 16:11:09
> > 2001 +++ Linux-PAM-0.75/modules/pam_wheel/pam_wheel.c Mon Oct 1
> > 16:38:18 2001 @@ -21,8 +21,7 @@
> > * a wheel member.
> > */
> >
> > -#define _BSD_SOURCE
> > -
> > +#include "../../_pam_aconf.h"
> > #include <stdio.h>
> > #include <unistd.h>
> > #include <string.h>
> > @@ -41,7 +40,7 @@
> >
> > #define PAM_SM_AUTH
> >
> > -#include "../../libpam/include/security/pam_modules.h"
> > +#include <security/pam_modules.h>
> >
> > /* some syslogging */
> >
> > --- pam-0.75-33mdk.src.rpm/pam.spec 2003-07-10 08:30:33.000000000 +0200
> > +++ pam-0.75-34mdk.src.rpm/pam.spec 2003-07-10 08:30:34.000000000 +0200
> > @@ -3,7 +3,7 @@
> > Summary: A security tool which provides authentication for
> > applications. Name: pam
> > Version: 0.75
> > -Release: 33mdk
> > +Release: 34mdk
> > License: GPL or BSD
> > Group: System/Libraries
> > Source:
> > ftp.us.kernel.org:/pub/linux/libs/pam/pre/library/Linux-PAM-%{version}.ta
> >r.bz2 @@ -79,7 +79,7 @@
> > Buildroot: %{_tmppath}/%{name}-%{version}-root
> > Requires: cracklib, cracklib-dicts, pwdb >= 0.54-2, initscripts >= 3.94
> > BuildRequires: bison cracklib-devel flex glib-devel pwdb-devel
> > -BuildRequires: linuxdoc-tools libdb4.0-devel >= 4.0.14
> > +BuildRequires: linuxdoc-tools libdb4.1-devel >= 4.0.14
> >
> > Obsoletes: pamconfig
> > Provides: pamconfig
> > @@ -278,6 +278,9 @@
> > %doc doc/html doc/ps doc/txts doc/specs/rfc86.0.txt Copyright
> >
> > %changelog
> > +* Thu Jul 10 2003 Laurent MONTEL <[EMAIL PROTECTED]> 0.75-34mdk
> > +- Rebuild
> > +
> > * Fri May 23 2003 G�tz Waschk <[EMAIL PROTECTED]> 0.75-33mdk -
> > rebuild for devel provides
> >
> >
> > --=-=-=
> >
> > --
> > http://www.mandrake-linux.com/en/cookerdevel.php3