Home | History | Annotate | Download | only in openssl
      1 /* Copyright (c) 2014, Google Inc.
      2  *
      3  * Permission to use, copy, modify, and/or distribute this software for any
      4  * purpose with or without fee is hereby granted, provided that the above
      5  * copyright notice and this permission notice appear in all copies.
      6  *
      7  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
      8  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
      9  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
     10  * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
     11  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
     12  * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
     13  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */
     14 
     15 /* This header is provided in order to make compiling against code that expects
     16    OpenSSL easier. */
     17 
     18 #ifndef OPENSSL_HEADER_OPENSSLFEATURES_H
     19 #define OPENSSL_HEADER_OPENSSLFEATURES_H
     20 
     21 
     22 #define OPENSSL_NO_BF
     23 #define OPENSSL_NO_BUF_FREELISTS
     24 #define OPENSSL_NO_CAMELLIA
     25 #define OPENSSL_NO_CAST
     26 #define OPENSSL_NO_CMS
     27 #define OPENSSL_NO_COMP
     28 #define OPENSSL_NO_DANE
     29 #define OPENSSL_NO_DEPRECATED
     30 #define OPENSSL_NO_DYNAMIC_ENGINE
     31 #define OPENSSL_NO_ENGINE
     32 #define OPENSSL_NO_GMP
     33 #define OPENSSL_NO_GOST
     34 #define OPENSSL_NO_HEARTBEATS
     35 #define OPENSSL_NO_HW
     36 #define OPENSSL_NO_IDEA
     37 #define OPENSSL_NO_JPAKE
     38 #define OPENSSL_NO_KRB5
     39 #define OPENSSL_NO_MD2
     40 #define OPENSSL_NO_MDC2
     41 #define OPENSSL_NO_OCSP
     42 #define OPENSSL_NO_RC2
     43 #define OPENSSL_NO_RC5
     44 #define OPENSSL_NO_RFC3779
     45 #define OPENSSL_NO_RIPEMD
     46 #define OPENSSL_NO_SCTP
     47 #define OPENSSL_NO_SEED
     48 #define OPENSSL_NO_SRP
     49 #define OPENSSL_NO_SSL2
     50 #define OPENSSL_NO_STATIC_ENGINE
     51 #define OPENSSL_NO_STORE
     52 #define OPENSSL_NO_WHIRLPOOL
     53 
     54 
     55 #endif  /* OPENSSL_HEADER_OPENSSLFEATURES_H */
     56