pq_compat.h calls out to opensslconf.h as a local include file (i.e. with
quotes).  The convention used everywhere else in the code is to call into
the openssl directory as a system include (i.e. <openssl/>).

--- pq_compat.h.orig    2007-06-12 09:08:43.000000000 -0500
+++ pq_compat.h    2007-06-12 09:08:59.000000000 -0500
@@ -57,7 +57,7 @@
  *
  */

-#include "opensslconf.h"
+#include <openssl/opensslconf.h>
 #include <openssl/bn.h>

 /*

pq_compat.h calls out to opensslconf.h as a local include file (i.e. with quotes).  The convention used everywhere else in the code is to call into the openssl directory as a system include (i.e. <openssl/>).

--- pq_compat.h.orig    2007-06-12 09:08:43.000000000 -0500
+++ pq_compat.h    2007-06-12 09:08:59.000000000 -0500
@@ -57,7 +57,7 @@
  *
  */
 
-#include "opensslconf.h"
+#include <openssl/opensslconf.h>
 #include <openssl/bn.h>
 
 /*
--- pq_compat.h.orig	2007-06-12 09:08:43.000000000 -0500
+++ pq_compat.h	2007-06-12 09:08:59.000000000 -0500
@@ -57,7 +57,7 @@
  *
  */
 
-#include "opensslconf.h"
+#include <openssl/opensslconf.h>
 #include <openssl/bn.h>
 
 /* 

Reply via email to