summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* * localaddr.c: migrated from lib/krb5/osTom Yu1995-07-064-17/+610
| | | | | | | | | | * ustime.c: migrated from lib/krb5/os; removed context variable from arglist. * Makefile.in: don't copy or remove localaddr.c and ustime.c; they're local now. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6235 dc483132-0cff-0310-8789-dd5450dbe970
* prof_int.h must be included after stdio.h for prototypesEzra Peisach1995-07-062-2/+7
| | | | git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6234 dc483132-0cff-0310-8789-dd5450dbe970
* Remove t_an_to_ln.o when making cleanEzra Peisach1995-07-062-1/+5
| | | | git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6233 dc483132-0cff-0310-8789-dd5450dbe970
* Checking in the change of removing makeshlibEzra Peisach1995-07-061-0/+4
| | | | git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6232 dc483132-0cff-0310-8789-dd5450dbe970
* Remove makeshlib on cleanEzra Peisach1995-07-061-1/+1
| | | | git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6231 dc483132-0cff-0310-8789-dd5450dbe970
* Added MPW Worksheet to build on Macintosh (may get replaced later)Keith Vetter1995-07-061-0/+667
| | | | git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6230 dc483132-0cff-0310-8789-dd5450dbe970
* Changes for Macintosh implementationKeith Vetter1995-07-0638-66/+2393
| | | | git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6229 dc483132-0cff-0310-8789-dd5450dbe970
* Remove declaration of errno altoghether. "extern int errno;" isTheodore Tso1995-07-066-7/+4
| | | | | | always wrong. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6228 dc483132-0cff-0310-8789-dd5450dbe970
* Don't use the TIOCLSET ioctl unless we're not using POSIX_TERMIOS.Theodore Tso1995-07-062-4/+18
| | | | | | | Don't just blindly set the file status flags to 0. Instead, do a fcntl(0, F_GETFL), and then reset the nonblocking flags. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6227 dc483132-0cff-0310-8789-dd5450dbe970
* * makeshlib.sh: Add support for NetBSD shared librariesTom Yu1995-07-042-0/+13
| | | | git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6226 dc483132-0cff-0310-8789-dd5450dbe970
* * configure.in: Add support for NetBSD shared librariesTom Yu1995-07-042-0/+20
| | | | git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6225 dc483132-0cff-0310-8789-dd5450dbe970
* * Makefile.in (libdb.a): Quiet the if statementTom Yu1995-07-033-5/+10
| | | | | | * configure.in: Symlink $(TOPLIBD)/libdb.* from the right place. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6224 dc483132-0cff-0310-8789-dd5450dbe970
* * Replace Gcc test from top level configure.in with one fromSam Hartman1995-07-035-23/+33
| | | | | | | | | util/configure.in. * Modify top level configure.in and util/makeshlib.sh so AIX can build/use shared libs with Gcc. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6223 dc483132-0cff-0310-8789-dd5450dbe970
* * aclocal.m4 (_MAKE_SUBDIRS): Fixed so that error propogatesTom Yu1995-07-032-1/+3
| | | | | | upward if -[ik] not specified. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6222 dc483132-0cff-0310-8789-dd5450dbe970
* ----------------------------------------------------------------------Sam Hartman1995-07-023-2/+9
| | | | | | | | | | | | automatically CVS: CVS: Committing in . CVS: CVS: Modified Files: ---------------------------------------------------------------------- Declare errno as extern int, not just int. This prevents masking the definition in the c library, which can make life interesting under AIX. CVS: git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6221 dc483132-0cff-0310-8789-dd5450dbe970
* ----------------------------------------------------------------------Sam Hartman1995-07-022-7/+16
| | | | | | | | | | | automatically CVS: CVS: Committing in . CVS: CVS: Modified Files: ---------------------------------------------------------------------- Correct logic in krb5_recvauth so that it returns an error reply if authentication fails. CVS: git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6220 dc483132-0cff-0310-8789-dd5450dbe970
* * aclocal.m4 (SubdirLibRule): don't recreate DONE if list of objsTom Yu1995-07-022-4/+19
| | | | | | | | | | | | | is null to avoid re-making lotsa stuff. (_MAKE_SUBDIRS): really gross sh hack for subdir recursion; make -[ik] should dtrt now even with broken makes (like Ultrix) that do sh -ce "rule". Basically, throw an "if" test around the recursion line so that even if the -e option to sh is set by make, an error in a subdir below won't cause for loop to exit unless we want it to. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6218 dc483132-0cff-0310-8789-dd5450dbe970
* * commands.c: rename setmode() and clearmode() to tel_setmode()Tom Yu1995-07-022-16/+22
| | | | | | | and tel_clearmode() to avoid conflicts with setmode() defined in NetBSD unistd.h git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6217 dc483132-0cff-0310-8789-dd5450dbe970
* * configure.in: Don't check for pgno_t; it's not in sys/types.h onTom Yu1995-07-022-1/+6
| | | | | | | any system I've seen, and it breaks the following check for datum.dsize under netbsd. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6216 dc483132-0cff-0310-8789-dd5450dbe970
* Add shared library supportPaul Park1995-06-306-2/+44
| | | | git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6215 dc483132-0cff-0310-8789-dd5450dbe970
* Add ability to switch between Berkeley and DBM for KDC databasePaul Park1995-06-3020-1/+200
| | | | git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6214 dc483132-0cff-0310-8789-dd5450dbe970
* Add profile and Berkeley database smarts for aname_to_lnamePaul Park1995-06-305-55/+748
| | | | git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6213 dc483132-0cff-0310-8789-dd5450dbe970
* Move Berkeley database code here; remove typoPaul Park1995-06-302-3/+10
| | | | git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6212 dc483132-0cff-0310-8789-dd5450dbe970
* Describe previous changesPaul Park1995-06-303-0/+26
| | | | git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6211 dc483132-0cff-0310-8789-dd5450dbe970
* Add ability to test using Berkeley or DBMPaul Park1995-06-301-16/+129
| | | | git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6210 dc483132-0cff-0310-8789-dd5450dbe970
* Remove Berkeley database object modulesPaul Park1995-06-301-16/+1
| | | | git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6209 dc483132-0cff-0310-8789-dd5450dbe970
* Add function dispatch for database accessesPaul Park1995-06-301-115/+283
| | | | git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6208 dc483132-0cff-0310-8789-dd5450dbe970
* Fix initialization and terminal disassociation broken by previous revPaul Park1995-06-301-7/+7
| | | | git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6207 dc483132-0cff-0310-8789-dd5450dbe970
* Add usage of compile(3) for regular expressions so SysV machines have them tooPaul Park1995-06-301-12/+38
| | | | git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6206 dc483132-0cff-0310-8789-dd5450dbe970
* Add kdb dispatch table for changing between Berkeley and DBMPaul Park1995-06-302-0/+31
| | | | git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6205 dc483132-0cff-0310-8789-dd5450dbe970
* Add ability to switch between Berkeley and DBM for both aname and KDC databasePaul Park1995-06-304-9/+73
| | | | git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6204 dc483132-0cff-0310-8789-dd5450dbe970
* Be more flexible where sources come from when building shared librariesPaul Park1995-06-302-2/+8
| | | | git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6203 dc483132-0cff-0310-8789-dd5450dbe970
* * krb5.hin: special-case ultrix brokenness (again!) forTom Yu1995-06-302-1/+11
| | | | | | | KRB5_CONST; krb5.h breaks when typedef'ing while installed. Yuck. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6202 dc483132-0cff-0310-8789-dd5450dbe970
* Remove -g from LDFLAGSSam Hartman1995-06-292-1/+6
| | | | git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6201 dc483132-0cff-0310-8789-dd5450dbe970
* ----------------------------------------------------------------------Sam Hartman1995-06-292-6/+9
| | | | | | | | | | | automatically CVS: CVS: Committing in . CVS: CVS: Modified Files: ---------------------------------------------------------------------- Input the master key before daemoning if you're going to detach. This makes kadmind5 -m useful without -n as well. CVS: git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6200 dc483132-0cff-0310-8789-dd5450dbe970
* * configure.in (--with-dbm): new option, allows easy building ofMark Eichin1995-06-293-1/+22
| | | | | | | | normal dbm support for compatibility. * Makefile.in (DBFLAGS): variable to hold substitution of flags to enable Berkeley db support. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6199 dc483132-0cff-0310-8789-dd5450dbe970
* * kerberos_v4.c (check_princ): delete master_key_version check,Mark Eichin1995-06-292-283/+29
| | | | | | | | | | since we never actually set it. (main): elide original V4 server code to avoid confusion when looking for variable references. (type_2_v5err): reformat for 79 columns instead of 80 and conditionalize out since it is unused (though still informative.) git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6198 dc483132-0cff-0310-8789-dd5450dbe970
* fix the other typoMark Eichin1995-06-291-1/+1
| | | | git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6197 dc483132-0cff-0310-8789-dd5450dbe970
* fix typoMark Eichin1995-06-291-1/+1
| | | | git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6196 dc483132-0cff-0310-8789-dd5450dbe970
* * test.c: use PROTOTYPEMark Eichin1995-06-292-2/+6
| | | | git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6195 dc483132-0cff-0310-8789-dd5450dbe970
* Proper test for GCC. (based on autoconf test).Ezra Peisach1995-06-293-498/+531
| | | | | | | If using gcc, set shlibs_ldflag and noshlibs_ldflag properly for compiler. (I put it in the OSF code, but the testing may be more generic for all systems) git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6194 dc483132-0cff-0310-8789-dd5450dbe970
* * test.c, k524init.c, getcred.c: rewrote for old style definitiions.Mark Eichin1995-06-285-24/+54
| | | | | | * encode.c: use PROTOTYPE instead of KRB5_PROTOTYPE. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6193 dc483132-0cff-0310-8789-dd5450dbe970
* * configure.in: with static libs, we need install-unix, not installMark Eichin1995-06-282-1/+5
| | | | git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6192 dc483132-0cff-0310-8789-dd5450dbe970
* * read_passwd.c, configure.in: use HAS_ANSI_VOLATILE insteadMark Eichin1995-06-283-5/+5
| | | | git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6191 dc483132-0cff-0310-8789-dd5450dbe970
* aclocal.m4 (KRB_INCLUDE): Search the build directories before theTheodore Tso1995-06-283-10/+24
| | | | | | | | | | | source directories. (Doesn't hurt anything, and it helps in a few cases of user error.) configure.in: Conditionalize on the name of CC to determine whether to use the gcc or suncc flags for shared libraries. (This is a little bit ugly; we might want to use a better test later on.) git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6190 dc483132-0cff-0310-8789-dd5450dbe970
* Rename ct_c.*.in to ct_c_*.in, so that the sources will unpack cleanlyTheodore Tso1995-06-284-8/+14
| | | | | | under DOS. Argh. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6189 dc483132-0cff-0310-8789-dd5450dbe970
* * krlogin.c: don't redeclare noltc, defltc if we happen to haveTom Yu1995-06-282-0/+6
| | | | | | TIOCGLTC in addition to POSIX_TERMIOS git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6188 dc483132-0cff-0310-8789-dd5450dbe970
* Work around bug in autoconf which causes a relative path for dnlTheodore Tso1995-06-282-4/+27
| | | | | | | AC_PROG_INSTALL to be cached. We workaround this by unsetting the cache variable if it contains a relative pathname. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6187 dc483132-0cff-0310-8789-dd5450dbe970
* Rename ct_c.* to ct_c.*.in. ct_c.sed.in is now processed by sed toTheodore Tso1995-06-285-14/+27
| | | | | | | | | | remove comment lines beginning with '#', since some sed programs can't handle that. Change config_script so that the directory where the ct_c.* files can be specified, since those are in the build directory, instead of the source directory. (This is all for the sake of System V sed. Sigh.) git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6186 dc483132-0cff-0310-8789-dd5450dbe970
* sim_client.c: Include stdlib.h or declare malloc. Include string.h forEzra Peisach1995-06-283-0/+14
| | | | | | | | strlen and memcpy definitions configure.in: Check for stdlib.h. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6185 dc483132-0cff-0310-8789-dd5450dbe970