mirror of
https://github.com/systemd/systemd.git
synced 2025-02-02 13:47:27 +03:00
build-sys: s/HAVE_IMA/ENABLE_IMA/
Same justification as for HAVE_UTMP.
This commit is contained in:
parent
3211da4bcb
commit
392fd235fd
@ -1062,7 +1062,7 @@ foreach pair : [['utmp', 'ENABLE_UTMP'],
|
||||
['ldconfig', 'ENABLE_LDCONFIG'],
|
||||
['efi', 'ENABLE_EFI'],
|
||||
['tpm', 'ENABLE_TPM'],
|
||||
['ima', 'HAVE_IMA'],
|
||||
['ima', 'ENABLE_IMA'],
|
||||
['smack', 'HAVE_SMACK'],
|
||||
['gshadow', 'ENABLE_GSHADOW'],
|
||||
['idn', 'ENABLE_IDN'],
|
||||
|
@ -43,7 +43,7 @@
|
||||
#define _APPARMOR_FEATURE_ "-APPARMOR"
|
||||
#endif
|
||||
|
||||
#if HAVE_IMA
|
||||
#if ENABLE_IMA
|
||||
#define _IMA_FEATURE_ "+IMA"
|
||||
#else
|
||||
#define _IMA_FEATURE_ "-IMA"
|
||||
|
@ -33,7 +33,7 @@
|
||||
#define IMA_POLICY_PATH "/etc/ima/ima-policy"
|
||||
|
||||
int ima_setup(void) {
|
||||
#if HAVE_IMA
|
||||
#if ENABLE_IMA
|
||||
_cleanup_fclose_ FILE *input = NULL;
|
||||
_cleanup_close_ int imafd = -1;
|
||||
unsigned lineno = 0;
|
||||
@ -93,6 +93,6 @@ int ima_setup(void) {
|
||||
|
||||
done:
|
||||
log_info("Successfully loaded the IMA custom policy "IMA_POLICY_PATH".");
|
||||
#endif /* HAVE_IMA */
|
||||
#endif /* ENABLE_IMA */
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user