1
2# Initialize Autoconf
3AC_PREREQ([2.60])
4AC_INIT([libXpm], [3.5.13],
5        [https://gitlab.freedesktop.org/xorg/lib/libXpm/issues], [libXpm])
6AC_CONFIG_SRCDIR([Makefile.am])
7AC_CONFIG_HEADERS([config.h])
8AC_CONFIG_MACRO_DIR([m4])
9
10# Initialize Automake
11AM_INIT_AUTOMAKE([foreign dist-bzip2])
12
13# Initialize libtool
14AC_PROG_LIBTOOL
15
16# Require X.Org macros 1.8 or later for MAN_SUBSTS set by XORG_MANPAGE_SECTIONS
17m4_ifndef([XORG_MACROS_VERSION],
18          [m4_fatal([must install xorg-macros 1.8 or later before running autoconf/autogen])])
19XORG_MACROS_VERSION(1.8)
20XORG_DEFAULT_OPTIONS
21
22# Checks for library functions
23AC_CHECK_FUNCS([strlcat])
24AC_CHECK_FUNC([fork],[], AC_DEFINE(NO_ZPIPE))
25
26# Obtain compiler/linker options for dependencies
27PKG_CHECK_MODULES(XPM, xproto x11)
28PKG_CHECK_MODULES(SXPM, [x11 xt xext xextproto xproto >= 7.0.17],
29                  [build_sxpm=true], [build_sxpm=false])
30AM_CONDITIONAL(BUILD_SXPM, test x$build_sxpm = xtrue)
31
32# Internationalization & localization support
33AC_SEARCH_LIBS([gettext], [intl], [USE_GETTEXT="yes"], [USE_GETTEXT="no"])
34AC_MSG_CHECKING([where to install localized messages])
35AC_ARG_WITH([localedir], AS_HELP_STRING([--with-localedir=<path>],
36	[Path to install message files in (default: datadir/locale)]),
37	[LOCALEDIR=${withval}], [LOCALEDIR=${datadir}/locale])
38AX_DEFINE_DIR([LOCALEDIR], [LOCALEDIR], [Location of translated messages])
39if test "x$LOCALEDIR" = "xno" -o "x$USE_GETTEXT" = "xno" ; then
40	AC_MSG_RESULT([nowhere])
41	USE_GETTEXT="no"
42else
43	AC_MSG_RESULT([$LOCALEDIR])
44fi
45
46if test "x$USE_GETTEXT" = "xyes" ; then
47	AC_DEFINE([USE_GETTEXT], 1,
48		  [Define to 1 if you want to use the gettext() function.])
49fi
50AM_CONDITIONAL(USE_GETTEXT, test "x$USE_GETTEXT" = "xyes")
51
52# Optional feature: When ___.xpm is requested, also look for ___.xpm.Z & .gz
53# Replaces ZFILEDEF = -DSTAT_ZFILE in old Imakefile
54AC_ARG_ENABLE(stat-zfile,
55	AS_HELP_STRING([--enable-stat-zfile],
56			[Search for files with .Z & .gz extensions automatically @<:@default=yes@:>@]),
57              [STAT_ZFILE=$enableval], [STAT_ZFILE=yes])
58if test x$STAT_ZFILE = xyes ; then
59	AC_DEFINE(STAT_ZFILE, 1, [Define to 1 to automatically look for files with .Z & .gz extensions])
60fi
61
62
63case $host_os in
64	*mingw*)
65                AC_DEFINE(NO_ZPIPE, 1, [Define to 1 to disable decompression via pipes])
66	;;
67	*)
68	;;
69esac
70
71AC_CONFIG_FILES([Makefile
72                 doc/Makefile
73                 include/Makefile
74                 man/Makefile
75                 src/Makefile
76                 sxpm/Makefile
77                 cxpm/Makefile
78                 xpm.pc])
79AC_OUTPUT
80