NameDateSize

..10-Nov-202518

aclocal.m4H A D10-Nov-2025121.8 KiB

AUTHORSH A D10-Nov-2025170

ChangeLogH A D10-Nov-202563.4 KiB

compileH A D10-Nov-20257.2 KiB

config.guessH A D10-Nov-202548.8 KiB

config.h.inH A D10-Nov-20252.7 KiB

config.subH A D10-Nov-202535 KiB

configureH A D10-Nov-2025635.8 KiB

configure.acH A D10-Nov-20254.4 KiB

COPYINGH A D10-Nov-20254.8 KiB

COPYRIGHTH A D10-Nov-20251.7 KiB

cxpm/H10-Nov-202558

depcompH A D10-Nov-202523 KiB

doc/H10-Nov-2025134

include/H10-Nov-202555

INSTALLH A D10-Nov-202515.4 KiB

install-shH A D10-Nov-202515 KiB

ltmain.shH A D10-Nov-2025325.2 KiB

m4/H10-Nov-2025128

Makefile.amH A D10-Nov-2025439

Makefile.inH A D10-Nov-202529.2 KiB

man/H10-Nov-20254 KiB

missingH A D10-Nov-20256.7 KiB

README.mdH A D10-Nov-20251.9 KiB

src/H10-Nov-20254 KiB

sxpm/H10-Nov-2025118

tap-driver.shH A D10-Nov-202519 KiB

test/H10-Nov-20254 KiB

test-driverH A D10-Nov-20254.8 KiB

xpm.pc.inH A D10-Nov-2025234

README.md

1libXpm - X Pixmap (XPM) image file format library
2-------------------------------------------------
3
4All questions regarding this software should be directed at the
5Xorg mailing list:
6
7  https://lists.x.org/mailman/listinfo/xorg
8
9The primary development code repository can be found at:
10
11  https://gitlab.freedesktop.org/xorg/lib/libXpm
12
13Please submit bug reports and requests to merge patches there.
14
15For patch submission instructions, see:
16
17  https://www.x.org/wiki/Development/Documentation/SubmittingPatches
18
19------------------------------------------------------------------------------
20
21libXpm supports two optional features to handle compressed pixmap files.
22
23--enable-open-zfile makes libXpm recognize file names ending in .Z and .gz
24and open a pipe to the appropriate command to compress the file when writing
25and uncompress the file when reading. This is enabled by default on platforms
26other than MinGW and can be disabled by passing the --disable-open-zfile flag
27to the configure script.
28
29--enable-stat-zfile make libXpm search for a file name with .Z or .gz added
30if it can't find the file it was asked to open.  It relies on the
31--enable-open-zfile feature to open the file, and is enabled by default
32when --enable-open-zfile is enabled, and can be disabled by passing the
33--disable-stat-zfile flag to the configure script.
34
35All of these commands will be executed with whatever userid & privileges the
36function is called with, relying on the caller to ensure the correct euid,
37egid, etc. are set before calling.
38
39To reduce risk, the paths to these commands are now set at configure time to
40the first version found in the PATH used to run configure, and do not depend
41on the PATH environment variable set at runtime.
42
43To specify paths to be used for these commands instead of searching $PATH, pass
44the XPM_PATH_COMPRESS, XPM_PATH_UNCOMPRESS, and XPM_PATH_GZIP
45variables to the configure command.
46