mirror of
https://github.com/stefanberger/swtpm.git
synced 2025-08-22 19:04:35 +00:00

This is a 1:1 rewrite of swtpm_localca in 'C' as a final step to get rid of the python dependency. It addresses issue #437. Tested on: Cygwin, Fedora 33, Ubuntu Xenial & Bionic, FreeBSD, DragonFlyBSD, OpenBSD (i386), Mac, Debian (recent), Centos-8, CentOS (recent), Alpine (recent), OpenSUSE (recent), Fedora 28 PPC Big Endian Signed-off-by: Stefan Berger <stefanb@linux.ibm.com>
16 lines
319 B
C
16 lines
319 B
C
/* SPDX-License-Identifier: BSD-3-Clause */
|
|
/*
|
|
* swtpm_setup_conf.h: Compile-time constants
|
|
*
|
|
* Author: Stefan Berger, stefanb@linux.ibm.com
|
|
*
|
|
* Copyright (c) IBM Corporation, 2021
|
|
*/
|
|
|
|
#ifndef SWTPM_LOCALCA_CONF_H
|
|
#define SWTPM_LOCALCA_CONF_H
|
|
|
|
#define SYSCONFDIR "@SYSCONFDIR@"
|
|
|
|
#endif /* SWTPM_LOCALCA_CONF_H */
|