updated version
This commit is contained in:
2
BUGS
2
BUGS
@@ -1,4 +1,4 @@
|
||||
Known bugs in sudo version 1.5.4
|
||||
Known bugs in sudo version 1.5.5
|
||||
================================
|
||||
|
||||
1) "make install-man" should substitute correct paths into the
|
||||
|
2
INSTALL
2
INSTALL
@@ -1,4 +1,4 @@
|
||||
Installation instructions for CU sudo 1.5.4
|
||||
Installation instructions for CU sudo 1.5.5
|
||||
===========================================
|
||||
|
||||
Sudo uses a `configure' script to probe the capabilities and type
|
||||
|
28
Makefile.in
28
Makefile.in
@@ -1,5 +1,5 @@
|
||||
#*
|
||||
#* CU sudo version 1.5.4 (based on Root Group sudo version 1.1)
|
||||
#* CU sudo version 1.5.5 (based on Root Group sudo version 1.1)
|
||||
#*
|
||||
#* This software comes with no waranty whatsoever, use at your own risk.
|
||||
#*
|
||||
@@ -112,7 +112,7 @@ LIBOBJS = @LIBOBJS@ @ALLOCA@
|
||||
HDRS = sudo.h pathnames.h options.h compat.h version.h insults.h \
|
||||
ins_2001.h ins_classic.h ins_goons.h ins_csops.h
|
||||
|
||||
VERSION = 1.5.4
|
||||
VERSION = 1.5.5
|
||||
|
||||
DISTFILES = $(SRCS) $(HDRS) BUGS CHANGES COPYING HISTORY INSTALL OPTIONS TODO \
|
||||
PORTING README RUNSON FAQ TROUBLESHOOTING Makefile.in acsite.m4 \
|
||||
@@ -145,18 +145,6 @@ visudo: $(PARSEOBJS) $(VISUDOBJS) $(LIBOBJS)
|
||||
testsudoers: $(PARSEOBJS) $(TESTOBJS)
|
||||
$(CC) -o $@ $(PARSEOBJS) $(TESTOBJS) $(VISUDO_LDFLAGS) $(VISUDO_LIBS)
|
||||
|
||||
# Update version strings based on version specified in version.h
|
||||
update_version: Makefile.in emul/utime.h check.c check.c compat.h config.h.in dce_pwent.c find_path.c getspwuid.c getwd.c goodpath.c ins_2001.h ins_classic.h ins_csops.h ins_goons.h insults.h interfaces.c lex.yy.c logging.c options.h parse.c parse.lex parse.yacc pathnames.h putenv.c strdup.c sudo-lex.yy.c sudo.c sudo.h sudo_setenv.c testsudoers.c tgetpass.c utime.c visudo.c
|
||||
:
|
||||
|
||||
Makefile.in : version.h
|
||||
co -l -q $@
|
||||
( VERSION=`sed -n 's/static char version\[\] = "\([^"]*\)".*$$/\1/p' < version.h` ; sed -e 's/\(VERSION =\) [0-9]\.[0-9][0-9]*\.[0-9][0-9]*/\1 '$$VERSION'/' -e 's/\(CU sudo version\) [0-9]\.[0-9][0-9]*\.[0-9][0-9]*/\1 '$$VERSION'/' < $@ > $@.$$$$ ; mv -f $@.$$$$ $@ ; chmod 644 $@ )
|
||||
|
||||
emul/utime.h check.c check.c compat.h config.h.in dce_pwent.c find_path.c getspwuid.c getwd.c goodpath.c ins_2001.h ins_classic.h ins_csops.h ins_goons.h insults.h interfaces.c lex.yy.c logging.c options.h parse.c parse.lex parse.yacc pathnames.h putenv.c strdup.c sudo-lex.yy.c sudo.c sudo.h sudo_setenv.c testsudoers.c tgetpass.c utime.c visudo.c: version.h
|
||||
co -l -q $@
|
||||
( VERSION=`sed -n 's/static char version\[\] = "\([^"]*\)".*$$/\1/p' < version.h` ; sed 's/\(CU sudo version\) [0-9]\.[0-9][0-9]*\.[0-9][0-9]*/\1 '$$VERSION'/' < $@ > $@.$$$$ ; mv -f $@.$$$$ $@ ; chmod 644 $@ )
|
||||
|
||||
y.tab.c y.tab.h: parse.yacc
|
||||
$(YACC) -d $(srcdir)/parse.yacc
|
||||
|
||||
@@ -259,3 +247,15 @@ dist: $(DISTFILES)
|
||||
tar Ocf cu-sudo.v$(VERSION).tar \
|
||||
`cat $$TF` && compress cu-sudo.v$(VERSION).tar && rm -f $$TF)
|
||||
ls -l ../cu-sudo.v$(VERSION).tar.Z
|
||||
|
||||
# Update version strings based on version specified in version.h
|
||||
# This is ugly but it works...
|
||||
update_version: Makefile.in emul/utime.h check.c check.c compat.h config.h.in dce_pwent.c find_path.c getspwuid.c getwd.c goodpath.c ins_2001.h ins_classic.h ins_csops.h ins_goons.h insults.h interfaces.c lex.yy.c logging.c options.h parse.c parse.lex parse.yacc pathnames.h putenv.c strdup.c sudo-lex.yy.c sudo.c sudo.h sudo_setenv.c testsudoers.c tgetpass.c utime.c visudo.c
|
||||
:
|
||||
|
||||
Makefile.in : version.h
|
||||
( if `co -l -q $@` ; then CHECKIN=1; else CHECKIN=0 ; fi ; VERSION=`sed -n 's/static char version\[\] = "\([^"]*\)".*$$/\1/p' < version.h` ; sed -e 's/\(VERSION =\) [0-9]\.[0-9][0-9]*\.[0-9][0-9]*/\1 '$$VERSION'/' -e 's/\(CU sudo version\) [0-9]\.[0-9][0-9]*\.[0-9][0-9]*/\1 '$$VERSION'/' < $@ > $@.$$$$ ; mv -f $@.$$$$ $@ ; chmod 644 $@ ; if test $$CHECKIN -eq 1 ; then ci -u -m"updated version" $@ ; fi )
|
||||
|
||||
emul/utime.h check.c check.c compat.h config.h.in dce_pwent.c find_path.c getspwuid.c getwd.c goodpath.c ins_2001.h ins_classic.h ins_csops.h ins_goons.h insults.h interfaces.c lex.yy.c logging.c options.h parse.c parse.lex parse.yacc pathnames.h putenv.c strdup.c sudo-lex.yy.c sudo.c sudo.h sudo_setenv.c testsudoers.c tgetpass.c utime.c visudo.c: version.h
|
||||
co -l -q $@ || true
|
||||
( if `co -l -q $@` ; then CHECKIN=1; else CHECKIN=0 ; fi ; VERSION=`sed -n 's/static char version\[\] = "\([^"]*\)".*$$/\1/p' < version.h` ; sed 's/\(CU sudo version\) [0-9]\.[0-9][0-9]*\.[0-9][0-9]*/\1 '$$VERSION'/' < $@ > $@.$$$$ ; mv -f $@.$$$$ $@ ; chmod 644 $@ ; if test $$CHECKIN -eq 1 ; then ci -u -m"updated version" $@ ; fi )
|
||||
|
2
README
2
README
@@ -1,4 +1,4 @@
|
||||
This is the CU version of sudo, release 1.5.4
|
||||
This is the CU version of sudo, release 1.5.5
|
||||
|
||||
The sudo philosophy
|
||||
===================
|
||||
|
4
check.c
4
check.c
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.4 (based on Root Group sudo version 1.1)
|
||||
* CU sudo version 1.5.5 (based on Root Group sudo version 1.1)
|
||||
*
|
||||
* This software comes with no waranty whatsoever, use at your own risk.
|
||||
*
|
||||
@@ -868,7 +868,7 @@ static void reminder()
|
||||
(void) fprintf(stderr, "\n%s\n%s\n\n%s\n%s\n\n",
|
||||
#else
|
||||
(void) fprintf(stderr, "\n%s\n%s\n%s\n%s\n\n%s\n%s\n\n%s\n%s\n\n",
|
||||
" CU sudo version 1.5.4, based on Root Group sudo version 1.1",
|
||||
" CU sudo version 1.5.5, based on Root Group sudo version 1.1",
|
||||
" sudo version 1.1, Copyright (C) 1991 The Root Group, Inc.",
|
||||
" sudo comes with ABSOLUTELY NO WARRANTY. This is free software,",
|
||||
" and you are welcome to redistribute it under certain conditions.",
|
||||
|
2
compat.h
2
compat.h
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.4
|
||||
* CU sudo version 1.5.5
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.4
|
||||
* CU sudo version 1.5.5
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.4
|
||||
* CU sudo version 1.5.5
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.3
|
||||
* CU sudo version 1.5.5
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.4
|
||||
* CU sudo version 1.5.5
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.4
|
||||
* CU sudo version 1.5.5
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
|
2
getwd.c
2
getwd.c
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.4
|
||||
* CU sudo version 1.5.5
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.4
|
||||
* CU sudo version 1.5.5
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.4
|
||||
* CU sudo version 1.5.5
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.4
|
||||
* CU sudo version 1.5.5
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.4
|
||||
* CU sudo version 1.5.5
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.4
|
||||
* CU sudo version 1.5.5
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.4
|
||||
* CU sudo version 1.5.5
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.4
|
||||
* CU sudo version 1.5.5
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.4 (based on Root Group sudo version 1.1)
|
||||
* CU sudo version 1.5.5 (based on Root Group sudo version 1.1)
|
||||
*
|
||||
* This software comes with no waranty whatsoever, use at your own risk.
|
||||
*
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.4
|
||||
* CU sudo version 1.5.5
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
|
2
parse.c
2
parse.c
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.4
|
||||
* CU sudo version 1.5.5
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
|
@@ -1,6 +1,6 @@
|
||||
%{
|
||||
/*
|
||||
* CU sudo version 1.5.4
|
||||
* CU sudo version 1.5.5
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
|
@@ -1,7 +1,7 @@
|
||||
%{
|
||||
|
||||
/*
|
||||
* CU sudo version 1.5.4
|
||||
* CU sudo version 1.5.5
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.4
|
||||
* CU sudo version 1.5.5
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
|
2
putenv.c
2
putenv.c
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.4
|
||||
* CU sudo version 1.5.5
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
|
2
strdup.c
2
strdup.c
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.4 (based on Root Group sudo version 1.1)
|
||||
* CU sudo version 1.5.5 (based on Root Group sudo version 1.1)
|
||||
*
|
||||
* This software comes with no waranty whatsoever, use at your own risk.
|
||||
*
|
||||
|
2
sudo.c
2
sudo.c
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.4 (based on Root Group sudo version 1.1)
|
||||
* CU sudo version 1.5.5 (based on Root Group sudo version 1.1)
|
||||
*
|
||||
* This software comes with no waranty whatsoever, use at your own risk.
|
||||
*
|
||||
|
2
sudo.h
2
sudo.h
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.4 (based on Root Group sudo version 1.1)
|
||||
* CU sudo version 1.5.5 (based on Root Group sudo version 1.1)
|
||||
*
|
||||
* This software comes with no waranty whatsoever, use at your own risk.
|
||||
*
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.4
|
||||
* CU sudo version 1.5.5
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.4
|
||||
* CU sudo version 1.5.5
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.4
|
||||
* CU sudo version 1.5.5
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
|
2
utime.c
2
utime.c
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.4
|
||||
* CU sudo version 1.5.5
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.4
|
||||
* CU sudo version 1.5.5
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -23,6 +23,6 @@
|
||||
#ifndef _SUDO_VERSION_H
|
||||
#define _SUDO_VERSION_H
|
||||
|
||||
static char version[] = "1.5.4";
|
||||
static char version[] = "1.5.5";
|
||||
|
||||
#endif /* _SUDO_VERSION_H */
|
||||
|
Reference in New Issue
Block a user