1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-21 21:38:00 +01:00

Removed --with-appsdir option and replaced it with --with-gnustepdir. Also,

default installation path (for non GNUstep users) is now $(prefix)/bin
This commit is contained in:
kojima
2004-11-01 00:50:19 +00:00
parent d7d3003e06
commit acc868d91d
6 changed files with 33 additions and 27 deletions

View File

@@ -1,3 +1,7 @@
- Removed --with-appsdir option and replaced it with --with-gnustepdir. Also,
default installation path (for non GNUstep users) is now $(prefix)/bin
Changes since version 0.91.0:
.............................
- fixed crash with info panel and alt-tabbing

12
NEWS
View File

@@ -2,6 +2,18 @@
NEWS for veteran Window Maker users
-----------------------------------
--- 0.92.0
GNUstep Installation Directory
------------------------------
WPrefs is now installed in /usr/local/bin and /usr/local/share by default.
If you use GNUstep and want it to install in /usr/GNUstep/Applications,
you may specify --with-gnustepdir=/usr/GNUstep
If the GNUSTEP_LOCAL_ROOT environment variable is defined when configure is
executed, it will be used (and you don't need to use --with-gnustepdir)
--- 0.91.1
To disable the panel shown during Alt-tabbing, you may put the following in

View File

@@ -2,11 +2,11 @@ SUBDIRS = xpm tiff po
AUTOMAKE_OPTIONS = no-dependencies
wpexecbindir = @wprefsdir@
wpexecbindir = @wprefs_bindir@
wpexecbin_PROGRAMS = WPrefs
wpdatadir = @wprefsdir@
wpdatadir = @wprefs_datadir@
wpdata_DATA = WPrefs.tiff WPrefs.xpm

View File

@@ -1,4 +1,4 @@
tiffdatadir = $(wprefsdir)/tiff
tiffdatadir = $(wprefs_datadir)/tiff
EXTRA_DIST = \
advancetonewworkspace.tiff \

View File

@@ -1,4 +1,4 @@
xpmdatadir = $(wprefsdir)/xpm
xpmdatadir = $(wprefs_datadir)/xpm
EXTRA_DIST = \

View File

@@ -15,24 +15,10 @@ AC_INIT(src/WindowMaker.h)
AM_INIT_AUTOMAKE(WindowMaker, 0.91.0)
AM_INIT_AUTOMAKE(WindowMaker, 0.92.0)
AC_PROG_LIBTOOL
dnl # by Marcelo Magallon <mmagallo@efis.ucr.ac.cr>
dnl # Turn around -rpath problem with libtool 1.0c
dnl # This define should be improbable enough to not conflict with anything
dnl case ${host} in
dnl *-pc-linux-gnu)
dnl AC_MSG_RESULT([Fixing libtool for -rpath problems.])
dnl sed < libtool > libtool-2 \
dnl 's/^hardcode_libdir_flag_spec.*$/hardcode_libdir_flag_spec=" -D__LIBTOOL_IS_A_FOOL__ "/'
dnl mv libtool-2 libtool
dnl chmod 755 libtool
dnl ;;
dnl esac
AM_CONFIG_HEADER(src/config.h)
@@ -845,22 +831,26 @@ dnl ==============================================
appspath=""
AC_ARG_WITH(appspath,
[ --with-appspath=PATH specify the directory for GNUstep applications], appspath=$withval )
[ --with-gnustepdir=PATH specify the directory for GNUstep applications], appspath=$withval )
if test "x$appspath" = "x"; then
gnustepdir='${prefix}/GNUstep'
if test "$appspath$GNUSTEP_LOCAL_ROOT" = ""; then
wprefs_datadir="${datadir}/WPrefs"
wprefs_bindir="${bindir}"
else
gnustepdir=$appspath
if test "x$GNUSTEP_LOCAL_ROOT" != "x" ; then
gnustepdir=`echo "$GNUSTEP_LOCAL_ROOT" | sed -e "s|^${prefix}|prefix|"`
gnustepdir=`echo $gnustepdir | sed -e 's|^prefix|${prefix}|'`
fi
with_appspath=$gnustepdir/Applications
xx=$gnustepdir/Applications
wprefs_datadir=$xx/WPrefs.app
wprefs_bindir=$xx/WPrefs.app
fi
wprefsdir=$with_appspath/WPrefs.app
AC_SUBST(wprefsdir)
AC_SUBST(wprefs_datadir)
AC_SUBST(wprefs_bindir)
dnl Enable User Defined Menu thing
@@ -1094,7 +1084,7 @@ echo "Window Maker was configured as follows:"
echo
echo "Installation path prefix : $prefix"
echo "Installation path for binaries : $_bindir"
echo "Installation path for WPrefs.app : $with_appspath" | sed -e 's|\${prefix}|'"$prefix|"
echo "Installation path for WPrefs.app : $wprefs_bindir" | sed -e 's|\${exec_prefix}|'"$exec_prefix|" -e 's|\${prefix}|'"$prefix|"
echo "Supported graphic format libraries : $supported_gfx"
echo "Use assembly routines for wrlib : $asm_support"
echo "Use inline MMX(tm) x86 assembly : $mmx_support"