summaryrefslogtreecommitdiffstats
path: root/kerberos5/lib/libhdb/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* MFC r287208, r287216:ume2015-09-031-2/+2
| | | | Make it buildable with WITH_OPENLDAP, again.
* MFC r262253: hack to prevent concurrent runs of asn1_compile in the Heimdalpeter2014-02-201-0/+1
| | | | build with high -j concurrency.
* Centralize the specification of the krb5 build tools.obrien2012-06-011-2/+0
|
* * Remove headers from SRCS that are not generatedobrien2012-05-301-2/+0
| | | | | | (and are in /usr/src/crypto/heimdal/). * Avoid race conditions with 'make -j<N>'.
* - Update FreeBSD Heimdal distribution to version 1.5.1. This also bringsstas2012-03-221-20/+59
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* - Make heimdal buildable with WITH_OPENLDAP defined, again.ume2011-12-051-3/+3
| | | | - Our heimdal uses the deprecated OpenLDAP functions.
* - Add missing interdependencies to kerberos libraries. Some of thestas2011-09-271-0/+3
| | | | | | | | | kerberos libraries were not linked properly (missing dependencies), which causes 3rd party applications linking to fail when --as-needed ld flag is used. I also added the --no-undefined ld(1) flag to make sure that there're no missing dependencies. MFC after: 3 days
* Fix conflicts after heimdal-1.1 import and add build infrastructure. Importdfr2008-05-071-5/+18
| | | | all non-style changes made by heimdal to our own libgssapi.
* style.Makefile(5).ru2004-02-051-31/+25
| | | | OK'ed by: nectar
* Overhaul of kerberos5/ makefiles. Most significant changes are:ru2004-01-311-74/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Dropped support for standalone builds, this was only partially supported anyway, and required so much magic in makefiles that made life dangerous (e.g., by using the custom yacc rules). - Got rid of .OBJDIR in makefiles -- makes building of individual files possible again. - Made the .x.c transformations -j safe. - Reprogrammed LDADD to fix static build of some utilities that was broken. - Fixed LDFLAGS and DPADD in the WITH_OPENLDAP case -- positively affects the contents of .depend files. - Removed redundant .h's from SRCS, only kept those that are generated. - libkrb5/ INCS were bogusly installed again with libgssapi/. - Made build-tools real tools with their own makefiles in separate directories. This allows us to properly track their dependencies, etc. - Faster build, 21% less of makefile code! Approved by: nectar Reviewed by: markm Silence on: arch
* The header files hdb_asn1.h, hdb_err.h, and kadm5_err.h are generated,nectar2003-10-101-2/+2
| | | | | | and must be installed from ${.OBJDIR}. Pointy hat: nectar
* Install additional headers for Kerberos (libkafs, libkadm5*, andnectar2003-10-091-0/+7
| | | | libhdb).
* Try a lot harder to get dependancies right. This involves some uglymarkm2003-07-271-10/+30
| | | | | | | | | looking ${.OBJDIR} work that has the up-side of actually working in upgrade and make -jN cases. This needs to be revisited further, and it is conceivable that the ${.OBJDIR} stuff can be simplified, but the sheer number of edge cases and other causes make this Hard(tm). For now, this works.
* Big fixup of the makefiles. Sort out the dependancies so that "make"markm2003-07-181-31/+32
| | | | | without "make depend" works, "make -j N" works, and lists of source files are made vertical to reduce future diffs.
* Add (optional, default off) support to kerberos5 for supporting openldap.mr2003-06-181-1/+2
| | | | | | | | | | Tests with openldap20 where successful whereas openldap21 didn't like the way hdb-ldap accessed openldap (doesn't like non-bind access). To activate the support put a USE_OPENLDAP=yes in your make.conf. The OPENLDAPBASE is also optional and points to /usr/local as default. Approved by: markm MFC after: 2 weeks
* Migrate to a new way of dealing with building from old revisions ofimp2003-04-051-7/+1
| | | | | | | | | | | | | | | | | FreeBSD. This method attempts to centralize all the necessary hacks or work arounds in one of two places in the tree (src/Makefile.inc1 and src/tools/build). We build a small compatibility library (libbuild.a) as well as selectively installing necessary include files. We then include this directory when building host binaries. This removes all the past release compatibilty hacks from various places in the tree. We still build on tip of stable and current. I will work with those that want to support more, although I anticipate it will just work. Many thanks to ru@, obrien@ and jhb@ for providing valuable input at various stage of implementation, as well as for working together to positively effect a change for the better.
* Take __FreeBSD_version into account when BOOTSTRAPPING.ru2002-11-131-1/+3
|
* Bootstrapping aid for pre-getprogname(3) systems.ru2002-08-131-0/+4
| | | | | | Spotted by: Gareth Hopkins <gareth@za.uu.net> Approved by: nectar MFC after: 3 days
* Make this -j safe.ru2002-05-141-0/+1
|
* Update build after import of Heimdal Kerberos 2002/02/17.nectar2002-02-191-1/+3
|
* use cp instead of mv to get the right name of the yacc-generatedassar2001-11-061-4/+4
| | | | | | files, mv fails badly with parallel makes Submitted by: Vincent Poy <vince@oahu.WURLDLINK.NET>
* update infrastructure for heimdal 0.3fassar2001-06-211-1/+1
|
* use print_version from lib/vers instead of lib/rokenassar2001-05-141-1/+2
|
* update build infrastructure for heimdal 0.3eassar2001-02-131-3/+24
|
* Remove largescale evidence of crack-smoking.markm2000-02-281-1/+3
| | | | | | | Where a k4 applet has a k5 namesake, rename the k5 version from k<app> to k5<app>. (Repo copy done). Do some repairs to dependancies to support make world properly.
* Userland build of Kerberos5 (AKA Heimdal). More to come.markm2000-01-151-0/+58
This is not ready for primetime yet! Please hold off on the bug reports.
OpenPOWER on IntegriCloud