2 dnl Window Maker autoconf input.
8 dnl libtoolize --force --automake
9 dnl automake -a --gnu --include-deps
14 AC_INIT(src/WindowMaker.h)
18 AM_INIT_AUTOMAKE(WindowMaker, 0.65.1)
22 # by Marcelo Magallon <mmagallo@efis.ucr.ac.cr>
23 # Turn around -rpath problem with libtool 1.0c
24 # This define should be improbable enough to not conflict with anything
27 AC_MSG_RESULT([Fixing libtool for -rpath problems.])
28 sed < libtool > libtool-2 \
29 's/^hardcode_libdir_flag_spec.*$/hardcode_libdir_flag_spec=" -D__LIBTOOL_IS_A_FOOL__ "/'
36 AM_CONFIG_HEADER(src/config.h)
39 dnl Checks for host/os name
40 dnl =======================
44 dnl Checks for programs.
45 dnl ===================
48 dnl AC_PROG_MAKE_SET -- already done by AM_INIT_AUTOMAKE
50 dnl AC_PROG_INSTALL -- already done by AM_INIT_AUTOMAKE
52 AC_PROG_GCC_TRADITIONAL
58 dnl move this earlier in the script... anyone know why this is handled
59 dnl in such a bizarre way?
61 test "x$prefix" = xNONE && prefix=$ac_default_prefix
62 dnl Let make expand exec_prefix.
63 test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
66 _bindir=`eval echo $bindir`
67 _bindir=`eval echo $_bindir`
69 _libdir=`eval echo $libdir`
70 _libdir=`eval echo $_libdir`
71 lib_search_path="-L$_libdir"
73 inc_search_path=`eval echo $includedir`
74 inc_search_path="-I`eval echo $inc_search_path`"
78 dnl Check for RedHat bugs
79 dnl =====================
81 dnl WM_CHECK_REDCRAP_BUGS($prefix,$_bindir,$_libdir)
85 dnl Specify paths to look for libraries and headers
86 dnl ===============================================
87 AC_ARG_WITH(libs-from,
88 [ --with-libs-from pass compiler flags to look for libraries],
89 [lib_search_path="$withval $lib_search_path"])
91 AC_ARG_WITH(incs-from,
92 [ --with-incs-from pass compiler flags to look for header files],
93 [inc_search_path="$withval $inc_search_path"])
97 dnl Checks for library functions.
98 dnl ============================
103 AC_CHECK_FUNCS(gethostname select poll strerror strcasecmp strncasecmp setpgid atexit mallinfo)
107 dnl Loading of dynamic libraries at runtime
108 dnl =======================================
111 AC_CHECK_FUNC(dlopen, [HAVEDL="yes"],
112 AC_CHECK_LIB(dl, dlopen, [DLLIBS="-ldl" HAVEDL="yes"],
115 if test "x$HAVEDL" = xyes; then
116 AC_CHECK_HEADERS(dlfcn.h)
123 if test "x$CPP_PATH" = x; then
124 AC_PATH_PROG(CPP_PATH, cpp, notfound,
125 $PATH:/lib:/usr/bin:/bin:/usr/lib:/usr/ccs/lib)
129 dnl Tell stupid Solaris cpp that the files it will process have C++ like syntax
130 dnl RedHat 5.x is broken too, so it won't make a symlink from cpp to the
131 dnl standard locations
133 if test "$CPP_PATH" = "/usr/ccs/lib/cpp" -o "$CPP_PATH" = "notfound" ; then
134 if test "$GCC" = "yes"; then
135 CPP_PATH="gcc -E -x c"
137 if test "$CPP_PATH" = "/usr/ccs/lib/cpp"; then
138 CPP_PATH="$CPP_PATH -B"
140 echo "cpp, the C preprocessor was not found in your system."
141 echo "Create a symbolic link from it to /lib/cpp and rerun configure"
146 AC_DEFINE_UNQUOTED(CPP_PATH, "$CPP_PATH")
150 dnl Checks for header files.
151 dnl =======================
155 AC_CHECK_HEADERS(fcntl.h limits.h sys/ioctl.h sys/time.h sys/types.h\
156 libintl.h sys/select.h poll.h malloc.h)
160 dnl Checks for typedefs, structures, and compiler characteristics.
161 dnl ==============================================================
180 AC_CHECK_FUNC(gettext, [HAVEGETTEXT="yes"],
181 AC_CHECK_LIB(intl, gettext, [INTLIBS="-lintl" HAVEGETTEXT="yes"],
184 AC_CHECK_PROG(XGETTEXT, xgettext, xgettext)
186 if test "$XGETTEXT" != ""; then
187 if $XGETTEXT --help 2>&1 | grep illegal >/dev/null ; then
188 echo "xgettext isn't GNU version"
193 if test "$LINGUAS" != ""; then
194 if test "$XGETTEXT" != "" -a "$HAVEGETTEXT" != ""; then
197 # if test "$LINGUAS" = ""; then
198 # ling=` (cd src/po; /bin/ls *.po) `
200 # lcode=`basename $l .po`
201 # LINGUAS="$LINGUAS $lcode"
204 echo "xgettext and gettext() exist; will build i18n support for $LINGUAS"
208 echo "xgettext and libintl.a don't both exist; will not build i18n support"
218 dnl The Tower of Babel
219 dnl ==================
221 dnl List of supported locales
222 dnl -------------------------
223 supported_locales="cs de es et fr gl it ja ko nl no pt ru sv tr fi hr el pl ro da zh_TW.Big5 zh_CN sk bg hu"
224 supported_wprefs_locales="pt hr fr ko ja cs zh_TW.Big5 es zh_CN fi it ru de bg hu sk"
225 supported_wings_locales="sk"
227 for lang in $LINGUAS; do
229 for l in $supported_locales; do
230 if test "$l" = "$lang"; then
235 if test "$ok" = 1; then
236 MOFILES="$MOFILES $lang.mo"
238 echo "Locale $lang is not supported."
241 for l in $supported_wprefs_locales; do
242 if test "$l" = "$lang"; then
247 if test "$ok" = 1; then
248 WPMOFILES="$WPMOFILES $lang.mo"
251 for l in $supported_wings_locales; do
252 if test "$l" = "$lang"; then
257 if test "$ok" = 1; then
258 WINGSMOFILES="$WINGSMOFILES $lang.mo"
263 dnl Kanji Characters support
264 dnl ========================
268 AC_CHECK_LIB(xpg4, setlocale, [LIBS="$LIBS -lxpg4"]);;
275 dnl Added by Oliver - Support for NLSDIR option, Hi Oliver!
276 dnl ===========================================
278 [ --with-nlsdir=PATH specify where the locale stuff should go ])
281 if test "x$NLSDIR" = "x"; then
282 if test "x$with_nlsdir" != "x"; then
285 NLSDIR='$(prefix)/lib/locale'
296 AC_SUBST(WINGSMOFILES)
297 AC_SUBST(supported_locales)
301 dnl Support for various hint things
302 dnl ===============================
306 [ --enable-gnome enable stuff needed for GNOME ],
307 [if test x$enableval = xyes; then
308 AC_DEFINE(GNOME_STUFF)
314 [ --enable-kde enable support for KDE window manager (kwm) hints ],
315 [if test x$enableval = xyes; then
321 AC_ARG_ENABLE(openlook,
322 [ --enable-openlook enable support for OPEN LOOK(tm) (olwm) hints ],
323 [if test x$enableval = xyes; then
324 AC_DEFINE(OLWM_HINTS)
330 dnl Disable some stuff that are duplicated in kde
331 dnl ---------------------------------------------
333 [ --enable-lite disable some stuff (dont use it) ],
334 [if test x$enableval = xyes; then
348 AC_CHECK_FUNC(connect,,
349 AC_CHECK_LIB(socket, connect, NETLIBS="$NETLIBS -lsocket"))
351 AC_CHECK_FUNC(gethostbyname,,
352 AC_CHECK_LIB(nsl, gethostbyname, NETLIBS="$NETLIBS -lnsl"))
354 AC_CHECK_FUNC(inet_aton, AC_DEFINE(HAVE_INET_ATON),
355 for lib in resolv socket inet bsd; do
356 AC_CHECK_LIB($lib, inet_aton, [AC_DEFINE(HAVE_INET_ATON)
357 NETLIBS="$NETLIBS -l$lib"; break],, $NETLIBS)
363 dnl ===========================================
364 dnl Stuff that uses X
365 dnl ===========================================
370 AC_MSG_ERROR([The path for the X11 files not found!
371 Make sure you have X and it's headers and libraries (the -devel packages
372 in Linux) installed.])
375 X_LIBRARY_PATH=$x_libraries
381 XLIBS="-lX11 $X_EXTRA_LIBS"
384 lib_search_path="$lib_search_path $XLFLAGS"
385 inc_search_path="$inc_search_path $XCFLAGS"
388 AC_SUBST(X_LIBRARY_PATH)
392 dnl Decide which locale function to use, setlocale() or _Xsetlocale()
393 dnl by MANOME Tomonori
394 dnl ===========================================
396 AC_ARG_ENABLE(locale,
397 [ --disable-locale disable use of X locale support],
400 if test "$use_locale" = yes; then
401 AC_CHECK_LIB(X11, _Xsetlocale, AC_DEFINE(X_LOCALE),, $XLFLAGS $XLIBS)
405 dnl Check whether XInternAtoms() exist
406 dnl ==================================
407 AC_CHECK_LIB(X11, XInternAtoms, AC_DEFINE(HAVE_XINTERNATOMS),,$XLFLAGS $XLIBS)
410 dnl XKB keyboard language status
411 dnl ============================
412 AC_ARG_ENABLE(modelock,
413 [ --enable-modelock XKB keyboard language status support],
414 AC_DEFINE(XKB_MODELOCK))
422 [ --disable-shape disable shaped window extension support],
423 shape=$enableval, shape=yes)
427 if test "$shape" = yes; then
428 AC_CHECK_LIB(Xext, XShapeSelectInput, [XLIBS="-lXext $XLIBS"
430 AC_DEFINE(SHAPE)], shape=no, $XLFLAGS $XLIBS)
437 AC_ARG_ENABLE(xinerama,
438 [ --disable-xinerama disable XInerama extension support],
439 xinerama=$enableval, xinerama=yes)
441 if test "$xinerama" = yes; then
442 AC_CHECK_LIB(Xext, XineramaQueryScreens, [XLIBS="-lXext $XLIBS"
444 AC_DEFINE(XINERAMA)], xinerama=no, $XLFLAGS $XLIBS)
453 [ --disable-shm disable usage of MIT-SHM extension],
454 shm=$enableval, shm=yes)
456 if test "$shm" = yes; then
457 AC_CHECK_LIB(Xext, XShmAttach, ok=yes, ok=no, $XLFLAGS $XLIBS)
459 if test "$ok" = yes; then
460 AC_CHECK_FUNC(shmget, ok=yes, ok=no)
463 if test "$ok" = yes; then
464 if test "$added_xext" = no; then
465 XLIBS="-lXext $XLIBS"
472 dnl R6 Style Session Management Support
473 dnl ===================================
482 dnl Check for libPropList
483 dnl =====================
487 WM_CHECK_LIB(PropList, PLGetString, $X_EXTRA_LIBS)
488 if test "x$ac_cv_lib_PropList_PLGetString" = xyes; then
489 WM_CHECK_HEADER(proplist.h)
490 if test "x$ac_cv_header_proplist_h" = xyes; then
495 if test "x$LIBPL" = "x"; then
497 echo "ERROR!!! libPropList is not installed, or could not be found."
498 echo " Window Maker requires libPropList to build."
499 echo " Please read INSTALL to find where you can find libPropList,"
500 echo " and install it first."
501 if test x$host_os = xlinux; then
502 echo " If you're using some prepackaged version of libPropList,"
503 echo " make sure you install it's \"development\" package as well."
505 echo " If you already have it installed, try using the"
506 if test "x$ac_cv_lib_PropList_PLGetString" != xyes; then
507 echo " --with-libs-from flag to tell configure where the library"
508 echo " is installed and"
510 echo " --with-incs-from flag to tell configure where the header"
511 echo " files are installed"
517 WM_CHECK_PROPLIST_VERSION($lPLVersion, goodlPL=yes, goodlPL=no)
519 if test "$goodlPL" = no; then
521 echo "ERROR!!! libPropList is an old version. Please consider upgrading"
522 echo " to at least version ${lPLVersion}. Older versions have bugs that"
523 echo " may cause Window Maker to crash randomly."
524 echo " If your libPropList is older than 0.9.2 it will also prevent"
525 echo " Window Maker from compiling because new functions were"
526 echo " introduced since that version."
527 echo " Please read INSTALL to find where you can find libPropList,"
528 echo " and upgrade it before you proceed."
535 dnl ==============================================
536 dnl Graphic Format Libraries
537 dnl ==============================================
547 [ --disable-xpm disable use of XPM pixmaps through libXpm],
548 xpm=$enableval, xpm=yes)
550 if test "$xpm" = yes; then
551 WM_CHECK_LIB(Xpm, XpmCreatePixmapFromData, [$XLFLAGS $XLIBS])
553 if test "x$ac_cv_lib_Xpm_XpmCreatePixmapFromData" = xyes; then
554 WM_CHECK_HEADER(X11/xpm.h)
555 if test "x$ac_cv_header_X11_xpm_h" = xyes; then
556 GFXLIBS="$GFXLIBS -lXpm"
560 supported_gfx="builtin-XPM"
571 AC_SUBST(X_EXTRA_LIBS)
573 dnl ===============================================
574 dnl End of stuff that uses X
575 dnl ===============================================
582 AC_ARG_ENABLE(hermes,
583 [ --disable-hermes disable Hermes support for wrlib ],
584 hermes=$enableval, hermes=yes)
586 if test x$hermes = xyes; then
587 WM_CHECK_LIB(Hermes, Hermes_ConverterRequest, [])
589 if test x$ac_cv_lib_Hermes_Hermes_ConverterRequest = xyes; then
590 WM_CHECK_HEADER(Hermes/Hermes.h)
591 if test x$ac_cv_header_Hermes_Hermes_h = xyes; then
592 GFXLIBS="$GFXLIBS -lHermes"
593 AC_DEFINE(HAVE_HERMES)
605 [ --disable-png disable PNG support through libpng],
606 png=$enableval, png=yes, png=no)
609 if test "$png" = yes ; then
610 WM_CHECK_LIB(png, png_get_valid, [-lz -lm])
612 if test "x$ac_cv_lib_png_png_get_valid" = xyes; then
613 WM_CHECK_HEADER(png.h)
614 if test "x$ac_cv_header_png_h" = xyes; then
615 GFXLIBS="$GFXLIBS -lpng -lz"
616 supported_gfx="$supported_gfx PNG"
628 [ --disable-jpeg disable JPEG support through libjpeg],
629 jpeg=$enableval, jpeg=yes, jpeg=no)
631 if test "$jpeg" = yes; then
632 WM_CHECK_LIB(jpeg, jpeg_destroy_compress)
634 if test "x$ac_cv_lib_jpeg_jpeg_destroy_compress" = xyes; then
638 WM_CHECK_HEADER(jpeglib.h)
639 if test "x$ac_cv_header_jpeglib_h" = xyes; then
640 GFXLIBS="$GFXLIBS -ljpeg"
641 supported_gfx="$supported_gfx JPEG"
652 [ --disable-gif disable GIF support through libgif or libungif],
653 gif=$enableval, gif=yes, gif=no)
655 if test "$gif" = yes; then
657 WM_CHECK_LIB(ungif, DGifOpenFileName, [$XLFLAGS $XLIBS])
658 if test "x$ac_cv_lib_ungif_DGifOpenFileName" = xyes; then
662 dnl libungif is the same thing as libgif for all practical purposes.
664 if test "x$my_libname" = x; then
665 WM_CHECK_LIB(gif, DGifOpenFileName, [$XLFLAGS $XLIBS])
666 if test "x$ac_cv_lib_gif_DGifOpenFileName" = xyes; then
671 if test "$my_libname" != x; then
672 WM_CHECK_HEADER(gif_lib.h)
673 if test "x$ac_cv_header_gif_lib_h" = xyes; then
674 GFXLIBS="$GFXLIBS $my_libname"
675 supported_gfx="$supported_gfx GIF"
686 [ --disable-tiff disable use of TIFF images through libtiff],
687 tif=$enableval, tif=yes, tif=no)
690 # TIFF can optionally have JPEG and/or zlib support. Must find out
691 # when they are supported so that correct library flags are passed during
692 # detection and linkage
695 # By default use xpm icons if tiff is not found.
699 if test "$tif" = yes; then
701 WM_CHECK_LIB(tiff, TIFFGetVersion, [-lm])
702 if test "x$ac_cv_lib_tiff_TIFFGetVersion" = xyes; then
708 unset ac_cv_lib_tiff_TIFFGetVersion
709 if test "x$my_libname" = x; then
710 WM_CHECK_LIB(tiff, TIFFGetVersion, [$ljpeg -lz -lm])
711 if test "x$ac_cv_lib_tiff_TIFFGetVersion" = xyes; then
712 my_libname="-ltiff -lz"
716 if test "x$my_libname" = x; then
717 WM_CHECK_LIB(tiff34, TIFFGetVersion, [$ljpeg -lm])
718 if test "x$ac_cv_lib_tiff34_TIFFGetVersion" = xyes; then
719 my_libname="-ltiff34"
724 if test "x$my_libname" != x; then
725 WM_CHECK_HEADER(tiffio.h)
726 if test "x$ac_cv_header_tiffio_h" = xyes; then
727 GFXLIBS="$my_libname $GFXLIBS"
729 supported_gfx="$supported_gfx TIFF"
735 LIBRARY_SEARCH_PATH="$lib_search_path"
736 HEADER_SEARCH_PATH="$inc_search_path"
738 AC_SUBST(LIBRARY_SEARCH_PATH)
739 AC_SUBST(HEADER_SEARCH_PATH)
746 dnl ==============================================
747 dnl End of Graphic Format Libraries
748 dnl ==============================================
751 # AC_PREFIX_PROGRAM(wmaker)
753 dnl Support for PIXMAPDIR option
754 dnl ============================
755 AC_ARG_WITH(pixmapdir,
756 [ --with-pixmapdir=PATH specify where pixmaps are located [DATADIR/pixmaps]])
758 if test "x$with_pixmapdir" != "x"; then
759 pixmapdir=$with_pixmapdir
761 pixmapdir=`eval echo ${datadir}/pixmaps`
764 AC_DEFINE_UNQUOTED(PIXMAPDIR, "$pixmapdir")
766 pkgdatadir=`eval echo $datadir`
767 AC_DEFINE_UNQUOTED(PKGDATADIR, "$pkgdatadir/WindowMaker")
769 _sysconfdir=`eval echo $sysconfdir`
770 AC_DEFINE_UNQUOTED(SYSCONFDIR, "$_sysconfdir")
773 dnl Support for GNUSTEP_LOCAL_ROOT, for WPrefs.app
774 dnl ==============================================
778 AC_ARG_WITH(appspath,
779 [ --with-appspath=PATH specify the directory for GNUstep applications], appspath=$withval )
781 if test "x$appspath" = "x"; then
782 gnustepdir='$(prefix)/GNUstep'
784 if test "x$GNUSTEP_LOCAL_ROOT" != "x" ; then
785 gnustepdir=`echo "$GNUSTEP_LOCAL_ROOT" | sed -e "s|^${prefix}|prefix|"`
786 gnustepdir=`echo $gnustepdir | sed -e 's|^prefix|${prefix}|'`
789 with_appspath=$gnustepdir/Apps
792 wprefsdir=$with_appspath/WPrefs.app
797 dnl Enable User Defined Menu thing
798 dnl ==================================
799 AC_ARG_ENABLE(usermenu,
800 [ --enable-usermenu user defined menus for applications
802 if test "$enableval" = yes; then
809 dnl Nicolai: Program tests for Documentation Section
810 dnl =================================================
812 dnl AC_CHECK_PROG(MAKEINFO, makeinfo, makeinfo, ,$PATH)
813 dnl if test "x$MAKEINFO" != "x" ; then
814 dnl DOCTYPES="$DOCTYPES info_doc"
816 dnl AC_CHECK_PROG(TEX, tex, tex, ,$PATH)
817 dnl if test "x$TEX" != "x" ; then
818 dnl DOCTYPES="$DOCTYPES dvi_doc"
820 dnl AC_CHECK_PROG(DVIPS, dvips, dvips, ,$PATH)
821 dnl if test "x$DVIPS" != "x" ; then
822 dnl DOCTYPES="$DOCTYPES ps_doc"
824 dnl AC_CHECK_PROG(PERL, perl, perl, ,$PATH)
825 dnl if test "x$PERL" != "x" ; then
826 dnl DOCTYPES="$DOCTYPES html_doc"
828 dnl AC_PATH_PROG(PERL_PATH, perl, perl, ,$PATH)
829 dnl AC_CHECK_PROG(TEXI2HTML, texi2html, texi2html, ,$PATH)
831 dnl AC_SUBST(DOCTYPES)
833 AC_OUTPUT(Makefile po/Makefile util/Makefile test/Makefile \
834 WINGs/Makefile WINGs/WINGs/Makefile WINGs/Documentation/Makefile \
835 WINGs/Examples/Makefile WINGs/Resources/Makefile WINGs/Tests/Makefile \
836 WINGs/Extras/Makefile WINGs/po/Makefile \
837 wmlib/Makefile wrlib/Makefile src/Makefile src/wconfig.h \
838 doc/Makefile doc/sk/Makefile \
839 WindowMaker/Makefile WindowMaker/Backgrounds/Makefile \
840 WindowMaker/Defaults/Makefile WindowMaker/IconSets/Makefile \
841 WindowMaker/Icons/Makefile WindowMaker/Pixmaps/Makefile \
842 WindowMaker/Styles/Makefile WindowMaker/Themes/Makefile \
843 WPrefs.app/Makefile WPrefs.app/tiff/Makefile WPrefs.app/xpm/Makefile \
844 WPrefs.app/po/Makefile \
845 contrib/Makefile contrib/WindowMaker.spec )
846 # plugins/Makefile plugins/libwmfun/Makefile)
851 dnl Output some helpful data for compiling wraster and WINGs/WUtil apps
852 dnl ===================================================================
855 dnl echo "WFLAGS=\"$LIBPL_INC_PATH -I$prefix/include\"" > WINGs-flags
856 dnl echo "WLIBS=\"-L$exec_prefix/lib -lWINGs -lwraster $LIBPL_LIBS $GFXLIBS -lm\""\
857 dnl | sed -e 's|\$(prefix)|'"$prefix|" >> WINGs-flags
859 dnl The #lp# and #rp# stuff below is a hack because [ and ] get lost when
862 cat <<EOF >get-wraster-flags
868 WCFLAGS="-I\$prefix/include $inc_search_path"
869 WLFLAGS="-L\$exec_prefix/lib $lib_search_path"
870 WLIBS="-lwraster $GFXLIBS $XLIBS -lm"
872 usage="Usage: get-wraster-flags #lp#--cflags#rp# #lp#--ldflags#rp# #lp#--libs#rp#"
874 if test \$# -eq 0; then
875 echo "\${usage}" 1>&2
879 while test \$# -gt 0; do
891 echo "\${usage}" 1>&2
901 cat <<EOF >get-wings-flags
907 WCFLAGS="-I\$prefix/include $inc_search_path"
908 WLFLAGS="-L\$exec_prefix/lib $lib_search_path"
909 WLIBS="-lWINGs -lwraster $GFXLIBS $XLIBS -lm $NETLIBS -lPropList"
911 usage="Usage: get-wings-flags #lp#--cflags#rp# #lp#--ldflags#rp# #lp#--libs#rp#"
913 if test \$# -eq 0; then
914 echo "\${usage}" 1>&2
918 while test \$# -gt 0; do
930 echo "\${usage}" 1>&2
940 cat <<EOF >get-wutil-flags
946 WCFLAGS="-I\$prefix/include $inc_search_path"
947 WLFLAGS="-L\$exec_prefix/lib $lib_search_path"
948 WLIBS="-lWUtil $NETLIBS -lPropList"
950 usage="Usage: get-wutil-flags #lp#--cflags#rp# #lp#--ldflags#rp# #lp#--libs#rp#"
952 if test \$# -eq 0; then
953 echo "\${usage}" 1>&2
957 while test \$# -gt 0; do
969 echo "\${usage}" 1>&2
979 sed 's/#lp#/[/g' get-wraster-flags | sed 's/#rp#/]/g' > wrlib/get-wraster-flags
980 sed 's/#lp#/[/g' get-wings-flags | sed 's/#rp#/]/g' > WINGs/get-wings-flags
981 sed 's/#lp#/[/g' get-wutil-flags | sed 's/#rp#/]/g' > WINGs/get-wutil-flags
983 chmod 755 wrlib/get-wraster-flags WINGs/get-wings-flags WINGs/get-wutil-flags
985 rm -f get-wraster-flags get-wings-flags get-wutil-flags
989 dnl Spit out the configuration
990 dnl ==========================
992 supported_gfx="$supported_gfx builtin-PPM"
994 if test "x$MOFILES" = "x"; then
1002 echo "Window Maker was configured as follows:"
1004 echo "Installation path prefix: $prefix"
1005 echo "Installation path prefix for binaries: $_bindir"
1006 echo "Installation path for WPrefs.app: $wprefsdir" | sed -e 's|\$(prefix)|'"$prefix|"
1007 echo "Graphic format libraries: $supported_gfx"
1008 if test x$hermes_support = xyes; then
1009 echo "Hermes support for wrlib enabled"
1011 dnl echo "Sound support: yes"
1012 echo "Translated message files to install: $mof"
1013 if test "x$MOFILES" != "x"; then
1014 echo "Installation path of translated messages: $NLSDIR" | sed -e 's|\$(prefix)|'"$prefix|"
1017 dnl WM_PRINT_REDCRAP_BUG_STATUS
1019 if test "x$ac_cv_header_jpeglib_h" != xyes; then
1020 echo "WARNING WARNING WARNING WARNING WARNING WARNING WARNING"
1022 echo "JPEG support will not be included because the JPEG library is"
1023 echo "not installed correctly or was not found. Background images"
1024 echo "from themes will not display as they usually are JPEG files."
1026 echo "To fix, download and install the jpeg library and/or make sure you"
1027 echo "installed all jpeg related packages, SPECIALLY the development packages"
1028 echo "like jpeg-devel (if you use some prepackaged version of libjpeg)."
1030 echo "WARNING WARNING WARNING WARNING WARNING WARNING WARNING"
1034 dnl This is for Emacs. I'm lazy, I know... (nicolai)
1035 dnl ================================================
1036 dnl Local Variables:
1037 dnl compile-command: "autoconf"