1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00
* reverse the change #include <> -> "" in krb.c.
  It _must not_ include files in "."
* Makefile update.  Inconsistent var usage and SHLIB was
  not set.

Now it should work with all external libs.

arko Kreen
This commit is contained in:
Bruce Momjian
2001-02-20 15:34:14 +00:00
parent d18c1d1f51
commit 60ea34b046
2 changed files with 17 additions and 14 deletions

View File

@ -31,15 +31,15 @@
* It is possible that this works with other SHA1/MD5
* implementations too.
*
* $Id: krb.c,v 1.2 2001/02/10 02:31:25 tgl Exp $
* $Id: krb.c,v 1.3 2001/02/20 15:34:14 momjian Exp $
*/
#include "postgres.h"
#include "pgcrypto.h"
#include "md5.h"
#include "sha.h"
#include <md5.h>
#include <sha.h>
#ifndef MD5_DIGEST_LENGTH
#define MD5_DIGEST_LENGTH 16