Skip to content

Instantly share code, notes, and snippets.

@dogukancagatay
Last active June 15, 2021 13:52
Show Gist options
  • Save dogukancagatay/69ad354303d3ee727cce80add816e1fb to your computer and use it in GitHub Desktop.
Save dogukancagatay/69ad354303d3ee727cce80add816e1fb to your computer and use it in GitHub Desktop.
XCA build and install on CentOS 7

Install XCA on Centos 7

Install Dependencies

yum install -y git
yum groupinstall -y "Development Tools"
yum install -y qt5-qtbase-devel qt5-qttools-devel qt5-qtbase-mysql qt5-qtbase-postgresql qt5-linguist
yum install -y openssl-devel libtool-ltdl-devel 

Modify Environment Variables

export CXXFLAGS=-std=c++11
export PATH="/usr/lib64/qt5/bin/:$PATH"

Clone, Build and Install

git clone https://github.com/chris2511/xca.git
cd xca
./bootstrap
make
make install
@dogukancagatay
Copy link
Author

@Sisko42

I think epel-release for CentOS 7 has OpenSSL 1.1.x.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment