Changeset bea6db0
- Timestamp:
- 2023-03-07T21:43:36Z (21 months ago)
- Branches:
- master
- Children:
- 59c9fa4d
- Parents:
- 50d0a72
- git-author:
- Jelmer Vernooij <jelmer@…> (07-03-23 21:43:36)
- git-committer:
- GitHub <noreply@…> (07-03-23 21:43:36)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
configure
r50d0a72 rbea6db0 160 160 $ssl 161 161 --external_json_parser=0/1/auto Use External JSON parser $external_json_parser 162 --systemd=0/1 Enable/disable automatic detection 163 of systemd directories $systemd 162 --systemd=0/1 Enable/disable systemd $systemd 164 163 165 164 … … 752 751 if [ ! "$systemd" = "0" ]; then 753 752 if ! $PKG_CONFIG --exists systemd ; then 754 if [ -n "$systemdsystemunitdir" ] || [$systemd -eq 1 ]; then753 if [ $systemd -eq 1 ]; then 755 754 echo "systemd requested but not found" 756 755 exit 1 … … 758 757 systemd=0 759 758 fi 759 elif [ $systemd = "auto" ]; then 760 systemd=1 760 761 fi 761 762 fi … … 1037 1038 1038 1039 if [ "$systemd" = "1" ]; then 1039 echo ' systemd autodetectionenabled.'1040 else 1041 echo ' systemd autodetectiondisabled.'1040 echo ' systemd enabled.' 1041 else 1042 echo ' systemd disabled.' 1042 1043 fi 1043 1044
Note: See TracChangeset
for help on using the changeset viewer.