1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-28 17:32:29 +01:00

fixed stupid bug in get-wings-flags

This commit is contained in:
kojima
2001-01-07 03:53:56 +00:00
parent efb4aa5b74
commit 8ed773a437
2 changed files with 11 additions and 6 deletions

View File

@@ -1,3 +1,8 @@
Changes since version 0.63.1:
.............................
- fixed messup in get-{wings,wutil,wraster}-flags
Changes since version 0.63.0: Changes since version 0.63.0:
............................. .............................
- fixed compile prob with SGI compiler - fixed compile prob with SGI compiler

View File

@@ -258,8 +258,8 @@ dnl ==================
dnl List of supported locales dnl List of supported locales
dnl ------------------------- dnl -------------------------
supported_locales="cs de es fr gl it ja ko nl no pt ru se tr fi hr el pl ro da zh_TW.Big5 zh_CN sk bg" supported_locales="cs de es fr gl it ja ko nl no pt ru se tr fi hr el pl ro da zh_TW.Big5 zh_CN sk bg hu"
supported_wprefs_locales="pt hr fr ko ja cs zh_TW.Big5 es zh_CN fi it ru de bg" supported_wprefs_locales="pt hr fr ko ja cs zh_TW.Big5 es zh_CN fi it ru de bg hu"
for lang in $LINGUAS; do for lang in $LINGUAS; do
ok=0 ok=0
@@ -465,7 +465,7 @@ AC_ARG_ENABLE(xinerama,
xinerama=$enableval, xinerama=yes) xinerama=$enableval, xinerama=yes)
if test "$xinerama" = yes; then if test "$xinerama" = yes; then
AC_CHECK_LIB(Xext, X, [XLIBS="-lXext $XLIBS" AC_CHECK_LIB(Xext, XineramaQueryScreens, [XLIBS="-lXext $XLIBS"
added_xext=yes added_xext=yes
AC_DEFINE(XINERAMA)], xinerama=no, $XLFLAGS $XLIBS) AC_DEFINE(XINERAMA)], xinerama=no, $XLFLAGS $XLIBS)
fi fi
@@ -886,7 +886,7 @@ cat <<EOF >get-wraster-flags
prefix="$prefix" prefix="$prefix"
exec_prefix=\$prefix exec_prefix=\$prefix
WCFLAGS="-I\$prefix/include/WINGs $inc_search_path" WCFLAGS="-I\$prefix/include $inc_search_path"
WLFLAGS="-L\$exec_prefix/lib $lib_search_path" WLFLAGS="-L\$exec_prefix/lib $lib_search_path"
WLIBS="-lwraster $GFXLIBS $XLIBS -lm" WLIBS="-lwraster $GFXLIBS $XLIBS -lm"
@@ -925,7 +925,7 @@ cat <<EOF >get-wings-flags
prefix="$prefix" prefix="$prefix"
exec_prefix=\$prefix exec_prefix=\$prefix
WCFLAGS="-I\$prefix/include $inc_search_path" WCFLAGS="-I\$prefix/include/WINGs $inc_search_path"
WLFLAGS="-L\$exec_prefix/lib $lib_search_path" WLFLAGS="-L\$exec_prefix/lib $lib_search_path"
WLIBS="-lWINGs -lwraster $GFXLIBS $XLIBS -lm $NETLIBS -lPropList" WLIBS="-lWINGs -lwraster $GFXLIBS $XLIBS -lm $NETLIBS -lPropList"
@@ -964,7 +964,7 @@ cat <<EOF >get-wutil-flags
prefix="$prefix" prefix="$prefix"
exec_prefix=\$prefix exec_prefix=\$prefix
WCFLAGS="-I\$prefix/include $inc_search_path" WCFLAGS="-I\$prefix/include/WINGs $inc_search_path"
WLFLAGS="-L\$exec_prefix/lib $lib_search_path" WLFLAGS="-L\$exec_prefix/lib $lib_search_path"
WLIBS="-lWUtil $NETLIBS -lPropList" WLIBS="-lWUtil $NETLIBS -lPropList"