]> granicus.if.org Git - postgresql/commitdiff
pgcrypto: Make header files stand alone
authorPeter Eisentraut <peter_e@gmx.net>
Thu, 9 Jan 2014 11:44:24 +0000 (06:44 -0500)
committerPeter Eisentraut <peter_e@gmx.net>
Thu, 9 Jan 2014 11:44:24 +0000 (06:44 -0500)
pgp.h used to require including mbuf.h and px.h first.  Include those in
pgp.h, so that it can be used without prerequisites.  Remove mbuf.h
inclusions in .c files where mbuf.h features are not used
directly.  (px.h was always used.)

contrib/pgcrypto/pgp-armor.c
contrib/pgcrypto/pgp-cfb.c
contrib/pgcrypto/pgp-compress.c
contrib/pgcrypto/pgp-mpi-internal.c
contrib/pgcrypto/pgp-mpi-openssl.c
contrib/pgcrypto/pgp-mpi.c
contrib/pgcrypto/pgp-pubdec.c
contrib/pgcrypto/pgp-pubenc.c
contrib/pgcrypto/pgp-s2k.c
contrib/pgcrypto/pgp.c
contrib/pgcrypto/pgp.h

index 87adf911259642be4f02a8526636b94a3e675b4f..8460bf924a2a921aec8548a56cfcd324e922b604 100644 (file)
@@ -32,7 +32,6 @@
 #include "postgres.h"
 
 #include "px.h"
-#include "mbuf.h"
 #include "pgp.h"
 
 /*
index 7cf9bf0b8c5594e4eab99b5c84b8429da3c1547d..d230bcb49eb1ae5206a789202b3caf182666125d 100644 (file)
@@ -31,7 +31,6 @@
 
 #include "postgres.h"
 
-#include "mbuf.h"
 #include "px.h"
 #include "pgp.h"
 
index c59245340216dc3c2ead2da267b1fbace40bbf82..edd8255f6a3b7458f6170a60f9b0d76f0d309bea 100644 (file)
@@ -31,7 +31,6 @@
 
 #include "postgres.h"
 
-#include "mbuf.h"
 #include "px.h"
 #include "pgp.h"
 
index d0e5830fe0394dbd15672b637715d178261d6d72..6057dcd88c706b066c56bf43df75b86fc3d2e71b 100644 (file)
@@ -33,7 +33,6 @@
 #include "imath.h"
 
 #include "px.h"
-#include "mbuf.h"
 #include "pgp.h"
 
 static mpz_t *
index ed41e1151c32eec9c3f7dd982bdf6166254567e6..57acfa0f1771d34b0cb28f780a490b2e69dc5bad 100644 (file)
@@ -33,7 +33,6 @@
 #include <openssl/bn.h>
 
 #include "px.h"
-#include "mbuf.h"
 #include "pgp.h"
 
 static BIGNUM *
index c8765b6d141a4a2289fad3893a89e289d5bd823e..27ebd84ccaba28725134ee88e500fc759e6ff724 100644 (file)
@@ -31,7 +31,6 @@
 #include "postgres.h"
 
 #include "px.h"
-#include "mbuf.h"
 #include "pgp.h"
 
 int
index fe5fae0c42c89b0ab51b3a5ca2fc79abfa20227d..69b1ab34915dfc3e8a5fd23cd607da80b2add9bf 100644 (file)
@@ -31,7 +31,6 @@
 #include "postgres.h"
 
 #include "px.h"
-#include "mbuf.h"
 #include "pgp.h"
 
 /*
index 943d2e49f57d5d1141f6cdb994bfe85835766baa..130d379a8a96eb19b9a33938a68896a512d5bee8 100644 (file)
@@ -31,7 +31,6 @@
 #include "postgres.h"
 
 #include "px.h"
-#include "mbuf.h"
 #include "pgp.h"
 
 /*
index 349234e243c5c3cb9851a3090962e710dcff5f35..f7066bff95b4871d02b240655aa28ba6c6e85fa7 100644 (file)
@@ -32,7 +32,6 @@
 #include "postgres.h"
 
 #include "px.h"
-#include "mbuf.h"
 #include "pgp.h"
 
 static int
index b8a6bc49b4085741a14367bbee4c550ce0b3e772..059c04af8f135b6a70f5af7e602a7063abb30ce7 100644 (file)
@@ -32,7 +32,6 @@
 #include "postgres.h"
 
 #include "px.h"
-#include "mbuf.h"
 #include "pgp.h"
 
 /*
index 3022abf75d8cdab1f661943fff073be52bbfc687..f856e0733c6c8e8e2914dba42ed031034148f991 100644 (file)
@@ -29,6 +29,9 @@
  * contrib/pgcrypto/pgp.h
  */
 
+#include "mbuf.h"
+#include "px.h"
+
 enum PGP_S2K_TYPE
 {
        PGP_S2K_SIMPLE = 0,