7ecd468128
o Moved libssl from a dependency to being recommended. o Added small program to support Recommended link generation. o Fixed typo in lsb-base dependency. o Added comment in the package description about the need for libssl. o Fixed permissions on libhttp/ssl.c o Added environment variables for specifying the ssl and crypto libraries.
8 lines
127 B
C
8 lines
127 B
C
/* minimal program to link libcrypto */
|
|
#include <openssl/sha.h>
|
|
int main()
|
|
{
|
|
SHA_CTX ctx;
|
|
SHA1_Init (&ctx);
|
|
return 0;
|
|
}
|