Github messages for voidlinux
 help / color / mirror / Atom feed
From: q66 <q66@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: Re: New package: Xdialog
Date: Mon, 06 Jul 2020 07:08:17 +0200	[thread overview]
Message-ID: <20200706050817.6fzUsNF3APluKbsGs9qwgae7LQGo44soKQZww6SrahQ@z> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-23403@inbox.vuxu.org>

[-- Attachment #1: Type: text/plain, Size: 834 bytes --]

New comment by q66 on void-packages repository

https://github.com/void-linux/void-packages/pull/23403#issuecomment-654016545

Comment:
that's because the configure script likely interprets `--with-gtk2` and `--without-gtk2` (`AC_ARG_WITH(something, ...)` makes the script recognize either `--with-something` or `--without-something` or `--with-something=yes/no/...`) as the same thing since it lacks a false branch

```
compile_for="gtk1"
AC_ARG_WITH(gtk2,
  [  --with-gtk2             Compiles for GTK2],[
  compile_for="gtk2"
  CPPFLAGS="$CPPFLAGS -DUSE_GTK2"
  AC_MSG_RESULT(Compiling for GTK2)
  ])
if test "$compile_for" = "gtk2" ; then
  AM_PATH_GTK_2_0(2.2.0, ,
            AC_MSG_ERROR(Cannot find GTK2.))
else
  AM_PATH_GTK(1.2.0, ,
            AC_MSG_ERROR(Cannot find GTK: Is gtk-config in path?))
fi
```

  parent reply	other threads:[~2020-07-06  5:08 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-07-05 22:32 [PR PATCH] " ThatGeekyWeeb
2020-07-05 22:38 ` [PR PATCH] [Updated] " ThatGeekyWeeb
2020-07-05 22:46 ` ThatGeekyWeeb
2020-07-05 23:21 ` ThatGeekyWeeb
2020-07-06  0:04 ` ThatGeekyWeeb
2020-07-06  0:08 ` ThatGeekyWeeb
2020-07-06  0:43 ` abenson
2020-07-06  0:44 ` q66
2020-07-06  0:46 ` q66
2020-07-06  0:48 ` q66
2020-07-06  0:50 ` q66
2020-07-06  3:08 ` ThatGeekyWeeb
2020-07-06  3:09 ` ThatGeekyWeeb
2020-07-06  3:10 ` ThatGeekyWeeb
2020-07-06  3:10 ` [PR PATCH] [Updated] " ThatGeekyWeeb
2020-07-06  3:11 ` ThatGeekyWeeb
2020-07-06  3:16 ` ThatGeekyWeeb
2020-07-06  3:25 ` q66
2020-07-06  3:32 ` ThatGeekyWeeb
2020-07-06  3:32 ` [PR PATCH] [Closed]: " q66
2020-07-06  3:32 ` q66
2020-07-06  3:35 ` q66
2020-07-06  3:40 ` ThatGeekyWeeb
2020-07-06  3:44 ` q66
2020-07-06  4:04 ` ThatGeekyWeeb
2020-07-06  4:26 ` ThatGeekyWeeb
2020-07-06  4:48 ` q66
2020-07-06  4:58 ` ThatGeekyWeeb
2020-07-06  4:59 ` ThatGeekyWeeb
2020-07-06  5:05 ` q66
2020-07-06  5:06 ` q66
2020-07-06  5:08 ` q66 [this message]
2020-07-06  5:08 ` q66

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200706050817.6fzUsNF3APluKbsGs9qwgae7LQGo44soKQZww6SrahQ@z \
    --to=q66@users.noreply.github.com \
    --cc=ml@inbox.vuxu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).