summaryrefslogtreecommitdiffstats
path: root/usr.bin/compile_et
Commit message (Collapse)AuthorAgeFilesLines
* - Update FreeBSD Heimdal distribution to version 1.5.1. This also bringsstas2012-03-221-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | several new kerberos related libraries and applications to FreeBSD: o kgetcred(1) allows one to manually get a ticket for a particular service. o kf(1) securily forwards ticket to another host through an authenticated and encrypted stream. o kcc(1) is an umbrella program around klist(1), kswitch(1), kgetcred(1) and other user kerberos operations. klist and kswitch are just symlinks to kcc(1) now. o kswitch(1) allows you to easily switch between kerberos credentials if you're running KCM. o hxtool(1) is a certificate management tool to use with PKINIT. o string2key(1) maps a password into key. o kdigest(8) is a userland tool to access the KDC's digest interface. o kimpersonate(8) creates a "fake" ticket for a service. We also now install manpages for some lirbaries that were not installed before, libheimntlm and libhx509. - The new HEIMDAL version no longer supports Kerberos 4. All users are recommended to switch to Kerberos 5. - Weak ciphers are now disabled by default. To enable DES support (used by telnet(8)), use "allow_weak_crypto" option in krb5.conf. - libtelnet, pam_ksu and pam_krb5 are now compiled with error on warnings disabled due to the function they use (krb5_get_err_text(3)) being deprecated. I plan to work on this next. - Heimdal's KDC now require sqlite to operate. We use the bundled version and install it as libheimsqlite. If some other FreeBSD components will require it in the future we can rename it to libbsdsqlite and use for these components as well. - This is not a latest Heimdal version, the new one was released while I was working on the update. I will update it to 1.5.2 soon, as it fixes some important bugs and security issues.
* Build usr.bin/ with WARNS=6 by default.ed2010-01-021-0/+2
| | | | Also add some missing $FreeBSD$ to keep svn happy.
* Style: move .PATH to where it belongs.ru2005-10-141-2/+2
|
* Build this from contrib/ now.markm1999-09-047-657/+3
|
* $Header$ -> $FreeBSD$peter1999-08-284-4/+4
|
* $Id$ -> $FreeBSD$peter1999-08-281-1/+1
|
* Unbreak K&R support, and generate code that works in K&R C as well asdes1998-12-181-20/+12
| | | | ANSI C no matter what language is specified.
* Generate a prototype for initialize_XXXX_error_table() when the languagedes1998-12-151-3/+3
| | | | is set to C.
* Simplified using new yacc rules and by not generating y.tab.h. Thebde1998-05-041-3/+4
| | | | lex source is still handled bogusly.
* Don't use beforedepend to break things. The usual fix of puttingbde1998-03-201-11/+9
| | | | | | | | | | | | | generated sources in SRCS breaks because compile_et uses an evil include of one .c file in another. Use a worse fix. Perhaps DPSRCS is useful after all. Don't put *.y in SRCS. Put the generated file in SRCS instead. This fixes incomplete dependencies (mkdep can't work on *.y). Don't override the default .l.c rule. Just use LFLAGS. Fixed some style bugs.
* Mdoc'ify man page. Use err(3). Remove whoami.charnier1997-06-303-64/+49
|
* Revert $FreeBSD$ to $Id$peter1997-02-221-1/+1
|
* Make the long-awaited change from $Id$ to $FreeBSD$jkh1997-01-141-1/+1
| | | | | | | | This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise.
* General -Wall warning cleanup, part I.jkh1996-07-123-11/+14
| | | | Submitted-By: Kent Vander Velden <graphix@iastate.edu>
* This commit was generated by cvs2svn to compensate for changes in r13122,peter1995-12-308-402/+0
| | | | which included commits to RCS files with non-trunk default branches.
* According to stdlib.h, malloc and realloc return void * but error_table.ywpaul1995-03-151-3/+4
| | | | | | | | | | | | | | | | | | | | | declares them to return char *. For some reason, this causes no problems with the old compiler tools, but doing a 'make world' with gcc 2.6.3 in a seperate DESTDIR got me this error: yacc -d /usr/src/usr.bin/compile_et/error_table.y cc -O2 -I. -I/usr/src/usr.bin/compile_et/../../lib/libcom_err -I/mnt/usr/include -c y.tab.c -o error_table.o In file included from /usr/src/usr.bin/compile_et/et_lex.lex.l:11, from /usr/src/usr.bin/compile_et/error_table.y:233: /mnt/usr/include/stdlib.h:100: conflicting types for `malloc' /usr/src/usr.bin/compile_et/error_table.y:80: previous declaration of `malloc' /mnt/usr/include/stdlib.h:104: conflicting types for `realloc' /usr/src/usr.bin/compile_et/error_table.y:80: previous declaration of `realloc' *** Error code 1 Stop. Declaring malloc and realloc to return void * fixes this. It could be that the new gcc is a bit more picky about these things.
* Add y.tab.h to CLEANFILES.jkh1995-02-091-2/+2
|
* Fix include directive bobble.wollman1995-01-141-2/+2
|
* Upgrade to latest released SIPB version I can find. (Unfortunately, thewollman1995-01-147-187/+450
| | | | original releases were not numbered.)
* Slight makefile cleanup.wollman1995-01-141-3/+2
|
* Initial import of eBones.csgr1994-09-3012-0/+823
(Including all changes for FreeBSD - importing the original eBones distribution would be too complex at this stage, since I don't have access to Piero's CVS.) (If you want to include eBones in your system, don't forget to include MAKE_EBONES in /etc/make.conf.) (This stuff is now also suppable from braae.ru.ac.za.) Bones originally from MIT SIPB. Original port to FreeBSD 1.x by Piero Serini. Moved to FreeBSD 2.0 by Doug Rabson and Geoff Rehmet. Nice bug fixes from Doug Rabson.
OpenPOWER on IntegriCloud