Skip to content

Commit

Permalink
Makefile.in (lib-windows): Link against the runtime library
Browse files Browse the repository at this point in the history
krb5_16.def krb5_32.def: Export several more crypto routines:
	krb5_encrypt, krb5_decrypt, krb5_eblock_enctype,
	krb5_process_key, krb5_finish_key, krb5_string_to_key,
	krb5_init_random_key, krb5_finish_random_key, krb5_random_key


git-svn-id: svn://anonsvn.mit.edu/krb5/branches/V1_0_WIN32_BRANCH@9742 dc483132-0cff-0310-8789-dd5450dbe970
  • Loading branch information
probe committed Jan 31, 1997
1 parent 9692f96 commit 4a10f3a
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 8 deletions.
15 changes: 9 additions & 6 deletions src/lib/ChangeLog
@@ -1,9 +1,12 @@
Wed Jan 29 20:59:20 EST 1997 Richard Basch <basch@lehman.com>

* Makefile.in:
Link against MSVCRT.LIB to force the use of the
runtime C library instead of a possibly incompatible
static C library (for Borland C++)
Thu Jan 30 21:27:07 1997 Richard Basch <basch@lehman.com>

* krb5_16.def krb5_32.def:
Export krb5_decrypt, krb5_encrypt,
krb5_string_to_key, krb5_process_key, krb5_finish_key,
krb5_init_random_key, krb5_finish_random_key,
krb5_random_key, krb5_eblock_enctype
* Makefile.in
Win32 - Link against MSVCRT.LIB (runtime library)

Fri Jul 12 20:32:29 1996 Theodore Y. Ts'o <tytso@mit.edu>

Expand Down
4 changes: 2 additions & 2 deletions src/lib/Makefile.in
Expand Up @@ -44,7 +44,7 @@ KLIBS = krb5\krb5.lib crypto\crypto.lib \



$(KLIB): Makefile $(KLIBS) $(WLIB) $(KDEF) win_glue.obj
$(KLIB): $(KLIBS) $(WLIB) $(KDEF) win_glue.obj
##WIN16## link /co /seg:400 /noe /nod /nol \
##WIN16## win_glue, $*.dll, $*.map, \
##WIN16## $(KLIBS) $(WINLIBS), $(KDEF)
Expand All @@ -53,7 +53,7 @@ $(KLIB): Makefile $(KLIBS) $(WLIB) $(KDEF) win_glue.obj
##WIN32## link $(WINDLLFLAGS) /def:$(KDEF) /out:$*.dll \
##WIN32## win_glue.obj $(KLIBS) $(WINLIBS)

$(GLIB): Makefile $(GLIBS) $(KLIB) $(GDEF) win_glue.obj
$(GLIB): $(GLIBS) $(KLIB) $(GDEF) win_glue.obj
##WIN16## link /co /seg:400 /noe /nod /nol \
##WIN16## win_glue, $*.dll, $*.map, \
##WIN16## $(GLIBS) $(KLIB) $(WINLIBS), $(GDEF)
Expand Down
10 changes: 10 additions & 0 deletions src/lib/krb5_16.def
Expand Up @@ -100,6 +100,16 @@ EXPORTS
krb5_encrypt_size
krb5_calculate_checksum
krb5_verify_checksum
krb5_eblock_enctype
;
krb5_decrypt
krb5_encrypt
krb5_string_to_key
krb5_process_key
krb5_finish_key
krb5_init_random_key
krb5_finish_random_key
krb5_random_key
;
krb5_425_conv_principal
krb5_524_conv_principal
Expand Down
10 changes: 10 additions & 0 deletions src/lib/krb5_32.def
Expand Up @@ -100,6 +100,16 @@ EXPORTS
krb5_encrypt_size
krb5_calculate_checksum
krb5_verify_checksum
krb5_eblock_enctype
;
krb5_decrypt
krb5_encrypt
krb5_string_to_key
krb5_process_key
krb5_finish_key
krb5_init_random_key
krb5_finish_random_key
krb5_random_key
;
krb5_425_conv_principal
krb5_524_conv_principal
Expand Down

0 comments on commit 4a10f3a

Please sign in to comment.