Home | History | Annotate | only in /xsrc/external/mit/libXpm/dist
Up to higher level directory
NameDateSize
aclocal.m422-Apr-2026131.2K
AUTHORS08-Jan-2023170
ChangeLog22-Apr-202673.9K
compile22-Apr-20267.9K
config.guess22-Apr-202649.7K
config.h.in22-Apr-20262.7K
config.sub22-Apr-202639K
configure22-Apr-2026669.8K
configure.ac22-Apr-20264.4K
COPYING19-Jan-20234.8K
COPYRIGHT31-May-20131.7K
cxpm/22-Apr-2026
depcomp22-Apr-202623.1K
doc/22-Apr-2026
include/22-Apr-2026
INSTALL23-Feb-202015.4K
install-sh22-Apr-202615.1K
ltmain.sh22-Apr-2026329.4K
m4/22-Apr-2026
Makefile.am19-Jan-2023439
Makefile.in22-Apr-202629.6K
man/22-Apr-2026
missing22-Apr-20267.6K
README.md19-Jan-20231.9K
src/22-Apr-2026
sxpm/22-Apr-2026
tap-driver.sh22-Apr-202623.6K
test/22-Apr-2026
test-driver22-Apr-20265.1K
xpm.pc.in30-Jul-2008234

README.md

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