summaryrefslogtreecommitdiff
path: root/source4/heimdal_build
Commit message (Collapse)AuthorAgeFilesLines
...
* s3-libsmb: Remove unused kerberos_set_creds_enctype()Andrew Bartlett2012-02-101-1/+0
| | | | | | | | Also remove the unused configure tests for krb5_c_enctype_compare. Found by callcatcher: http://www.skynet.ie/~caolan/Packages/callcatcher.html Andrew Bartlett
* s3-libsmb: Remove unused kerberos_compatible_enctypesAndrew Bartlett2012-02-101-1/+0
| | | | | | | | Also remove the unused configure tests for krb5_c_enctype_compare. Found by callcatcher: http://www.skynet.ie/~caolan/Packages/callcatcher.html Andrew Bartlett
* heimdal_build: omit #line statmentsAndrew Bartlett2012-02-101-7/+9
| | | | | | | | | | | | | | | | This restores and finishes my original commit 80e23c68d83a7c9989f87d5a88a78bb76d222afc, reverted in 68c61a829b8487104483b23052b54c532fecb6ce heimdal_build omit #line statments to allow valgrind to work again This time however, the reason to omit line statements is that it causes more trouble with the lcov code coverage system than the (nil) value that these statements bring. Otherwise, we have to have a special case to remove the .gcno and .gcda files for these generated files. Andrew Bartlett
* s4-heimdal: the ASN1 compiler now depends on libreplaceAndrew Tridgell2012-02-011-2/+2
| | | | | | | it uses strlcat(), which we now get from libbsd if available Autobuild-User: Andrew Tridgell <tridge@samba.org> Autobuild-Date: Wed Feb 1 05:51:56 CET 2012 on sn-devel-104
* s3:build: require gss_krb5_export_lucid_sec_context() for ads supportStefan Metzmacher2012-01-251-0/+1
| | | | | | | This is needed to detect krb5 with aes for GENSEC_FEATURE_NEW_SPNEGO at runtime. metze
* krb5: Require krb5_get_renewed_creds be available to build with krb5Andrew Bartlett2012-01-101-1/+0
|
* krb5: Remove now unused checks for krb5_verify_checksumAndrew Bartlett2012-01-101-2/+0
|
* krb5: Require krb5_c_enctype_compare is available to build with krb5Andrew Bartlett2012-01-101-1/+0
|
* samba: check for AES encryption type defines.Günther Deschner2012-01-101-0/+2
| | | | | | | Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Tue Jan 10 15:05:38 CET 2012 on sn-devel-104
* s3-librpc Use gsskrb5_get_subkey() where available to get the session keyAndrew Bartlett2012-01-051-0/+1
| | | | | | | | This allows gse_get_session_key() to work against Heimdal. Andrew Bartlett Signed-off-by: Stefan Metzmacher <metze@samba.org>
* heimdal_build: Use krb5-config to find heimdal include directory and library ↵Jelmer Vernooij2011-08-011-2/+19
| | | | path, rather than hardcoding.
* s4:heimdal_build: hdb.asn1 needs --sequence=HDB-Ext-KeySet --sequence=KeysStefan Metzmacher2011-07-261-0/+1
| | | | metze
* s4:heimdal: build samba4kgetcredStefan Metzmacher2011-07-241-0/+5
| | | | metze
* s4:heimdal_build: define HAVE_KRB5_PDU_NONE_DECLStefan Metzmacher2011-07-151-0/+1
| | | | metze
* s4:heimdal: add missing filesStefan Metzmacher2011-07-151-1/+4
| | | | metze
* s4:heimdal_build: we need k5crypto and gssapi_krb5 aliases also when using ↵Stefan Metzmacher2011-07-141-13/+7
| | | | | | system libraries metze
* s4:heimdal_build: only maintain lib/gssapi/{spnego,krb5} file lists onceStefan Metzmacher2011-07-141-90/+67
| | | | | | | This also makes sure we only create private headers if we use internal heimdal. metze
* s4:heimdal_build: provide HEIMDAL_UNUSED_ATTRIBUTEStefan Metzmacher2011-07-141-0/+2
| | | | metze
* heimdal_build: Don't use heimdal's getprogname() and setprogname()Andrew Bartlett2011-05-312-6/+17
| | | | | | | Writing into an __progname variable spooks me, and if we use the local variable, then we duplciate the system one, which fails SYMBOLCHECK Andrew Bartlett
* kerberos: Only include gssapi/gssapi_krb5.h when availableAndrew Bartlett2011-04-301-0/+1
|
* auth/kerberos Add check for gss_inquire_sec_context_by_oidAndrew Bartlett2011-04-271-0/+1
| | | | | | | | | Not all kerberos distributions have this function. Andrew Bartlett Autobuild-User: Andrew Bartlett <abartlet@samba.org> Autobuild-Date: Wed Apr 27 07:39:08 CEST 2011 on sn-devel-104
* s3-gse: Don't release the mech OID from gss_accept_security_contextAndrew Bartlett2011-04-271-0/+1
| | | | | | | | | | This is constant data according to the man pages I find for this fucntion, and causes a segfault to free() when linked to Heimdal. I am advised that while it is constant for gss_mech_krb5, it may not be for other mechanisms, so an assert will ensure this is dealt with by the programmer who extends this code in future. Andrew Bartlett
* build: Move Heimdal/MIT compat build rules to heimdal_buildAndrew Bartlett2011-04-261-0/+13
| | | | | | This allows top level build rules to rely on these names at all times. Andrew Bartlett
* Add check for krb5_free_unparsed_name, when using external heimdal.Jelmer Vernooij2011-04-231-2/+3
|
* s4-heimdal_build: Add extra HAVE defines needed for the source3 krb5 codeAndrew Bartlett2011-04-161-0/+3
|
* libcli/auth Move krb5 wrapper functions from s3 into commonAndrew Bartlett2011-04-141-0/+75
| | | | | | | | | This requires a small rework of the build system to ensure that the correct #define statements are made in both the s3 and top level builds. We now define the various HAVE_ macros in config.h at all times, using heimdal_build/wscript_configure when that is in use. Andrew Bartlett
* s4:heimdal - fix valgrind issue on Fedora 14Milan Crha2011-02-251-5/+5
| | | | | | | | | | This should definitely fix bug #7858. Signed-off-by: Matthias Dieter Wallnöfer <mdw@samba.org> Signed-off-by: Andrew Bartlett <abartlet@samba.org> Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org> Autobuild-Date: Fri Feb 25 12:39:21 CET 2011 on sn-devel-104
* Revert "heimdal_build omit #line statments to allow valgrind to work again"Matthias Dieter Wallnöfer2011-02-251-4/+2
| | | | | This reverts commit 80e23c68d83a7c9989f87d5a88a78bb76d222afc. A better patch has been provided by Milan Crha in the following commit.
* heimdal_build omit #line statments to allow valgrind to work againAndrew Bartlett2011-02-251-2/+4
| | | | | | | | | | | | | | The lex/yacc files were generated on Fedora 14, and have empty filenames in #line declarations. I don't know why this is, but it seems best just to omit the #line statements. This is what was causing Valgrind on Fedora not to run on Samba binaries and programs linked to Samba libraries. Andrew Bartlett Autobuild-User: Andrew Bartlett <abartlet@samba.org> Autobuild-Date: Fri Feb 25 11:46:56 CET 2011 on sn-devel-104
* s4-heimdal: allow heimdal build scripts to work from top levelAndrew Tridgell2011-02-071-3/+6
| | | | | | | the version_script handling relied on the directory layout. This makes it independent of the directory structure Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* s4-heimdal_build Remove talloc dep for krb5-glue.cAndrew Bartlett2011-01-041-6/+0
| | | | | | | This glue does not require any internal Samba functionality, just the same heimdal headers as the files it is providing a stub replacement for. Andrew Bartlett
* s4-heimdal_build Remove talloc dependency from hdb-glue.cAndrew Bartlett2011-01-041-6/+0
| | | | | | This file can compile with just heimdal headers. Andrew Bartlett
* heimdal_build: Add missing dependencies when building with system heimdal.Jelmer Vernooij2011-01-011-2/+2
| | | | | Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Sat Jan 1 04:46:35 CET 2011 on sn-devel-104
* heimdal_build: Support using system gssapi library.Jelmer Vernooij2011-01-011-0/+2
|
* heimdal_build: Support using system hdb and kdc libraries.Jelmer Vernooij2011-01-011-0/+5
|
* heimdal_build: Add conditionals for all libraries.Jelmer Vernooij2011-01-011-110/+105
|
* heimdal_build: Allow using system krb5.Jelmer Vernooij2011-01-012-70/+72
|
* heimdal_build: Allow using system heimntlm.Jelmer Vernooij2011-01-012-12/+16
|
* heimdal_build: Look for asn1_compile (but by default, don't use it).Jelmer Vernooij2011-01-012-10/+31
|
* heimdal_build: Use consistent name for heimbase.Jelmer Vernooij2010-12-221-5/+5
| | | | | Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Wed Dec 22 02:24:24 CET 2010 on sn-devel-104
* heimdal_build: When using system hbase/hcrypto, don't compile our own versions.Jelmer Vernooij2010-12-221-18/+19
|
* heimdal_build: Allow using system hbase and hcrypto.Jelmer Vernooij2010-12-221-0/+3
|
* heimdal: Fix build if using system roken.Jelmer Vernooij2010-12-191-1/+1
| | | | | Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Sun Dec 19 22:29:41 CET 2010 on sn-devel-104
* heimdal_build: Simplify HEIMDAL_LIBRARY - version_script files are now taken ↵Jelmer Vernooij2010-12-181-15/+2
| | | | from upstream rather than generated.
* heimdal_build: Add version-script for heimdal_base, hx509 and hcrypto. ↵Jelmer Vernooij2010-12-181-40/+41
| | | | Convert hbase and hcrypto to libraries.
* heimdal_build: Add version-script for krb5.Jelmer Vernooij2010-12-171-0/+1
| | | | | Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Fri Dec 17 21:09:25 CET 2010 on sn-devel-104
* heimdal_build: Add version-script for gssapi.Jelmer Vernooij2010-12-171-0/+1
|
* heimdal_build: Add version-script for asn1.Jelmer Vernooij2010-12-171-0/+1
|
* heimdal_build: Add version-script for hdb.Jelmer Vernooij2010-12-171-4/+5
|
* heimdal_build: Add version-script for kdc.Jelmer Vernooij2010-12-171-1/+2
|