summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2024-03-03xmh 1.0.5HEADxmh-1.0.5masterAlan Coopersmith1-1/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2024-01-21Simplify fallback code for systems without S_ISDIRAlan Coopersmith2-16/+8
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2024-01-21Convert allocation calls to XtMallocArray or XtReallocArray where appropriateAlan Coopersmith10-42/+25
Raises minimum libXt requirement to 1.3.0 for these calls Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2024-01-21Handle -Wformat-security warnings from the DEBUG macroAlan Coopersmith2-7/+2
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2024-01-21Plug memory leaks in error paths of ScanDir()Alan Coopersmith1-14/+25
Found by -Wanalyzer-malloc-leak warning from gcc 13.2 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2024-01-21Clear 4 of 6 -Wstringop-truncation warningsAlan Coopersmith2-12/+13
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2024-01-21Fix 4 of 4 -Wformat-truncation warningsAlan Coopersmith3-3/+3
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2024-01-21Mark Punt as _X_NORETURNAlan Coopersmith2-2/+2
Clears gcc warning: util.c: In function ‘Punt’: util.c:51:6: warning: function might be candidate for attribute ‘noreturn’ [-Wsuggest-attribute=noreturn] 51 | void Punt(const char *str) | ^~~~ Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2024-01-21Further reduce the number of -Wdiscarded-qualifiers warnings from 276 to 76Alan Coopersmith18-113/+114
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2024-01-21Use _CONST_X_STRING to make libXt declare String as const char *Alan Coopersmith2-2/+3
Drops number of -Wdiscarded-qualifiers warnings from 489 to 276 from gcc 13.2 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2024-01-21Replace sprintf calls with snprintf or XtAsprintfAlan Coopersmith13-100/+112
Raises minimum libXt requirement to 1.1.0 for XtAsprintf Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2024-01-21configure: Use AC_SYS_LARGEFILE to enable large file supportAlan Coopersmith1-0/+3
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2024-01-21Modernize lseek() callsAlan Coopersmith1-2/+2
Use off_t for second argument, symbolic constant for third. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2023-02-11Add -help and -version optionsAlan Coopersmith2-6/+29
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2023-02-11Print which arguments were unknown before giving usage messageAlan Coopersmith1-1/+8
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2023-02-09gitlab CI: stop requiring Signed-off-by in commitsAlan Coopersmith1-2/+2
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2022-08-30xmh 1.0.4xmh-1.0.4Alan Coopersmith1-2/+2
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2022-08-15Convert vfork checks from Imake-style to autoconf-styleAlan Coopersmith2-3/+6
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2022-08-15unifdef -UDGUXAlan Coopersmith1-1/+1
Data General DG/ux has never been supported in X11R7 modular builds. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2022-08-15unifdef -USYSVAlan Coopersmith3-84/+0
Remove code for pre-POSIX System V variants that have never been supported in X11R7 modular builds. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2022-08-15unifdef -UUSGAlan Coopersmith1-4/+0
USG was defined for a handful of pre-SVR4 systems based on AT&T's Unix System Group releases in the old imake configs and has never been defined in X11R7 modular builds. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2021-12-07Build xz tarballs instead of bzip2Alan Coopersmith1-1/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2021-12-07gitlab CI: add a basic build testAlan Coopersmith1-0/+98
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2021-11-28Trim trailing whitespace from linesAlan Coopersmith24-168/+168
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2021-11-28Fix spelling/wording issuesAlan Coopersmith7-10/+10
Found by using: codespell --builtin clear,rare,usage,informal,code,names 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-28/+20
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.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-04-17xmh 1.0.3xmh-1.0.3Alan Coopersmith1-1/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2015-02-05Fixes misplaced shortcut in man page: #89003Daphne Pfister1-2/+2
The shortcut Meta-h was on the wrong row in the man page. Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=89003 Signed-off-by: Daphne Pfister <daphnediane@mac.com> Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2014-05-31autogen.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-05-31configure: Drop AM_MAINTAINER_MODEAlan Coopersmith2-2/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2014-05-31config: Add missing AC_CONFIG_SRCDIRAlan Coopersmith1-3/+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-06-19Don't rely on the ability to set tan stops. Use tables instead.Eric S. Raymond1-258/+307
Also, fix a presentational abuse of the .SS macro.
2011-01-19config: move man pages into their own directoryGaetan Nadon4-18/+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-5/+5
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2011-01-13man: remove trailing spaces and tabsGaetan Nadon1-84/+84
Using s/[ \t]*$// Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2011-01-12config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERSGaetan Nadon1-1/+1
This silences an Autoconf warning
2011-01-12config: replace deprecated AC_HELP_STRING with AS_HELP_STRINGGaetan Nadon1-1/+1
This silences an Automake warning. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-10-30xmh 1.0.2xmh-1.0.2Alan Coopersmith1-1/+2
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2010-10-30config: Remove unnecessary calls from configure.acAlan Coopersmith1-5/+0
AC_PROG_CC & AC_PROG_INSTALL are provided by XORG_DEFAULT_OPTIONS now PKG_CONFIG_MODULES handles AC_SUBST of the CFLAGS & LIBS variables Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2010-10-20Require xbitmaps >= 1.1.0 for box6 & black6 bitmaps moved from xmhAlan Coopersmith1-1/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2010-10-20config: upgrade to util-macros 1.8 for additional man page supportAlan Coopersmith2-22/+4
Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS The value of MAN_SUBST is the same for all X.Org packages. Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS Enables use of platform appropriate version of sed. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2010-10-20config: update AC_PREREQ statement to 2.60Gaetan Nadon1-1/+1
Unrelated to the previous patches, the new value simply reflects the reality that the minimum level for autoconf to configure all x.org modules is 2.60 dated June 2006. ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2009-12-19configure.ac: use backticks rather than $() for cmd subsGaetan Nadon1-1/+1
Use "$PKG_CONFIG" rather than hard coded "pkg-config" Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2009-11-26Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILESGaetan Nadon1-0/+1
Now that the INSTALL file is generated. Allows running make maintainer-clean.
2009-10-28INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206Gaetan Nadon5-3/+6
Add missing INSTALL file. Use standard GNU file on building tarball README may have been updated Remove AUTHORS file as it is empty and no content available yet. Remove NEWS file as it is empty and no content available yet.
2009-10-26Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432Gaetan Nadon1-2/+0
ChangeLog filename is known to Automake and requires no further coding in the makefile.