1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-01-01 11:32:34 +01:00

check for libproplist 0.10.1

This commit is contained in:
kojima
2000-04-02 20:27:07 +00:00
parent ee21c5bea6
commit 2c16005643

View File

@@ -15,7 +15,7 @@ AC_INIT(src/WindowMaker.h)
AM_INIT_AUTOMAKE(WindowMaker, 0.62.0) AM_INIT_AUTOMAKE(WindowMaker, 0.62.1)
AM_PROG_LIBTOOL AM_PROG_LIBTOOL
@@ -171,7 +171,7 @@ dnl Compiler/architecture specific optimizations
dnl ============================================ dnl ============================================
dnl GCC with MMX support dnl GCC/as with MMX support
dnl -------------------- dnl --------------------
if test "$ac_cv_prog_gcc" = yes; then if test "$ac_cv_prog_gcc" = yes; then
@@ -188,7 +188,7 @@ if test "$ac_cv_prog_gcc" = yes; then
AC_CACHE_CHECK(whether gcc supports MMX(tm) inline asm, AC_CACHE_CHECK(whether gcc supports MMX(tm) inline asm,
ac_cv_c_inline_mmx, ac_cv_c_inline_mmx,
[AC_TRY_COMPILE(,[asm ("movq %mm0, %mm1");], [AC_TRY_LINK(,[asm ("movq %mm0, %mm1");],
ac_cv_c_inline_mmx=yes, ac_cv_c_inline_mmx=yes,
ac_cv_c_inline_mmx=no)]) ac_cv_c_inline_mmx=no)])
@@ -533,12 +533,12 @@ if test "x$LIBPL" = "x"; then
exit 1 exit 1
fi fi
WM_CHECK_PROPLIST_VERSION(0.10.0, goodlPL=yes, goodlPL=no) WM_CHECK_PROPLIST_VERSION(0.10.1, goodlPL=yes, goodlPL=no)
if test "$goodlPL" = no; then if test "$goodlPL" = no; then
echo echo
echo "ERROR!!! libPropList is an old version. Please consider upgrading" echo "ERROR!!! libPropList is an old version. Please consider upgrading"
echo " to at least version 0.10.0. Older versions have bugs that" echo " to at least version 0.10.1. Older versions have bugs that"
echo " may cause Window Maker to crash randomly." echo " may cause Window Maker to crash randomly."
echo " If your libPropList is older than 0.9.2 it will also prevent" echo " If your libPropList is older than 0.9.2 it will also prevent"
echo " Window Maker from compiling because new functions were" echo " Window Maker from compiling because new functions were"