Changeset 50d0a72
- Timestamp:
- 2023-03-07T21:21:34Z (21 months ago)
- Branches:
- master
- Children:
- bea6db0
- Parents:
- 82149f4
- git-author:
- Petr Vaněk <arkamar@…> (07-03-23 21:21:34)
- git-committer:
- GitHub <noreply@…> (07-03-23 21:21:34)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
configure
r82149f4 r50d0a72 131 131 --plugindir=... $plugindir 132 132 --systemdsystemunitdir=... $systemdsystemunitdir 133 --sysusersdir 133 --sysusersdir=... $sysusersdir 134 134 --pidfile=... $pidfile 135 135 --config=... $config … … 160 160 $ssl 161 161 --external_json_parser=0/1/auto Use External JSON parser $external_json_parser 162 --systemd=0/1 Enable/disable systemd support $systemd 162 --systemd=0/1 Enable/disable automatic detection 163 of systemd directories $systemd 163 164 164 165 … … 773 774 systemdsystemunitdir=$(pkgconf_systemd_var systemdsystemunitdir systemd_system_unit_dir) 774 775 fi 775 if [ -z "$sysusersdir" ] ; then 776 sysusersdir=$(pkgconf_systemd_var sysusersdir sysusers_dir) 777 fi 778 776 if [ -z "$sysusersdir" ] ; then 777 sysusersdir=$(pkgconf_systemd_var sysusersdir sysusers_dir) 778 fi 779 fi 780 781 if [ -n "$systemdsystemunitdir" ]; then 779 782 echo "SYSTEMDSYSTEMUNITDIR=$systemdsystemunitdir" >> Makefile.settings 780 echo "SYSUSERSDIR=$sysusersdir" >> Makefile.settings 783 fi 784 if [ -n "$sysusersdir" ]; then 785 echo "SYSUSERSDIR=$sysusersdir" >> Makefile.settings 781 786 fi 782 787 … … 1032 1037 1033 1038 if [ "$systemd" = "1" ]; then 1034 echo ' systemd enabled.'1035 else 1036 echo ' systemd disabled.'1039 echo ' systemd autodetection enabled.' 1040 else 1041 echo ' systemd autodetection disabled.' 1037 1042 fi 1038 1043
Note: See TracChangeset
for help on using the changeset viewer.