Răsfoiți Sursa

changed include to double quotes

Dave Schuyler 20 ani în urmă
părinte
comite
c0bc0d4d32

+ 1 - 1
dtool/src/prc/configPage.cxx

@@ -26,7 +26,7 @@
 #include <ctype.h>
 
 #ifdef HAVE_OPENSSL
-#include <openssl/evp.h>
+#include "openssl/evp.h"
 #endif
 
 ConfigPage *ConfigPage::_default_page = NULL;

+ 1 - 1
dtool/src/prc/prcKeyRegistry.cxx

@@ -25,7 +25,7 @@
 
 #ifdef HAVE_OPENSSL
 
-#include <openssl/pem.h>
+#include "openssl/pem.h"
 
 PrcKeyRegistry *PrcKeyRegistry::_global_ptr = NULL;
 

+ 1 - 1
dtool/src/prc/prcKeyRegistry.h

@@ -28,7 +28,7 @@
 #ifdef HAVE_OPENSSL
 
 #include "pvector.h"
-#include <openssl/evp.h>
+#include "openssl/evp.h"
 
 // Some versions of OpenSSL appear to define this as a macro.  Yucky.
 #undef set_key

+ 5 - 5
dtool/src/prckeys/makePrcKey.cxx

@@ -27,11 +27,11 @@
 #include PRC_PUBLIC_KEYS_INCLUDE
 #endif
 
-#include <openssl/rsa.h>
-#include <openssl/err.h>
-#include <openssl/pem.h>
-#include <openssl/rand.h>
-#include <openssl/bio.h>
+#include "openssl/rsa.h"
+#include "openssl/err.h"
+#include "openssl/pem.h"
+#include "openssl/rand.h"
+#include "openssl/bio.h"
 
 #ifndef HAVE_GETOPT
   #include "gnu_getopt.h"

+ 5 - 5
dtool/src/prckeys/signPrcFile_src.cxx

@@ -27,11 +27,11 @@
 
 #include <time.h>
 
-#include <openssl/err.h>
-#include <openssl/pem.h>
-#include <openssl/rand.h>
-#include <openssl/bio.h>
-#include <openssl/evp.h>
+#include "openssl/err.h"
+#include "openssl/pem.h"
+#include "openssl/rand.h"
+#include "openssl/bio.h"
+#include "openssl/evp.h"
 
 #ifndef HAVE_GETOPT
   #include "gnu_getopt.h"

+ 1 - 1
panda/src/downloader/bioPtr.h

@@ -26,7 +26,7 @@
 #define OPENSSL_NO_KRB5
 
 #include "referenceCount.h"
-#include <openssl/ssl.h>
+#include "openssl/ssl.h"
 
 class URLSpec;
 

+ 1 - 1
panda/src/downloader/bioStreamBuf.h

@@ -27,7 +27,7 @@
 
 #include "bioPtr.h"
 #include "pointerTo.h"
-#include <openssl/ssl.h>
+#include "openssl/ssl.h"
 
 ////////////////////////////////////////////////////////////////////
 //       Class : BioStreamBuf

+ 1 - 1
panda/src/downloader/bioStreamPtr.h

@@ -27,7 +27,7 @@
 
 #include "bioStream.h"
 #include "referenceCount.h"
-#include <openssl/ssl.h>
+#include "openssl/ssl.h"
 
 ////////////////////////////////////////////////////////////////////
 //       Class : BioStreamPtr

+ 1 - 1
panda/src/downloader/httpChannel.cxx

@@ -28,7 +28,7 @@
 #include "ramfile.h"
 
 #ifdef HAVE_OPENSSL
-#include <openssl/x509.h>
+#include "openssl/x509.h"
 
 #ifdef WIN32_VC
   #include <windows.h>  // for select()

+ 1 - 1
panda/src/downloader/httpChannel.h

@@ -41,7 +41,7 @@
 #include "pointerTo.h"
 #include "config_downloader.h"
 #include "filename.h"
-#include <openssl/ssl.h>
+#include "openssl/ssl.h"
 
 class Ramfile;
 class HTTPClient;

+ 2 - 2
panda/src/downloader/httpClient.cxx

@@ -30,8 +30,8 @@
 
 #ifdef HAVE_OPENSSL
 
-#include <openssl/rand.h>
-#include <openssl/err.h>
+#include "openssl/rand.h"
+#include "openssl/err.h"
 
 // Windows may define this macro inappropriately.
 #ifdef X509_NAME

+ 1 - 1
panda/src/downloader/httpClient.h

@@ -39,7 +39,7 @@
 #include "pmap.h"
 #include "pset.h"
 
-#include <openssl/ssl.h>
+#include "openssl/ssl.h"
 
 // Windows may define this macro inappropriately.
 #ifdef X509_NAME

+ 2 - 2
panda/src/downloader/httpDigestAuthorization.cxx

@@ -20,8 +20,8 @@
 
 #ifdef HAVE_OPENSSL
 
-#include <openssl/ssl.h>
-#include <openssl/md5.h>
+#include "openssl/ssl.h"
+#include "openssl/md5.h"
 #include <time.h>
 
 const string HTTPDigestAuthorization::_mechanism = "digest";

+ 1 - 1
panda/src/downloader/ssl_utils.cxx

@@ -22,7 +22,7 @@
 #ifdef HAVE_OPENSSL
 
 #ifdef REPORT_OPENSSL_ERRORS
-#include <openssl/err.h>
+#include "openssl/err.h"
 #endif
 
 ////////////////////////////////////////////////////////////////////

+ 1 - 1
panda/src/downloader/ssl_utils.h

@@ -25,7 +25,7 @@
 #ifdef HAVE_OPENSSL
 #define OPENSSL_NO_KRB5
 
-#include <openssl/ssl.h>
+#include "openssl/ssl.h"
 
 EXPCL_PANDAEXPRESS void notify_ssl_errors();
 

+ 1 - 1
panda/src/express/encryptStreamBuf.cxx

@@ -23,7 +23,7 @@
 
 #ifdef HAVE_OPENSSL
 
-#include <openssl/rand.h>
+#include "openssl/rand.h"
 
 #ifndef HAVE_STREAMSIZE
 // Some compilers (notably SGI) don't define this for us

+ 1 - 1
panda/src/express/encryptStreamBuf.h

@@ -24,7 +24,7 @@
 // This module is not compiled if OpenSSL is not available.
 #ifdef HAVE_OPENSSL
 
-#include <openssl/evp.h>
+#include "openssl/evp.h"
 
 ////////////////////////////////////////////////////////////////////
 //       Class : EncryptStreamBuf

+ 1 - 1
panda/src/express/hashVal.cxx

@@ -22,7 +22,7 @@
 #include <ctype.h>
 
 #ifdef HAVE_OPENSSL
-#include <openssl/md5.h>
+#include "openssl/md5.h"
 #endif  // HAVE_OPENSSL
 
 

+ 1 - 1
panda/src/express/password_hash.cxx

@@ -22,7 +22,7 @@
 // within OpenSSL.
 #ifdef HAVE_OPENSSL
 
-#include <openssl/evp.h>
+#include "openssl/evp.h"
 
 ////////////////////////////////////////////////////////////////////
 //     Function: password_hash