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_CAPIENG
     26 #define OPENSSL_NO_CAST
     27 #define OPENSSL_NO_CMS
     28 #define OPENSSL_NO_COMP
     29 #define OPENSSL_NO_DANE
     30 #define OPENSSL_NO_DEPRECATED
     31 #define OPENSSL_NO_DYNAMIC_ENGINE
     32 #define OPENSSL_NO_EC_NISTP_64_GCC_128
     33 #define OPENSSL_NO_EC2M
     34 #define OPENSSL_NO_ENGINE
     35 #define OPENSSL_NO_GMP
     36 #define OPENSSL_NO_GOST
     37 #define OPENSSL_NO_HEARTBEATS
     38 #define OPENSSL_NO_HW
     39 #define OPENSSL_NO_IDEA
     40 #define OPENSSL_NO_JPAKE
     41 #define OPENSSL_NO_KRB5
     42 #define OPENSSL_NO_MD2
     43 #define OPENSSL_NO_MDC2
     44 #define OPENSSL_NO_OCB
     45 #define OPENSSL_NO_OCSP
     46 #define OPENSSL_NO_RC2
     47 #define OPENSSL_NO_RC5
     48 #define OPENSSL_NO_RFC3779
     49 #define OPENSSL_NO_RIPEMD
     50 #define OPENSSL_NO_RMD160
     51 #define OPENSSL_NO_SCTP
     52 #define OPENSSL_NO_SEED
     53 #define OPENSSL_NO_SRP
     54 #define OPENSSL_NO_SSL2
     55 #define OPENSSL_NO_STATIC_ENGINE
     56 #define OPENSSL_NO_STORE
     57 #define OPENSSL_NO_WHIRLPOOL
     58 
     59 
     60 #endif  /* OPENSSL_HEADER_OPENSSLFEATURES_H */
     61