home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Dream 50
/
Amiga_Dream_50.iso
/
Linux
/
AfterStep
/
AfterStep-1.4.README
< prev
next >
Wrap
Internet Message Format
|
1998-02-09
|
3KB
From: guylhem@danmark.linux.eu.org (Guylhem Aznar)
Subject: AfterSTEP 1.4.0 final stable is here !
Date: Sat, 7 Feb 1998 10:30:22 +0100 (CET)
Hi all !
1.4.0 STABLE is hopefully finished & should be available on ftp.afterstep.org
tomorrow Sun, 8th.
New featues over 1.4pre1 : many, with autoconf for configuration, a new README
& updated afterstep.sgml, many little fixes for non linux systems...
It has been successfully tested under BSD & Linux; everything but 3 asapps
(I will contact their maintainer) run under BSD, everything run under Linux.
PLEASE TEST IT UNDER YOUR SYSTEM IF IT IS NEITHER BSD NOR LINUX !
I can not test it with systems I don't have ! Now let's start final move !
WHEN EVERYTHING WILL WORK ON ALL SUPPORTED PLATFORMS, A MESSAGE WILL BE SEND
TO comp.os.linux.announces, afterstep@eosys.com (add other address you think
it's worth posting to here)
PS : 1st fix patch follows here, for 2 apps under BSD: asrack still can't work
on non linux systems
diff -u -r AfterStep-1.4.0/apps/asfsm/Imakefile work/progs/AfterStep/apps/asfsm/Imakefile
--- AfterStep-1.4.0/apps/asfsm/Imakefile Tue Jan 13 15:25:14 1998
+++ work/progs/AfterStep/apps/asfsm/Imakefile Sat Feb 7 09:15:52 1998
@@ -3,7 +3,7 @@
DEPLIBS = $(DEPXLIB) $(DEPXTOOLLIB)
LOCAL_LIBRARIES = $(XPMLIB) $(XTLIB) $(XLIB) $(XTOOLLIB)
LINTLIBS = $(LINTXLIB)
-CFLAGS +=-I/usr/local/include -I/usr/include/X11
+CFLAGS +=-I/usr/local/include -I/usr/include/X11 -I/usr/X11R6/include/X11
SRCS = asfsm.c
OBJS = asfsm.o
diff -u -r AfterStep-1.4.0/apps/asmix/asmix.c work/progs/AfterStep/apps/asmix/asmix.c
--- AfterStep-1.4.0/apps/asmix/asmix.c Sun Sep 21 16:26:34 1997
+++ work/progs/AfterStep/apps/asmix/asmix.c Sat Feb 7 08:58:51 1998
@@ -7,7 +7,11 @@
#include <X11/Xatom.h>
#include <sys/errno.h>
#include <fcntl.h>
-#include <linux/soundcard.h>
+#ifdef __FreeBSD__
+# include <machine/soundcard.h>
+#else
+# include <linux/soundcard.h>
+#endif
typedef struct stereovolume
{
diff -u -r AfterStep-1.4.0/apps/asprint/asprint.c work/progs/AfterStep/apps/asprint/asprint.c
--- AfterStep-1.4.0/apps/asprint/asprint.c Wed Mar 12 07:52:39 1997
+++ work/progs/AfterStep/apps/asprint/asprint.c Sat Feb 7 08:59:58 1998
@@ -27,6 +27,9 @@
#define PRINT_PB 0
#define CANCEL_PB 1
#define FILTER_PB 2
+#ifndef PATH_MAX
+#define PATH_MAX 255
+#endif
String **files_list, **dirs_list;
Widget dir_lw, files_lw, filter_tw, select_tw, list_view, lv2, main_form;
diff -u -r AfterStep-1.4.0/apps/asrack/asrack.c work/progs/AfterStep/apps/asrack/asrack.c
--- AfterStep-1.4.0/apps/asrack/asrack.c Fri Sep 19 20:55:14 1997
+++ work/progs/AfterStep/apps/asrack/asrack.c Sat Feb 7 09:00:27 1998
@@ -195,7 +195,7 @@
sa.sa_handler=shutDown;
sigfillset(&sa.sa_mask);
sa.sa_flags=0;
- sa.sa_restorer=NULL;
+ /* sa.sa_restorer=NULL; */
sigaction(SIGTERM,&sa,NULL);
sigaction(SIGINT,&sa,NULL);
sigaction(SIGHUP,&sa,NULL);
Best regards,
Guylhem