Description: Use libssl for md5.h rather than cram
 cram/md5.h was part of HTSlib [1] (seems to have been removed in the current
 development tree), but those headers are not installed by that
 package's build system. md5.h in particular has a very generic function,
 served apparently by libssl. Furthermore, the cram/* headers are not intended
 to be used directly [2]. This patch uses libssl to provide md5.h for this
 package.
 .
 1. https://anonscm.debian.org/cgit/debian-med/htslib.git/tree/cram/md5.h?id=12251926b9d0265738d701bb0add6fe9d070ccb3
 2. http://sourceforge.net/p/samtools/mailman/message/33488076/
Author: Afif Elghraoui <afif@ghraoui.name>
Forwarded: no
Last-Update: 2015-09-07
--- pbbam.orig/src/ReadGroupInfo.cpp
+++ pbbam/src/ReadGroupInfo.cpp
@@ -37,7 +37,7 @@
 
 #include "pbbam/ReadGroupInfo.h"
 #include "SequenceUtils.h"
-#include <cram/md5.h>
+#include <openssl/md5.h>
 #include <cstdio>
 #include <set>
 #include <sstream>
