-
Notifications
You must be signed in to change notification settings - Fork 269
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- modify structure of CMakeLists.txt under apps/ * move apps/CMakeLists.txt to apps/openssl/ since this is for openssl build * create new apps/nc/CMakeLists.txt for nc build * modify apps/CMakeLists.txt just add_subdirectory() - add checking and compile of arc4random_uniform() - add installing man files, openssl.1 and nc.1
- Loading branch information
Showing
8 changed files
with
149 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,80 +1,2 @@ | ||
include_directories( | ||
. | ||
../include | ||
../include/compat | ||
) | ||
|
||
set( | ||
OPENSSL_SRC | ||
openssl/apps.c | ||
openssl/asn1pars.c | ||
openssl/ca.c | ||
openssl/ciphers.c | ||
openssl/cms.c | ||
openssl/crl.c | ||
openssl/crl2p7.c | ||
openssl/dgst.c | ||
openssl/dh.c | ||
openssl/dhparam.c | ||
openssl/dsa.c | ||
openssl/dsaparam.c | ||
openssl/ec.c | ||
openssl/ecparam.c | ||
openssl/enc.c | ||
openssl/errstr.c | ||
openssl/gendh.c | ||
openssl/gendsa.c | ||
openssl/genpkey.c | ||
openssl/genrsa.c | ||
openssl/nseq.c | ||
openssl/ocsp.c | ||
openssl/openssl.c | ||
openssl/passwd.c | ||
openssl/pkcs12.c | ||
openssl/pkcs7.c | ||
openssl/pkcs8.c | ||
openssl/pkey.c | ||
openssl/pkeyparam.c | ||
openssl/pkeyutl.c | ||
openssl/prime.c | ||
openssl/rand.c | ||
openssl/req.c | ||
openssl/rsa.c | ||
openssl/rsautl.c | ||
openssl/s_cb.c | ||
openssl/s_client.c | ||
openssl/s_server.c | ||
openssl/s_socket.c | ||
openssl/s_time.c | ||
openssl/sess_id.c | ||
openssl/smime.c | ||
openssl/speed.c | ||
openssl/spkac.c | ||
openssl/ts.c | ||
openssl/verify.c | ||
openssl/version.c | ||
openssl/x509.c | ||
) | ||
|
||
if(CMAKE_HOST_UNIX) | ||
set(OPENSSL_SRC ${OPENSSL_SRC} openssl/apps_posix.c) | ||
set(OPENSSL_SRC ${OPENSSL_SRC} openssl/certhash.c) | ||
endif() | ||
|
||
if(CMAKE_HOST_WIN32) | ||
set(OPENSSL_SRC ${OPENSSL_SRC} openssl/apps_win.c) | ||
set(OPENSSL_SRC ${OPENSSL_SRC} openssl/certhash_win.c) | ||
set(OPENSSL_SRC ${OPENSSL_SRC} openssl/compat/poll_win.c) | ||
endif() | ||
|
||
check_function_exists(strtonum HAVE_STRTONUM) | ||
if(HAVE_STRTONUM) | ||
add_definitions(-DHAVE_STRTONUM) | ||
else() | ||
set(OPENSSL_SRC ${OPENSSL_SRC} openssl/compat/strtonum.c) | ||
endif() | ||
|
||
add_executable(openssl ${OPENSSL_SRC}) | ||
target_link_libraries(openssl ${OPENSSL_LIBS}) | ||
|
||
install(TARGETS openssl DESTINATION bin) | ||
add_subdirectory(openssl) | ||
add_subdirectory(nc) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
if(BUILD_NC) | ||
|
||
include_directories( | ||
. | ||
./compat | ||
../../include | ||
../../include/compat | ||
) | ||
|
||
set( | ||
NC_SRC | ||
atomicio.c | ||
netcat.c | ||
socks.c | ||
compat/socket.c | ||
) | ||
|
||
check_function_exists(b64_ntop HAVE_B64_NTOP) | ||
if(HAVE_B64_NTOP) | ||
add_definitions(-DHAVE_B64_NTOP) | ||
else() | ||
set(NC_SRC ${NC_SRC} compat/base64.c) | ||
endif() | ||
|
||
check_function_exists(accept4 HAVE_ACCEPT4) | ||
if(HAVE_ACCEPT4) | ||
add_definitions(-DHAVE_ACCEPT4) | ||
else() | ||
set(NC_SRC ${NC_SRC} compat/accept4.c) | ||
endif() | ||
|
||
check_function_exists(readpassphrase HAVE_READPASSPHRASE) | ||
if(HAVE_READPASSPHRASE) | ||
add_definitions(-DHAVE_READPASSPHRASE) | ||
else() | ||
set(NC_SRC ${NC_SRC} compat/readpassphrase.c) | ||
endif() | ||
|
||
check_function_exists(strtonum HAVE_STRTONUM) | ||
if(HAVE_STRTONUM) | ||
add_definitions(-DHAVE_STRTONUM) | ||
else() | ||
set(NC_SRC ${NC_SRC} compat/strtonum.c) | ||
endif() | ||
|
||
add_executable(nc ${NC_SRC}) | ||
target_link_libraries(nc tls ${OPENSSL_LIBS}) | ||
|
||
if(ENABLE_NC) | ||
install(TARGETS nc DESTINATION bin) | ||
install(FILES nc.1 DESTINATION share/man/man1) | ||
endif() | ||
|
||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
include_directories( | ||
. | ||
../../include | ||
../../include/compat | ||
) | ||
|
||
set( | ||
OPENSSL_SRC | ||
apps.c | ||
asn1pars.c | ||
ca.c | ||
ciphers.c | ||
cms.c | ||
crl.c | ||
crl2p7.c | ||
dgst.c | ||
dh.c | ||
dhparam.c | ||
dsa.c | ||
dsaparam.c | ||
ec.c | ||
ecparam.c | ||
enc.c | ||
errstr.c | ||
gendh.c | ||
gendsa.c | ||
genpkey.c | ||
genrsa.c | ||
nseq.c | ||
ocsp.c | ||
openssl.c | ||
passwd.c | ||
pkcs12.c | ||
pkcs7.c | ||
pkcs8.c | ||
pkey.c | ||
pkeyparam.c | ||
pkeyutl.c | ||
prime.c | ||
rand.c | ||
req.c | ||
rsa.c | ||
rsautl.c | ||
s_cb.c | ||
s_client.c | ||
s_server.c | ||
s_socket.c | ||
s_time.c | ||
sess_id.c | ||
smime.c | ||
speed.c | ||
spkac.c | ||
ts.c | ||
verify.c | ||
version.c | ||
x509.c | ||
) | ||
|
||
if(CMAKE_HOST_UNIX) | ||
set(OPENSSL_SRC ${OPENSSL_SRC} apps_posix.c) | ||
set(OPENSSL_SRC ${OPENSSL_SRC} certhash.c) | ||
endif() | ||
|
||
if(CMAKE_HOST_WIN32) | ||
set(OPENSSL_SRC ${OPENSSL_SRC} apps_win.c) | ||
set(OPENSSL_SRC ${OPENSSL_SRC} certhash_win.c) | ||
set(OPENSSL_SRC ${OPENSSL_SRC} compat/poll_win.c) | ||
endif() | ||
|
||
check_function_exists(strtonum HAVE_STRTONUM) | ||
if(HAVE_STRTONUM) | ||
add_definitions(-DHAVE_STRTONUM) | ||
else() | ||
set(OPENSSL_SRC ${OPENSSL_SRC} compat/strtonum.c) | ||
endif() | ||
|
||
add_executable(openssl ${OPENSSL_SRC}) | ||
target_link_libraries(openssl ${OPENSSL_LIBS}) | ||
|
||
install(TARGETS openssl DESTINATION bin) | ||
install(FILES openssl.1 DESTINATION share/man/man1) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters