public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
* [ANNOUNCEMENT] Updated: checkx-0.2.0-1
@ 2006-11-13  0:06 Charles Wilson
  2006-11-16 10:45 ` [Packaging bug ?] " Dr. Volker Zell
  0 siblings, 1 reply; 3+ messages in thread
From: Charles Wilson @ 2006-11-13  0:06 UTC (permalink / raw)
  To: cygwin

checkX is a little utility I wrote that tests to see if (a) the X11 
client DLLs are installed on the machine, and (b) the Xserver on 
$DISPLAY (or -d x.x.x.x:x) is running and usable.

CHANGES:

* switch to cygport build framework
* massive internal reorganization of code.  Instead of one big .c file,
   now more logical divisions.  Most of the functionality is delegated
   to one entry point, checkX().  The application code (in checkX_main.c)
   now handles only parsing options before delegating to checkX().
   Eventually, I plan to make the core functionality into a library...
* checkX app has new option '--version'



It does not link against the Xll libraries itself, but attempts to 
dlopen it, using a fuzzy name/path search.  Both the search path and the 
target name are explicitly overridable via commandline arguments.

In its default mode, checkX returns a 0 status if X is present, 1 
otherwise, and generates no output.  It is intended for use in scripts, 
which need to intelligently decide whether to launch an X-based 
application or a non-X (native MS Gui?  console?) one.


=============================================================================
Usage: checkX [OPTION]...
Determines if X is installed, Xserver is running on specified DISPLAY
and will accept clients. Returns 0 if yes, nonzero otherwise

Options:
   -h|--help             print this help message and exit
   -v|--version          print version information and exit
   -d|--display STR      use STR instead of $DISPLAY
   -l|--location         print location of Xlib DLL on stdout
   -a|--appendpath STR   append STR to value of $PATH (cumulative)
   -p|--prependpath STR  prepend STR to value of $PATH (cumulative)
   -r|--replacepath STR  use STR instead of $PATH when searching
   -x|--xlibname STR     use exactly STR instd of fuzzy cygX11-n.dll
   -t|--timeout FLT      allow FLT seconds to connect with Xserver
                         defaults to 0.5, use 0.0 for Xlib's (safe, 12s)
                         timeout
      --nogui            disable informational popups
      --notty            disable stderr messages
      --debug            turn on debugging messages
      --no-silent        allow error, warning, and info messages
Note that -a defaults to '/usr/bin:/usr/X11R6/bin'.  To eliminate the 
default, use '-a ""'
=============================================================================


--
Charles Wilson
checkx volunteer maintainer for cygwin


To update your installation, click on the "Install Cygwin now" link on
the http://cygwin.com/ web page.  This downloads setup.exe to your
system.  Then, run setup and answer all of the questions.


*** CYGWIN-ANNOUNCE UNSUBSCRIBE INFO ***

If you want to unsubscribe from the cygwin-announce mailing list, look
at the "List-Unsubscribe: " tag in the email header of this message.
Send email to the address specified there.  It will be in the format:


cygwin-announce-unsubscribe-you=yourdomain.com@cygwin.com

If you need more information on unsubscribing, start reading here:

http://sources.redhat.com/lists.html#unsubscribe-simple

Please read *all* of the information on unsubscribing that is available
starting at the above URL.


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Packaging bug ?] Re: [ANNOUNCEMENT] Updated: checkx-0.2.0-1
  2006-11-13  0:06 [ANNOUNCEMENT] Updated: checkx-0.2.0-1 Charles Wilson
@ 2006-11-16 10:45 ` Dr. Volker Zell
  2006-11-16 16:07   ` Charles Wilson
  0 siblings, 1 reply; 3+ messages in thread
From: Dr. Volker Zell @ 2006-11-16 10:45 UTC (permalink / raw)
  To: cygwin

>>>>> Charles Wilson writes:

    > checkX is a little utility I wrote that tests to see if (a) the X11
    > client DLLs are installed on the machine, and (b) the Xserver on
    > $DISPLAY (or -d x.x.x.x:x) is running and usable.

Any reason the docs are duplicated, see below:

/usr/share/checkx/
/usr/share/checkx/ChangeLog
/usr/share/checkx/LICENSE
/usr/share/checkx/NEWS
/usr/share/checkx/README
/usr/share/doc/
/usr/share/doc/checkx-0.2.0/
/usr/share/doc/checkx-0.2.0/ChangeLog
/usr/share/doc/checkx-0.2.0/LICENSE
/usr/share/doc/checkx-0.2.0/NEWS
/usr/share/doc/checkx-0.2.0/README

Ciao
  Volker


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [Packaging bug ?] Re: [ANNOUNCEMENT] Updated: checkx-0.2.0-1
  2006-11-16 10:45 ` [Packaging bug ?] " Dr. Volker Zell
@ 2006-11-16 16:07   ` Charles Wilson
  0 siblings, 0 replies; 3+ messages in thread
From: Charles Wilson @ 2006-11-16 16:07 UTC (permalink / raw)
  To: cygwin

Dr. Volker Zell wrote:
>>>>>> Charles Wilson writes:
> 
>     > checkX is a little utility I wrote that tests to see if (a) the X11
>     > client DLLs are installed on the machine, and (b) the Xserver on
>     > $DISPLAY (or -d x.x.x.x:x) is running and usable.
> 
> Any reason the docs are duplicated, see below:

Nope.  No reason at all.  I'll release 0.2.0-2 later today.

--
Chuck



--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2006-11-16 15:50 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-11-13  0:06 [ANNOUNCEMENT] Updated: checkx-0.2.0-1 Charles Wilson
2006-11-16 10:45 ` [Packaging bug ?] " Dr. Volker Zell
2006-11-16 16:07   ` Charles Wilson

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 read-only IMAP folder(s) and NNTP newsgroup(s).