xenocara/lib/libXaw/configure.ac

128 lines
3.0 KiB
Plaintext
Raw Normal View History

2006-11-25 09:53:47 -07:00
dnl Process this file with autoconf to create configure.
AC_PREREQ([2.60])
2006-11-25 09:53:47 -07:00
AC_INIT([libXaw],
1.0.8,
2006-11-25 09:53:47 -07:00
[https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
libXaw)
AM_INIT_AUTOMAKE([foreign dist-bzip2])
2007-01-01 02:02:02 -07:00
AM_MAINTAINER_MODE
2006-11-25 09:53:47 -07:00
AM_CONFIG_HEADER(config.h)
# Require xorg-macros minimum of 1.10 for HAVE_STYLESHEETS in XORG_CHECK_SGML_DOCTOOLS
m4_ifndef([XORG_MACROS_VERSION],
[m4_fatal([must install xorg-macros 1.10 or later before running autoconf/autogen])])
XORG_MACROS_VERSION(1.10)
2006-11-25 09:53:47 -07:00
# Check for progs
AC_PROG_CC
AC_PROG_LIBTOOL
AC_PROG_AWK
AM_PROG_CC_C_O
2006-11-25 09:53:47 -07:00
2007-09-30 07:42:29 -06:00
# Need to call this explicitly since the first call to PKG_CHECK_MODULES
# is in an if statement, and later calls would break if it's skipped.
PKG_PROG_PKG_CONFIG
XORG_DEFAULT_OPTIONS
XORG_ENABLE_SPECS
XORG_WITH_XMLTO(0.0.20)
XORG_WITH_FOP
XORG_CHECK_SGML_DOCTOOLS(1.5)
2006-11-25 09:53:47 -07:00
#
# fix libtool to set SONAME to libXaw.so.$major
#
AC_CONFIG_COMMANDS([libtool_hack], [
cp -f libtool libtool_
test -z "$SED" && SED=sed
$SED '1,/^soname_spec/{
/^soname_spec/i\
# X.Org hack to match monolithic Xaw SONAME\
2006-11-25 09:53:47 -07:00
xorglibxawname="libXaw"
/^soname_spec/s/libname/xorglibxawname/
}' libtool_ > libtool
rm -f libtool_
])
# OSX/Win32 rules are different.
platform_win32=no
platform_darwin=no
LIBEXT=so
2006-11-25 09:53:47 -07:00
case $host_os in
cygwin*|mingw*)
LIBEXT=dll.a
2006-11-25 09:53:47 -07:00
platform_win32=yes
;;
darwin*)
LIBEXT=dylib
platform_darwin=yes
2006-11-25 09:53:47 -07:00
;;
esac
AC_SUBST(LIBEXT)
2006-11-25 09:53:47 -07:00
AM_CONDITIONAL(PLATFORM_WIN32, test "x$platform_win32" = "xyes")
AM_CONDITIONAL(PLATFORM_DARWIN, test "x$platform_darwin" = "xyes")
2006-11-25 09:53:47 -07:00
# some platforms don't even have shared libs
AM_CONDITIONAL(SHARED_LIBS, [test -f /usr/libexec/ld.so])
2006-11-25 09:53:47 -07:00
# Whether to build Xaw6
AC_ARG_ENABLE(xaw6, AC_HELP_STRING([--disable-xaw6],
[Disable building of libXaw.so.6]),
[build_v6=$enableval], [build_v6=yes])
# if test "x$build_v6" = xyes; then
2006-11-25 09:53:47 -07:00
PKG_CHECK_MODULES(XAW6, xproto x11 xext xextproto xt xmu)
AC_SUBST(XAW6_CFLAGS)
AC_SUBST(XAW6_LIBS)
# fi
2006-11-25 09:53:47 -07:00
# Whether to build Xaw7
AC_ARG_ENABLE(xaw7, AC_HELP_STRING([--disable-xaw7],
[Disable building of libXaw.so.7]),
[build_v7=$enableval], [build_v7=yes])
# if test "x$build_v7" = xyes; then
2006-11-25 09:53:47 -07:00
PKG_CHECK_MODULES(XAW7, xproto x11 xext xextproto xt xmu xpm)
AC_SUBST(XAW7_CFLAGS)
AC_SUBST(XAW7_LIBS)
# fi
2006-11-25 09:53:47 -07:00
AM_CONDITIONAL(BUILD_XAW6, [test x$build_v6 = xyes])
AM_CONDITIONAL(BUILD_XAW7, [test x$build_v7 = xyes])
2006-11-25 09:53:47 -07:00
# Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADER(wctype.h,
AC_DEFINE([HAS_WCTYPE_H],1,
[Define to 1 if you have the <wctype.h> header file.]))
AC_CHECK_HEADER(wchar.h,
AC_DEFINE([HAS_WCHAR_H],1,
[Define to 1 if you have the <wchar.h> header file.]))
AC_CHECK_HEADER(widec.h, [],
AC_DEFINE([NO_WIDEC_H],1,
[Define to 1 if you DO NOT have the <widec.h> header file.]))
2007-09-30 07:42:29 -06:00
# Checks for functions
AC_CHECK_FUNCS([iswalnum])
2006-11-25 09:53:47 -07:00
AC_OUTPUT([Makefile
include/Makefile
man/Makefile
specs/Makefile
2006-11-25 09:53:47 -07:00
src/Makefile])
if test "x$build_v6" = xyes; then
AC_OUTPUT(xaw6.pc)
fi
if test "x$build_v7" = xyes; then
AC_OUTPUT(xaw7.pc)
fi