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

Latest fixes, before releasing 0.50.0

This commit is contained in:
dan
1999-01-07 16:22:35 +00:00
parent b5e9c6f9ee
commit 64d136789c
6 changed files with 21 additions and 3 deletions

16
INSTALL
View File

@@ -22,6 +22,7 @@ SUPPORTED PLATFORMS
- OSF/1 - OSF/1
- HP-UX - HP-UX
- AIX 4.1.4 / IBM PowerPC - AIX 4.1.4 / IBM PowerPC
- AIX 4.3.1 / IBM CC compiler
- AIX 4.3.2 / IBM PowerPC - AIX 4.3.2 / IBM PowerPC
- AIX 5.3 - AIX 5.3
- DEC Alpha/Digital UNIX 4.x - DEC Alpha/Digital UNIX 4.x
@@ -334,6 +335,20 @@ like not being able to use a graphic format library you think you have
installed, look at the config.log file for clues of the problem. installed, look at the config.log file for clues of the problem.
== Error when configuring
ltconfig: unrecognized option `--no-reexec'
Try `ltconfig --help' for more information.
configure: error: libtool configure failed
remove the --no-reexec option from aclocal.m4 and libPropList/aclocal/m4
and reconfigure
Also make sure the autoconf and automake versions you have installed are at
least:
autoconf 2.12
automake 1.3
libtool 1.2
== Error during build of libPropList == Error during build of libPropList
make: *** No rule to make target `libPropList.a.c', needed by make: *** No rule to make target `libPropList.a.c', needed by
@@ -343,6 +358,7 @@ Make sure the autoconf and automake versions you have installed are at
least: least:
autoconf 2.12 autoconf 2.12
automake 1.3 automake 1.3
libtool 1.2
If you are using the RPM's that come with RedHat 4.x, don't use them. If you are using the RPM's that come with RedHat 4.x, don't use them.
It is broken. Uninstall the RPM and reinstall a fresh package from It is broken. Uninstall the RPM and reinstall a fresh package from

View File

@@ -8,6 +8,7 @@ prefsdata_DATA =\
autostart.sh\ autostart.sh\
exitscript.sh\ exitscript.sh\
menu\ menu\
menu.ca\
menu.cz\ menu.cz\
menu.de\ menu.de\
menu.dk\ menu.dk\

View File

@@ -76,6 +76,7 @@ LN_S = @LN_S@
MAKEINFO = @MAKEINFO@ MAKEINFO = @MAKEINFO@
MOFILES = @MOFILES@ MOFILES = @MOFILES@
NLSDIR = @NLSDIR@ NLSDIR = @NLSDIR@
NM = @NM@
PACKAGE = @PACKAGE@ PACKAGE = @PACKAGE@
RANLIB = @RANLIB@ RANLIB = @RANLIB@
REDUCE_APPICONS = @REDUCE_APPICONS@ REDUCE_APPICONS = @REDUCE_APPICONS@
@@ -103,6 +104,7 @@ prefsdata_DATA =\
autostart.sh\ autostart.sh\
exitscript.sh\ exitscript.sh\
menu\ menu\
menu.ca\
menu.cz\ menu.cz\
menu.de\ menu.de\
menu.dk\ menu.dk\

View File

@@ -55,4 +55,5 @@ menu.dk Danish John M. Lockard <jlockard@math.lsa.umich.edu>
Jacob Sparre Andersen <sparre@cats.nbi.dk> Jacob Sparre Andersen <sparre@cats.nbi.dk>
menu.sl Slovene Alen Salamun <snowman@hal9000.medinet.si> menu.sl Slovene Alen Salamun <snowman@hal9000.medinet.si>
menu.hu Hungarian Csanaki Csaba <prew@mail.matav.hu> menu.hu Hungarian Csanaki Csaba <prew@mail.matav.hu>
menu.ca Català Carles Amig<F3> dj_fr3nd@hotmail.com

View File

@@ -108,7 +108,7 @@ processEvents(int event_count)
* the animation. * the animation.
*/ */
ignoreTimestamp=1; ignoreTimestamp=1;
while (event_count--) { while (XPending(dpy) && event_count--) {
WMNextEvent(dpy, &event); WMNextEvent(dpy, &event);
WMHandleEvent(&event); WMHandleEvent(&event);
} }

View File

@@ -42,11 +42,9 @@
/* version of the header for the library: 0.11 */ /* version of the header for the library: 0.11 */
#define WRASTER_HEADER_VERSION 11 #define WRASTER_HEADER_VERSION 11
#if 0
#ifdef HAVE_ALLOCA_H #ifdef HAVE_ALLOCA_H
#include <alloca.h> #include <alloca.h>
#endif #endif
#endif
#include <X11/Xlib.h> #include <X11/Xlib.h>