home *** CD-ROM | disk | FTP | other *** search
/ Dream 50 / Amiga_Dream_50.iso / Linux / AfterStep / AfterStep-1.4.README < prev    next >
Internet Message Format  |  1998-02-09  |  3KB

  1. From: guylhem@danmark.linux.eu.org (Guylhem Aznar)
  2. Subject: AfterSTEP 1.4.0 final stable is here !
  3. Date: Sat, 7 Feb 1998 10:30:22 +0100 (CET)
  4.  
  5. Hi all !
  6.  
  7. 1.4.0 STABLE is hopefully finished & should be available on ftp.afterstep.org
  8. tomorrow Sun, 8th.
  9.  
  10. New featues over 1.4pre1 : many, with autoconf for configuration, a new README
  11. & updated afterstep.sgml, many little fixes for non linux systems...
  12.  
  13. It has been successfully tested under BSD & Linux; everything but 3 asapps
  14. (I will contact their maintainer) run under BSD, everything run under Linux.
  15.  
  16. PLEASE TEST IT UNDER YOUR SYSTEM IF IT IS NEITHER BSD NOR LINUX !
  17.  
  18. I can not test it with systems I don't have !  Now let's start final move !
  19.  
  20. WHEN EVERYTHING WILL WORK ON ALL SUPPORTED PLATFORMS, A MESSAGE WILL BE SEND
  21. TO comp.os.linux.announces, afterstep@eosys.com (add other address you think
  22. it's worth posting to here)
  23.  
  24. PS : 1st fix patch follows here, for 2 apps under BSD: asrack still can't work
  25. on non linux systems
  26.  
  27. diff -u -r AfterStep-1.4.0/apps/asfsm/Imakefile work/progs/AfterStep/apps/asfsm/Imakefile
  28. --- AfterStep-1.4.0/apps/asfsm/Imakefile    Tue Jan 13 15:25:14 1998
  29. +++ work/progs/AfterStep/apps/asfsm/Imakefile    Sat Feb  7 09:15:52 1998
  30. @@ -3,7 +3,7 @@
  31.  DEPLIBS = $(DEPXLIB) $(DEPXTOOLLIB)
  32.  LOCAL_LIBRARIES = $(XPMLIB) $(XTLIB) $(XLIB) $(XTOOLLIB)
  33.  LINTLIBS = $(LINTXLIB)
  34. -CFLAGS +=-I/usr/local/include -I/usr/include/X11
  35. +CFLAGS +=-I/usr/local/include -I/usr/include/X11 -I/usr/X11R6/include/X11
  36.  
  37.  SRCS = asfsm.c
  38.  OBJS = asfsm.o
  39. diff -u -r AfterStep-1.4.0/apps/asmix/asmix.c work/progs/AfterStep/apps/asmix/asmix.c
  40. --- AfterStep-1.4.0/apps/asmix/asmix.c    Sun Sep 21 16:26:34 1997
  41. +++ work/progs/AfterStep/apps/asmix/asmix.c    Sat Feb  7 08:58:51 1998
  42. @@ -7,7 +7,11 @@
  43.  #include <X11/Xatom.h>
  44.  #include <sys/errno.h>
  45.  #include <fcntl.h>
  46. -#include <linux/soundcard.h>
  47. +#ifdef __FreeBSD__
  48. +#  include <machine/soundcard.h>
  49. +#else
  50. +#  include <linux/soundcard.h>
  51. +#endif
  52.  
  53.  typedef struct stereovolume
  54.  {
  55. diff -u -r AfterStep-1.4.0/apps/asprint/asprint.c work/progs/AfterStep/apps/asprint/asprint.c
  56. --- AfterStep-1.4.0/apps/asprint/asprint.c    Wed Mar 12 07:52:39 1997
  57. +++ work/progs/AfterStep/apps/asprint/asprint.c    Sat Feb  7 08:59:58 1998
  58. @@ -27,6 +27,9 @@
  59.  #define PRINT_PB 0
  60.  #define CANCEL_PB 1
  61.  #define FILTER_PB 2
  62. +#ifndef PATH_MAX
  63. +#define PATH_MAX 255
  64. +#endif
  65.  
  66.  String **files_list, **dirs_list;
  67.  Widget dir_lw, files_lw, filter_tw, select_tw, list_view, lv2, main_form;
  68. diff -u -r AfterStep-1.4.0/apps/asrack/asrack.c work/progs/AfterStep/apps/asrack/asrack.c
  69. --- AfterStep-1.4.0/apps/asrack/asrack.c    Fri Sep 19 20:55:14 1997
  70. +++ work/progs/AfterStep/apps/asrack/asrack.c    Sat Feb  7 09:00:27 1998
  71. @@ -195,7 +195,7 @@
  72.    sa.sa_handler=shutDown;
  73.    sigfillset(&sa.sa_mask);
  74.    sa.sa_flags=0;
  75. -  sa.sa_restorer=NULL;
  76. + /*  sa.sa_restorer=NULL; */
  77.    sigaction(SIGTERM,&sa,NULL);
  78.    sigaction(SIGINT,&sa,NULL);
  79.    sigaction(SIGHUP,&sa,NULL);
  80.  
  81.  
  82. Best regards,
  83. Guylhem
  84.  
  85.