summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2024-04-28xconsole 1.1.0HEADxconsole-1.1.0masterAlan Coopersmith1-2/+2
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2024-02-17unifdef _AIXAlan Coopersmith1-8/+0
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2024-02-17Remove ifdefs for non-Solaris SysV systemsAlan Coopersmith1-112/+0
Also removes USE_OSM which was only defined for these systems Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2024-02-17unifdef SCO325Alan Coopersmith1-4/+0
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2024-02-17unifdef __UNIXWARE__Alan Coopersmith1-5/+0
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2024-02-17unifdef hpuxAlan Coopersmith1-3/+0
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2024-02-17unifdef __hpuxAlan Coopersmith1-8/+0
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2023-02-18Allow scrolling in text area with mouse wheelAlan Coopersmith1-0/+4
Previously translations for buttons 4 & 5 were only set for the scrollbar, so required the mouse to be over the scrollbar to use the mouse wheel. This enables the translations when the mouse is over the text area as well. Fixes: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=201994 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2023-02-05man page: resync SYNOPSIS and DESCRIPTION sectionsAlan Coopersmith1-2/+13
Add missing options to both sections Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2023-02-05Add -help option and usage message when unknown options are givenAlan Coopersmith2-1/+29
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2023-02-05Fix -version handling to not require opening a display firstAlan Coopersmith1-6/+14
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2023-01-28Add -version optionAlan Coopersmith2-0/+10
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2022-12-20configure: Use AC_SYS_LARGEFILE to enable large file supportAlan Coopersmith1-0/+4
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2022-07-10xconsole 1.0.8xconsole-1.0.8Alan Coopersmith1-1/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2022-04-16gitlab CI: stop requiring Signed-off-by in commitsAlan Coopersmith1-1/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2022-04-08Reduce scope of ttydev & ptydevAlan Coopersmith1-5/+8
Eliminates them completely if HAS_OPENPTY is set. Resolves gcc warnings: xconsole.c: In function ‘get_pty’: xconsole.c:792:35: warning: declaration of ‘ttydev’ shadows a global declaration [-Wshadow] get_pty(int *pty, int *tty, char *ttydev, char *ptydev) ^~~~~~ xconsole.c:181:13: note: shadowed declaration is here static char ttydev[64], ptydev[64]; ^~~~~~ xconsole.c:792:49: warning: declaration of ‘ptydev’ shadows a global declaration [-Wshadow] get_pty(int *pty, int *tty, char *ttydev, char *ptydev) ^~~~~~ xconsole.c:181:25: note: shadowed declaration is here static char ttydev[64], ptydev[64]; ^~~~~~ Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2022-04-07unifdef sgiAlan Coopersmith1-9/+0
SGI Irix end of support life was in 2013 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2022-04-07Use _CONST_X_STRING to make libXt declare String as const char *Alan Coopersmith1-0/+1
Clears 18 out of 44 -Wdiscarded-qualifiers warnings from gcc Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2021-12-04Build xz tarballs instead of bzip2Alan Coopersmith1-1/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2021-12-04gitlab CI: add a basic build testAlan Coopersmith1-0/+98
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2018-11-21Update configure.ac bug URL for gitlab migrationAlan Coopersmith1-1/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2018-11-16Update README for gitlab migrationAlan Coopersmith3-26/+20
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2017-01-29xconsole 1.0.7xconsole-1.0.7Matt Turner1-1/+1
Signed-off-by: Matt Turner <mattst88@gmail.com>
2017-01-26autogen: add default patch prefixMihail Konev1-0/+3
Signed-off-by: Mihail Konev <k.mvc@ya.ru>
2017-01-26autogen.sh: use quoted string variablesEmil Velikov1-4/+4
Place quotes around the $srcdir, $ORIGDIR and $0 variables to prevent fall-outs, when they contain space. Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net> Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2017-01-26autogen.sh: use exec instead of waiting for configure to finishPeter Hutterer1-1/+1
Syncs the invocation of configure with the one from the server. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
2015-05-07config: add AC_USE_SYSTEM_EXTENSIONSAlan Coopersmith1-0/+1
Might fix https://bugs.freedesktop.org/show_bug.cgi?id=6336 on 64-bit Linux Shouldn't hurt anyone Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2014-06-02autogen.sh: Honor NOCONFIGURE=1Alan Coopersmith1-2/+3
See http://people.gnome.org/~walters/docs/build-api.txt Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2014-06-02configure: Drop AM_MAINTAINER_MODEAlan Coopersmith2-2/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2013-07-18xconsole 1.0.6xconsole-1.0.6Alan Coopersmith1-1/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2013-04-21Use fstat() on the fd from open(), instead of stat() on the same pathnameAlan Coopersmith1-2/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2013-04-21Fix file leak if fdopen() failsAlan Coopersmith1-7/+11
Reported by parfait 1.1: File Descriptor Leak: Leaked File Descriptor fd at line 313 of xconsole.c in function 'OpenConsole'. fd initialized at line 285 with open fd leaks when fd != -1 at line 287. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2013-02-24unifdef -ULynxAlan Coopersmith1-22/+2
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2013-02-24unifdef -UISCAlan Coopersmith1-9/+0
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2013-02-24unifdef -UultrixAlan Coopersmith1-5/+0
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2013-02-24config: Add missing AC_CONFIG_SRCDIRAlan Coopersmith1-2/+5
Regroup AC statements under the Autoconf initialization section. Regroup AM statements under the Automake initialization section. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2013-01-19Fix build on FreeBSDNiclas Zeising2-1/+4
libutil.h is needed on FreeBSD to get the definition of openpty(), add a configure check for this include, and include it in xconsole.c if it exists. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2013-01-12xconsole 1.0.5xconsole-1.0.5Alan Coopersmith1-1/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2013-01-04Fix implicit conversion from size_t to int warnings in Deiconified()Alan Coopersmith1-1/+1
xconsole.c:423:14: warning: implicit conversion loses integer precision: 'size_t' (aka 'unsigned long') to 'int' [-Wshorten-64-to-32] oldlen = strlen (oldName); ~ ^~~~~~~~~~~~~~~~ xconsole.c:426:27: warning: implicit conversion changes signedness: 'int' to 'size_t' (aka 'unsigned long') [-Wsign-conversion] newName = malloc (oldlen - 1); ~~~~~~ ~~~~~~~^~~ xconsole.c:429:36: warning: implicit conversion changes signedness: 'int' to 'size_t' (aka 'unsigned long') [-Wsign-conversion] strncpy (newName, oldName, oldlen - 2); ~~~~~~~ ~~~~~~~^~~ Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2013-01-04unifdef -U__UNIXOS2__Alan Coopersmith1-27/+2
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2012-08-24Open /dev/console with NOCTTY and O_NONBLOCK flagsArvind Umrao1-1/+5
In some cases, for SPARC servers, special files like fifo need to open in nonblocking mode otherwise whole xconsole GUI freezes. Also /dev/console is often a terminal device. So I am opening /dev/console with NOCTTY and O_NONBLOCK flags. Signed-off-by: Arvind Umrao <arvind.umrao@oracle.com> Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2012-08-23Don't rely on being able to set tab stops.Eric S. Raymond1-3/+1
Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
2012-06-05unifdef CRAYAlan Coopersmith1-20/+0
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2012-06-05unifdef umipsAlan Coopersmith1-18/+0
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2012-06-05Mark functions _X_NORETURN that gcc warnings suggestAlan Coopersmith2-3/+5
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2012-06-05Remove old Xorg & XFree86 CVS version tagsAlan Coopersmith3-11/+0
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2011-09-28Strip trailing whitespaceAlan Coopersmith3-10/+10
Performed with: find * -type f | xargs perl -i -p -e 's{[ \t]+$}{}' git diff -w & git diff -b show no diffs from this change Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2011-09-25Require xt >= 1.0 for appdefaultdirJeremy Huddleston1-1/+1
https://bugs.freedesktop.org/show_bug.cgi?id=7237 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
2011-01-19config: move man pages into their own directoryGaetan Nadon4-17/+17
Use services provided by XORG_MANPAGE_SECTIONS. Use standard Makefile for man pages. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2011-01-13man: replace hard coded man page section with substitution stringsGaetan Nadon1-1/+1
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>