diff options
author | fredb <fredb> | 2002-03-04 19:16:05 +0000 |
---|---|---|
committer | fredb <fredb> | 2002-03-04 19:16:05 +0000 |
commit | a1cacd62839d1ef341d0cadba68c1e925f0dd805 (patch) | |
tree | d62bccfd26466ed485c8367aff8d4546c9e6cf9f /wm/afterstep/patches | |
parent | 83572a42e64324e86440b559066f1110ce81ead8 (diff) | |
download | pkgsrc-a1cacd62839d1ef341d0cadba68c1e925f0dd805.tar.gz |
Update to afterstep-1.8.11. The only new feature (from NEWS):
Added DefaultGeometry option to database. That should allow to place
window with specifyed geometry when no USPosition was requested,
instead of dragging it around. Useful for things like Netscape.
Example:
Style "*escape*" DefaultGeometry 800x600+10-100
Afterstep-1.8.10 added "Xinerama" support (whatever that is) which we
have to disable in "configure" to build, and multi-head support -- which
is untested on NetBSD.
Follows is the complete ChangeLog since 1.8.9:
1.8.10 patch 1 (sasha+Geoff Burling+Jan Fedak)
o Numerous man page and usage fixes by Geoff Burling.
o Fixed bug in DefaultGeometry handling where check for USPosition/Size
should have been negated.
o Fixed compilation bug in lib/parse.c
o Fixed minor typho in afterstep man page.
o Debugged background setting on multihead config. It apperas that
asetroot cannot be run with -l if it is named other then asetroot.
Otherwise background selection from the menu does not work.
o Updated Clean to use ProcessModuleArgs. Added global var display_name
that is set to --display argument value or env var $DISPLAY 's value.
MOst modules must be updated to remove var with the same name from
main().
o Applied patch from Jan Fedak to add startup geometry to database
parameters.
o Applied patch from Jan Fedak to fix hotkeys in menus.
o Applied patch to get AfterStep to change Icon when Title is changing.
New feel option - FollowTitleChanges in feel has to be used to enable
this feature.
o Fixed Tile's -h handling.
o added support for maximization to not exceed screen size, while
working with xinerama.
o man pages fixes.
o Fixed socket/pipes reading loops to not cause 100% CPU utilization
under CYGWIN and in some cases even on Unix.
o Fixed Menus pointer location handling to use coordinates from events
and not abuse XQueryPointer. Otherwise menus were behaving strange
whenever events were late due to one reason or others.
1.8.9 patch 1 (sasha)
o Fix X libraries order, to have Xext preceed X11 - causes problems on
some Solaris systems.
o fixed two warnings related to time.h
o commented out dependency checking to avoid problems for users with old
compilers. It is not needed in stable series anyways.
o Added functionality to WindowsDesk function. If second argument is
10000 then first is relative desk number, instead of exact.
o Implemented Xinerama support. When window is initially placed - it
will be appropriately moved to not appear in between monitors, unless
user requested geometry explicetely.
o When Xinerama is active, and asetroot is requested to scale or pad
background image to the screen size it will use size of the first head
( the one with origin of 0,0 ).
o Implemented separate Feel, Look, Background and Init/Restart functions
for different screens in multihead config with no Xinerama.
o We now read $TMPDIR in order to locate /tmp directory, and falling back
to /tmp if envvar is not set.
o somewhat fixed Align and Pad fields in the Asetroot config parsing.
Diffstat (limited to 'wm/afterstep/patches')
-rw-r--r-- | wm/afterstep/patches/patch-ae | 32 | ||||
-rw-r--r-- | wm/afterstep/patches/patch-ag | 8 | ||||
-rw-r--r-- | wm/afterstep/patches/patch-ah | 17 |
3 files changed, 18 insertions, 39 deletions
diff --git a/wm/afterstep/patches/patch-ae b/wm/afterstep/patches/patch-ae index ab1dc74c713..1245d8baac2 100644 --- a/wm/afterstep/patches/patch-ae +++ b/wm/afterstep/patches/patch-ae @@ -1,8 +1,8 @@ -$NetBSD: patch-ae,v 1.2 2001/03/11 19:58:59 fredb Exp $ +$NetBSD: patch-ae,v 1.3 2002/03/04 19:16:06 fredb Exp $ ---- autoconf/configure.in.orig Thu Dec 21 08:21:07 2000 -+++ autoconf/configure.in Sun Mar 11 15:15:16 2001 -@@ -83,6 +83,7 @@ +--- autoconf/configure.in.orig Fri Mar 1 00:33:37 2002 ++++ autoconf/configure.in +@@ -84,6 +84,7 @@ AC_PATH_PROG(CP, cp, cp) AC_PATH_PROG(MKDIR, mkdir, mkdir) AC_PATH_PROG(PERL, perl, perl) @@ -10,38 +10,32 @@ $NetBSD: patch-ae,v 1.2 2001/03/11 19:58:59 fredb Exp $ dnl# let's check for endiannes of our box AC_C_BIGENDIAN -@@ -246,19 +247,16 @@ - dnl# AFTERSTEP_LIB="-lafterstep" +@@ -263,20 +264,16 @@ + dnl# AFTERSTEP_LIB="-lafterstep" dnl# ASIMAGE_LIB="-lasimage" dnl# WIDGETS_LIB="-lWidgets" -+AFTERSTEP_LIB="../../lib/libafterstep.la" ++AFTERSTEP_LIB="../../lib/libafterstep.la" +ASIMAGE_LIB="../../asimagelib/libasimage.la" +WIDGETS_LIB="../Script/Widgets/libWidgets.la" +CONFIG_LIB="../Config/libasConfig.la" +LIBPROG='$(PROG)' ++LIBINSTALL="install.dyn" if test "x$enable_staticlibs" = "xyes"; then -- AFTERSTEP_LIB="../../lib/libafterstep.a" +- AFTERSTEP_LIB="../../lib/libafterstep.a" - ASIMAGE_LIB="../../asimagelib/libasimage.a" - WIDGETS_LIB="../Script/Widgets/libWidgets.a" - CONFIG_LIB="../Config/libasConfig.a" - LIBPROG='$(PROG)' +- LIBINSTALL="" + LDSTATIC="-static" - LIBINSTALL="" else -- AFTERSTEP_LIB="../../lib/libafterstep.so" +- AFTERSTEP_LIB="../../lib/libafterstep.so" - ASIMAGE_LIB="../../asimagelib/libasimage.so" - WIDGETS_LIB="../Script/Widgets/libWidgets.so" - CONFIG_LIB="../Config/libasConfig.so" - LIBPROG='$(DYNPROG)' +- LIBINSTALL="install.dyn" + LDSTATIC="" - LIBINSTALL="install.dyn" fi -@@ -342,6 +340,7 @@ - AC_SUBST(enable_audit) - AC_SUBST(SCRIPT_DIR) - AC_SUBST(PERL) -+AC_SUBST(LDSTATIC) - - dnl# Write results - + ASIMAGE_LIB="$ASIMAGE_LIB $LIB_MATH" diff --git a/wm/afterstep/patches/patch-ag b/wm/afterstep/patches/patch-ag index 0f6669f76a6..c7e2589f577 100644 --- a/wm/afterstep/patches/patch-ag +++ b/wm/afterstep/patches/patch-ag @@ -1,7 +1,7 @@ -$NetBSD: patch-ag,v 1.2 2001/03/11 19:59:00 fredb Exp $ +$NetBSD: patch-ag,v 1.3 2002/03/04 19:16:07 fredb Exp $ ---- autoconf/Makefile.common.in.orig Fri Oct 20 06:27:57 2000 -+++ autoconf/Makefile.common.in Sun Mar 11 15:15:53 2001 +--- autoconf/Makefile.common.in.orig Wed Oct 3 00:58:40 2001 ++++ autoconf/Makefile.common.in @@ -7,7 +7,7 @@ all: $(PROG) @@ -25,7 +25,7 @@ $NetBSD: patch-ag,v 1.2 2001/03/11 19:59:00 fredb Exp $ # # include dependency files if they exist @@ -106,23 +106,17 @@ - include .depend + #include .depend #endif -../../lib/libafterstep.a: diff --git a/wm/afterstep/patches/patch-ah b/wm/afterstep/patches/patch-ah index f60b1aec89f..5bcd301d1cc 100644 --- a/wm/afterstep/patches/patch-ah +++ b/wm/afterstep/patches/patch-ah @@ -1,4 +1,4 @@ -$NetBSD: patch-ah,v 1.2 2001/03/11 19:59:00 fredb Exp $ +$NetBSD: patch-ah,v 1.3 2002/03/04 19:16:07 fredb Exp $ --- autoconf/Makefile.common.lib.in.orig Fri Oct 20 06:27:57 2000 +++ autoconf/Makefile.common.lib.in Sun Mar 11 15:16:36 2001 @@ -52,18 +52,3 @@ $NetBSD: patch-ah,v 1.2 2001/03/11 19:59:00 fredb Exp $ # # include dependency files if they exist -@@ -95,14 +76,4 @@ - #ifneq ($(wildcard .depend),) - include .depend - #endif -- --$(DYNPROG): $(DYNPROG).$(LIBVERMAJOR) -- ln -sf $(DYNPROG).$(LIBVERMAJOR) $(DYNPROG) -- --$(DYNPROG).$(LIBVERMAJOR): $(DYNPROG).$(LIBVER) -- ln -sf $(DYNPROG).$(LIBVER) $(DYNPROG).$(LIBVERMAJOR) -- --$(DYNPROG).$(LIBVER): $(OBJSDLL) -- $(CC) -shared -Wl,-soname,$(DYNPROG).$(LIBVERMAJOR) -o $(DYNPROG).$(LIBVER) \ -- $(OBJSDLL) - |