Skip to content

Commit

Permalink
Merge pull request #55 from cynic64/master
Browse files Browse the repository at this point in the history
Correctly detect when gdbus-codegen is missing
  • Loading branch information
vanhauser-thc authored Jan 12, 2024
2 parents a132171 + b001deb commit a94fdc3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -5684,7 +5684,9 @@ if test "$gio" = "yes" ; then
echo "CONFIG_GIO=y" >> $config_host_mak
echo "GIO_CFLAGS=$gio_cflags" >> $config_host_mak
echo "GIO_LIBS=$gio_libs" >> $config_host_mak
echo "GDBUS_CODEGEN=$gdbus_codegen" >> $config_host_mak
if [ -n "$gdbus_codegen" ]; then
echo "GDBUS_CODEGEN=$gdbus_codegen" >> $config_host_mak
fi
fi
echo "CONFIG_TLS_PRIORITY=\"$tls_priority\"" >> $config_host_mak
if test "$gnutls" = "yes" ; then
Expand Down

0 comments on commit a94fdc3

Please sign in to comment.