File tree Expand file tree Collapse file tree 6 files changed +0
-102
lines changed Expand file tree Collapse file tree 6 files changed +0
-102
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,6 @@ option(CASS_INSTALL_HEADER_IN_SUBDIR "Install header file under 'include/cassand
42
42
option (CASS_INSTALL_PKG_CONFIG "Install pkg-config file(s)" ON )
43
43
option (CASS_MULTICORE_COMPILATION "Enable multicore compilation" ON )
44
44
option (CASS_USE_BOOST_ATOMIC "Use Boost atomics library" OFF )
45
- option (CASS_USE_KERBEROS "Use Kerberos" OFF )
46
45
option (CASS_USE_LIBSSH2 "Use libssh2 for integration tests" OFF )
47
46
option (CASS_USE_OPENSSL "Use OpenSSL" ON )
48
47
option (CASS_USE_STATIC_LIBS "Link static libraries when building executables" OFF )
@@ -64,7 +63,6 @@ endif()
64
63
65
64
if (CASS_BUILD_INTEGRATION_TESTS OR CASS_BUILD_UNIT_TESTS )
66
65
set (CASS_USE_OPENSSL ON ) # Required for tests
67
- set (CASS_USE_KERBEROS ON ) # Required for tests
68
66
set (CASS_USE_LIBUV ON )
69
67
endif ()
70
68
Original file line number Diff line number Diff line change @@ -107,17 +107,6 @@ if(CASS_USE_OPENSSL)
107
107
set (CASS_LIBS ${CASS_LIBS} ${OPENSSL_LIBRARIES} )
108
108
endif ()
109
109
110
- #------------------------
111
- # Kerberos
112
- #------------------------
113
-
114
- if (CASS_USE_KERBEROS )
115
- # Discover Kerberos and assign Kerberos include and libraries
116
- find_package (Kerberos REQUIRED )
117
- set (CASS_INCLUDES ${CASS_INCLUDES} ${KERBEROS_INCLUDE_DIR} )
118
- set (CASS_LIBS ${CASS_LIBS} ${KERBEROS_LIBRARIES} )
119
- endif ()
120
-
121
110
#------------------------
122
111
# Boost
123
112
#------------------------
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
#ifndef DATASTAX_INTERNAL_DRIVER_CONFIG_HPP
2
2
#define DATASTAX_INTERNAL_DRIVER_CONFIG_HPP
3
3
4
- #cmakedefine HAVE_KERBEROS
5
4
#cmakedefine HAVE_OPENSSL
6
5
#cmakedefine HAVE_STD_ATOMIC
7
6
#cmakedefine CASS_CPP_STANDARD @CASS_CPP_STANDARD@
Original file line number Diff line number Diff line change @@ -17,11 +17,6 @@ else()
17
17
list (APPEND SOURCES ssl/ssl_no_impl.cpp )
18
18
endif ()
19
19
20
- if (CASS_USE_KERBEROS )
21
- list (APPEND INCLUDE_DIRS gssapi )
22
- list (APPEND SOURCES gssapi/dse_auth_gssapi.cpp gssapi/dse_auth_gssapi.hpp )
23
- endif ()
24
-
25
20
# Determine atomic library to include
26
21
if (CASS_USE_BOOST_ATOMIC )
27
22
list (APPEND SOURCES atomic/atomic_boost.hpp )
@@ -122,7 +117,6 @@ endif()
122
117
123
118
set (HAVE_BOOST_ATOMIC ${CASS_USE_BOOST_ATOMIC} )
124
119
set (HAVE_STD_ATOMIC ${CASS_USE_STD_ATOMIC} )
125
- set (HAVE_KERBEROS ${CASS_USE_KERBEROS} )
126
120
set (HAVE_OPENSSL ${CASS_USE_OPENSSL} )
127
121
128
122
# Generate the driver_config.hpp file
Original file line number Diff line number Diff line change 1
1
#ifndef DATASTAX_INTERNAL_DRIVER_CONFIG_HPP
2
2
#define DATASTAX_INTERNAL_DRIVER_CONFIG_HPP
3
3
4
- #define HAVE_KERBEROS
5
4
#define HAVE_OPENSSL
6
5
#define HAVE_STD_ATOMIC
7
6
#define CASS_CPP_STANDARD 11
You can’t perform that action at this time.
0 commit comments