From ishikawa at yk.rim.or.jp Sat Apr 1 16:53:02 2006 From: ishikawa at yk.rim.or.jp (ci) Date: Sat, 01 Apr 2006 23:53:02 +0900 Subject: [csw-users] a package (but which one) removes a symlink /opt/csw and installs a real directory. In-Reply-To: 1143646990.7076.24.camel@solaris-nv-28-home Message-ID: <1143903182.2849.2.camel@solaris-nv-28-home> Thank you for the tips. Since I haven't got a clue to figure out which pakcage(s) caused the problem, I go with the use of loopback file system. > mount -F lofs /home/ishikawa/csw /opt/csw I put /export/home/ishikawa/csw and register the proper line in /etc/vfstab. (Putting /home/ishikawa/csw caused the initial automount to fail.) TIA. ci From ax11 at ax11.de Sat Apr 1 18:49:53 2006 From: ax11 at ax11.de (Thomas Amm) Date: Sat, 01 Apr 2006 18:49:53 +0200 Subject: [csw-users] FLAC encoding? In-Reply-To: <442A867A.5070303@gmx.net> References: <20060327220335.GG6249@katie.ctc.net> <442A712B.9080203@ax11.de> <442A867A.5070303@gmx.net> Message-ID: <442EAF31.3070705@ax11.de> Javier O. Augusto wrote: > Thomas Amm wrote: > >>Joe Reid wrote: >> >> >>>I don't have an diagnostics yet but I tried using flac to encode a wav >>>file this weekend - after 24 hours of accumulated CPU time I killed the >>>process. Should any normal 3-5 minute wav file take ...days to encode >>>in FLAC on a dual 900MHZ SunBlade 1000? >>> >>> >> >>No way, FLAC used to be pretty fast - but the actual flac hangs on my >>Blade1000 (Ultra Sparc III, 750MHz), too. >>Doesn't even seem to encode the first frame before it freezes. >> > > Just thinking out loud, is this code too x86 eccentric or what? > shouldn't it make use of vis+? > Have you tried building up from source? > > Regards, > Jay Could not get it built on Sparc v9. Howeve all the libs and binaries seem to be there 'make install' fails. Seems this old gcc/ui64 type bug is still unsolved :(. From pfelecan at blastwave.org Sun Apr 2 10:11:34 2006 From: pfelecan at blastwave.org (Peter FELECAN) Date: Sun, 02 Apr 2006 10:11:34 +0200 Subject: [csw-users] Emacs 22 snapsot 20060401 CVS in testing Message-ID: As promised, the monthly CVS snapshot of the next version of Emacs, in the testing area: http://www.blastwave.org/testing/emacs-22.0.50,REV=cvs20060401-SunOS5.8-i386-CSW.pkg.gz http://www.blastwave.org/testing/emacs-22.0.50,REV=cvs20060401-SunOS5.8-sparc-CSW.pkg.gz If you wish to use/test the bleeding edge Emacs, you're welcome. But, if there are issues, please report them upstream; I'll manage only the packaging side. To install this package, you need to remove all dependent packages and Emacs 21.4 itself; after that, you install, using pkgadd, the CVS Emacs corresponding to your architecture and, if you're a TeX user, the nifty AucTex package. Note that this version includes the successors of: oortgnus and emacscalc, available as Blastwave packages, and many other, previously separate, packages --- e.g., tramp. I'll made a new testing package once a month, until the public release. Enjoy -- Peter From ishikawa at yk.rim.or.jp Sun Apr 2 11:04:39 2006 From: ishikawa at yk.rim.or.jp (ishikawa at yk.rim.or.jp) Date: Sun, 2 Apr 2006 18:04:39 +0900 (JST) Subject: [csw-users] wine 0.9.10 on solaris 10 (solaris express nv b28) Message-ID: (Sorry this is a little bit lengthy) I tried to compile the latest wine-0.9.10 available from winehq web page. I referenced the wine-patch-kit web page at blasware and it was very informative. Obviously, there are newer files in wine-0.9.10 which are not addressed by the patches in wine-patch-kit and so here are some patches that I created for your reference. In the end, there were a couple of link errors and I appreciate helpful tips. Here is the list of comments and questions and finally the patch itself. (0) Suggested Improvement to wine-patch-kit web page. Before running maintain command, we need to run "cvs login". This may be too obvious to write in the guide, but it might help some people. e.g. export CVSROOT=:pserver:cvs at cvs.winehq.org:/home/wine cvs login (1) Patches to compile latest wine-0.9.10 from www.winehq.org See the patch output at the end. (2) Link error? I got the following link error at the end. Compiler problem? I am not sure. (Please note that due to a certain compatibility problem I have overwritten /usr/ccs/bin/ld with gnu ld. Well, original ld is saved under /usr/ccs/bin/ld.old) This is the compiler I used. (note that ld is actually gnu ld as noted above.) gcc -v Reading specs from /usr/sfw/lib/gcc/i386-pc-solaris2.11/3.4.3/specs Configured with: /builds/sfwnv-gate/usr/src/cmd/gcc/gcc-3.4.3/configure --prefix=/usr/sfw --with-as=/usr/sfw/bin/gas --with-gnu-as --with-ld=/usr/ccs/bin/ld --without-gnu-ld --enable-languages=c,c++,f77 --enable-shared Thread model: posix gcc version 3.4.3 (csl-sol210-3_4-20050802) bash-3.00$ Linker problem? This is the version of ld I use. (Again, please note that /usr/ccs/bin/ld is actually gnu ld). /usr/ccs/bin/ld --version GNU ld version 2.15 Copyright 2002 Free Software Foundation, Inc. This program is free software; you may redistribute it under the terms of the GNU General Public License. This program has absolutely no warranty. bash-3.00$ Or solaris express nevada b28 problem? Or my wine configure process problem? I have somehow -lrt and -lthread through all my Makefile. These additional libraries might be the cause of the problem. The link error I got at the end of "make -k". make -k gcc -o wine-kthread -Wl,--export-dynamic -Wl,--section-start,.interp=0x7bf00400 -Wl,--rpath,\$ORIGIN/`../tools/relpath /usr/local/bin /usr/local/lib` kthread.o main.o -L../libs/wine -lwine -L../libs/port -lwine_port ../libs/wine/libwine.so: undefined reference to `write at SUNW_0.9' ../libs/wine/libwine.so: undefined reference to `read at SUNW_0.9' collect2: ld returned 1 exit status *** Error code 1 make: Warning: Target `all' not remade because of errors Current working directory /home/ishikawa/local-src/wine-sources/wine-0.9.10/wine/loader *** Error code 1 The following command caused the error: cd loader && make `libdinput.def.a' is up to date. gcc -o wineserver -Wl,--rpath,\$ORIGIN/`../tools/relpath /usr/local/bin /usr/local/lib` atom.o change.o class.o clipboard.o console.o context_alpha.o context_i386.o context_powerpc.o context_sparc.o context_x86_64.o debugger.o directory.o event.o fd.o file.o handle.o hook.o mailslot.o main.o mapping.o mutex.o named_pipe.o object.o process.o ptrace.o queue.o region.o registry.o request.o semaphore.o serial.o signal.o snapshot.o sock.o symlink.o thread.o timer.o token.o trace.o unicode.o user.o window.o winstation.o sunptrace.o -L../libs/wine -lwine -L../libs/unicode -lwine_unicode -L../libs/port -lwine_port -lrt -lthread -lsocket -lnsl ../libs/wine/libwine.so: undefined reference to `write at SUNW_0.9' ../libs/wine/libwine.so: undefined reference to `read at SUNW_0.9' collect2: ld returned 1 exit status *** Error code 1 make: Warning: Target `all' not remade because of errors Current working directory /home/ishikawa/local-src/wine-sources/wine-0.9.10/wine/server *** Error code 1 The following command caused the error: cd server && make make: Warning: Target `all' not remade because of errors (3) Question: solaris 10 (actually nevada b28) freetype2 library issue. Configure doesn't pick up freetype2 library/header. So there are messages to that effect. Why? They *are* in /usr/sfw/include/freetype2/freetype/ /usr/sfw/lib/libfreetype.so.6 Maybe due to the fact that there is /usr/sfw/bin/freetype-config but, not /usr/sfw/bin/freetype2-config ? Still, it prints version 2.1.10 bash-3.00$ freetype-config --ftversion 2.1.10 Or do we need to pass special argument(s) to configure? (4) Finally the patches. The patch to compile wine-0.9.10 at winehq.com Due to the fact that I have (somehow) configured to use -lrt -lthread, most Makefiles had the additional -lrt and -lthread. (I am not sure why I have -lrt and -lthread. It seems that the wine-patch-kit doesn't handle these libraries.) e.g. Makefile or Make.rules contain these -lt -lthread in LIBS make variable. Ugh. I just noticed that I have date string in Japanese character code in diff output.. So I removed them to save trouble for some mail readers. If these cause problems, please let me know. diff -cibwr wine-0.9.10/wine/Make.rules wine-0.9.10-local-mods//wine/Make.rules *** wine-0.9.10/wine/Make.rules original date --- wine-0.9.10-local-mods//wine/Make.rules newer date. *************** *** 25,31 **** CC = gcc CFLAGS = -g -O2 CPPFLAGS = ! LIBS = -lsocket -lnsl BISON = bison LEX = flex LEXLIB = -ll --- 25,31 ---- CC = gcc CFLAGS = -g -O2 CPPFLAGS = ! LIBS = -lrt -lthread -lsocket -lnsl BISON = bison LEX = flex LEXLIB = -ll I omit these. I may have introduced more incompatibility problems than usual, but here goes the patch. dlls/iphlpapi Linking requires -lresolve to satisfy unresolved symbols. diff -cibwr wine-0.9.10/wine/dlls/iphlpapi/Makefile wine-0.9.10-local-mods//wine/dlls/iphlpapi/Makefile *** wine-0.9.10/wine/dlls/iphlpapi/Makefile today --- wine-0.9.10-local-mods//wine/dlls/iphlpapi/Makefile today *************** *** 71,77 **** CC = gcc CFLAGS = -g -O2 CPPFLAGS = ! LIBS = -lsocket -lnsl BISON = bison LEX = flex LEXLIB = -ll --- 71,78 ---- CC = gcc CFLAGS = -g -O2 CPPFLAGS = ! # add -lresolv ! LIBS = -lrt -lthread -lresolv -lsocket -lnsl BISON = bison LEX = flex LEXLIB = -ll dlls/msvcrt/time.c: I don't know for sure whether other systems require this, but solaris asctime_r() obviously takes the third argument. diff -cibwr wine-0.9.10/wine/dlls/msvcrt/time.c wine-0.9.10-local-mods//wine/dlls/msvcrt/time.c *** wine-0.9.10/wine/dlls/msvcrt/time.c 2006? old date --- wine-0.9.10-local-mods//wine/dlls/msvcrt/time.c today *************** *** 466,472 **** /* FIXME: may want to map from Unix codepage to CP_ACP */ #ifdef HAVE_ASCTIME_R ! asctime_r( &tm, data->asctime_buffer ); #else strcpy( data->asctime_buffer, asctime(&tm) ); #endif --- 466,472 ---- /* FIXME: may want to map from Unix codepage to CP_ACP */ #ifdef HAVE_ASCTIME_R ! asctime_r( &tm, data->asctime_buffer, 30 /* TODO/FIXME: CI */ ); #else strcpy( data->asctime_buffer, asctime(&tm) ); #endif *************** *** 487,493 **** if (!data->wasctime_buffer) data->wasctime_buffer = MSVCRT_malloc( 30*sizeof(MSVCRT_wchar_t) ); /* ought to be enough */ #ifdef HAVE_ASCTIME_R ! asctime_r( &tm, buffer ); #else strcpy( buffer, asctime(&tm) ); #endif --- 487,493 ---- if (!data->wasctime_buffer) data->wasctime_buffer = MSVCRT_malloc( 30*sizeof(MSVCRT_wchar_t) ); /* ought to be enough */ #ifdef HAVE_ASCTIME_R ! asctime_r( &tm, buffer, 30 * sizeof(MSVCRT_wchar_t) /* TODO/FIXME: CI */ ); #else strcpy( buffer, asctime(&tm) ); #endif dlls/ntdll/directory.c We need to include limits.h since PATH_MAX is defined there. Also, I added one volatile specifier to a line to shut up warning. (Actually there is another place a warning is generated, too.) diff -cibwr wine-0.9.10/wine/dlls/ntdll/directory.c wine-0.9.10-local-mods//wine/dlls/ntdll/directory.c *** wine-0.9.10/wine/dlls/ntdll/directory.c old date --- wine-0.9.10-local-mods//wine/dlls/ntdll/directory.c today *************** *** 57,62 **** --- 57,66 ---- # include #endif + /* TODO/FIXME: PATH_MAX */ + #include + + #define NONAMELESSUNION #define NONAMELESSSTRUCT #include "ntstatus.h" *************** *** 316,322 **** { volatile struct mnttab mntentry; ! struct mnttab *entry=&mntentry; struct stat st; char *device; --- 320,327 ---- { volatile struct mnttab mntentry; ! /* Added volatile below CI */ ! volatile struct mnttab *entry=&mntentry; struct stat st; char *device; dlls/ntdll/tape.c: Solaris 10 mt ioctl differences. diff -cibwr wine-0.9.10/wine/dlls/ntdll/tape.c wine-0.9.10-local-mods//wine/dlls/ntdll/tape.c *** wine-0.9.10/wine/dlls/ntdll/tape.c old date --- wine-0.9.10-local-mods//wine/dlls/ntdll/tape.c today *************** *** 163,170 **** */ static NTSTATUS TAPE_GetDriveParams( int fd, TAPE_GET_DRIVE_PARAMETERS *data ) { ! #ifdef HAVE_SYS_MTIO_H struct mtget get; NTSTATUS status; TRACE( "fd: %d\n", fd ); --- 163,176 ---- */ static NTSTATUS TAPE_GetDriveParams( int fd, TAPE_GET_DRIVE_PARAMETERS *data ) { ! #if defined(HAVE_SYS_MTIO_H) || defined(MTIOCGETDRIVETYPE) ! #ifdef MTIOCGETDRIVETYPE ! /* Solaris 10- actullay. */ ! struct mtdrivetype get; ! #else struct mtget get; + #endif + NTSTATUS status; TRACE( "fd: %d\n", fd ); *************** *** 171,177 **** --- 177,188 ---- memset( data, 0, sizeof(TAPE_GET_DRIVE_PARAMETERS) ); + #ifdef MTIOCGETDRIVETYPE + /* Solaris 10- actually. */ + status = TAPE_GetStatus( ioctl( fd, MTIOCGETDRIVETYPE, &get ) ); + #else status = TAPE_GetStatus( ioctl( fd, MTIOCGET, &get ) ); + #endif if (status != STATUS_SUCCESS) return status; *************** *** 179,189 **** --- 190,205 ---- data->Compression = FALSE; data->DataPadding = FALSE; data->ReportSetmarks = FALSE; + #ifdef MTIOCGETDRIVETYPE + /* Solaris 10- actually. */ + data->DefaultBlockSize = get.bsize; + #else #ifdef HAVE_STRUCT_MTGET_MT_BLKSIZ data->DefaultBlockSize = get.mt_blksiz; #else data->DefaultBlockSize = get.mt_dsreg & MT_ST_BLKSIZE_MASK; #endif + #endif data->MaximumBlockSize = data->DefaultBlockSize; data->MinimumBlockSize = data->DefaultBlockSize; data->MaximumPartitionCount = 1; *************** *** 200,207 **** */ static NTSTATUS TAPE_GetMediaParams( int fd, TAPE_GET_MEDIA_PARAMETERS *data ) { ! #ifdef HAVE_SYS_MTIO_H struct mtget get; NTSTATUS status; TRACE( "fd: %d\n", fd ); --- 216,230 ---- */ static NTSTATUS TAPE_GetMediaParams( int fd, TAPE_GET_MEDIA_PARAMETERS *data ) { ! #if defined(HAVE_SYS_MTIO_H) || defined(MTIOCGETDRIVETYPE) ! ! #if defined(MTIOCGETDRIVETYPE) ! /* Actually solaris 10- */ ! struct mtdrivetype get; ! #else struct mtget get; + #endif + NTSTATUS status; TRACE( "fd: %d\n", fd ); *************** *** 208,224 **** --- 231,258 ---- memset( data, 0, sizeof(TAPE_GET_MEDIA_PARAMETERS) ); + #ifdef MTIOCGETDRIVETYPE + /* Actually solaris 10- */ + status = TAPE_GetStatus( ioctl( fd, MTIOCGETDRIVETYPE, &get ) ); + #else status = TAPE_GetStatus( ioctl( fd, MTIOCGET, &get ) ); + #endif if (status != STATUS_SUCCESS) return status; data->Capacity.u.LowPart = 1024 * 1024 * 1024; data->Remaining.u.LowPart = 1024 * 1024 * 1024; + #ifdef MTIOCGETDRIVETYPE + /* Actually solaris 10- */ + data->BlockSize = get.bsize; + #else #ifdef HAVE_STRUCT_MTGET_MT_BLKSIZ data->BlockSize = get.mt_blksiz; #else data->BlockSize = get.mt_dsreg & MT_ST_BLKSIZE_MASK; #endif + #endif + data->PartitionCount = 1; #ifdef HAVE_STRUCT_MTGET_MT_GSTAT data->WriteProtected = GMT_WR_PROT(get.mt_gstat); *************** *** 375,381 **** --- 409,420 ---- TRACE( "fd: %d blocksize: 0x%08lx\n", fd, data->BlockSize ); + #ifdef MTSRSZ + /* Actually solaris 10- */ + cmd.mt_op = MTSRSZ; + #else cmd.mt_op = MTSETBLK; + #endif cmd.mt_count = data->BlockSize; return TAPE_GetStatus( ioctl( fd, MTIOCTOP, &cmd ) ); dlls/x11drv/winpos.c: I am not sure why, but the header files supplied under openwindows directory is a little old? In any case, unless I add xuti.h before extensions/shape.h include, compilation failed. diff -cibwr wine-0.9.10/wine/dlls/x11drv/winpos.c wine-0.9.10-local-mods//wine/dlls/x11drv/winpos.c *** wine-0.9.10/wine/dlls/x11drv/winpos.c old date --- wine-0.9.10-local-mods//wine/dlls/x11drv/winpos.c today *************** *** 21,28 **** --- 21,33 ---- #include "config.h" + #include #ifdef HAVE_LIBXSHAPE + + /*ci*/ + #include + #include #endif /* HAVE_LIBXSHAPE */ #include include/config.h: This is for reference-purposes only. This will be overwritten by everyone's local configure. diff -cibwr wine-0.9.10/wine/include/config.h wine-0.9.10-local-mods//wine/include/config.h *** wine-0.9.10/wine/include/config.h 2006? 4? 2? (?) --- wine-0.9.10-local-mods//wine/include/config.h 2006? 3? 28? (?) *************** *** 300,308 **** --- 300,314 ---- /* Define to 1 if you have the `resolv' library (-lresolv). */ /* #undef HAVE_LIBRESOLV */ + /* Define to 1 if you have the `rt' library (-lrt). */ + #define HAVE_LIBRT 1 + /* Define to 1 if you have the `socket' library (-lsocket). */ #define HAVE_LIBSOCKET 1 + /* Define to 1 if you have the `thread' library (-lthread). */ + #define HAVE_LIBTHREAD 1 + /* Define if you have the libxml2 library */ #define HAVE_LIBXML2 1 *************** *** 417,422 **** --- 423,431 ---- /* Define to 1 if the system has the type `mode_t'. */ #define HAVE_MODE_T 1 + /* Define to 1 if you have the `nanosleep' function. */ + /* #undef HAVE_NANOSLEEP */ + /* Define if you have NAS including devel headers */ /* #undef HAVE_NAS */ *************** *** 486,491 **** --- 495,503 ---- /* Define to 1 if you have the `pread' function. */ #define HAVE_PREAD 1 + /* Define if you have processor_info */ + #define HAVE_PROCESSOR_INFO 1 + /* Define to 1 if you have the header file. */ /* #undef HAVE_PROCESS_H */ *************** *** 535,541 **** #define HAVE_SCHED_H 1 /* Define to 1 if you have the `sched_yield' function. */ ! /* #undef HAVE_SCHED_YIELD */ /* Define to 1 if `cmd' is member of `scsireq_t'. */ /* #undef HAVE_SCSIREQ_T_CMD */ --- 547,553 ---- #define HAVE_SCHED_H 1 /* Define to 1 if you have the `sched_yield' function. */ ! #define HAVE_SCHED_YIELD 1 /* Define to 1 if `cmd' is member of `scsireq_t'. */ /* #undef HAVE_SCSIREQ_T_CMD */ *************** *** 675,680 **** --- 687,695 ---- /* Define to 1 if you have the header file. */ /* #undef HAVE_SYSCALL_H */ + /* Define if you have sysconf */ + #define HAVE_SYSCONF 1 + /* Define to 1 if you have the header file. */ /* #undef HAVE_SYS_ASOUNDLIB_H */ *************** *** 693,698 **** --- 708,716 ---- /* Define to 1 if you have the header file. */ /* #undef HAVE_SYS_EXEC_ELF_H */ + /* Define if you have sys/filio.h */ + #define HAVE_SYS_FILIIO_H 1 + /* Define to 1 if you have the header file. */ #define HAVE_SYS_FILIO_H 1 *************** *** 732,737 **** --- 750,758 ---- /* Define to 1 if you have the header file. */ #define HAVE_SYS_POLL_H 1 + /* Define if you have processor.h */ + #define HAVE_SYS_PROCESSOR_H 1 + /* Define to 1 if you have the header file. */ /* #undef HAVE_SYS_PTRACE_H */ *************** *** 810,815 **** --- 831,842 ---- /* Define to 1 if you have the header file. */ #define HAVE_TERMIOS_H 1 + /* Define if you have thr* funcs */ + #define HAVE_THR 1 + + /* Define if you have thread.h (Solaris) */ + #define HAVE_THREAD_H 1 + /* Define to 1 if you have the `timegm' function. */ /* #undef HAVE_TIMEGM */ *************** *** 915,920 **** --- 942,953 ---- /* Define if we have __va_copy */ #define HAVE___VA_COPY 1 + /* Define major Os vesion */ + #define OS_MAJOR $system_major + + /* Define minor Os Version */ + #define OS_MINOR $system_minor + /* Define to the address where bug reports for this package should be sent. */ #define PACKAGE_BUGREPORT "wine-devel at winehq.org" loader/kthread.c : macro ERR conflicts with a system-supplied macro. So I renamed it to ERRPRINT. diff -cibwr wine-0.9.10/wine/loader/kthread.c wine-0.9.10-local-mods//wine/loader/kthread.c *** wine-0.9.10/wine/loader/kthread.c old date --- wine-0.9.10-local-mods//wine/loader/kthread.c today *************** *** 115,121 **** #endif #define TRACE printf ! #define ERR printf int threadmode =0; struct pthread_descr_struct --- 115,122 ---- #endif #define TRACE printf ! /* #define ERR printf */ ! #define ERRPRINTF printf int threadmode =0; struct pthread_descr_struct *************** *** 242,248 **** thr_setspecific(key, data); } else ! ERR("Thread private data already set !\n"); thr_getspecific(key, &tsd); return((void *) tsd); } --- 243,249 ---- thr_setspecific(key, data); } else ! ERRPRINTF("Thread private data already set !\n"); thr_getspecific(key, &tsd); return((void *) tsd); } *************** *** 423,441 **** switch(err) { case EAGAIN: ! ERR("Thread creation failed EAGAIN - System is out of threads or lwps\n"); break; case EINVAL: ! ERR("Thread creation failed EINVAL - The stack_base argument is not NULL and stack_size is less than the value returned by thr_min_stack, or the stack_base argument is NULL and stack_size is not 0 and is less than the value returned by thr_min_stack\n"); break; case ENOMEM: ! ERR("Thread creation failed ENOMEM - here is not enough memory to allocate the stack for the thread\n"); break; case -1: ! ERR("Thread creation failed (-1) - Application is not linked with threading libraryn"); break; default: ! ERR("Thread creation failed Unknown %d - Possible mmap failure check mmap results\n",err); break; } return -1; --- 424,442 ---- switch(err) { case EAGAIN: ! ERRPRINTF("Thread creation failed EAGAIN - System is out of threads or lwps\n"); break; case EINVAL: ! ERRPRINTF("Thread creation failed EINVAL - The stack_base argument is not NULL and stack_size is less than the value returned by thr_min_stack, or the stack_base argument is NULL and stack_size is not 0 and is less than the value returned by thr_min_stack\n"); break; case ENOMEM: ! ERRPRINTF("Thread creation failed ENOMEM - here is not enough memory to allocate the stack for the thread\n"); break; case -1: ! ERRPRINTF("Thread creation failed (-1) - Application is not linked with threading libraryn"); break; default: ! ERRPRINTF("Thread creation failed Unknown %d - Possible mmap failure check mmap results\n",err); break; } return -1; programs/wintest/maketest: We need to add dummy variable to shell built-in "read" diff -cibwr wine-0.9.10/wine/programs/winetest/maketest wine-0.9.10-local-mods//wine/programs/winetest/maketest *** wine-0.9.10/wine/programs/winetest/maketest old date --- wine-0.9.10-local-mods//wine/programs/winetest/maketest today *************** *** 19,25 **** for dir in dlls/*/tests; do sed -ne "s|^/\([^.]*.c\)/\([^/]*\).*|$dir/\1:\2|p" $dir/CVS/Entries 2>/dev/null done |\ ! while read; do echo "REV_INFO+$i \"$REPLY\"" i=`expr $i + 1` done --- 19,25 ---- for dir in dlls/*/tests; do sed -ne "s|^/\([^.]*.c\)/\([^/]*\).*|$dir/\1:\2|p" $dir/CVS/Entries 2>/dev/null done |\ ! while read dummy; do echo "REV_INFO+$i \"$REPLY\"" i=`expr $i + 1` done programs/wineconsole : We need to link -lcurses (due to unresolved symbols) diff -cibwr wine-0.9.10/wine/programs/wineconsole/Makefile wine-0.9.10-local-mods//wine/programs/wineconsole/Makefile *** wine-0.9.10/wine/programs/wineconsole/Makefile old date --- wine-0.9.10-local-mods//wine/programs/wineconsole/Makefile today *************** *** 66,72 **** CC = gcc CFLAGS = -g -O2 CPPFLAGS = ! LIBS = -lsocket -lnsl BISON = bison LEX = flex LEXLIB = -ll --- 66,72 ---- CC = gcc CFLAGS = -g -O2 CPPFLAGS = ! LIBS = -lrt -lthread -lsocket -lnsl -lcurses BISON = bison LEX = flex LEXLIB = -ll From gturnqui at harris.com Tue Apr 4 19:20:07 2006 From: gturnqui at harris.com (Turnquist, Greg) Date: Tue, 4 Apr 2006 13:20:07 -0400 Subject: [csw-users] Build php5 from scratch... Message-ID: I am looking into building php5 from scratch so that I can apply the patches from http://www.hardened-php.net/hardening_patch.14.html. I would like to start from the baseline of building with the same config arguments as ap2_modphp5 was build with. Is the configuration information for blastwave packages published anywhere, so that I can look this up. If I can successfully build the package, then I can proceed to apply the patches and rebuild it. Greg Turnquist * Greg.Turnquist at harris.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.blastwave.org/pipermail/users/attachments/20060404/45eb29d9/attachment.html From comand at blastwave.org Tue Apr 4 20:42:14 2006 From: comand at blastwave.org (Cory Omand) Date: Tue, 4 Apr 2006 11:42:14 -0700 Subject: [csw-users] Build php5 from scratch... In-Reply-To: References: Message-ID: On 4/4/06, Turnquist, Greg wrote: > > > I am looking into building php5 from scratch so that I can apply the patches > from http://www.hardened-php.net/hardening_patch.14.html. I > would like to start from the baseline of building with the same config > arguments as ap2_modphp5 was build with. Is the configuration information > for blastwave packages published anywhere, so that I can look this up. If I > can successfully build the package, then I can proceed to apply the patches > and rebuild it. If this is something that would not affect regular PHP5 applications adversely, then I can arrange to apply the hardening patch prior to the next blastwave release of the php5 package set. That would save you having to compile and manage this change locally. The php5 build is non-trivial, given the number of extensions that are enabled. For your reference, however, you can examine the blastwave php5 build config via the web. The most interesting file for your purpose is probably: http://svn.blastwave.org/browser/csw/trunk/lang/php5/files/config.mk Regards, Cory. From gturnqui at harris.com Tue Apr 4 21:06:49 2006 From: gturnqui at harris.com (Turnquist, Greg) Date: Tue, 4 Apr 2006 15:06:49 -0400 Subject: [csw-users] Build php5 from scratch... Message-ID: I can't promise what the hardening patch accomplishes. I am tasked to figure this out myself. I don't know what level of regression testing would be stipulated to release this to blastwave. I was thinking it would be great if the hardening was a standard feature. If you were to make a test build, I would be glad to try deploying it, and testing my mediawiki web site, to see if that still works. Another option is to build two php packages, one with and one without the hardening. Does this build procedure go towards every php module at blastwave? If that is so, then I guess building two-for-one would greatly increase the build effort and testing requirements. Or does this only have to be applied to a few core packages? I guess you would have to inspect the patch file to determine which modules are impacted by this. -----Original Message----- From: users-bounces+gturnqui=harris.com at lists.blastwave.org [mailto:users-bounces+gturnqui=harris.com at lists.blastwave.org] On Behalf Of Cory Omand Sent: Tuesday, April 04, 2006 2:42 PM To: questions and discussions Subject: Re: [csw-users] Build php5 from scratch... On 4/4/06, Turnquist, Greg wrote: > > > I am looking into building php5 from scratch so that I can apply the patches > from http://www.hardened-php.net/hardening_patch.14.html. I > would like to start from the baseline of building with the same config > arguments as ap2_modphp5 was build with. Is the configuration information > for blastwave packages published anywhere, so that I can look this up. If I > can successfully build the package, then I can proceed to apply the patches > and rebuild it. If this is something that would not affect regular PHP5 applications adversely, then I can arrange to apply the hardening patch prior to the next blastwave release of the php5 package set. That would save you having to compile and manage this change locally. The php5 build is non-trivial, given the number of extensions that are enabled. For your reference, however, you can examine the blastwave php5 build config via the web. The most interesting file for your purpose is probably: http://svn.blastwave.org/browser/csw/trunk/lang/php5/files/config.mk Regards, Cory. _______________________________________________ users mailing list users at lists.blastwave.org https://lists.blastwave.org/mailman/listinfo/users From realmcking at gmail.com Tue Apr 4 21:14:54 2006 From: realmcking at gmail.com (Mark McCoy) Date: Tue, 4 Apr 2006 14:14:54 -0500 Subject: [csw-users] Build php5 from scratch... In-Reply-To: References: Message-ID: Cory, Are there plans to have an alternate fastcgi binary package available, similar to the php4_cgi package, or to add fastcgi support to the cli version of php5? Thanks, Mark On 4/4/06, Cory Omand wrote: > On 4/4/06, Turnquist, Greg wrote: > > > > > > I am looking into building php5 from scratch so that I can apply the patches > > from http://www.hardened-php.net/hardening_patch.14.html. I > > would like to start from the baseline of building with the same config > > arguments as ap2_modphp5 was build with. Is the configuration information > > for blastwave packages published anywhere, so that I can look this up. If I > > can successfully build the package, then I can proceed to apply the patches > > and rebuild it. > > If this is something that would not affect regular PHP5 applications > adversely, then I can arrange to apply the hardening patch prior to > the next blastwave release of the php5 package set. That would save > you having to compile and manage this change locally. The php5 build > is non-trivial, given the number of extensions that are enabled. For > your reference, however, you can examine the blastwave php5 build > config via the web. The most interesting file for your purpose is > probably: > > http://svn.blastwave.org/browser/csw/trunk/lang/php5/files/config.mk > > Regards, > Cory. > _______________________________________________ > users mailing list > users at lists.blastwave.org > https://lists.blastwave.org/mailman/listinfo/users > -- Mark McCoy -- Professional Unix geek "On two occasions I have been asked, 'Pray, Mr. Babbage, if you put into the machine wrong figures, will the right answers come out?' I am not able rightly to apprehend the kind of confusion of ideas that could provoke such a question. " -- Charles Babbage From realmcking at gmail.com Tue Apr 4 21:15:26 2006 From: realmcking at gmail.com (Mark McCoy) Date: Tue, 4 Apr 2006 14:15:26 -0500 Subject: [csw-users] Build php5 from scratch... In-Reply-To: References: Message-ID: Never mind, I took a look at that config.mk and see the faastcgi option at the end ;) Thanks, Mark On 4/4/06, Mark McCoy wrote: > Cory, > > Are there plans to have an alternate fastcgi binary package available, > similar to the php4_cgi package, or to add fastcgi support to the cli > version of php5? > > Thanks, Mark > > On 4/4/06, Cory Omand wrote: > > On 4/4/06, Turnquist, Greg wrote: > > > > > > > > > I am looking into building php5 from scratch so that I can apply the patches > > > from http://www.hardened-php.net/hardening_patch.14.html. I > > > would like to start from the baseline of building with the same config > > > arguments as ap2_modphp5 was build with. Is the configuration information > > > for blastwave packages published anywhere, so that I can look this up. If I > > > can successfully build the package, then I can proceed to apply the patches > > > and rebuild it. > > > > If this is something that would not affect regular PHP5 applications > > adversely, then I can arrange to apply the hardening patch prior to > > the next blastwave release of the php5 package set. That would save > > you having to compile and manage this change locally. The php5 build > > is non-trivial, given the number of extensions that are enabled. For > > your reference, however, you can examine the blastwave php5 build > > config via the web. The most interesting file for your purpose is > > probably: > > > > http://svn.blastwave.org/browser/csw/trunk/lang/php5/files/config.mk > > > > Regards, > > Cory. > > _______________________________________________ > > users mailing list > > users at lists.blastwave.org > > https://lists.blastwave.org/mailman/listinfo/users > > > > > -- > Mark McCoy -- Professional Unix geek > > "On two occasions I have been asked, 'Pray, Mr. Babbage, if you put > into the machine wrong figures, will the right answers come out?' I am > not able rightly to apprehend the kind of confusion of ideas that > could provoke such a question. " -- Charles Babbage > -- Mark McCoy -- Professional Unix geek "On two occasions I have been asked, 'Pray, Mr. Babbage, if you put into the machine wrong figures, will the right answers come out?' I am not able rightly to apprehend the kind of confusion of ideas that could provoke such a question. " -- Charles Babbage From realmcking at gmail.com Tue Apr 4 21:31:10 2006 From: realmcking at gmail.com (Mark McCoy) Date: Tue, 4 Apr 2006 14:31:10 -0500 Subject: [csw-users] Build php5 from scratch... In-Reply-To: References: Message-ID: s/faast/fast/ ;) Cory, I noticed that you are using the GAR ports system to build your packages. Is this something a lot of blastwave maintainers use? I've been looking for ways to help with creating packages and blastwave ports, but I hesitated when I saw the details of the SysV pkgbuilding tools (I also don't have all of the architectures/OS revisions that blastwave supports to test on). gnutopkg works OK, once I kludged in a special Makefile.gnutopkg step, but I never even thought about GAR. Maybe I'll work up a lighttpd package with this as a test.... Thanks, Mark Is there somewhere where I can read up on using this with blastwave? On 4/4/06, Mark McCoy wrote: > Never mind, I took a look at that config.mk and see the faastcgi > option at the end ;) > > Thanks, Mark > > On 4/4/06, Mark McCoy wrote: > > Cory, > > > > Are there plans to have an alternate fastcgi binary package available, > > similar to the php4_cgi package, or to add fastcgi support to the cli > > version of php5? > > > > Thanks, Mark > > > > On 4/4/06, Cory Omand wrote: > > > On 4/4/06, Turnquist, Greg wrote: > > > > > > > > > > > > I am looking into building php5 from scratch so that I can apply the patches > > > > from http://www.hardened-php.net/hardening_patch.14.html. I > > > > would like to start from the baseline of building with the same config > > > > arguments as ap2_modphp5 was build with. Is the configuration information > > > > for blastwave packages published anywhere, so that I can look this up. If I > > > > can successfully build the package, then I can proceed to apply the patches > > > > and rebuild it. > > > > > > If this is something that would not affect regular PHP5 applications > > > adversely, then I can arrange to apply the hardening patch prior to > > > the next blastwave release of the php5 package set. That would save > > > you having to compile and manage this change locally. The php5 build > > > is non-trivial, given the number of extensions that are enabled. For > > > your reference, however, you can examine the blastwave php5 build > > > config via the web. The most interesting file for your purpose is > > > probably: > > > > > > http://svn.blastwave.org/browser/csw/trunk/lang/php5/files/config.mk > > > > > > Regards, > > > Cory. > > > _______________________________________________ > > > users mailing list > > > users at lists.blastwave.org > > > https://lists.blastwave.org/mailman/listinfo/users > > > > > > > > > -- > > Mark McCoy -- Professional Unix geek > > > > "On two occasions I have been asked, 'Pray, Mr. Babbage, if you put > > into the machine wrong figures, will the right answers come out?' I am > > not able rightly to apprehend the kind of confusion of ideas that > > could provoke such a question. " -- Charles Babbage > > > > > -- > Mark McCoy -- Professional Unix geek > > "On two occasions I have been asked, 'Pray, Mr. Babbage, if you put > into the machine wrong figures, will the right answers come out?' I am > not able rightly to apprehend the kind of confusion of ideas that > could provoke such a question. " -- Charles Babbage > -- Mark McCoy -- Professional Unix geek "On two occasions I have been asked, 'Pray, Mr. Babbage, if you put into the machine wrong figures, will the right answers come out?' I am not able rightly to apprehend the kind of confusion of ideas that could provoke such a question. " -- Charles Babbage From realmcking at gmail.com Tue Apr 4 22:18:39 2006 From: realmcking at gmail.com (Mark McCoy) Date: Tue, 4 Apr 2006 15:18:39 -0500 Subject: [csw-users] anonymous subversion checkout from svn.blastwave.org Message-ID: Hey all, Does svn.blastwave.org allow anonymous svn checkout, or am I just missing the documentation that mentions this? Thanks, Mark -- Mark McCoy -- Professional Unix geek "On two occasions I have been asked, 'Pray, Mr. Babbage, if you put into the machine wrong figures, will the right answers come out?' I am not able rightly to apprehend the kind of confusion of ideas that could provoke such a question. " -- Charles Babbage From comand at blastwave.org Wed Apr 5 01:23:49 2006 From: comand at blastwave.org (Cory Omand) Date: Tue, 4 Apr 2006 16:23:49 -0700 Subject: [csw-users] Subversion 1.3.1 Testing Message-ID: Packages for Subversion 1.3.1, including neon 0.25.5, and all language binding packages, are now available for testing. Please report issues with this package to the appropriate categories in the blastwave bug tracker. - C. From jeff at cdsinc.com Wed Apr 5 06:03:05 2006 From: jeff at cdsinc.com (Jeff Chan) Date: Tue, 04 Apr 2006 18:03:05 -1000 Subject: [csw-users] Upgrading All Packages Message-ID: <44334179.5070404@cdsinc.com> Is there any way to prevent pkg-get from checking to see if it's okay to remove a package & upgrade? Almost like admin-fullauto but also for upgrades & packages removals. The following package is currently installed: CSWoldap openldap - ldap clients,libraries and server (i386) 2.1.30,REV=2005.09.27 Do you want to remove this package? [y,n,?,q] Jeff From james at blastwave.org Wed Apr 5 10:45:19 2006 From: james at blastwave.org (James Lee) Date: Wed, 05 Apr 2006 08:45:19 GMT Subject: [csw-users] Upgrading All Packages In-Reply-To: <44334179.5070404@cdsinc.com> References: <44334179.5070404@cdsinc.com> Message-ID: <20060405.8451900.1080744389@landeck.jamesipoos.com> On 05/04/06, 05:03:05, Jeff Chan wrote regarding [csw-users] Upgrading All Packages: > Is there any way to prevent pkg-get from checking to see if it's okay to > remove a package & upgrade? Almost like admin-fullauto but also for > upgrades & packages removals. > The following package is currently installed: > CSWoldap openldap - ldap clients,libraries and server > (i386) 2.1.30,REV=2005.09.27 > Do you want to remove this package? [y,n,?,q] Ues the -f flag for pkg-get, it passes -n to pkgrm: $ man pkg-get ... -f Force default action on pkg add or remove; Dont ask questions. This may mean that it will refuse to install some packages, depending on what the pkgadd defaults are, whether there are conflicts, etc. The 'normal' defaults are specified in /var/sadm/install/admin/default. See the "MORE AUTOMA- TION" section at the bottom of this manpage. ... James. From Juan.Plaza at Sun.COM Wed Apr 5 11:06:58 2006 From: Juan.Plaza at Sun.COM (Juan Plaza - Sun Microsystems) Date: Wed, 05 Apr 2006 11:06:58 +0200 Subject: [csw-users] help Message-ID: <443388B2.1070601@sun.com> Hi, Somebody knows how to uninstall KDE for Solaris 10 x86? Thanks. -- * Juan Plaza Flores* Preemptive Services Engineer *Sun Microsystems Ib?rica* Serrano Galvache 56, Centro Empresarial Parque Norte Madrid 28033 Phone x86780 / +34 91 7676780 Mobile 679985421 Email juan.plaza at sun.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.blastwave.org/pipermail/users/attachments/20060405/5b845e60/attachment.html From mats.larsson at ericsson.com Wed Apr 5 12:44:52 2006 From: mats.larsson at ericsson.com (Mats Larsson) Date: Wed, 05 Apr 2006 12:44:52 +0200 Subject: [csw-users] Apache install failed Message-ID: <44339FA4.2030804@ericsson.com> Did try yo install apache but failed: ws46152 /var/pkg-get# pkg-get -i apache No existing install of CSWapache found. Installing... Trying http://ibiblio.org/pub/packages/solaris/csw/unstable/sparc/5.8/apache-1.3.33,REV=2006.03.31-SunOS5.8-sparc-CSW.pkg.gz --12:38:49-- http://ibiblio.org/pub/packages/solaris/csw/unstable/sparc/5.8/apache-1.3.33,REV=2006.03.31-SunOS5.8-sparc-CSW.pk g.gz => `apache-1.3.33,REV=2006.03.31-SunOS5.8-sparc-CSW.pkg.gz' Resolving proxy.uab.ericsson.se... 134.138.128.17 Connecting to proxy.uab.ericsson.se|134.138.128.17|:8080... connected. Proxy request sent, awaiting response... 404 Not Found 12:38:49 ERROR 404: Not Found. Error downloading http://ibiblio.org/pub/packages/solaris/csw/unstable/sparc/5.8/apache-1.3.33,REV=2006.03.31-SunOS5.8-sparc-CS W.pkg.gz (Perhaps you need to update your catalog?) apache-1.3.33,REV=2006.03.31-SunOS5.8-sparc-CSW.pkg.gz: No such file or directory Attempting to update catalog, then retry Getting catalog... --12:38:49-- http://ibiblio.org/pub/packages/solaris/csw/unstable/sparc/5.8/catalog => `catalog' Resolving proxy.uab.ericsson.se... 134.138.128.17 Connecting to proxy.uab.ericsson.se|134.138.128.17|:8080... connected. Proxy request sent, awaiting response... 200 OK Length: 175,256 (171K) [text/plain] 100%[===================================================================================>] 175,256 520.76K/s 12:38:50 (520.39 KB/s) - `catalog' saved [175256/175256] Stripping off catalog signature without verifying Updating catalog file /var/pkg-get/catalog-ibiblio.org updated --12:38:50-- http://ibiblio.org/pub/packages/solaris/csw/unstable/sparc/5.8/descriptions => `descriptions' Resolving proxy.uab.ericsson.se... 134.138.128.17 Connecting to proxy.uab.ericsson.se|134.138.128.17|:8080... connected. Proxy request sent, awaiting response... 200 OK Length: 77,332 (76K) [text/plain] 100%[===================================================================================>] 77,332 --.--K/s 12:38:50 (1.87 MB/s) - `descriptions' saved [77332/77332] Updated description file Trying http://ibiblio.org/pub/packages/solaris/csw/unstable/sparc/5.8/apache-1.3.33,REV=2006.03.31-SunOS5.8-sparc-CSW.pkg.gz --12:38:50-- http://ibiblio.org/pub/packages/solaris/csw/unstable/sparc/5.8/apache-1.3.33,REV=2006.03.31-SunOS5.8-sparc-CSW.pk g.gz => `apache-1.3.33,REV=2006.03.31-SunOS5.8-sparc-CSW.pkg.gz' Resolving proxy.uab.ericsson.se... 134.138.128.17 Connecting to proxy.uab.ericsson.se|134.138.128.17|:8080... connected. Proxy request sent, awaiting response... 404 Not Found 12:38:51 ERROR 404: Not Found. Error downloading http://ibiblio.org/pub/packages/solaris/csw/unstable/sparc/5.8/apache-1.3.33,REV=2006.03.31-SunOS5.8-sparc-CS W.pkg.gz (Perhaps you need to update your catalog?) apache-1.3.33,REV=2006.03.31-SunOS5.8-sparc-CSW.pkg.gz: No such file or directory ws46152 /var/pkg-get# Any clues? -- Mats Larsson | Sr Software Analyst | R&D IT Stockholm | Ericsson AB From james at blastwave.org Wed Apr 5 13:19:05 2006 From: james at blastwave.org (James Lee) Date: Wed, 05 Apr 2006 11:19:05 GMT Subject: [csw-users] Apache install failed In-Reply-To: <44339FA4.2030804@ericsson.com> References: <44339FA4.2030804@ericsson.com> Message-ID: <20060405.11190500.240693610@landeck.jamesipoos.com> On 05/04/06, 11:44:52, Mats Larsson wrote regarding [csw-users] Apache install failed: > Did try yo install apache but failed: > ws46152 /var/pkg-get# pkg-get -i apache > No existing install of CSWapache found. Installing... > Trying > http://ibiblio.org/pub/packages/solaris/csw/unstable/sparc/5.8/apache-1. 3. 33,REV=2006.03.31-SunOS5.8-sparc-CSW.pkg.gz > --12:38:49-- > http://ibiblio.org/pub/packages/solaris/csw/unstable/sparc/5.8/apache-1. 3. 33,REV=2006.03.31-SunOS5.8-sparc-CSW.pk > g.gz > => `apache-1.3.33,REV=2006.03.31-SunOS5.8-sparc-CSW.pkg.gz' > Resolving proxy.uab.ericsson.se... 134.138.128.17 > Connecting to proxy.uab.ericsson.se|134.138.128.17|:8080... connected. > Proxy request sent, awaiting response... 404 Not Found > 12:38:49 ERROR 404: Not Found. It's been temporarily pulled from unstable due to an install bug in REV=2006.03.31. Removal is just avoidance and is a better option than causing existing installations to update to a flawed package. Workaround: pkg-get -s http://blastwave.berlios.de/csw/stable -U -i apache The current stable apache is the same as the previous working unstable apache. Updates are unaffected by this. James. From ihsan at dogan.ch Wed Apr 5 13:27:26 2006 From: ihsan at dogan.ch (Ihsan Dogan) Date: Wed, 05 Apr 2006 13:27:26 +0200 Subject: [csw-users] help In-Reply-To: <443388B2.1070601@sun.com> References: <443388B2.1070601@sun.com> Message-ID: <4433A99E.7090201@dogan.ch> pkgrm on 05.04.2006 11:06 Juan Plaza - Sun Microsystems said the following: > Hi, > > Somebody knows how to uninstall KDE for Solaris 10 x86? > > Thanks. > > > -- > > * Juan Plaza Flores* > Preemptive Services Engineer > > *Sun Microsystems Ib?rica* > Serrano Galvache 56, Centro Empresarial Parque Norte > Madrid 28033 > Phone x86780 / +34 91 7676780 > Mobile 679985421 > Email juan.plaza at sun.com > > > > ------------------------------------------------------------------------ > > _______________________________________________ > users mailing list > users at lists.blastwave.org > https://lists.blastwave.org/mailman/listinfo/users -- ihsan at dogan.ch http://ihsan.dogan.ch/ From crimson at unspeakable.org Wed Apr 5 16:04:51 2006 From: crimson at unspeakable.org (Scott Walker) Date: Wed, 05 Apr 2006 11:04:51 -0300 Subject: [csw-users] help In-Reply-To: <443388B2.1070601@sun.com> References: <443388B2.1070601@sun.com> Message-ID: <4433CE83.1000802@unspeakable.org> You work for sun, But don't know how to remove packages from your own companies operating system!?! BTW man pkgrm :) Juan Plaza - Sun Microsystems wrote: | Hi, | | Somebody knows how to uninstall KDE for Solaris 10 x86? | | Thanks. | | | | ------------------------------------------------------------------------ | | _______________________________________________ | users mailing list | users at lists.blastwave.org | https://lists.blastwave.org/mailman/listinfo/users From limited at paypal.com Sun Apr 9 11:36:17 2006 From: limited at paypal.com (PayPal Security Departament) Date: Sun, 9 Apr 2006 04:36:17 -0500 Subject: [csw-users] Your account access has been limited Message-ID: <200604090936.k399aHSI008134@cedar.propagation.net> An HTML attachment was scrubbed... URL: http://lists.blastwave.org/pipermail/users/attachments/20060409/01fbd2dc/attachment.html From delrio at mie.utoronto.ca Mon Apr 10 16:38:16 2006 From: delrio at mie.utoronto.ca (Oscar del Rio) Date: Mon, 10 Apr 2006 10:38:16 -0400 Subject: [csw-users] help In-Reply-To: <443388B2.1070601@sun.com> References: <443388B2.1070601@sun.com> Message-ID: <443A6DD8.1070507@mie.utoronto.ca> > Somebody knows how to uninstall KDE for Solaris 10 x86? KDE is not a single package but a bunch of them. pkginfo | grep CSWkde pkgrm everyone of them From dclarke at blastwave.org Wed Apr 12 08:09:04 2006 From: dclarke at blastwave.org (Dennis Clarke) Date: Wed, 12 Apr 2006 02:09:04 -0400 (EDT) Subject: [csw-users] KDE fontproblem Message-ID: <4751.209.226.150.37.1144822144.squirrel@mail.blastwave.org> I will forward this to the correct list: users at lists.blastwave.org Dennis Clarke ------------------------------------------------------------------------ Subject: KDE fontproblem From: Martti Hamunen To: announce at lists.blastwave.org Content-Type: text/plain Message-Id: <1144881606.857.1.camel at unik> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6.330 Date: Thu, 13 Apr 2006 01:40:06 +0300 Content-Transfer-Encoding: 7bit X-Virus-Scanned: amavisd-new at blastwave.org Hello, I am new here and new with Solaris 10 too. (Linux user over ten years.) I have font problem with KDE 3,4. In Sun Java Desktop System and CDE fonts are ok, but in KDE much worse. I have KDE now "/opt/csw/kde-gcc/". I hope that someone can help me. mjh From announce-bounces at lists.blastwave.org Wed Apr 12 08:34:19 2006 From: announce-bounces at lists.blastwave.org (announce-bounces at lists.blastwave.org) Date: Wed, 12 Apr 2006 08:34:19 +0200 Subject: [csw-users] Forward of moderated message Message-ID: An embedded message was scrubbed... From: Martti Hamunen Subject: KDE fontproblem Date: Thu, 13 Apr 2006 01:40:06 +0300 Size: 1791 Url: http://lists.blastwave.org/pipermail/users/attachments/20060412/fb1c52e3/attachment.mht From martti.hamunen at netikka.fi Thu Apr 13 06:38:40 2006 From: martti.hamunen at netikka.fi (Martti Hamunen) Date: Thu, 13 Apr 2006 07:38:40 +0300 Subject: [csw-users] KDE fontproblem Message-ID: <1144903120.980.0.camel@unik> Hello, I am new here and new with Solaris 10 too. (Linux user over ten years.) I have font problem with KDE 3,4. In Sun Java Desktop System and CDE fonts are ok, but in KDE much worse. I have KDE now "/opt/csw/kde-gcc/". I hope that someone can help me. mjh From vaillant at ganil.fr Wed Apr 12 13:52:59 2006 From: vaillant at ganil.fr (Vaillant Daniel) Date: Wed, 12 Apr 2006 13:52:59 +0200 Subject: [csw-users] do not know what to do ? help Message-ID: <443CEA1B.3030407@ganil.fr> ....................................... .................................. Installation of was successful. Trying to install dependancy openldap No existing install of CSWoldap found. Installing... Note: Use of md5 disabled in config md5 utility temporarily non-functional assuming local file openldap-2.3.20-SunOS5.8-sparc-CSW.pkg.gz valid to use Analysing special files... 6749 blocks Trying to install dependancy openldap_client No existing install of CSWoldapclient found. Installing... Note: Use of md5 disabled in config md5 utility temporarily non-functional assuming local file openldap_client-2.3.20-SunOS5.8-sparc-CSW.pkg.gz valid to use Analysing special files... 1763 blocks Error: dependancy openldap_rt (CSWoldaprt) not up to date Call pkg-get again in 'upgrade all' mode eg: '/opt/csw/bin/pkg-get upgrade' This will then upgrade all packages cleanly ____________________________________________________________________ This is WHAT i got (on more than one machines) as I was doing pkg-get install mozilla (on others machines I got for install gnupg...) I did nothing of the order of remove or savage suppression...... TO cope the pb what should I install before this install pseudo dependancy or what should I remove (manually or by pkg-get -r to resettle this lot I did on certain machine the upgrade and it didn't help contraty to what is said. Thank you. I am under a solaris 9, exactly: gansgr{root}153: more /etc/release Solaris 9 9/05 s9s_u8wos_05 SPARC Copyright 2005 Sun Microsystems, Inc. All Rights Reserved. Use is subject to license terms. Assembled 04 August 2005 This is a fast question, I intend to peruse the archive, what i never did (must first acclimate) thank you 2. -- ----------------------------------------------------------------------- sy VAILLANT Daniel mailto:vaillant at ganil.fr re GANIL GIP (Syst&Res) Vox:(+33)(0)2 31 45 46 84 mi B.P. 5027 Fax:(+33)(0)2 31 45 46 65 @ 14076 CAEN-Cedex 5 Web: http://www.ganil.fr ........................................................................ Le temps s'?coule, l'espace se dilate, l'?nergie se mat?rialise et tout le reste est commentaire. Miche Cass? Du vide et de la cr?ation From a.cervellin at virgilio.it Wed Apr 12 14:25:10 2006 From: a.cervellin at virgilio.it (alessio) Date: Wed, 12 Apr 2006 13:25:10 +0100 (GMT+01:00) Subject: [csw-users] do not know what to do ? help Message-ID: <10a8e0ff17e.a.cervellin@virgilio.it> > This is WHAT i got (on more than one machines) as I was doing >pkg- get install mozilla [...] try a "pkg-get -uU", then try again "pkg-get -i mozilla" if you really want mozilla... but maybe you want seamonkey, which is the new version of mozilla (aka 1.8.0.1), indeed the CSWmozilla package is abadoned. From andy at riftware.com Wed Apr 12 22:20:13 2006 From: andy at riftware.com (Andrew Chandler) Date: Wed, 12 Apr 2006 15:20:13 -0500 Subject: [csw-users] cvs source snapshot for 1.12.14 Message-ID: <005601c65e6e$832b62f0$06b328c0@AChandlerV> How hard would it be to get a CSW built snapshot of the current cvs 1.12.14 feature branch? We have several cvs clients that just broke when we went to 1.12.13 and it turns out its because of a zlib issue they have fixed in the current source for 1.12.14. We're looking at downloading /building ourselves but I didn't know if the cvs maintainer could build it easily so that it would upgrade our pkg-get based system. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.blastwave.org/pipermail/users/attachments/20060412/8550926e/attachment.html From a.cervellin at acm.org Wed Apr 12 22:26:08 2006 From: a.cervellin at acm.org (Alessio Cervellin) Date: Wed, 12 Apr 2006 22:26:08 +0200 Subject: [csw-users] cvs source snapshot for 1.12.14 In-Reply-To: <005601c65e6e$832b62f0$06b328c0@AChandlerV> References: <005601c65e6e$832b62f0$06b328c0@AChandlerV> Message-ID: <443D6260.1060403@acm.org> Andrew Chandler wrote: > How hard would it be to get a CSW built snapshot of the current cvs > 1.12.14 feature branch? We have several cvs clients that just broke > when we went to 1.12.13 and it turns out its because of a zlib issue > they have fixed in the current source for 1.12.14. We?re looking at > downloading /building ourselves but I didn?t know if the cvs maintainer > could build it easily so that it would upgrade our pkg-get based system. you can fill a package upgrade request here: http://www.blastwave.org/mantis/index.php From andy at riftware.com Wed Apr 12 22:51:46 2006 From: andy at riftware.com (Andrew Chandler) Date: Wed, 12 Apr 2006 15:51:46 -0500 Subject: [csw-users] cvs source snapshot for 1.12.14 In-Reply-To: <443D6260.1060403@acm.org> Message-ID: <006401c65e72$eb9dae20$06b328c0@AChandlerV> Turns out CSW is already installing the fixed version of zlib so our build guy just downloaded the 1.12.13 cvs sources and is compiling with the option to use external zlib. It appears to have even figured out that it wants to install to /opt/csw/bin !! must be reading a config file or something so I guess we'll hold off on the update request until we see how this goes - thanks! -----Original Message----- From: users-bounces+andy=riftware.com at lists.blastwave.org [mailto:users-bounces+andy=riftware.com at lists.blastwave.org] On Behalf Of Alessio Cervellin Sent: Wednesday, April 12, 2006 3:26 PM To: questions and discussions Subject: Re: [csw-users] cvs source snapshot for 1.12.14 Andrew Chandler wrote: > How hard would it be to get a CSW built snapshot of the current cvs > 1.12.14 feature branch? We have several cvs clients that just broke > when we went to 1.12.13 and it turns out its because of a zlib issue > they have fixed in the current source for 1.12.14. We're looking at > downloading /building ourselves but I didn't know if the cvs maintainer > could build it easily so that it would upgrade our pkg-get based system. you can fill a package upgrade request here: http://www.blastwave.org/mantis/index.php _______________________________________________ users mailing list users at lists.blastwave.org https://lists.blastwave.org/mailman/listinfo/users From asmoore at blastwave.org Thu Apr 13 00:51:36 2006 From: asmoore at blastwave.org (Alex Moore) Date: Wed, 12 Apr 2006 17:51:36 -0500 Subject: [csw-users] do not know what to do ? help In-Reply-To: <443CEA1B.3030407@ganil.fr> References: <443CEA1B.3030407@ganil.fr> Message-ID: <20060412175136.00000494@sws602.mcsun.local> On Wed, 12 Apr 2006 13:52:59 +0200 vaillant at ganil.fr (Vaillant Daniel) wrote: > Error: dependancy openldap_rt (CSWoldaprt) not up to date > Call pkg-get again in 'upgrade all' mode > eg: '/opt/csw/bin/pkg-get upgrade' > This will then upgrade all packages cleanly run `pkg-get -Uu` first. According to this message, that will update openldap_rt. Then run your original pkg-get again. Alex -- From kbmetz at pertinent.net Thu Apr 13 04:37:57 2006 From: kbmetz at pertinent.net (Kevin) Date: Wed, 12 Apr 2006 19:37:57 -0700 Subject: [csw-users] mod-auth-mysql Message-ID: <443DB985.9030905@pertinent.net> Ok, I'm at wits end here. I'm trying to get mod-auth-mysql compiled on a Solaris 10 box that I'm working on. So far I've downloaded all the blastwave packages (apache2, apache2-devel, mysql, gcc4, etc). But, for the life of my I can't get it to compile. I tried the source forge page http://sourceforge.net/projects/modauthmysql It won't compile, I get an error about 'cc: command not found'. If I try and tell it to use cc=gcc then I get errors about invalid options, etc. I've tried several versions and nothing seems to want to compile on this box and I don't understand what libtool under apache does either. I do have my paths set correct (/opt/csw/bin:/opt/csw/gcc4/bin) If anyone could give me any assistance it would greatly be appreciated. Thanks Kevin From comand at blastwave.org Thu Apr 13 06:38:48 2006 From: comand at blastwave.org (Cory Omand) Date: Wed, 12 Apr 2006 21:38:48 -0700 Subject: [csw-users] mod-auth-mysql In-Reply-To: <443DB985.9030905@pertinent.net> References: <443DB985.9030905@pertinent.net> Message-ID: On 4/12/06, Kevin wrote: > Ok, I'm at wits end here. I'm trying to get mod-auth-mysql compiled on a > Solaris 10 box that I'm working on. So far I've downloaded all the > blastwave packages (apache2, apache2-devel, mysql, gcc4, etc). But, for > the life of my I can't get it to compile. > > I tried the source forge page http://sourceforge.net/projects/modauthmysql > > It won't compile, I get an error about 'cc: command not found'. If I try > and tell it to use cc=gcc then I get errors about invalid options, etc. > I've tried several versions and nothing seems to want to compile on this > box and I don't understand what libtool under apache does either. > > I do have my paths set correct (/opt/csw/bin:/opt/csw/gcc4/bin) > > If anyone could give me any assistance it would greatly be appreciated. Hi, Apache2 modules must be built with the same compiler as apache2 itself was built with, so GCC won't work. You can download the newest Sun Studio free of charge. Once you have that installed, and you can find 'cc' in your path, you should be able to get started. Regards, Cory. From dclarke at blastwave.org Thu Apr 13 22:24:41 2006 From: dclarke at blastwave.org (Dennis Clarke) Date: Thu, 13 Apr 2006 16:24:41 -0400 (EDT) Subject: [csw-users] Active discussion about open source software for Solaris Message-ID: <1529.209.226.147.103.1144959881.squirrel@mail.blastwave.org> ALL : There is an active and vibrant discussion ongoing within the OpenSolaris project that addresses the issue of open source software packages for Solaris and the Companion CD in particular. The discussion has been heated at time and possibly even outright inflammatory. My concern is that the community here be aware of this discussion and I ask that you get involved if you can. There is a vast array of talent here and there is a distinct possibility that we can provide input that will help the entire Solaris user base. This is a very good thing and its a discussion that is long overdue. Dennis Clarke =========== Example post to the OpenSolaris mail list ============ > Dennis Clarke writes: >> > On 4/13/06, Dennis Clarke wrote: >> >> > Dennis Clarke wrote: >> >> >>> Dennis Clarke wrote: >> >> >> I blatantly disagree with the creation of yet another separate >> project that completely replaces services and processes that >> already exist ... > > Where, then, would be the right place to discuss the sorts of issues > that the use of open source software on Solaris raises? https://lists.blastwave.org/mailman/listinfo If you do not see the list that is right then one will be created. > For instance, we have the interesting issue of what to do when some > open source package becomes a fundamental part of Open Solaris itself. > There are many such examples to look at -- libtecla, tcp_wrappers, > OpenSSL. These packages need to be created in such a fashion that they work smoothly with every supported current release of Solaris on all supported architectures with the posibility for expansion into other architectures. PowerPC for example. Solaris 8 is still shipping and very much supported. We need to look at each of the current releases and determine how each to proceed. That is beyond the scope of this discussion and should be had in a mail list dedicated to the topic and within the boundaries of a project focused on delivering open source software to ALL Solaris users on supported architectures past and present. See the lists above. > What should be done about that? Should this other consolidation > (whether it's Blastwave, something else, or even both) continue to > deliver those same bits? What technical issues arise in doing so? Also beyond the scope of this thread but perfectly reasonable in a list such as users at lists.blastwave.org or some new list that you feel needs to be created. > What packages should be migrated over and treated as parts of the > system? I don't doubt that we've missed the boat here, and that there > are common parts that "everybody" installs. Do we have a plan for > them? The only plan that we had was to create everything from scratch with the exception of a few SUNW packages and put them all into the /opt/csw tree regardless if the software title already existed in the wos in the Solaris product. Since the Solaris Community was excluded from discussions about what goes into the Solaris product then the only reasonable course of action was to "fork" and start over from scratch. Years ago. Hence the massive pile of libs that exist in the CSW software tree at Blastwave. All integrated to work with each other and tested continually. > I think it'd be great to have a place to discuss all this. See the lists server I mentioned above. The Solaris Community built the list server on quad CPU Enterprise class Sun hardware. > I don't have a stake in this -- I don't really care whether the answer is > Blastwave, sunfreeware, companion CD, or anything else -- other than > seeing that the Open Solaris community looks at the problem seriously. The problem was looked at seriously. As serious as cancer. The only course of action at the time was to start from scratch and create everything we needed in /opt/csw. > If all it ends up doing is recommending some existing solution, I'd be > thrilled. Any existing solution is insufficient to address the needs of all the existing Solaris revs and certainly do not address ALL the needs of future releases. OpenSolaris distros also need to be given support although they may choose to do _anything_ . As I have said over and over now, the Solaris Community has existed for a long long time and needed to address serious problems with the existing closed processes. The doors are always open. -- Dennis Clarke From eric.enright at gmail.com Fri Apr 14 20:16:15 2006 From: eric.enright at gmail.com (Eric Enright) Date: Fri, 14 Apr 2006 14:16:15 -0400 Subject: [csw-users] Fwd: Maintainer Verification Message-ID: <3a74b99d0604141116u3c864e83jfcec96375590fc7a@mail.gmail.com> Hello, The forwarded message is from a discussion on osol-discuss concerning myself and the identity verification required of new Blastwave maintainers. As I mentioned in the thread, I am willing to work with whoever/do whatever to get my identity proven. Currently I am a part time Computer Programmer Analyst student at Fanshawe College in London, Ontario, Canada and graduate this year. In the fall I will be (acceptance pending) attending The University of Western Ontario in Computer Sciences. I do currently work full time, but in a non-technical field, and my employer likely doesn't care about any of this. I want to work with Blastwave because I depend on it for a number of applications and libraries. Most software I do build for myself is linked against it, and I have seen mention at various times of others wanting some of this same software built on Solaris. Thus, it makes sense to me to get it integrated. So, what can we do? Regards, Eric ---------- Forwarded message ---------- From: Dennis Clarke Date: Apr 14, 2006 7:41 AM Subject: Re: [osol-discuss] Project proposal: Nevada Companion Software To: Eric Enright Cc: casper.dik at sun.com, Stefan Teleman , opensolaris-discuss at opensolaris.org, Glynn Foster , phil at blastwave.org > > Twice over the past two years I have made attempts at joining the > Blastwave maintainer community, only to ultimately be rejected because > I do not have a "work email address" (I am a student (older student, > far from a freshman)). This was explained to me by Phil Brown as > being for legal reasons, as employers are more responsible for the > actions of their employees than educational institutions are. Fair > enough, this makes some sense to me, especially considering the > setting of many Solaris installations. > > In that regard, there is /some/ exclusivity at Blastwave. This rather > put me off, since one of the projects has accepted patches by me in > the past which provides Solaris support (Licq), and another one of the > projects now lists packages created by me on their homepage (gtkpod). > The latter even has CSW dependencies, and was created using modified > cswutils scripts. > > This post is a bit offtopic, I admit, but "exclusivity" activated > something in my brain like a keyword. I am a happy Blastwave user who > has been following most of this discussion. > Eric, this is a really tough policy. It is tough to enforce and tough to tell people, good people, that no, we can not have you building software that will be running in the servers at Lockheed Martin, NASA and MIT. The issue of liability has been a very tough one but it was needed. Let's consider the posibility that someone joins and claims to be a programmer for company XYZ Inc. In truth they work for no one. We call up company XYZ to confirm that they actually work there and then someone will say "yes, they work here and we will put you right through." In truth it is two people in the same room and their business is to destroy servers with really nasty software. So we have another stage of verification. Someone must actually know this person and be able to verify them. Also a really tough policy to enforce. I think we had a person in Germany that waited for a while before someone could drive over to them and meet them. We also had to say goodbye to another valuable maintainer because he could not be verified. Have there been exceptions? Absolutely. No one ever questioned Eric Boutilier or Torrey McMahon ( http://blogs.sun.com/roller/page/torrey ) or J?rg Schilling. But some measures, as I am sure you will agree, need to be enforced to ensure safety and quality. Clearly we need to look at your case again. -- Dennis Clarke -- Eric Enright From a.cervellin at acm.org Sun Apr 16 11:51:42 2006 From: a.cervellin at acm.org (Alessio Cervellin) Date: Sun, 16 Apr 2006 11:51:42 +0200 Subject: [csw-users] [announce] Seamonkey 1.0.1 now available on testing Message-ID: <444213AE.3010701@acm.org> Seamonkey 1.0.1 (aka Mozilla suite 1.8.0.2) is now available for testing on http://www.blastwave.org/testing This is an important update, it has improved stability and contains the following *security* fixes: MFSA 2006-29 Spoofing with translucent windows MFSA 2006-28 Security check of js_ValueToFunctionObject() can be circumvented MFSA 2006-26 Mail Multiple Information Disclosure MFSA 2006-25 Privilege escalation through Print Preview MFSA 2006-24 Privilege escalation using crypto.generateCRMFRequest MFSA 2006-23 File stealing by changing input type MFSA 2006-22 CSS Letter-Spacing Heap Overflow Vulnerability MFSA 2006-20 Crashes with evidence of memory corruption (rv:1.8.0.2) From TFSchiller at gmx.de Mon Apr 17 15:04:09 2006 From: TFSchiller at gmx.de (Thomas F. Schiller) Date: Mon, 17 Apr 2006 15:04:09 +0200 Subject: [csw-users] Fwd: Maintainer Verification In-Reply-To: <3a74b99d0604141116u3c864e83jfcec96375590fc7a@mail.gmail.com> References: <3a74b99d0604141116u3c864e83jfcec96375590fc7a@mail.gmail.com> Message-ID: <20060417150409.0000625b@sealion> Hello, I am not very happy about what you wrote:-( Well, I can understand that blastwave wants to know the maintainer on the other hand there are already a lot of packages old. Python for example and I got already software not running on the old blastwave version. I am using sylpheed-claws 2.1.0 RC2, there is already 2.1.1. I am not blaming Alex because he is maintaining a lot of packages and imho Sylpheed-claws (including the dependencies) is already enough work for one freelancer who is not paid for the work. I am really impressed what big amount of work Alex is doing and because of this I installed sun studio to build packages of my own. BUT I read this I don't have the hope that I may do it for blastwave in the near future. So I will sit down and wait that less and less people are doing more and more work. I am becoming angry when I am reading sentences like this: "But some measures, as I am sure you will agree, need to be enforced to ensure safety and quality. Quality means (well at least in my company here in Germany) also that emails are answered and the fulfillment of commitments. To make it clear: I ordered a DVD last October, I started a research at Germans customs in February, they never received a DVD with my name on it. One email was answered after I complained about it. The email with the results of the German customs is still unanswered. On Fri, 14 Apr 2006 14:16:15 -0400 "Eric Enright" wrote: > Hello, > > The forwarded message is from a discussion on osol-discuss concerning > myself and the identity verification required of new Blastwave > maintainers. As I mentioned in the thread, I am willing to work with > whoever/do whatever to get my identity proven. > > Currently I am a part time Computer Programmer Analyst student at > Fanshawe College in London, Ontario, Canada and graduate this year. > In the fall I will be (acceptance pending) attending The University of > Western Ontario in Computer Sciences. I do currently work full time, > but in a non-technical field, and my employer likely doesn't care > about any of this. > > I want to work with Blastwave because I depend on it for a number of > applications and libraries. Most software I do build for myself is > linked against it, and I have seen mention at various times of others > wanting some of this same software built on Solaris. Thus, it makes > sense to me to get it integrated. > > So, what can we do? > > Regards, > Eric > > > > ---------- Forwarded message ---------- > From: Dennis Clarke > Date: Apr 14, 2006 7:41 AM > Subject: Re: [osol-discuss] Project proposal: Nevada Companion Software > To: Eric Enright > Cc: casper.dik at sun.com, Stefan Teleman , > opensolaris-discuss at opensolaris.org, Glynn Foster > , phil at blastwave.org > > > > > > Twice over the past two years I have made attempts at joining the > > Blastwave maintainer community, only to ultimately be rejected because > > I do not have a "work email address" (I am a student (older student, > > far from a freshman)). This was explained to me by Phil Brown as > > being for legal reasons, as employers are more responsible for the > > actions of their employees than educational institutions are. Fair > > enough, this makes some sense to me, especially considering the > > setting of many Solaris installations. > > > > In that regard, there is /some/ exclusivity at Blastwave. This rather > > put me off, since one of the projects has accepted patches by me in > > the past which provides Solaris support (Licq), and another one of the > > projects now lists packages created by me on their homepage (gtkpod). > > The latter even has CSW dependencies, and was created using modified > > cswutils scripts. > > > > This post is a bit offtopic, I admit, but "exclusivity" activated > > something in my brain like a keyword. I am a happy Blastwave user who > > has been following most of this discussion. > > > > Eric, this is a really tough policy. It is tough to enforce and tough to > tell people, good people, that no, we can not have you building software > that will be running in the servers at Lockheed Martin, NASA and MIT. The > issue of liability has been a very tough one but it was needed. > > Let's consider the posibility that someone joins and claims to be a > programmer for company XYZ Inc. In truth they work for no one. We call up > company XYZ to confirm that they actually work there and then someone will > say "yes, they work here and we will put you right through." > > In truth it is two people in the same room and their business is to destroy > servers with really nasty software. > > So we have another stage of verification. Someone must actually know this > person and be able to verify them. Also a really tough policy to enforce. > I think we had a person in Germany that waited for a while before someone > could drive over to them and meet them. We also had to say goodbye to > another valuable maintainer because he could not be verified. > > Have there been exceptions? Absolutely. No one ever questioned Eric > Boutilier or Torrey McMahon ( http://blogs.sun.com/roller/page/torrey ) or > J?rg Schilling. But some measures, as I am sure you will agree, need to be > enforced to ensure safety and quality. > > Clearly we need to look at your case again. > > -- > Dennis Clarke > > > > -- > Eric Enright > _______________________________________________ > users mailing list > users at lists.blastwave.org > https://lists.blastwave.org/mailman/listinfo/users > From crimson at unspeakable.org Mon Apr 17 16:32:34 2006 From: crimson at unspeakable.org (Scott Walker) Date: Mon, 17 Apr 2006 11:32:34 -0300 Subject: [csw-users] Fwd: Maintainer Verification In-Reply-To: <20060417150409.0000625b@sealion> References: <3a74b99d0604141116u3c864e83jfcec96375590fc7a@mail.gmail.com> <20060417150409.0000625b@sealion> Message-ID: <4443A702.3060706@unspeakable.org> OT semi, How does this policy flow through to maintainers for offical distro sites? I've been trying for about 6 months now to get on the distro list. As I've been mirroring it since then. I've submitted my info on the "sign up here to become a mirror" But that never resulted in a Hello, welcome, or a good bye sorry we're full ATM. Some kind of a response would be nice. Once again slightly OT, but this fits under the policies section and I was curious :) Thomas F. Schiller wrote: | Hello, | | I am not very happy about what you wrote:-( | | Well, I can understand that blastwave wants to know the maintainer on the other hand there are already a lot of packages old. | Python for example and I got already software not running on the old blastwave version. | I am using sylpheed-claws 2.1.0 RC2, there is already 2.1.1. I am not blaming Alex because he is maintaining a lot of packages and imho Sylpheed-claws (including the dependencies) is already enough work for one freelancer who is not paid for the work. | I am really impressed what big amount of work Alex is doing and because of this I installed sun studio to build packages of my own. | BUT I read this I don't have the hope that I may do it for blastwave in the near future. | So I will sit down and wait that less and less people are doing more and more work. | | I am becoming angry when I am reading sentences like this: | "But some measures, as I am sure you will agree, need to be enforced to ensure safety and quality. | | Quality means (well at least in my company here in Germany) also that emails are answered and the fulfillment of commitments. | To make it clear: I ordered a DVD last October, I started a research at Germans customs in February, they never received a DVD with my name on it. | One email was answered after I complained about it. The email with the results of the German customs is still unanswered. | | | On Fri, 14 Apr 2006 14:16:15 -0400 | "Eric Enright" wrote: | |> Hello, |> |> The forwarded message is from a discussion on osol-discuss concerning |> myself and the identity verification required of new Blastwave |> maintainers. As I mentioned in the thread, I am willing to work with |> whoever/do whatever to get my identity proven. |> |> Currently I am a part time Computer Programmer Analyst student at |> Fanshawe College in London, Ontario, Canada and graduate this year. |> In the fall I will be (acceptance pending) attending The University of |> Western Ontario in Computer Sciences. I do currently work full time, |> but in a non-technical field, and my employer likely doesn't care |> about any of this. |> |> I want to work with Blastwave because I depend on it for a number of |> applications and libraries. Most software I do build for myself is |> linked against it, and I have seen mention at various times of others |> wanting some of this same software built on Solaris. Thus, it makes |> sense to me to get it integrated. |> |> So, what can we do? |> |> Regards, |> Eric |> |> |> |> ---------- Forwarded message ---------- |> From: Dennis Clarke |> Date: Apr 14, 2006 7:41 AM |> Subject: Re: [osol-discuss] Project proposal: Nevada Companion Software |> To: Eric Enright |> Cc: casper.dik at sun.com, Stefan Teleman , |> opensolaris-discuss at opensolaris.org, Glynn Foster |> , phil at blastwave.org |> |> |>> Twice over the past two years I have made attempts at joining the |>> Blastwave maintainer community, only to ultimately be rejected because |>> I do not have a "work email address" (I am a student (older student, |>> far from a freshman)). This was explained to me by Phil Brown as |>> being for legal reasons, as employers are more responsible for the |>> actions of their employees than educational institutions are. Fair |>> enough, this makes some sense to me, especially considering the |>> setting of many Solaris installations. |>> |>> In that regard, there is /some/ exclusivity at Blastwave. This rather |>> put me off, since one of the projects has accepted patches by me in |>> the past which provides Solaris support (Licq), and another one of the |>> projects now lists packages created by me on their homepage (gtkpod). |>> The latter even has CSW dependencies, and was created using modified |>> cswutils scripts. |>> |>> This post is a bit offtopic, I admit, but "exclusivity" activated |>> something in my brain like a keyword. I am a happy Blastwave user who |>> has been following most of this discussion. |>> |> Eric, this is a really tough policy. It is tough to enforce and tough to |> tell people, good people, that no, we can not have you building software |> that will be running in the servers at Lockheed Martin, NASA and MIT. The |> issue of liability has been a very tough one but it was needed. |> |> Let's consider the posibility that someone joins and claims to be a |> programmer for company XYZ Inc. In truth they work for no one. We call up |> company XYZ to confirm that they actually work there and then someone will |> say "yes, they work here and we will put you right through." |> |> In truth it is two people in the same room and their business is to destroy |> servers with really nasty software. |> |> So we have another stage of verification. Someone must actually know this |> person and be able to verify them. Also a really tough policy to enforce. |> I think we had a person in Germany that waited for a while before someone |> could drive over to them and meet them. We also had to say goodbye to |> another valuable maintainer because he could not be verified. |> |> Have there been exceptions? Absolutely. No one ever questioned Eric |> Boutilier or Torrey McMahon ( http://blogs.sun.com/roller/page/torrey ) or |> J?rg Schilling. But some measures, as I am sure you will agree, need to be |> enforced to ensure safety and quality. |> |> Clearly we need to look at your case again. |> |> -- |> Dennis Clarke |> |> |> |> -- |> Eric Enright |> _______________________________________________ |> users mailing list |> users at lists.blastwave.org |> https://lists.blastwave.org/mailman/listinfo/users |> | _______________________________________________ | users mailing list | users at lists.blastwave.org | https://lists.blastwave.org/mailman/listinfo/users From gmAB.20.rmaeder at spamgourmet.com Mon Apr 17 16:44:54 2006 From: gmAB.20.rmaeder at spamgourmet.com (Roman Maeder) Date: Mon, 17 Apr 2006 16:44:54 +0200 Subject: [csw-users] which KDE version on 'stable'? Message-ID: my up-to-date package versions for KDE (stable branch, after "pkg-get -U" and "pkg-get compare") on Solaris 8 look like: kde_gcc_dtlogin 3.4.2,REV=2005.09.16 SAME kdeaddons_gcc 3.4.2 SAME kdeadmin_gcc 3.4.1 SAME kdeartwork_gcc 3.4.1 SAME kdebase_gcc 3.4.2,REV=2005.09.20 SAME kdeedu_gcc 3.5.1 SAME kdegames_gcc 3.5.1 SAME kdegraphics_gcc 3.4.2 SAME kdelibs_gcc 3.4.2 SAME kdemultimedia_gcc 3.4.2 SAME kdenetwork_gcc 3.4.3 SAME kdepim_gcc 3.4.1 SAME kdeutils_gcc 3.4.2 SAME which is quite a collection of different version numbers. Is this really all up to date? Which version of KDE is this supposed to be? Roman From maybird1776 at yahoo.com Tue Apr 18 20:25:41 2006 From: maybird1776 at yahoo.com (ken mays) Date: Tue, 18 Apr 2006 11:25:41 -0700 (PDT) Subject: [csw-users] Fwd: [csw-maintainers] [Fwd: which KDE version on 'stable'?] Message-ID: <20060418182541.36304.qmail@web33608.mail.mud.yahoo.com> For anyone use CSW_kdegcc: What you are seeing in the build versions was the last time the package was patched/updated under the KDE 3.4.x branch (last version being 3.4.3). The latest CSW_kdegcc is mainly based on the KDE 3.4.3 branch, with a few optional packages from KDE v3.5.x. ~ Ken Mays __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com -------------- next part -------------- An embedded message was scrubbed... From: Alessio Cervellin Subject: [csw-maintainers] [Fwd: [csw-users] which KDE version on 'stable'?] Date: Mon, 17 Apr 2006 17:37:54 +0200 Size: 4776 Url: http://lists.blastwave.org/pipermail/users/attachments/20060418/2513b372/attachment.mht From pub.cra at gmail.com Wed Apr 19 11:29:32 2006 From: pub.cra at gmail.com (Pub cra) Date: Wed, 19 Apr 2006 11:29:32 +0200 Subject: [csw-users] security updates on the stable branch? Message-ID: <2b7a00120604190229i2d607e42ucd033ce414ca1a76@mail.gmail.com> Hi, I use the unstable branch of blastwave and I am pretty happy with it. I see you have now a stable branch what makes it very interesting for the solaris 8 servers at work (replacing sunfreeware). I wonder if there are security uploads to the stable branch or that it's stays the same until the next stable migration 3 month later. Thx, Cra -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.blastwave.org/pipermail/users/attachments/20060419/540af0c5/attachment.html From james at blastwave.org Wed Apr 19 11:44:17 2006 From: james at blastwave.org (James Lee) Date: Wed, 19 Apr 2006 09:44:17 GMT Subject: [csw-users] security updates on the stable branch? In-Reply-To: <2b7a00120604190229i2d607e42ucd033ce414ca1a76@mail.gmail.com> References: <2b7a00120604190229i2d607e42ucd033ce414ca1a76@mail.gmail.com> Message-ID: <20060419.9441700.3110964707@landeck.jamesipoos.com> On 19/04/06, 10:29:32, Pub cra wrote regarding [csw-users] security updates on the stable branch?: > I wonder if there are security uploads to the stable branch or that it's > stays the same until the next stable migration 3 month later. If there is a security or loss-of-data issue then stable will be updated and by a mid term stable release. An example of this was the 2006-02 interim release which included Posgresql 8.1.3. James. From pub.cra at gmail.com Wed Apr 19 12:02:41 2006 From: pub.cra at gmail.com (Pub cra) Date: Wed, 19 Apr 2006 12:02:41 +0200 Subject: [csw-users] security updates on the stable branch? In-Reply-To: <20060419.9441700.3110964707@landeck.jamesipoos.com> References: <2b7a00120604190229i2d607e42ucd033ce414ca1a76@mail.gmail.com> <20060419.9441700.3110964707@landeck.jamesipoos.com> Message-ID: <2b7a00120604190302s1edf5023ocbe7ee2216dbb7a8@mail.gmail.com> On 4/19/06, James Lee wrote: > > On 19/04/06, 10:29:32, Pub cra wrote regarding > [csw-users] security updates on the stable branch?: > > > I wonder if there are security uploads to the stable branch or that it's > > stays the same until the next stable migration 3 month later. > > If there is a security or loss-of-data issue then stable will > be updated and by a mid term stable release. > > An example of this was the 2006-02 interim release which included > Posgresql 8.1.3. > > So no on package-based updates (like a apache or openssh hole). Mmm, though decision between stable and unstable then. Thanks for your answer, cra -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.blastwave.org/pipermail/users/attachments/20060419/a33747d6/attachment.html From james at blastwave.org Wed Apr 19 12:18:41 2006 From: james at blastwave.org (James Lee) Date: Wed, 19 Apr 2006 10:18:41 GMT Subject: [csw-users] security updates on the stable branch? In-Reply-To: <2b7a00120604190302s1edf5023ocbe7ee2216dbb7a8@mail.gmail.com> References: <2b7a00120604190229i2d607e42ucd033ce414ca1a76@mail.gmail.com> <20060419.9441700.3110964707@landeck.jamesipoos.com> <2b7a00120604190302s1edf5023ocbe7ee2216dbb7a8@mail.gmail.com> Message-ID: <20060419.10184100.836901299@landeck.jamesipoos.com> On 19/04/06, 11:02:41, Pub cra wrote regarding Re: [csw-users] security updates on the stable branch?: > > > I wonder if there are security uploads to the stable branch or that it's > > > stays the same until the next stable migration 3 month later. > > > > If there is a security or loss-of-data issue then stable will > > be updated and by a mid term stable release. > > > > An example of this was the 2006-02 interim release which included > > Posgresql 8.1.3. > > > > > So no on package-based updates (like a apache or openssh hole). Mmm, > though decision between stable and unstable then. Not sure what you mean, if there was a problem with apache or openssh, then yes, their packages would be updated and added. All packages in stable would be QA checked as a set and a mid-term stable release takes place. James. From pub.cra at gmail.com Thu Apr 20 19:29:16 2006 From: pub.cra at gmail.com (Pub cra) Date: Thu, 20 Apr 2006 19:29:16 +0200 Subject: [csw-users] security updates on the stable branch? In-Reply-To: <20060419.10184100.836901299@landeck.jamesipoos.com> References: <2b7a00120604190229i2d607e42ucd033ce414ca1a76@mail.gmail.com> <20060419.9441700.3110964707@landeck.jamesipoos.com> <2b7a00120604190302s1edf5023ocbe7ee2216dbb7a8@mail.gmail.com> <20060419.10184100.836901299@landeck.jamesipoos.com> Message-ID: <2b7a00120604201029h66b3ed36n5ec1d82783baf17e@mail.gmail.com> On 4/19/06, James Lee wrote: > Not sure what you mean, if there was a problem with apache or openssh, > then yes, their packages would be updated and added. All packages in > stable would be QA checked as a set and a mid-term stable release takes > place. > > Sorry, I'm was thinking of the debian style of security updates when I posed the question: the update (patching/upgrade, QA and release happens by package and not by release. So by example when an apache vulnerability is found, only *that* package is patched and re-released inmediately. So between releases you have lots of updates. Blastwaves seems to work diffently if I read your mail correctly. You correct a collection of bugs on several packages and release a "release" (on timely basis, but with mid-term releases if necessary). Advantage is less breakage, disavantage is that it's *possible * that you'll be running vulnerable software for weeks or months (until the next mid-term stable release). Please do not read my mail as a critic, as I really do appreciate your work. I just need to evaluate things correctly before taking a decision to move a serverpark from sunfreeware/self-compile to blastwave. C. From a.cervellin at acm.org Fri Apr 21 22:18:33 2006 From: a.cervellin at acm.org (Alessio Cervellin) Date: Fri, 21 Apr 2006 22:18:33 +0200 Subject: [csw-users] pbzip2 0.9.6 available on testing Message-ID: <44493E19.6080901@acm.org> pbzip2 0.9.6 is now available on /testing (this is a new CSW package). PBZIP2 is a parallel implementation of the bzip2 block-sorting file compressor that uses pthreads and achieves near-linear speedup on SMP machines. The output of this version is fully compatible with bzip2 v1.0.2 (ie: anything compressed with pbzip2 can be decompressed with bzip2). It is simply great: its speedup against bzip2 is linear to the number of processors or cores of the system, e.g. on a dual sparc processor machine it compresses a file in half the time of the standard bzip2, and it produces a fully backward compatible .bz2 archive. Same gain is achieved on machines having single processor with dual core like intel centrino duo. Once you try it, you'll forget the old bzip2. http://compression.ca/pbzip2/ Dependencies: CSWbzip2 From Kenny.Raby at acs-inc.com Fri Apr 21 23:29:28 2006 From: Kenny.Raby at acs-inc.com (Raby, Kenny G) Date: Fri, 21 Apr 2006 16:29:28 -0500 Subject: [csw-users] Getting Seamonkey to work from local display Message-ID: <0861D2805488D448AF65D655E899D97A03DCF93C@amsexc01.ams.acs-inc.net> I've been trying to bring up seamonkey (I also tried mozilla which is having the same problem) on the local display of a SunBlade 150 running Solaris 9, but it core dumps (under CDE, I can't get CSW Gnome to work either) If I bring it up using SecureCRT with X-Windows forwarding to Exceed on my Windows desktop it works. Any suggestions as to what I am doing wrong? Kenny -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.blastwave.org/pipermail/users/attachments/20060421/b61b417b/attachment.html From a.cervellin at acm.org Fri Apr 21 23:33:45 2006 From: a.cervellin at acm.org (Alessio Cervellin) Date: Fri, 21 Apr 2006 23:33:45 +0200 Subject: [csw-users] Getting Seamonkey to work from local display In-Reply-To: <0861D2805488D448AF65D655E899D97A03DCF93C@amsexc01.ams.acs-inc.net> References: <0861D2805488D448AF65D655E899D97A03DCF93C@amsexc01.ams.acs-inc.net> Message-ID: <44494FB9.6020007@acm.org> Raby, Kenny G wrote: > > I've been trying to bring up seamonkey (I also tried mozilla which is > having the same problem) on the local display of a SunBlade 150 running > Solaris 9, but it core dumps (under CDE, I can't get CSW Gnome to work > either) just as a test, why not to try CSWxfce as desktop manager? From Kenny.Raby at acs-inc.com Fri Apr 21 23:35:51 2006 From: Kenny.Raby at acs-inc.com (Raby, Kenny G) Date: Fri, 21 Apr 2006 16:35:51 -0500 Subject: [csw-users] Getting Seamonkey to work from local display Message-ID: <0861D2805488D448AF65D655E899D97A03DCF93D@amsexc01.ams.acs-inc.net> > -----Original Message----- > From: users-bounces+kenny.raby=acs-inc.com at lists.blastwave.org > [mailto:users-bounces+kenny.raby=acs-inc.com at lists.blastwave.org] On > Behalf Of Alessio Cervellin > Sent: Friday, April 21, 2006 2:34 PM > To: questions and discussions > Subject: Re: [csw-users] Getting Seamonkey to work from local display > > Raby, Kenny G wrote: > > > > I've been trying to bring up seamonkey (I also tried mozilla which is > > having the same problem) on the local display of a SunBlade 150 running > > Solaris 9, but it core dumps (under CDE, I can't get CSW Gnome to work > > either) > > just as a test, why not to try CSWxfce as desktop manager? Actually I did a few months ago and had the same problem as Gnome in that when I select it from the login screen it just doesn't work. But since I did that a few months ago I can try again. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.blastwave.org/pipermail/users/attachments/20060421/3a8fd22c/attachment.html From a.cervellin at acm.org Fri Apr 21 23:40:04 2006 From: a.cervellin at acm.org (Alessio Cervellin) Date: Fri, 21 Apr 2006 23:40:04 +0200 Subject: [csw-users] Getting Seamonkey to work from local display In-Reply-To: <0861D2805488D448AF65D655E899D97A03DCF93D@amsexc01.ams.acs-inc.net> References: <0861D2805488D448AF65D655E899D97A03DCF93D@amsexc01.ams.acs-inc.net> Message-ID: <44495134.2050405@acm.org> Raby, Kenny G wrote: > Actually I did a few months ago and had the same problem as Gnome in > that when I select it from the login screen it just doesn't work. But > since I did that a few months ago I can try again. mmm, if CSWgnome does not work, CSWxfce does not work, CSWseamonkey does not work, CSWmozilla does not work.... i suspect there is something messed up on your system. maybe you could totally remove all the CSW packages (and so /opt/csw) and install again everything. Or maybe there is something corrupted in the system libraries, who knows... From Kenny.Raby at acs-inc.com Fri Apr 21 23:49:57 2006 From: Kenny.Raby at acs-inc.com (Raby, Kenny G) Date: Fri, 21 Apr 2006 16:49:57 -0500 Subject: [csw-users] Getting Seamonkey to work from local display Message-ID: <0861D2805488D448AF65D655E899D97A03DCF93E@amsexc01.ams.acs-inc.net> > -----Original Message----- > From: users-bounces+kenny.raby=acs-inc.com at lists.blastwave.org > [mailto:users-bounces+kenny.raby=acs-inc.com at lists.blastwave.org] On > Behalf Of Alessio Cervellin > Sent: Friday, April 21, 2006 2:40 PM > To: questions and discussions > Subject: Re: [csw-users] Getting Seamonkey to work from local display > > Raby, Kenny G wrote: > > > Actually I did a few months ago and had the same problem as Gnome in > > that when I select it from the login screen it just doesn't work. But > > since I did that a few months ago I can try again. > > mmm, if CSWgnome does not work, CSWxfce does not work, CSWseamonkey does > not work, CSWmozilla does not work.... i suspect there is something > messed up on your system. maybe you could totally remove all the CSW > packages (and so /opt/csw) and install again everything. Or maybe there > is something corrupted in the system libraries, who knows... I actually did the removal of all CSW packages and reinstall of CSW on the SB 150 about a week ago as well. I also tried to get CSW Gnome to work on a V890 and a V880 which had recently been installed with Solaris 9 and it didn't work on them either. seamonkey works if I do the X-11 tunneling to Exceed on my Windows PC or even if I just export a Display to my Windows PC. On the V890 I also tried bringing it up under Sun's Gnome and it core dumped. Bringing up a CDE desktop using XDMCP via Exceed it will core dump. On the V890 and V880 Sun's version of Mozilla works well (I don't have it installed on the SunBlade 150) under CDE via Reflection/Exceed. So whatever I'm doing wrong I've done it multiple times on multiple machines. Kenny -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.blastwave.org/pipermail/users/attachments/20060421/3f767a1b/attachment.html From Kenny.Raby at acs-inc.com Sat Apr 22 00:02:36 2006 From: Kenny.Raby at acs-inc.com (Raby, Kenny G) Date: Fri, 21 Apr 2006 17:02:36 -0500 Subject: [csw-users] Getting Seamonkey to work from local display Message-ID: <0861D2805488D448AF65D655E899D97A03DCF93F@amsexc01.ams.acs-inc.net> > Behalf Of Alessio Cervellin > Sent: Friday, April 21, 2006 2:34 PM > To: questions and discussions > Subject: Re: [csw-users] Getting Seamonkey to work from local display > > Raby, Kenny G wrote: > > > > I've been trying to bring up seamonkey (I also tried mozilla which is > > having the same problem) on the local display of a SunBlade 150 running > > Solaris 9, but it core dumps (under CDE, I can't get CSW Gnome to work > > either) > > just as a test, why not to try CSWxfce as desktop manager? I just installed xfce and xfce_dtlogin on the SB150 (I use XFCE on Linux boxes as well so am familiar with it but only very basically) I log out, select it from the log in screen it comes up with a nice pretty blue screen with the mouse and XFCE on it and nothing else. The very first time I try to click the right mouse button a rectangle appears as if it wants to bring up the menu but then it goes away and nothing else happens. It just sits there. Pretty but not very useful. I even rebooted but that didn't change anything. Kenny -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.blastwave.org/pipermail/users/attachments/20060421/31bb280d/attachment.html From hasei at mail.com Sat Apr 22 01:54:08 2006 From: hasei at mail.com (Spectrum V. Maligning) Date: Fri, 21 Apr 2006 19:54:08 -0400 Subject: [csw-users] like to watch child porno? Message-ID: <7425969985.20060421195408@mail.com> Like to watch child porno? You need to hide your IP address! by the soft for hiding your IP and get 100 links with the best CP sites for free! http://www.netconceal.com/ From james at blastwave.org Sat Apr 22 10:18:20 2006 From: james at blastwave.org (James Lee) Date: Sat, 22 Apr 2006 08:18:20 GMT Subject: [csw-users] Getting Seamonkey to work from local display In-Reply-To: <0861D2805488D448AF65D655E899D97A03DCF93C@amsexc01.ams.acs-inc.net> References: <0861D2805488D448AF65D655E899D97A03DCF93C@amsexc01.ams.acs-inc.net> Message-ID: <20060422.8182000.895621624@landeck.jamesipoos.com> On 21/04/06, 22:29:28, "Raby," Kenny G wrote regarding [csw-users] Getting Seamonkey to work from local display: > I've been trying to bring up seamonkey (I also tried mozilla which is > having the same problem) on the local display of a SunBlade 150 running > Solaris 9, but it core dumps (under CDE, I can't get CSW Gnome to work > either) > If I bring it up using SecureCRT with X-Windows forwarding to Exceed on > my Windows desktop it works. What is your colour depth on each display? (Run xdpyinfo and look for depths.) James. From eric.enright at gmail.com Sat Apr 22 11:15:35 2006 From: eric.enright at gmail.com (Eric Enright) Date: Sat, 22 Apr 2006 05:15:35 -0400 Subject: [csw-users] Fwd: Maintainer Verification In-Reply-To: <20060417150409.0000625b@sealion> References: <3a74b99d0604141116u3c864e83jfcec96375590fc7a@mail.gmail.com> <20060417150409.0000625b@sealion> Message-ID: <3a74b99d0604220215w1229d7csdb5e62f3fe647894@mail.gmail.com> On 4/17/06, Thomas F. Schiller wrote: > I am not very happy about what you wrote:-( Neither am I.. > BUT I read this I don't have the hope that I may do it for blastwave in the near future. > So I will sit down and wait that less and less people are doing more and more work. You echo many of my own thoughts.. > Quality means (well at least in my company here in Germany) also that emails are answered and the fulfillment of commitments. Indeed. My original post to this list about this matter was over a week ago, and the only replies received were yours and Scott Walker's. When discussing this on osol-discuss, replies were quick and to the point. When moving the discussion to a more proper forum, it appears to fall upon deaf ears. I can understand being busy, and not having the answer to every question, but in Dennis' transcript below I see a commitment. Even an acknowledgement of this thread would be nice. Here I am using CSW every day, and wanting to help. How can we make this happen? > > > On Fri, 14 Apr 2006 14:16:15 -0400 > "Eric Enright" wrote: > > > Hello, > > > > The forwarded message is from a discussion on osol-discuss concerning > > myself and the identity verification required of new Blastwave > > maintainers. As I mentioned in the thread, I am willing to work with > > whoever/do whatever to get my identity proven. > > > > Currently I am a part time Computer Programmer Analyst student at > > Fanshawe College in London, Ontario, Canada and graduate this year. > > In the fall I will be (acceptance pending) attending The University of > > Western Ontario in Computer Sciences. I do currently work full time, > > but in a non-technical field, and my employer likely doesn't care > > about any of this. > > > > I want to work with Blastwave because I depend on it for a number of > > applications and libraries. Most software I do build for myself is > > linked against it, and I have seen mention at various times of others > > wanting some of this same software built on Solaris. Thus, it makes > > sense to me to get it integrated. > > > > So, what can we do? > > > > Regards, > > Eric > > > > > > > > ---------- Forwarded message ---------- > > From: Dennis Clarke > > Date: Apr 14, 2006 7:41 AM > > Subject: Re: [osol-discuss] Project proposal: Nevada Companion Software > > To: Eric Enright > > Cc: casper.dik at sun.com, Stefan Teleman , > > opensolaris-discuss at opensolaris.org, Glynn Foster > > , phil at blastwave.org > > > > > > > > > > Twice over the past two years I have made attempts at joining the > > > Blastwave maintainer community, only to ultimately be rejected because > > > I do not have a "work email address" (I am a student (older student, > > > far from a freshman)). This was explained to me by Phil Brown as > > > being for legal reasons, as employers are more responsible for the > > > actions of their employees than educational institutions are. Fair > > > enough, this makes some sense to me, especially considering the > > > setting of many Solaris installations. > > > > > > In that regard, there is /some/ exclusivity at Blastwave. This rather > > > put me off, since one of the projects has accepted patches by me in > > > the past which provides Solaris support (Licq), and another one of the > > > projects now lists packages created by me on their homepage (gtkpod). > > > The latter even has CSW dependencies, and was created using modified > > > cswutils scripts. > > > > > > This post is a bit offtopic, I admit, but "exclusivity" activated > > > something in my brain like a keyword. I am a happy Blastwave user who > > > has been following most of this discussion. > > > > > > > Eric, this is a really tough policy. It is tough to enforce and tough to > > tell people, good people, that no, we can not have you building software > > that will be running in the servers at Lockheed Martin, NASA and MIT. The > > issue of liability has been a very tough one but it was needed. > > > > Let's consider the posibility that someone joins and claims to be a > > programmer for company XYZ Inc. In truth they work for no one. We call up > > company XYZ to confirm that they actually work there and then someone will > > say "yes, they work here and we will put you right through." > > > > In truth it is two people in the same room and their business is to destroy > > servers with really nasty software. > > > > So we have another stage of verification. Someone must actually know this > > person and be able to verify them. Also a really tough policy to enforce. > > I think we had a person in Germany that waited for a while before someone > > could drive over to them and meet them. We also had to say goodbye to > > another valuable maintainer because he could not be verified. > > > > Have there been exceptions? Absolutely. No one ever questioned Eric > > Boutilier or Torrey McMahon ( http://blogs.sun.com/roller/page/torrey ) or > > J?rg Schilling. But some measures, as I am sure you will agree, need to be > > enforced to ensure safety and quality. > > > > Clearly we need to look at your case again. > > > > -- > > Dennis Clarke > > > > > > > > -- > > Eric Enright > > _______________________________________________ > > users mailing list > > users at lists.blastwave.org > > https://lists.blastwave.org/mailman/listinfo/users > > > -- Eric Enright From james at blastwave.org Sat Apr 22 13:06:01 2006 From: james at blastwave.org (James Lee) Date: Sat, 22 Apr 2006 11:06:01 GMT Subject: [csw-users] security updates on the stable branch? References: <2b7a00120604190229i2d607e42ucd033ce414ca1a76@mail.gmail.com> <20060419.9441700.3110964707@landeck.jamesipoos.com> <2b7a00120604190302s1edf5023ocbe7ee2216dbb7a8@mail.gmail.com> <20060419.10184100.836901299@landeck.jamesipoos.com> <2b7a00120604201029h66b3ed36n5ec1d82783baf17e@mail.gmail.com> Message-ID: <20060422.11060100.3166170071@landeck.jamesipoos.com> On 20/04/06, 18:29:16, Pub cra wrote regarding Re: [csw-users] security updates on the stable branch?: > Sorry, I'm was thinking of the debian style of security updates when I > posed the question: the update (patching/upgrade, QA and release > happens by package and not by release. > So by example when an apache vulnerability is found, only *that* > package is patched and re-released inmediately. So between releases > you have lots of updates. > Blastwaves seems to work diffently if I read your mail correctly. You > correct a collection of bugs on several packages and release a > "release" (on timely basis, but with mid-term releases if necessary). > Advantage is less breakage, disavantage is that it's *possible * that > you'll be running vulnerable software for weeks or months (until the > next mid-term stable release). A release is a collection of individual packages, the problem is that most packages don't work in isolation as just individual packages and sometimes a particular version package only works when used in combination with other package of particular versions. Pick-n-mix of packages or adding one-at-a-time does *not* work. A "stable release" is a QAed collection, and is distinct from "a release to unstable" (or "a release to stable" if there was such a thing). A "stable release" should be seen as an "integrated software suite". Examples: CSWfoo requires CSWbar, then CSWbar is updated. Does CSWfoo still work? Answer: not necessarily. If it is found that in order to add CSWbar a new CSWfoo is needed then *both* have to be and will be added to stable. The chain can get longer because it might be that CSWbaz either requires or supports CSWfoo and it too has to be updated. Those packages not affected will not be added to stable mid term. The term "package tree" is often used, it's not a tree in the usual sense, the interconnection forms not a tree but a network: http://pfelecan.free.fr/blastwave/dependencyGraph/cswdepgraph.html As to the immediacy of response to security updates it's only happened once in our short history. Our posgresql packages with the fix were in the stable release candidate and being tested before the problem was publicly announced by Postgres themselves. Stable does not mean just old. > Please do not read my mail as a critic, as I really do appreciate your > work. I just need to evaluate things correctly before taking a > decision to move a serverpark from sunfreeware/self-compile to > blastwave. Not at all, you ask both probing and useful questions. I know that many of these issues are not clear from the Blastwave documentation. Blastwave has the potential to be great, it's not there yet, but I hope at least that the direction is correct and it will progress. James. From yurchp at yahoo.com Sun Apr 23 01:14:41 2006 From: yurchp at yahoo.com (Philip Yurchuk) Date: Sat, 22 Apr 2006 16:14:41 -0700 (PDT) Subject: [csw-users] Any dspam users? Message-ID: <20060422231441.88914.qmail@web35801.mail.mud.yahoo.com> I'm trying to set up dspam and running into some trouble. I'm using Solaris 10 x86, and trying to integrate dspam with Postfix and MySQL 4 (both from Blastwave). I was wondering if anyone got dspam working on their machine, and if they'd be kind enough to share their their configure options, and postfix/dspam conf files. Thanks in advance, Phil __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From yurchp at yahoo.com Sun Apr 23 06:23:38 2006 From: yurchp at yahoo.com (Philip Yurchuk) Date: Sat, 22 Apr 2006 21:23:38 -0700 (PDT) Subject: [csw-users] mod_php for Apache2? Message-ID: <20060423042338.25886.qmail@web35802.mail.mud.yahoo.com> Hello, I noticed that mod_php (specifically mod_php_core) has support for Apache 2, but I don't see any ap2_modphp package to install it. Is there a how-to document for this? A 3rd party PHP app I use won't work under PHP 5, so if I can switch to 4 that'd be a big help. Thanks, Philip __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From mark at markround.com Sun Apr 23 10:58:17 2006 From: mark at markround.com (Mark Round) Date: Sun, 23 Apr 2006 09:58:17 +0100 Subject: [csw-users] mod_php for Apache2? In-Reply-To: <20060423042338.25886.qmail@web35802.mail.mud.yahoo.com> References: <20060423042338.25886.qmail@web35802.mail.mud.yahoo.com> Message-ID: <1035F48C-3305-4659-A2E4-22BE4AA73C5A@markround.com> Hiya, You don't need a separate package. The core mod_php package has both SAPIs for Spache 1 and Apache 2 - when you install it, it will activate itself in whichever verison of CSW Apache you have installed (or even both). Hope this helps, -Mark On 23 Apr 2006, at 5:23 am, Philip Yurchuk wrote: > Hello, > > I noticed that mod_php (specifically mod_php_core) has > support for Apache 2, but I don't see any ap2_modphp > package to install it. Is there a how-to document for > this? A 3rd party PHP app I use won't work under PHP > 5, so if I can switch to 4 that'd be a big help. > > Thanks, > Philip > > > __________________________________________________ > Do You Yahoo!? > Tired of spam? Yahoo! Mail has the best spam protection around > http://mail.yahoo.com > _______________________________________________ > users mailing list > users at lists.blastwave.org > https://lists.blastwave.org/mailman/listinfo/users > -- Mark Round mark at markround.com :wq From owigger at geo.unizh.ch Sun Apr 23 22:54:51 2006 From: owigger at geo.unizh.ch (Othmar Wigger) Date: Sun, 23 Apr 2006 22:54:51 +0200 (MEST) Subject: [csw-users] Xfce hangs (was: Getting Seamonkey to work) In-Reply-To: References: Message-ID: On Sat, 22 Apr 2006, Raby, Kenny G wrote: > > I just installed xfce and xfce_dtlogin on the SB150 (I use XFCE on Linux > boxes as well so am familiar with it but only very basically) > > I log out, select it from the log in screen it comes up with a nice pretty > blue screen with the mouse and XFCE on it and nothing else. The very first > time I try to click the right mouse button a rectangle appears as if it > wants to bring up the menu but then it goes away and nothing else happens. > It just sits there. Pretty but not very useful. I even rebooted but that > didn't change anything. Xfce hangs like this on all the Solaris10 boxes I ever installed with CSW. I found that killing the utaudio process helps. You can restart /opt/SUNWut/bin/utaudio later in the session and enjoy sound. Only the utaudio that gets started from Xfce session startup hangs. Othmar From yurchp at yahoo.com Mon Apr 24 00:29:13 2006 From: yurchp at yahoo.com (Philip Yurchuk) Date: Sun, 23 Apr 2006 15:29:13 -0700 (PDT) Subject: [csw-users] mod_php for Apache2? In-Reply-To: <1035F48C-3305-4659-A2E4-22BE4AA73C5A@markround.com> Message-ID: <20060423222913.30011.qmail@web35814.mail.mud.yahoo.com> Thanks! I had ap2_modphp5 installed, so I had to uninstall that, and reinstall mod_php. Now I'm back in business, and can start working on Tomcat/mod_jk integration :) Thanks again, Phil --- Mark Round wrote: > Hiya, > > You don't need a separate package. The core mod_php > package has both > SAPIs for Spache 1 and Apache 2 - when you install > it, it will > activate itself in whichever verison of CSW Apache > you have installed > (or even both). > > Hope this helps, > > -Mark > > On 23 Apr 2006, at 5:23 am, Philip Yurchuk wrote: > > > Hello, > > > > I noticed that mod_php (specifically mod_php_core) > has > > support for Apache 2, but I don't see any > ap2_modphp > > package to install it. Is there a how-to document > for > > this? A 3rd party PHP app I use won't work under > PHP > > 5, so if I can switch to 4 that'd be a big help. > > > > Thanks, > > Philip > > > > > > __________________________________________________ > > Do You Yahoo!? > > Tired of spam? Yahoo! Mail has the best spam > protection around > > http://mail.yahoo.com > > _______________________________________________ > > users mailing list > > users at lists.blastwave.org > > https://lists.blastwave.org/mailman/listinfo/users > > > > -- > Mark Round > mark at markround.com > :wq > > > > _______________________________________________ > users mailing list > users at lists.blastwave.org > https://lists.blastwave.org/mailman/listinfo/users > __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From mats.larsson at ericsson.com Mon Apr 24 09:50:08 2006 From: mats.larsson at ericsson.com (Mats Larsson) Date: Mon, 24 Apr 2006 09:50:08 +0200 Subject: [csw-users] pbzip2 0.9.6 available on testing In-Reply-To: <44493E19.6080901@acm.org> References: <44493E19.6080901@acm.org> Message-ID: <444C8330.80002@ericsson.com> On 2006-04-21 22:18, Alessio Cervellin wrote: > pbzip2 0.9.6 is now available on /testing (this is a new CSW package). Hmmm can't find it on http://www.blastwave.org/testing/ It shows up on http://www.blastwave.org/packages.php but I can't install it with pkg-get % pkg-get -Ui pbzip2 ... Updated description file ERROR: pbzip2 unrecognized Perhaps you need to run pkg-get -U % Am I missing something? /MOL From a.cervellin at acm.org Mon Apr 24 22:35:54 2006 From: a.cervellin at acm.org (Alessio Cervellin) Date: Mon, 24 Apr 2006 22:35:54 +0200 Subject: [csw-users] pbzip2 0.9.6 available on testing In-Reply-To: <444C8330.80002@ericsson.com> References: <44493E19.6080901@acm.org> <444C8330.80002@ericsson.com> Message-ID: <444D36AA.4070802@acm.org> Mats Larsson wrote: > Hmmm can't find it on http://www.blastwave.org/testing/ > > It shows up on http://www.blastwave.org/packages.php but I can't install > it with pkg-get > > % pkg-get -Ui pbzip2 > ... > Updated description file > ERROR: pbzip2 unrecognized > Perhaps you need to run pkg-get -U > % > > Am I missing something? it's not anymore in /testing because it passed in the unstable catalog just a few hours ago. try to update your catalog with pkg-get -U, if you can't still download it, than check that the mirror you are using is in sync with the very latest catalog. From mats.larsson at ericsson.com Tue Apr 25 09:34:04 2006 From: mats.larsson at ericsson.com (Mats Larsson) Date: Tue, 25 Apr 2006 09:34:04 +0200 Subject: [csw-users] pbzip2 0.9.6 available on testing In-Reply-To: <444D36AA.4070802@acm.org> References: <44493E19.6080901@acm.org> <444C8330.80002@ericsson.com> <444D36AA.4070802@acm.org> Message-ID: <444DD0EC.4050009@ericsson.com> On 2006-04-24 22:35, Alessio Cervellin wrote: > Mats Larsson wrote: > >> Hmmm can't find it on http://www.blastwave.org/testing/ >> >> It shows up on http://www.blastwave.org/packages.php but I can't install >> it with pkg-get >> >> % pkg-get -Ui pbzip2 >> ... >> Updated description file >> ERROR: pbzip2 unrecognized >> Perhaps you need to run pkg-get -U >> % >> >> Am I missing something? > > it's not anymore in /testing because it passed in the unstable catalog > just a few hours ago. > try to update your catalog with pkg-get -U, if you can't still download > it, than check that the mirror you are using is in sync with the very > latest catalog. I did try the following mirrors: http://blastwave.informatik.uni-erlangen.de/csw/unstable http://ibiblio.org/pub/packages/solaris/csw/unstable According to http://www.canoedissent.org.uk/mirrorStatus.jsp they are in sync. Still the same error. /MOL From james at blastwave.org Tue Apr 25 11:02:21 2006 From: james at blastwave.org (James Lee) Date: Tue, 25 Apr 2006 09:02:21 GMT Subject: [csw-users] pbzip2 0.9.6 available on testing In-Reply-To: <444DD0EC.4050009@ericsson.com> References: <44493E19.6080901@acm.org> <444C8330.80002@ericsson.com> <444D36AA.4070802@acm.org> <444DD0EC.4050009@ericsson.com> Message-ID: <20060425.9022100.3354081082@landeck.jamesipoos.com> On 25/04/06, 08:34:04, Mats Larsson wrote regarding Re: [csw-users] pbzip2 0.9.6 available on testing: > > it's not anymore in /testing because it passed in the unstable catalog > > just a few hours ago. > > try to update your catalog with pkg-get -U, if you can't still download > > it, than check that the mirror you are using is in sync with the very > > latest catalog. > I did try the following mirrors: > http://blastwave.informatik.uni-erlangen.de/csw/unstable > http://ibiblio.org/pub/packages/solaris/csw/unstable > According to http://www.canoedissent.org.uk/mirrorStatus.jsp they are in > sync. It also shows the latest catalog (2006-04-19 20:47 GMT) is older than the pbzip2 testing announcement. Obviously it's not yet come through the system. James. From mats.larsson at ericsson.com Tue Apr 25 11:10:44 2006 From: mats.larsson at ericsson.com (Mats Larsson) Date: Tue, 25 Apr 2006 11:10:44 +0200 Subject: [csw-users] pbzip2 0.9.6 available on testing In-Reply-To: <20060425.9022100.3354081082@landeck.jamesipoos.com> References: <44493E19.6080901@acm.org> <444C8330.80002@ericsson.com> <444D36AA.4070802@acm.org> <444DD0EC.4050009@ericsson.com> <20060425.9022100.3354081082@landeck.jamesipoos.com> Message-ID: <444DE794.6090509@ericsson.com> On 2006-04-25 11:02, James Lee wrote: > On 25/04/06, 08:34:04, Mats Larsson wrote > regarding Re: [csw-users] pbzip2 0.9.6 available on testing: > >>> it's not anymore in /testing because it passed in the unstable catalog >>> just a few hours ago. >>> try to update your catalog with pkg-get -U, if you can't still download >>> it, than check that the mirror you are using is in sync with the very >>> latest catalog. > >> I did try the following mirrors: >> http://blastwave.informatik.uni-erlangen.de/csw/unstable >> http://ibiblio.org/pub/packages/solaris/csw/unstable > >> According to http://www.canoedissent.org.uk/mirrorStatus.jsp they are in >> sync. > > It also shows the latest catalog (2006-04-19 20:47 GMT) is older > than the pbzip2 testing announcement. Obviously it's not yet come > through the system. OK, then I suppose the testing was far more faster than the system ;). -- Mats Larsson | Sr Software Analyst | R&D IT Stockholm | Ericsson AB From a.cervellin at acm.org Tue Apr 25 11:33:11 2006 From: a.cervellin at acm.org (Alessio Cervellin) Date: Tue, 25 Apr 2006 11:33:11 +0200 Subject: [csw-users] pbzip2 0.9.6 available on testing In-Reply-To: <444DE794.6090509@ericsson.com> References: <44493E19.6080901@acm.org> <444C8330.80002@ericsson.com> <444D36AA.4070802@acm.org> <444DD0EC.4050009@ericsson.com> <20060425.9022100.3354081082@landeck.jamesipoos.com> <444DE794.6090509@ericsson.com> Message-ID: <444DECD7.8090708@acm.org> Mats Larsson wrote: > OK, then I suppose the testing was far more faster than the system ;). what happened is that the package has been moved from /testing to /newpkgs, the next step is from phil which updates the database (and that's why you can already see it here http://www.blastwave.org/packages/pbzip2). now i guess the next step is the updating of the catalog and the distribution of the file to the mirrors. probably this step is still in process... From secure at bb&t.com Wed Apr 26 02:28:09 2006 From: secure at bb&t.com (BB&T Bank) Date: Wed, 26 Apr 2006 09:28:09 +0900 Subject: [csw-users] Attention BB&T Online Client Message-ID: <1146011289.54351.qmail@bb&t.com> An HTML attachment was scrubbed... URL: http://lists.blastwave.org/pipermail/users/attachments/20060426/882b1215/attachment.html From Roland.Egle at uibk.ac.at Wed Apr 26 16:22:06 2006 From: Roland.Egle at uibk.ac.at (Roland Egle) Date: Wed, 26 Apr 2006 16:22:06 +0200 Subject: [csw-users] openssh package Message-ID: <444F820E.4040902@uibk.ac.at> Hello How can i get informations about the compile options in this package? I am specially interested on the --with-pam option sincerelly Roland From a.cervellin at virgilio.it Wed Apr 26 16:30:15 2006 From: a.cervellin at virgilio.it (Alessio Cervellin) Date: Wed, 26 Apr 2006 15:30:15 +0100 (GMT+01:00) Subject: [csw-users] openssh package Message-ID: <10ad69b7e70.a.cervellin@virgilio.it> Da: Roland.Egle at uibk.ac.at > How can i get informations about the compile options in this package? >I am specially interested on the -- with-pam option try to check here: http://www.blastwave.org/packages. php/openssh then click on "view news and info" From gnutered at yahoo.com.au Thu Apr 27 05:55:45 2006 From: gnutered at yahoo.com.au (Tony Lewis) Date: Thu, 27 Apr 2006 13:55:45 +1000 Subject: [csw-users] a later GNOME? Message-ID: <445040C1.8040305@yahoo.com.au> Hey all, I'm a new subscriber, though I've been using the Blastwave s/w for about a year at work. What are the chances of getting an updated GNOME? GNOME is now 2.14, and 2.8 is starting to look a little aged, plus I'm having a Sol 9 + GNOME + VNC issue (see a soon-to-follow email) I realise that making the GNOME packages is likely to be no picnic. I had a quick stab using GARNOME yesterday. Hit brick walls quickly :-) Tony Lewis From lewis at tonyandrobyn.com Thu Apr 27 05:55:38 2006 From: lewis at tonyandrobyn.com (Tony and Robyn Lewis) Date: Thu, 27 Apr 2006 13:55:38 +1000 Subject: [csw-users] a later GNOME? Message-ID: <445040BA.9010500@tonyandrobyn.com> Hey all, I'm a new subscriber, though I've been using the Blastwave s/w for about a year at work. What are the chances of getting an updated GNOME? GNOME is now 2.14, and 2.8 is starting to look a little aged, plus I'm having a Sol 9 + GNOME + VNC issue (see a soon-to-follow email) I realise that making the GNOME packages is likely to be no picnic. I had a quick stab using GARNOME yesterday. Hit brick walls quickly :-) Tony Lewis From gnutered at yahoo.com.au Thu Apr 27 05:56:06 2006 From: gnutered at yahoo.com.au (Tony Lewis) Date: Thu, 27 Apr 2006 13:56:06 +1000 Subject: [csw-users] Solaris 9 + GNOME 2.8 / KDE 3.4 + Xvnc problem Message-ID: <445040D6.6090009@yahoo.com.au> I reported a bug a few days ago: http://www.blastwave.org/mantis/view_bug_page.php?f_id=1577 Is anyone else seeing this problem? It seems that when I run Xvnc at depth > 8, and try to log into a GNOME 2.8 or KDE 3.4 session, on a SPARC Solaris 9 box, I get a segfault. If I change any variable (CDE instead of GNOME/KDE, Sol 10 instead of 9, XDMCP rather than VNC, or depth = 8), it works. None of those are acceptable to my current problem, though, so I'm seeking some help in fixing this. Anyone got any suggestions? From doug at doughunt.co.uk Fri Apr 28 01:30:42 2006 From: doug at doughunt.co.uk (Doug) Date: Fri, 28 Apr 2006 00:30:42 +0100 Subject: [csw-users] upnp media server on Solaris SPARC Message-ID: <44515422.1010104@doughunt.co.uk> Hi Johan, I stumbled across your post on blastwave.org about running a upnp media server on a solaris box. I was wondering whether you had had any joy? Many thanks. Doug From customer.dept at chase.com Fri Apr 28 13:54:24 2006 From: customer.dept at chase.com (customer.dept at chase.com) Date: Fri, 28 Apr 2006 06:54:24 -0500 Subject: [csw-users] JPMorgan-Chase & Co. Suspension Notice Message-ID: An HTML attachment was scrubbed... URL: http://lists.blastwave.org/pipermail/users/attachments/20060428/2c00d108/attachment.html From tim.smith at degreec.com Fri Apr 28 13:55:00 2006 From: tim.smith at degreec.com (Tim Smith) Date: Fri, 28 Apr 2006 07:55:00 -0400 Subject: [csw-users] solaris10 release cycle In-Reply-To: <445040BA.9010500@tonyandrobyn.com> References: <445040BA.9010500@tonyandrobyn.com> Message-ID: <44520294.3060108@degreec.com> Anyone know when the next release of solaris10 is due? I have a couple installs pending and if its only a week or something away, I plan to hold off. -Tim Smith > > From realmcking at gmail.com Fri Apr 28 14:58:41 2006 From: realmcking at gmail.com (Mark McCoy) Date: Fri, 28 Apr 2006 07:58:41 -0500 Subject: [csw-users] solaris10 release cycle In-Reply-To: <44520294.3060108@degreec.com> References: <445040BA.9010500@tonyandrobyn.com> <44520294.3060108@degreec.com> Message-ID: Supposedly in June. On 4/28/06, Tim Smith wrote: > Anyone know when the next release of solaris10 is due? I have a couple > installs pending and if its only a week or something away, I plan to > hold off. > > -Tim Smith > > > > > > _______________________________________________ > users mailing list > users at lists.blastwave.org > https://lists.blastwave.org/mailman/listinfo/users > -- Mark McCoy -- Professional Unix geek If Tyranny and Oppression come to this land, it will be in the guise of fighting a foreign enemy. - James Madison, fourth US president (1751-1836) From customer.dept at chase.com Fri Apr 28 18:25:25 2006 From: customer.dept at chase.com (customer.dept at chase.com) Date: Fri, 28 Apr 2006 12:25:25 -0400 Subject: [csw-users] JPMorgan-Chase & Co. Suspension Notice Message-ID: An HTML attachment was scrubbed... URL: http://lists.blastwave.org/pipermail/users/attachments/20060428/e51a1643/attachment.html From ishikawa at yk.rim.or.jp Sat Apr 1 16:53:02 2006 From: ishikawa at yk.rim.or.jp (ci) Date: Sat, 01 Apr 2006 23:53:02 +0900 Subject: [csw-users] a package (but which one) removes a symlink /opt/csw and installs a real directory. In-Reply-To: 1143646990.7076.24.camel@solaris-nv-28-home Message-ID: <1143903182.2849.2.camel@solaris-nv-28-home> Thank you for the tips. Since I haven't got a clue to figure out which pakcage(s) caused the problem, I go with the use of loopback file system. > mount -F lofs /home/ishikawa/csw /opt/csw I put /export/home/ishikawa/csw and register the proper line in /etc/vfstab. (Putting /home/ishikawa/csw caused the initial automount to fail.) TIA. ci From ax11 at ax11.de Sat Apr 1 18:49:53 2006 From: ax11 at ax11.de (Thomas Amm) Date: Sat, 01 Apr 2006 18:49:53 +0200 Subject: [csw-users] FLAC encoding? In-Reply-To: <442A867A.5070303@gmx.net> References: <20060327220335.GG6249@katie.ctc.net> <442A712B.9080203@ax11.de> <442A867A.5070303@gmx.net> Message-ID: <442EAF31.3070705@ax11.de> Javier O. Augusto wrote: > Thomas Amm wrote: > >>Joe Reid wrote: >> >> >>>I don't have an diagnostics yet but I tried using flac to encode a wav >>>file this weekend - after 24 hours of accumulated CPU time I killed the >>>process. Should any normal 3-5 minute wav file take ...days to encode >>>in FLAC on a dual 900MHZ SunBlade 1000? >>> >>> >> >>No way, FLAC used to be pretty fast - but the actual flac hangs on my >>Blade1000 (Ultra Sparc III, 750MHz), too. >>Doesn't even seem to encode the first frame before it freezes. >> > > Just thinking out loud, is this code too x86 eccentric or what? > shouldn't it make use of vis+? > Have you tried building up from source? > > Regards, > Jay Could not get it built on Sparc v9. Howeve all the libs and binaries seem to be there 'make install' fails. Seems this old gcc/ui64 type bug is still unsolved :(. From pfelecan at blastwave.org Sun Apr 2 10:11:34 2006 From: pfelecan at blastwave.org (Peter FELECAN) Date: Sun, 02 Apr 2006 10:11:34 +0200 Subject: [csw-users] Emacs 22 snapsot 20060401 CVS in testing Message-ID: As promised, the monthly CVS snapshot of the next version of Emacs, in the testing area: http://www.blastwave.org/testing/emacs-22.0.50,REV=cvs20060401-SunOS5.8-i386-CSW.pkg.gz http://www.blastwave.org/testing/emacs-22.0.50,REV=cvs20060401-SunOS5.8-sparc-CSW.pkg.gz If you wish to use/test the bleeding edge Emacs, you're welcome. But, if there are issues, please report them upstream; I'll manage only the packaging side. To install this package, you need to remove all dependent packages and Emacs 21.4 itself; after that, you install, using pkgadd, the CVS Emacs corresponding to your architecture and, if you're a TeX user, the nifty AucTex package. Note that this version includes the successors of: oortgnus and emacscalc, available as Blastwave packages, and many other, previously separate, packages --- e.g., tramp. I'll made a new testing package once a month, until the public release. Enjoy -- Peter From ishikawa at yk.rim.or.jp Sun Apr 2 11:04:39 2006 From: ishikawa at yk.rim.or.jp (ishikawa at yk.rim.or.jp) Date: Sun, 2 Apr 2006 18:04:39 +0900 (JST) Subject: [csw-users] wine 0.9.10 on solaris 10 (solaris express nv b28) Message-ID: (Sorry this is a little bit lengthy) I tried to compile the latest wine-0.9.10 available from winehq web page. I referenced the wine-patch-kit web page at blasware and it was very informative. Obviously, there are newer files in wine-0.9.10 which are not addressed by the patches in wine-patch-kit and so here are some patches that I created for your reference. In the end, there were a couple of link errors and I appreciate helpful tips. Here is the list of comments and questions and finally the patch itself. (0) Suggested Improvement to wine-patch-kit web page. Before running maintain command, we need to run "cvs login". This may be too obvious to write in the guide, but it might help some people. e.g. export CVSROOT=:pserver:cvs at cvs.winehq.org:/home/wine cvs login (1) Patches to compile latest wine-0.9.10 from www.winehq.org See the patch output at the end. (2) Link error? I got the following link error at the end. Compiler problem? I am not sure. (Please note that due to a certain compatibility problem I have overwritten /usr/ccs/bin/ld with gnu ld. Well, original ld is saved under /usr/ccs/bin/ld.old) This is the compiler I used. (note that ld is actually gnu ld as noted above.) gcc -v Reading specs from /usr/sfw/lib/gcc/i386-pc-solaris2.11/3.4.3/specs Configured with: /builds/sfwnv-gate/usr/src/cmd/gcc/gcc-3.4.3/configure --prefix=/usr/sfw --with-as=/usr/sfw/bin/gas --with-gnu-as --with-ld=/usr/ccs/bin/ld --without-gnu-ld --enable-languages=c,c++,f77 --enable-shared Thread model: posix gcc version 3.4.3 (csl-sol210-3_4-20050802) bash-3.00$ Linker problem? This is the version of ld I use. (Again, please note that /usr/ccs/bin/ld is actually gnu ld). /usr/ccs/bin/ld --version GNU ld version 2.15 Copyright 2002 Free Software Foundation, Inc. This program is free software; you may redistribute it under the terms of the GNU General Public License. This program has absolutely no warranty. bash-3.00$ Or solaris express nevada b28 problem? Or my wine configure process problem? I have somehow -lrt and -lthread through all my Makefile. These additional libraries might be the cause of the problem. The link error I got at the end of "make -k". make -k gcc -o wine-kthread -Wl,--export-dynamic -Wl,--section-start,.interp=0x7bf00400 -Wl,--rpath,\$ORIGIN/`../tools/relpath /usr/local/bin /usr/local/lib` kthread.o main.o -L../libs/wine -lwine -L../libs/port -lwine_port ../libs/wine/libwine.so: undefined reference to `write at SUNW_0.9' ../libs/wine/libwine.so: undefined reference to `read at SUNW_0.9' collect2: ld returned 1 exit status *** Error code 1 make: Warning: Target `all' not remade because of errors Current working directory /home/ishikawa/local-src/wine-sources/wine-0.9.10/wine/loader *** Error code 1 The following command caused the error: cd loader && make `libdinput.def.a' is up to date. gcc -o wineserver -Wl,--rpath,\$ORIGIN/`../tools/relpath /usr/local/bin /usr/local/lib` atom.o change.o class.o clipboard.o console.o context_alpha.o context_i386.o context_powerpc.o context_sparc.o context_x86_64.o debugger.o directory.o event.o fd.o file.o handle.o hook.o mailslot.o main.o mapping.o mutex.o named_pipe.o object.o process.o ptrace.o queue.o region.o registry.o request.o semaphore.o serial.o signal.o snapshot.o sock.o symlink.o thread.o timer.o token.o trace.o unicode.o user.o window.o winstation.o sunptrace.o -L../libs/wine -lwine -L../libs/unicode -lwine_unicode -L../libs/port -lwine_port -lrt -lthread -lsocket -lnsl ../libs/wine/libwine.so: undefined reference to `write at SUNW_0.9' ../libs/wine/libwine.so: undefined reference to `read at SUNW_0.9' collect2: ld returned 1 exit status *** Error code 1 make: Warning: Target `all' not remade because of errors Current working directory /home/ishikawa/local-src/wine-sources/wine-0.9.10/wine/server *** Error code 1 The following command caused the error: cd server && make make: Warning: Target `all' not remade because of errors (3) Question: solaris 10 (actually nevada b28) freetype2 library issue. Configure doesn't pick up freetype2 library/header. So there are messages to that effect. Why? They *are* in /usr/sfw/include/freetype2/freetype/ /usr/sfw/lib/libfreetype.so.6 Maybe due to the fact that there is /usr/sfw/bin/freetype-config but, not /usr/sfw/bin/freetype2-config ? Still, it prints version 2.1.10 bash-3.00$ freetype-config --ftversion 2.1.10 Or do we need to pass special argument(s) to configure? (4) Finally the patches. The patch to compile wine-0.9.10 at winehq.com Due to the fact that I have (somehow) configured to use -lrt -lthread, most Makefiles had the additional -lrt and -lthread. (I am not sure why I have -lrt and -lthread. It seems that the wine-patch-kit doesn't handle these libraries.) e.g. Makefile or Make.rules contain these -lt -lthread in LIBS make variable. Ugh. I just noticed that I have date string in Japanese character code in diff output.. So I removed them to save trouble for some mail readers. If these cause problems, please let me know. diff -cibwr wine-0.9.10/wine/Make.rules wine-0.9.10-local-mods//wine/Make.rules *** wine-0.9.10/wine/Make.rules original date --- wine-0.9.10-local-mods//wine/Make.rules newer date. *************** *** 25,31 **** CC = gcc CFLAGS = -g -O2 CPPFLAGS = ! LIBS = -lsocket -lnsl BISON = bison LEX = flex LEXLIB = -ll --- 25,31 ---- CC = gcc CFLAGS = -g -O2 CPPFLAGS = ! LIBS = -lrt -lthread -lsocket -lnsl BISON = bison LEX = flex LEXLIB = -ll I omit these. I may have introduced more incompatibility problems than usual, but here goes the patch. dlls/iphlpapi Linking requires -lresolve to satisfy unresolved symbols. diff -cibwr wine-0.9.10/wine/dlls/iphlpapi/Makefile wine-0.9.10-local-mods//wine/dlls/iphlpapi/Makefile *** wine-0.9.10/wine/dlls/iphlpapi/Makefile today --- wine-0.9.10-local-mods//wine/dlls/iphlpapi/Makefile today *************** *** 71,77 **** CC = gcc CFLAGS = -g -O2 CPPFLAGS = ! LIBS = -lsocket -lnsl BISON = bison LEX = flex LEXLIB = -ll --- 71,78 ---- CC = gcc CFLAGS = -g -O2 CPPFLAGS = ! # add -lresolv ! LIBS = -lrt -lthread -lresolv -lsocket -lnsl BISON = bison LEX = flex LEXLIB = -ll dlls/msvcrt/time.c: I don't know for sure whether other systems require this, but solaris asctime_r() obviously takes the third argument. diff -cibwr wine-0.9.10/wine/dlls/msvcrt/time.c wine-0.9.10-local-mods//wine/dlls/msvcrt/time.c *** wine-0.9.10/wine/dlls/msvcrt/time.c 2006? old date --- wine-0.9.10-local-mods//wine/dlls/msvcrt/time.c today *************** *** 466,472 **** /* FIXME: may want to map from Unix codepage to CP_ACP */ #ifdef HAVE_ASCTIME_R ! asctime_r( &tm, data->asctime_buffer ); #else strcpy( data->asctime_buffer, asctime(&tm) ); #endif --- 466,472 ---- /* FIXME: may want to map from Unix codepage to CP_ACP */ #ifdef HAVE_ASCTIME_R ! asctime_r( &tm, data->asctime_buffer, 30 /* TODO/FIXME: CI */ ); #else strcpy( data->asctime_buffer, asctime(&tm) ); #endif *************** *** 487,493 **** if (!data->wasctime_buffer) data->wasctime_buffer = MSVCRT_malloc( 30*sizeof(MSVCRT_wchar_t) ); /* ought to be enough */ #ifdef HAVE_ASCTIME_R ! asctime_r( &tm, buffer ); #else strcpy( buffer, asctime(&tm) ); #endif --- 487,493 ---- if (!data->wasctime_buffer) data->wasctime_buffer = MSVCRT_malloc( 30*sizeof(MSVCRT_wchar_t) ); /* ought to be enough */ #ifdef HAVE_ASCTIME_R ! asctime_r( &tm, buffer, 30 * sizeof(MSVCRT_wchar_t) /* TODO/FIXME: CI */ ); #else strcpy( buffer, asctime(&tm) ); #endif dlls/ntdll/directory.c We need to include limits.h since PATH_MAX is defined there. Also, I added one volatile specifier to a line to shut up warning. (Actually there is another place a warning is generated, too.) diff -cibwr wine-0.9.10/wine/dlls/ntdll/directory.c wine-0.9.10-local-mods//wine/dlls/ntdll/directory.c *** wine-0.9.10/wine/dlls/ntdll/directory.c old date --- wine-0.9.10-local-mods//wine/dlls/ntdll/directory.c today *************** *** 57,62 **** --- 57,66 ---- # include #endif + /* TODO/FIXME: PATH_MAX */ + #include + + #define NONAMELESSUNION #define NONAMELESSSTRUCT #include "ntstatus.h" *************** *** 316,322 **** { volatile struct mnttab mntentry; ! struct mnttab *entry=&mntentry; struct stat st; char *device; --- 320,327 ---- { volatile struct mnttab mntentry; ! /* Added volatile below CI */ ! volatile struct mnttab *entry=&mntentry; struct stat st; char *device; dlls/ntdll/tape.c: Solaris 10 mt ioctl differences. diff -cibwr wine-0.9.10/wine/dlls/ntdll/tape.c wine-0.9.10-local-mods//wine/dlls/ntdll/tape.c *** wine-0.9.10/wine/dlls/ntdll/tape.c old date --- wine-0.9.10-local-mods//wine/dlls/ntdll/tape.c today *************** *** 163,170 **** */ static NTSTATUS TAPE_GetDriveParams( int fd, TAPE_GET_DRIVE_PARAMETERS *data ) { ! #ifdef HAVE_SYS_MTIO_H struct mtget get; NTSTATUS status; TRACE( "fd: %d\n", fd ); --- 163,176 ---- */ static NTSTATUS TAPE_GetDriveParams( int fd, TAPE_GET_DRIVE_PARAMETERS *data ) { ! #if defined(HAVE_SYS_MTIO_H) || defined(MTIOCGETDRIVETYPE) ! #ifdef MTIOCGETDRIVETYPE ! /* Solaris 10- actullay. */ ! struct mtdrivetype get; ! #else struct mtget get; + #endif + NTSTATUS status; TRACE( "fd: %d\n", fd ); *************** *** 171,177 **** --- 177,188 ---- memset( data, 0, sizeof(TAPE_GET_DRIVE_PARAMETERS) ); + #ifdef MTIOCGETDRIVETYPE + /* Solaris 10- actually. */ + status = TAPE_GetStatus( ioctl( fd, MTIOCGETDRIVETYPE, &get ) ); + #else status = TAPE_GetStatus( ioctl( fd, MTIOCGET, &get ) ); + #endif if (status != STATUS_SUCCESS) return status; *************** *** 179,189 **** --- 190,205 ---- data->Compression = FALSE; data->DataPadding = FALSE; data->ReportSetmarks = FALSE; + #ifdef MTIOCGETDRIVETYPE + /* Solaris 10- actually. */ + data->DefaultBlockSize = get.bsize; + #else #ifdef HAVE_STRUCT_MTGET_MT_BLKSIZ data->DefaultBlockSize = get.mt_blksiz; #else data->DefaultBlockSize = get.mt_dsreg & MT_ST_BLKSIZE_MASK; #endif + #endif data->MaximumBlockSize = data->DefaultBlockSize; data->MinimumBlockSize = data->DefaultBlockSize; data->MaximumPartitionCount = 1; *************** *** 200,207 **** */ static NTSTATUS TAPE_GetMediaParams( int fd, TAPE_GET_MEDIA_PARAMETERS *data ) { ! #ifdef HAVE_SYS_MTIO_H struct mtget get; NTSTATUS status; TRACE( "fd: %d\n", fd ); --- 216,230 ---- */ static NTSTATUS TAPE_GetMediaParams( int fd, TAPE_GET_MEDIA_PARAMETERS *data ) { ! #if defined(HAVE_SYS_MTIO_H) || defined(MTIOCGETDRIVETYPE) ! ! #if defined(MTIOCGETDRIVETYPE) ! /* Actually solaris 10- */ ! struct mtdrivetype get; ! #else struct mtget get; + #endif + NTSTATUS status; TRACE( "fd: %d\n", fd ); *************** *** 208,224 **** --- 231,258 ---- memset( data, 0, sizeof(TAPE_GET_MEDIA_PARAMETERS) ); + #ifdef MTIOCGETDRIVETYPE + /* Actually solaris 10- */ + status = TAPE_GetStatus( ioctl( fd, MTIOCGETDRIVETYPE, &get ) ); + #else status = TAPE_GetStatus( ioctl( fd, MTIOCGET, &get ) ); + #endif if (status != STATUS_SUCCESS) return status; data->Capacity.u.LowPart = 1024 * 1024 * 1024; data->Remaining.u.LowPart = 1024 * 1024 * 1024; + #ifdef MTIOCGETDRIVETYPE + /* Actually solaris 10- */ + data->BlockSize = get.bsize; + #else #ifdef HAVE_STRUCT_MTGET_MT_BLKSIZ data->BlockSize = get.mt_blksiz; #else data->BlockSize = get.mt_dsreg & MT_ST_BLKSIZE_MASK; #endif + #endif + data->PartitionCount = 1; #ifdef HAVE_STRUCT_MTGET_MT_GSTAT data->WriteProtected = GMT_WR_PROT(get.mt_gstat); *************** *** 375,381 **** --- 409,420 ---- TRACE( "fd: %d blocksize: 0x%08lx\n", fd, data->BlockSize ); + #ifdef MTSRSZ + /* Actually solaris 10- */ + cmd.mt_op = MTSRSZ; + #else cmd.mt_op = MTSETBLK; + #endif cmd.mt_count = data->BlockSize; return TAPE_GetStatus( ioctl( fd, MTIOCTOP, &cmd ) ); dlls/x11drv/winpos.c: I am not sure why, but the header files supplied under openwindows directory is a little old? In any case, unless I add xuti.h before extensions/shape.h include, compilation failed. diff -cibwr wine-0.9.10/wine/dlls/x11drv/winpos.c wine-0.9.10-local-mods//wine/dlls/x11drv/winpos.c *** wine-0.9.10/wine/dlls/x11drv/winpos.c old date --- wine-0.9.10-local-mods//wine/dlls/x11drv/winpos.c today *************** *** 21,28 **** --- 21,33 ---- #include "config.h" + #include #ifdef HAVE_LIBXSHAPE + + /*ci*/ + #include + #include #endif /* HAVE_LIBXSHAPE */ #include include/config.h: This is for reference-purposes only. This will be overwritten by everyone's local configure. diff -cibwr wine-0.9.10/wine/include/config.h wine-0.9.10-local-mods//wine/include/config.h *** wine-0.9.10/wine/include/config.h 2006? 4? 2? (?) --- wine-0.9.10-local-mods//wine/include/config.h 2006? 3? 28? (?) *************** *** 300,308 **** --- 300,314 ---- /* Define to 1 if you have the `resolv' library (-lresolv). */ /* #undef HAVE_LIBRESOLV */ + /* Define to 1 if you have the `rt' library (-lrt). */ + #define HAVE_LIBRT 1 + /* Define to 1 if you have the `socket' library (-lsocket). */ #define HAVE_LIBSOCKET 1 + /* Define to 1 if you have the `thread' library (-lthread). */ + #define HAVE_LIBTHREAD 1 + /* Define if you have the libxml2 library */ #define HAVE_LIBXML2 1 *************** *** 417,422 **** --- 423,431 ---- /* Define to 1 if the system has the type `mode_t'. */ #define HAVE_MODE_T 1 + /* Define to 1 if you have the `nanosleep' function. */ + /* #undef HAVE_NANOSLEEP */ + /* Define if you have NAS including devel headers */ /* #undef HAVE_NAS */ *************** *** 486,491 **** --- 495,503 ---- /* Define to 1 if you have the `pread' function. */ #define HAVE_PREAD 1 + /* Define if you have processor_info */ + #define HAVE_PROCESSOR_INFO 1 + /* Define to 1 if you have the header file. */ /* #undef HAVE_PROCESS_H */ *************** *** 535,541 **** #define HAVE_SCHED_H 1 /* Define to 1 if you have the `sched_yield' function. */ ! /* #undef HAVE_SCHED_YIELD */ /* Define to 1 if `cmd' is member of `scsireq_t'. */ /* #undef HAVE_SCSIREQ_T_CMD */ --- 547,553 ---- #define HAVE_SCHED_H 1 /* Define to 1 if you have the `sched_yield' function. */ ! #define HAVE_SCHED_YIELD 1 /* Define to 1 if `cmd' is member of `scsireq_t'. */ /* #undef HAVE_SCSIREQ_T_CMD */ *************** *** 675,680 **** --- 687,695 ---- /* Define to 1 if you have the header file. */ /* #undef HAVE_SYSCALL_H */ + /* Define if you have sysconf */ + #define HAVE_SYSCONF 1 + /* Define to 1 if you have the header file. */ /* #undef HAVE_SYS_ASOUNDLIB_H */ *************** *** 693,698 **** --- 708,716 ---- /* Define to 1 if you have the header file. */ /* #undef HAVE_SYS_EXEC_ELF_H */ + /* Define if you have sys/filio.h */ + #define HAVE_SYS_FILIIO_H 1 + /* Define to 1 if you have the header file. */ #define HAVE_SYS_FILIO_H 1 *************** *** 732,737 **** --- 750,758 ---- /* Define to 1 if you have the header file. */ #define HAVE_SYS_POLL_H 1 + /* Define if you have processor.h */ + #define HAVE_SYS_PROCESSOR_H 1 + /* Define to 1 if you have the header file. */ /* #undef HAVE_SYS_PTRACE_H */ *************** *** 810,815 **** --- 831,842 ---- /* Define to 1 if you have the header file. */ #define HAVE_TERMIOS_H 1 + /* Define if you have thr* funcs */ + #define HAVE_THR 1 + + /* Define if you have thread.h (Solaris) */ + #define HAVE_THREAD_H 1 + /* Define to 1 if you have the `timegm' function. */ /* #undef HAVE_TIMEGM */ *************** *** 915,920 **** --- 942,953 ---- /* Define if we have __va_copy */ #define HAVE___VA_COPY 1 + /* Define major Os vesion */ + #define OS_MAJOR $system_major + + /* Define minor Os Version */ + #define OS_MINOR $system_minor + /* Define to the address where bug reports for this package should be sent. */ #define PACKAGE_BUGREPORT "wine-devel at winehq.org" loader/kthread.c : macro ERR conflicts with a system-supplied macro. So I renamed it to ERRPRINT. diff -cibwr wine-0.9.10/wine/loader/kthread.c wine-0.9.10-local-mods//wine/loader/kthread.c *** wine-0.9.10/wine/loader/kthread.c old date --- wine-0.9.10-local-mods//wine/loader/kthread.c today *************** *** 115,121 **** #endif #define TRACE printf ! #define ERR printf int threadmode =0; struct pthread_descr_struct --- 115,122 ---- #endif #define TRACE printf ! /* #define ERR printf */ ! #define ERRPRINTF printf int threadmode =0; struct pthread_descr_struct *************** *** 242,248 **** thr_setspecific(key, data); } else ! ERR("Thread private data already set !\n"); thr_getspecific(key, &tsd); return((void *) tsd); } --- 243,249 ---- thr_setspecific(key, data); } else ! ERRPRINTF("Thread private data already set !\n"); thr_getspecific(key, &tsd); return((void *) tsd); } *************** *** 423,441 **** switch(err) { case EAGAIN: ! ERR("Thread creation failed EAGAIN - System is out of threads or lwps\n"); break; case EINVAL: ! ERR("Thread creation failed EINVAL - The stack_base argument is not NULL and stack_size is less than the value returned by thr_min_stack, or the stack_base argument is NULL and stack_size is not 0 and is less than the value returned by thr_min_stack\n"); break; case ENOMEM: ! ERR("Thread creation failed ENOMEM - here is not enough memory to allocate the stack for the thread\n"); break; case -1: ! ERR("Thread creation failed (-1) - Application is not linked with threading libraryn"); break; default: ! ERR("Thread creation failed Unknown %d - Possible mmap failure check mmap results\n",err); break; } return -1; --- 424,442 ---- switch(err) { case EAGAIN: ! ERRPRINTF("Thread creation failed EAGAIN - System is out of threads or lwps\n"); break; case EINVAL: ! ERRPRINTF("Thread creation failed EINVAL - The stack_base argument is not NULL and stack_size is less than the value returned by thr_min_stack, or the stack_base argument is NULL and stack_size is not 0 and is less than the value returned by thr_min_stack\n"); break; case ENOMEM: ! ERRPRINTF("Thread creation failed ENOMEM - here is not enough memory to allocate the stack for the thread\n"); break; case -1: ! ERRPRINTF("Thread creation failed (-1) - Application is not linked with threading libraryn"); break; default: ! ERRPRINTF("Thread creation failed Unknown %d - Possible mmap failure check mmap results\n",err); break; } return -1; programs/wintest/maketest: We need to add dummy variable to shell built-in "read" diff -cibwr wine-0.9.10/wine/programs/winetest/maketest wine-0.9.10-local-mods//wine/programs/winetest/maketest *** wine-0.9.10/wine/programs/winetest/maketest old date --- wine-0.9.10-local-mods//wine/programs/winetest/maketest today *************** *** 19,25 **** for dir in dlls/*/tests; do sed -ne "s|^/\([^.]*.c\)/\([^/]*\).*|$dir/\1:\2|p" $dir/CVS/Entries 2>/dev/null done |\ ! while read; do echo "REV_INFO+$i \"$REPLY\"" i=`expr $i + 1` done --- 19,25 ---- for dir in dlls/*/tests; do sed -ne "s|^/\([^.]*.c\)/\([^/]*\).*|$dir/\1:\2|p" $dir/CVS/Entries 2>/dev/null done |\ ! while read dummy; do echo "REV_INFO+$i \"$REPLY\"" i=`expr $i + 1` done programs/wineconsole : We need to link -lcurses (due to unresolved symbols) diff -cibwr wine-0.9.10/wine/programs/wineconsole/Makefile wine-0.9.10-local-mods//wine/programs/wineconsole/Makefile *** wine-0.9.10/wine/programs/wineconsole/Makefile old date --- wine-0.9.10-local-mods//wine/programs/wineconsole/Makefile today *************** *** 66,72 **** CC = gcc CFLAGS = -g -O2 CPPFLAGS = ! LIBS = -lsocket -lnsl BISON = bison LEX = flex LEXLIB = -ll --- 66,72 ---- CC = gcc CFLAGS = -g -O2 CPPFLAGS = ! LIBS = -lrt -lthread -lsocket -lnsl -lcurses BISON = bison LEX = flex LEXLIB = -ll From gturnqui at harris.com Tue Apr 4 19:20:07 2006 From: gturnqui at harris.com (Turnquist, Greg) Date: Tue, 4 Apr 2006 13:20:07 -0400 Subject: [csw-users] Build php5 from scratch... Message-ID: I am looking into building php5 from scratch so that I can apply the patches from http://www.hardened-php.net/hardening_patch.14.html. I would like to start from the baseline of building with the same config arguments as ap2_modphp5 was build with. Is the configuration information for blastwave packages published anywhere, so that I can look this up. If I can successfully build the package, then I can proceed to apply the patches and rebuild it. Greg Turnquist * Greg.Turnquist at harris.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From comand at blastwave.org Tue Apr 4 20:42:14 2006 From: comand at blastwave.org (Cory Omand) Date: Tue, 4 Apr 2006 11:42:14 -0700 Subject: [csw-users] Build php5 from scratch... In-Reply-To: References: Message-ID: On 4/4/06, Turnquist, Greg wrote: > > > I am looking into building php5 from scratch so that I can apply the patches > from http://www.hardened-php.net/hardening_patch.14.html. I > would like to start from the baseline of building with the same config > arguments as ap2_modphp5 was build with. Is the configuration information > for blastwave packages published anywhere, so that I can look this up. If I > can successfully build the package, then I can proceed to apply the patches > and rebuild it. If this is something that would not affect regular PHP5 applications adversely, then I can arrange to apply the hardening patch prior to the next blastwave release of the php5 package set. That would save you having to compile and manage this change locally. The php5 build is non-trivial, given the number of extensions that are enabled. For your reference, however, you can examine the blastwave php5 build config via the web. The most interesting file for your purpose is probably: http://svn.blastwave.org/browser/csw/trunk/lang/php5/files/config.mk Regards, Cory. From gturnqui at harris.com Tue Apr 4 21:06:49 2006 From: gturnqui at harris.com (Turnquist, Greg) Date: Tue, 4 Apr 2006 15:06:49 -0400 Subject: [csw-users] Build php5 from scratch... Message-ID: I can't promise what the hardening patch accomplishes. I am tasked to figure this out myself. I don't know what level of regression testing would be stipulated to release this to blastwave. I was thinking it would be great if the hardening was a standard feature. If you were to make a test build, I would be glad to try deploying it, and testing my mediawiki web site, to see if that still works. Another option is to build two php packages, one with and one without the hardening. Does this build procedure go towards every php module at blastwave? If that is so, then I guess building two-for-one would greatly increase the build effort and testing requirements. Or does this only have to be applied to a few core packages? I guess you would have to inspect the patch file to determine which modules are impacted by this. -----Original Message----- From: users-bounces+gturnqui=harris.com at lists.blastwave.org [mailto:users-bounces+gturnqui=harris.com at lists.blastwave.org] On Behalf Of Cory Omand Sent: Tuesday, April 04, 2006 2:42 PM To: questions and discussions Subject: Re: [csw-users] Build php5 from scratch... On 4/4/06, Turnquist, Greg wrote: > > > I am looking into building php5 from scratch so that I can apply the patches > from http://www.hardened-php.net/hardening_patch.14.html. I > would like to start from the baseline of building with the same config > arguments as ap2_modphp5 was build with. Is the configuration information > for blastwave packages published anywhere, so that I can look this up. If I > can successfully build the package, then I can proceed to apply the patches > and rebuild it. If this is something that would not affect regular PHP5 applications adversely, then I can arrange to apply the hardening patch prior to the next blastwave release of the php5 package set. That would save you having to compile and manage this change locally. The php5 build is non-trivial, given the number of extensions that are enabled. For your reference, however, you can examine the blastwave php5 build config via the web. The most interesting file for your purpose is probably: http://svn.blastwave.org/browser/csw/trunk/lang/php5/files/config.mk Regards, Cory. _______________________________________________ users mailing list users at lists.blastwave.org https://lists.blastwave.org/mailman/listinfo/users From realmcking at gmail.com Tue Apr 4 21:14:54 2006 From: realmcking at gmail.com (Mark McCoy) Date: Tue, 4 Apr 2006 14:14:54 -0500 Subject: [csw-users] Build php5 from scratch... In-Reply-To: References: Message-ID: Cory, Are there plans to have an alternate fastcgi binary package available, similar to the php4_cgi package, or to add fastcgi support to the cli version of php5? Thanks, Mark On 4/4/06, Cory Omand wrote: > On 4/4/06, Turnquist, Greg wrote: > > > > > > I am looking into building php5 from scratch so that I can apply the patches > > from http://www.hardened-php.net/hardening_patch.14.html. I > > would like to start from the baseline of building with the same config > > arguments as ap2_modphp5 was build with. Is the configuration information > > for blastwave packages published anywhere, so that I can look this up. If I > > can successfully build the package, then I can proceed to apply the patches > > and rebuild it. > > If this is something that would not affect regular PHP5 applications > adversely, then I can arrange to apply the hardening patch prior to > the next blastwave release of the php5 package set. That would save > you having to compile and manage this change locally. The php5 build > is non-trivial, given the number of extensions that are enabled. For > your reference, however, you can examine the blastwave php5 build > config via the web. The most interesting file for your purpose is > probably: > > http://svn.blastwave.org/browser/csw/trunk/lang/php5/files/config.mk > > Regards, > Cory. > _______________________________________________ > users mailing list > users at lists.blastwave.org > https://lists.blastwave.org/mailman/listinfo/users > -- Mark McCoy -- Professional Unix geek "On two occasions I have been asked, 'Pray, Mr. Babbage, if you put into the machine wrong figures, will the right answers come out?' I am not able rightly to apprehend the kind of confusion of ideas that could provoke such a question. " -- Charles Babbage From realmcking at gmail.com Tue Apr 4 21:15:26 2006 From: realmcking at gmail.com (Mark McCoy) Date: Tue, 4 Apr 2006 14:15:26 -0500 Subject: [csw-users] Build php5 from scratch... In-Reply-To: References: Message-ID: Never mind, I took a look at that config.mk and see the faastcgi option at the end ;) Thanks, Mark On 4/4/06, Mark McCoy wrote: > Cory, > > Are there plans to have an alternate fastcgi binary package available, > similar to the php4_cgi package, or to add fastcgi support to the cli > version of php5? > > Thanks, Mark > > On 4/4/06, Cory Omand wrote: > > On 4/4/06, Turnquist, Greg wrote: > > > > > > > > > I am looking into building php5 from scratch so that I can apply the patches > > > from http://www.hardened-php.net/hardening_patch.14.html. I > > > would like to start from the baseline of building with the same config > > > arguments as ap2_modphp5 was build with. Is the configuration information > > > for blastwave packages published anywhere, so that I can look this up. If I > > > can successfully build the package, then I can proceed to apply the patches > > > and rebuild it. > > > > If this is something that would not affect regular PHP5 applications > > adversely, then I can arrange to apply the hardening patch prior to > > the next blastwave release of the php5 package set. That would save > > you having to compile and manage this change locally. The php5 build > > is non-trivial, given the number of extensions that are enabled. For > > your reference, however, you can examine the blastwave php5 build > > config via the web. The most interesting file for your purpose is > > probably: > > > > http://svn.blastwave.org/browser/csw/trunk/lang/php5/files/config.mk > > > > Regards, > > Cory. > > _______________________________________________ > > users mailing list > > users at lists.blastwave.org > > https://lists.blastwave.org/mailman/listinfo/users > > > > > -- > Mark McCoy -- Professional Unix geek > > "On two occasions I have been asked, 'Pray, Mr. Babbage, if you put > into the machine wrong figures, will the right answers come out?' I am > not able rightly to apprehend the kind of confusion of ideas that > could provoke such a question. " -- Charles Babbage > -- Mark McCoy -- Professional Unix geek "On two occasions I have been asked, 'Pray, Mr. Babbage, if you put into the machine wrong figures, will the right answers come out?' I am not able rightly to apprehend the kind of confusion of ideas that could provoke such a question. " -- Charles Babbage From realmcking at gmail.com Tue Apr 4 21:31:10 2006 From: realmcking at gmail.com (Mark McCoy) Date: Tue, 4 Apr 2006 14:31:10 -0500 Subject: [csw-users] Build php5 from scratch... In-Reply-To: References: Message-ID: s/faast/fast/ ;) Cory, I noticed that you are using the GAR ports system to build your packages. Is this something a lot of blastwave maintainers use? I've been looking for ways to help with creating packages and blastwave ports, but I hesitated when I saw the details of the SysV pkgbuilding tools (I also don't have all of the architectures/OS revisions that blastwave supports to test on). gnutopkg works OK, once I kludged in a special Makefile.gnutopkg step, but I never even thought about GAR. Maybe I'll work up a lighttpd package with this as a test.... Thanks, Mark Is there somewhere where I can read up on using this with blastwave? On 4/4/06, Mark McCoy wrote: > Never mind, I took a look at that config.mk and see the faastcgi > option at the end ;) > > Thanks, Mark > > On 4/4/06, Mark McCoy wrote: > > Cory, > > > > Are there plans to have an alternate fastcgi binary package available, > > similar to the php4_cgi package, or to add fastcgi support to the cli > > version of php5? > > > > Thanks, Mark > > > > On 4/4/06, Cory Omand wrote: > > > On 4/4/06, Turnquist, Greg wrote: > > > > > > > > > > > > I am looking into building php5 from scratch so that I can apply the patches > > > > from http://www.hardened-php.net/hardening_patch.14.html. I > > > > would like to start from the baseline of building with the same config > > > > arguments as ap2_modphp5 was build with. Is the configuration information > > > > for blastwave packages published anywhere, so that I can look this up. If I > > > > can successfully build the package, then I can proceed to apply the patches > > > > and rebuild it. > > > > > > If this is something that would not affect regular PHP5 applications > > > adversely, then I can arrange to apply the hardening patch prior to > > > the next blastwave release of the php5 package set. That would save > > > you having to compile and manage this change locally. The php5 build > > > is non-trivial, given the number of extensions that are enabled. For > > > your reference, however, you can examine the blastwave php5 build > > > config via the web. The most interesting file for your purpose is > > > probably: > > > > > > http://svn.blastwave.org/browser/csw/trunk/lang/php5/files/config.mk > > > > > > Regards, > > > Cory. > > > _______________________________________________ > > > users mailing list > > > users at lists.blastwave.org > > > https://lists.blastwave.org/mailman/listinfo/users > > > > > > > > > -- > > Mark McCoy -- Professional Unix geek > > > > "On two occasions I have been asked, 'Pray, Mr. Babbage, if you put > > into the machine wrong figures, will the right answers come out?' I am > > not able rightly to apprehend the kind of confusion of ideas that > > could provoke such a question. " -- Charles Babbage > > > > > -- > Mark McCoy -- Professional Unix geek > > "On two occasions I have been asked, 'Pray, Mr. Babbage, if you put > into the machine wrong figures, will the right answers come out?' I am > not able rightly to apprehend the kind of confusion of ideas that > could provoke such a question. " -- Charles Babbage > -- Mark McCoy -- Professional Unix geek "On two occasions I have been asked, 'Pray, Mr. Babbage, if you put into the machine wrong figures, will the right answers come out?' I am not able rightly to apprehend the kind of confusion of ideas that could provoke such a question. " -- Charles Babbage From realmcking at gmail.com Tue Apr 4 22:18:39 2006 From: realmcking at gmail.com (Mark McCoy) Date: Tue, 4 Apr 2006 15:18:39 -0500 Subject: [csw-users] anonymous subversion checkout from svn.blastwave.org Message-ID: Hey all, Does svn.blastwave.org allow anonymous svn checkout, or am I just missing the documentation that mentions this? Thanks, Mark -- Mark McCoy -- Professional Unix geek "On two occasions I have been asked, 'Pray, Mr. Babbage, if you put into the machine wrong figures, will the right answers come out?' I am not able rightly to apprehend the kind of confusion of ideas that could provoke such a question. " -- Charles Babbage From comand at blastwave.org Wed Apr 5 01:23:49 2006 From: comand at blastwave.org (Cory Omand) Date: Tue, 4 Apr 2006 16:23:49 -0700 Subject: [csw-users] Subversion 1.3.1 Testing Message-ID: Packages for Subversion 1.3.1, including neon 0.25.5, and all language binding packages, are now available for testing. Please report issues with this package to the appropriate categories in the blastwave bug tracker. - C. From jeff at cdsinc.com Wed Apr 5 06:03:05 2006 From: jeff at cdsinc.com (Jeff Chan) Date: Tue, 04 Apr 2006 18:03:05 -1000 Subject: [csw-users] Upgrading All Packages Message-ID: <44334179.5070404@cdsinc.com> Is there any way to prevent pkg-get from checking to see if it's okay to remove a package & upgrade? Almost like admin-fullauto but also for upgrades & packages removals. The following package is currently installed: CSWoldap openldap - ldap clients,libraries and server (i386) 2.1.30,REV=2005.09.27 Do you want to remove this package? [y,n,?,q] Jeff From james at blastwave.org Wed Apr 5 10:45:19 2006 From: james at blastwave.org (James Lee) Date: Wed, 05 Apr 2006 08:45:19 GMT Subject: [csw-users] Upgrading All Packages In-Reply-To: <44334179.5070404@cdsinc.com> References: <44334179.5070404@cdsinc.com> Message-ID: <20060405.8451900.1080744389@landeck.jamesipoos.com> On 05/04/06, 05:03:05, Jeff Chan wrote regarding [csw-users] Upgrading All Packages: > Is there any way to prevent pkg-get from checking to see if it's okay to > remove a package & upgrade? Almost like admin-fullauto but also for > upgrades & packages removals. > The following package is currently installed: > CSWoldap openldap - ldap clients,libraries and server > (i386) 2.1.30,REV=2005.09.27 > Do you want to remove this package? [y,n,?,q] Ues the -f flag for pkg-get, it passes -n to pkgrm: $ man pkg-get ... -f Force default action on pkg add or remove; Dont ask questions. This may mean that it will refuse to install some packages, depending on what the pkgadd defaults are, whether there are conflicts, etc. The 'normal' defaults are specified in /var/sadm/install/admin/default. See the "MORE AUTOMA- TION" section at the bottom of this manpage. ... James. From Juan.Plaza at Sun.COM Wed Apr 5 11:06:58 2006 From: Juan.Plaza at Sun.COM (Juan Plaza - Sun Microsystems) Date: Wed, 05 Apr 2006 11:06:58 +0200 Subject: [csw-users] help Message-ID: <443388B2.1070601@sun.com> Hi, Somebody knows how to uninstall KDE for Solaris 10 x86? Thanks. -- * Juan Plaza Flores* Preemptive Services Engineer *Sun Microsystems Ib?rica* Serrano Galvache 56, Centro Empresarial Parque Norte Madrid 28033 Phone x86780 / +34 91 7676780 Mobile 679985421 Email juan.plaza at sun.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From mats.larsson at ericsson.com Wed Apr 5 12:44:52 2006 From: mats.larsson at ericsson.com (Mats Larsson) Date: Wed, 05 Apr 2006 12:44:52 +0200 Subject: [csw-users] Apache install failed Message-ID: <44339FA4.2030804@ericsson.com> Did try yo install apache but failed: ws46152 /var/pkg-get# pkg-get -i apache No existing install of CSWapache found. Installing... Trying http://ibiblio.org/pub/packages/solaris/csw/unstable/sparc/5.8/apache-1.3.33,REV=2006.03.31-SunOS5.8-sparc-CSW.pkg.gz --12:38:49-- http://ibiblio.org/pub/packages/solaris/csw/unstable/sparc/5.8/apache-1.3.33,REV=2006.03.31-SunOS5.8-sparc-CSW.pk g.gz => `apache-1.3.33,REV=2006.03.31-SunOS5.8-sparc-CSW.pkg.gz' Resolving proxy.uab.ericsson.se... 134.138.128.17 Connecting to proxy.uab.ericsson.se|134.138.128.17|:8080... connected. Proxy request sent, awaiting response... 404 Not Found 12:38:49 ERROR 404: Not Found. Error downloading http://ibiblio.org/pub/packages/solaris/csw/unstable/sparc/5.8/apache-1.3.33,REV=2006.03.31-SunOS5.8-sparc-CS W.pkg.gz (Perhaps you need to update your catalog?) apache-1.3.33,REV=2006.03.31-SunOS5.8-sparc-CSW.pkg.gz: No such file or directory Attempting to update catalog, then retry Getting catalog... --12:38:49-- http://ibiblio.org/pub/packages/solaris/csw/unstable/sparc/5.8/catalog => `catalog' Resolving proxy.uab.ericsson.se... 134.138.128.17 Connecting to proxy.uab.ericsson.se|134.138.128.17|:8080... connected. Proxy request sent, awaiting response... 200 OK Length: 175,256 (171K) [text/plain] 100%[===================================================================================>] 175,256 520.76K/s 12:38:50 (520.39 KB/s) - `catalog' saved [175256/175256] Stripping off catalog signature without verifying Updating catalog file /var/pkg-get/catalog-ibiblio.org updated --12:38:50-- http://ibiblio.org/pub/packages/solaris/csw/unstable/sparc/5.8/descriptions => `descriptions' Resolving proxy.uab.ericsson.se... 134.138.128.17 Connecting to proxy.uab.ericsson.se|134.138.128.17|:8080... connected. Proxy request sent, awaiting response... 200 OK Length: 77,332 (76K) [text/plain] 100%[===================================================================================>] 77,332 --.--K/s 12:38:50 (1.87 MB/s) - `descriptions' saved [77332/77332] Updated description file Trying http://ibiblio.org/pub/packages/solaris/csw/unstable/sparc/5.8/apache-1.3.33,REV=2006.03.31-SunOS5.8-sparc-CSW.pkg.gz --12:38:50-- http://ibiblio.org/pub/packages/solaris/csw/unstable/sparc/5.8/apache-1.3.33,REV=2006.03.31-SunOS5.8-sparc-CSW.pk g.gz => `apache-1.3.33,REV=2006.03.31-SunOS5.8-sparc-CSW.pkg.gz' Resolving proxy.uab.ericsson.se... 134.138.128.17 Connecting to proxy.uab.ericsson.se|134.138.128.17|:8080... connected. Proxy request sent, awaiting response... 404 Not Found 12:38:51 ERROR 404: Not Found. Error downloading http://ibiblio.org/pub/packages/solaris/csw/unstable/sparc/5.8/apache-1.3.33,REV=2006.03.31-SunOS5.8-sparc-CS W.pkg.gz (Perhaps you need to update your catalog?) apache-1.3.33,REV=2006.03.31-SunOS5.8-sparc-CSW.pkg.gz: No such file or directory ws46152 /var/pkg-get# Any clues? -- Mats Larsson | Sr Software Analyst | R&D IT Stockholm | Ericsson AB From james at blastwave.org Wed Apr 5 13:19:05 2006 From: james at blastwave.org (James Lee) Date: Wed, 05 Apr 2006 11:19:05 GMT Subject: [csw-users] Apache install failed In-Reply-To: <44339FA4.2030804@ericsson.com> References: <44339FA4.2030804@ericsson.com> Message-ID: <20060405.11190500.240693610@landeck.jamesipoos.com> On 05/04/06, 11:44:52, Mats Larsson wrote regarding [csw-users] Apache install failed: > Did try yo install apache but failed: > ws46152 /var/pkg-get# pkg-get -i apache > No existing install of CSWapache found. Installing... > Trying > http://ibiblio.org/pub/packages/solaris/csw/unstable/sparc/5.8/apache-1. 3. 33,REV=2006.03.31-SunOS5.8-sparc-CSW.pkg.gz > --12:38:49-- > http://ibiblio.org/pub/packages/solaris/csw/unstable/sparc/5.8/apache-1. 3. 33,REV=2006.03.31-SunOS5.8-sparc-CSW.pk > g.gz > => `apache-1.3.33,REV=2006.03.31-SunOS5.8-sparc-CSW.pkg.gz' > Resolving proxy.uab.ericsson.se... 134.138.128.17 > Connecting to proxy.uab.ericsson.se|134.138.128.17|:8080... connected. > Proxy request sent, awaiting response... 404 Not Found > 12:38:49 ERROR 404: Not Found. It's been temporarily pulled from unstable due to an install bug in REV=2006.03.31. Removal is just avoidance and is a better option than causing existing installations to update to a flawed package. Workaround: pkg-get -s http://blastwave.berlios.de/csw/stable -U -i apache The current stable apache is the same as the previous working unstable apache. Updates are unaffected by this. James. From ihsan at dogan.ch Wed Apr 5 13:27:26 2006 From: ihsan at dogan.ch (Ihsan Dogan) Date: Wed, 05 Apr 2006 13:27:26 +0200 Subject: [csw-users] help In-Reply-To: <443388B2.1070601@sun.com> References: <443388B2.1070601@sun.com> Message-ID: <4433A99E.7090201@dogan.ch> pkgrm on 05.04.2006 11:06 Juan Plaza - Sun Microsystems said the following: > Hi, > > Somebody knows how to uninstall KDE for Solaris 10 x86? > > Thanks. > > > -- > > * Juan Plaza Flores* > Preemptive Services Engineer > > *Sun Microsystems Ib?rica* > Serrano Galvache 56, Centro Empresarial Parque Norte > Madrid 28033 > Phone x86780 / +34 91 7676780 > Mobile 679985421 > Email juan.plaza at sun.com > > > > ------------------------------------------------------------------------ > > _______________________________________________ > users mailing list > users at lists.blastwave.org > https://lists.blastwave.org/mailman/listinfo/users -- ihsan at dogan.ch http://ihsan.dogan.ch/ From crimson at unspeakable.org Wed Apr 5 16:04:51 2006 From: crimson at unspeakable.org (Scott Walker) Date: Wed, 05 Apr 2006 11:04:51 -0300 Subject: [csw-users] help In-Reply-To: <443388B2.1070601@sun.com> References: <443388B2.1070601@sun.com> Message-ID: <4433CE83.1000802@unspeakable.org> You work for sun, But don't know how to remove packages from your own companies operating system!?! BTW man pkgrm :) Juan Plaza - Sun Microsystems wrote: | Hi, | | Somebody knows how to uninstall KDE for Solaris 10 x86? | | Thanks. | | | | ------------------------------------------------------------------------ | | _______________________________________________ | users mailing list | users at lists.blastwave.org | https://lists.blastwave.org/mailman/listinfo/users From limited at paypal.com Sun Apr 9 11:36:17 2006 From: limited at paypal.com (PayPal Security Departament) Date: Sun, 9 Apr 2006 04:36:17 -0500 Subject: [csw-users] Your account access has been limited Message-ID: <200604090936.k399aHSI008134@cedar.propagation.net> An HTML attachment was scrubbed... URL: From delrio at mie.utoronto.ca Mon Apr 10 16:38:16 2006 From: delrio at mie.utoronto.ca (Oscar del Rio) Date: Mon, 10 Apr 2006 10:38:16 -0400 Subject: [csw-users] help In-Reply-To: <443388B2.1070601@sun.com> References: <443388B2.1070601@sun.com> Message-ID: <443A6DD8.1070507@mie.utoronto.ca> > Somebody knows how to uninstall KDE for Solaris 10 x86? KDE is not a single package but a bunch of them. pkginfo | grep CSWkde pkgrm everyone of them From dclarke at blastwave.org Wed Apr 12 08:09:04 2006 From: dclarke at blastwave.org (Dennis Clarke) Date: Wed, 12 Apr 2006 02:09:04 -0400 (EDT) Subject: [csw-users] KDE fontproblem Message-ID: <4751.209.226.150.37.1144822144.squirrel@mail.blastwave.org> I will forward this to the correct list: users at lists.blastwave.org Dennis Clarke ------------------------------------------------------------------------ Subject: KDE fontproblem From: Martti Hamunen To: announce at lists.blastwave.org Content-Type: text/plain Message-Id: <1144881606.857.1.camel at unik> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6.330 Date: Thu, 13 Apr 2006 01:40:06 +0300 Content-Transfer-Encoding: 7bit X-Virus-Scanned: amavisd-new at blastwave.org Hello, I am new here and new with Solaris 10 too. (Linux user over ten years.) I have font problem with KDE 3,4. In Sun Java Desktop System and CDE fonts are ok, but in KDE much worse. I have KDE now "/opt/csw/kde-gcc/". I hope that someone can help me. mjh From announce-bounces at lists.blastwave.org Wed Apr 12 08:34:19 2006 From: announce-bounces at lists.blastwave.org (announce-bounces at lists.blastwave.org) Date: Wed, 12 Apr 2006 08:34:19 +0200 Subject: [csw-users] Forward of moderated message Message-ID: An embedded message was scrubbed... From: Martti Hamunen Subject: KDE fontproblem Date: Thu, 13 Apr 2006 01:40:06 +0300 Size: 1791 URL: From martti.hamunen at netikka.fi Thu Apr 13 06:38:40 2006 From: martti.hamunen at netikka.fi (Martti Hamunen) Date: Thu, 13 Apr 2006 07:38:40 +0300 Subject: [csw-users] KDE fontproblem Message-ID: <1144903120.980.0.camel@unik> Hello, I am new here and new with Solaris 10 too. (Linux user over ten years.) I have font problem with KDE 3,4. In Sun Java Desktop System and CDE fonts are ok, but in KDE much worse. I have KDE now "/opt/csw/kde-gcc/". I hope that someone can help me. mjh From vaillant at ganil.fr Wed Apr 12 13:52:59 2006 From: vaillant at ganil.fr (Vaillant Daniel) Date: Wed, 12 Apr 2006 13:52:59 +0200 Subject: [csw-users] do not know what to do ? help Message-ID: <443CEA1B.3030407@ganil.fr> ....................................... .................................. Installation of was successful. Trying to install dependancy openldap No existing install of CSWoldap found. Installing... Note: Use of md5 disabled in config md5 utility temporarily non-functional assuming local file openldap-2.3.20-SunOS5.8-sparc-CSW.pkg.gz valid to use Analysing special files... 6749 blocks Trying to install dependancy openldap_client No existing install of CSWoldapclient found. Installing... Note: Use of md5 disabled in config md5 utility temporarily non-functional assuming local file openldap_client-2.3.20-SunOS5.8-sparc-CSW.pkg.gz valid to use Analysing special files... 1763 blocks Error: dependancy openldap_rt (CSWoldaprt) not up to date Call pkg-get again in 'upgrade all' mode eg: '/opt/csw/bin/pkg-get upgrade' This will then upgrade all packages cleanly ____________________________________________________________________ This is WHAT i got (on more than one machines) as I was doing pkg-get install mozilla (on others machines I got for install gnupg...) I did nothing of the order of remove or savage suppression...... TO cope the pb what should I install before this install pseudo dependancy or what should I remove (manually or by pkg-get -r to resettle this lot I did on certain machine the upgrade and it didn't help contraty to what is said. Thank you. I am under a solaris 9, exactly: gansgr{root}153: more /etc/release Solaris 9 9/05 s9s_u8wos_05 SPARC Copyright 2005 Sun Microsystems, Inc. All Rights Reserved. Use is subject to license terms. Assembled 04 August 2005 This is a fast question, I intend to peruse the archive, what i never did (must first acclimate) thank you 2. -- ----------------------------------------------------------------------- sy VAILLANT Daniel mailto:vaillant at ganil.fr re GANIL GIP (Syst&Res) Vox:(+33)(0)2 31 45 46 84 mi B.P. 5027 Fax:(+33)(0)2 31 45 46 65 @ 14076 CAEN-Cedex 5 Web: http://www.ganil.fr ........................................................................ Le temps s'?coule, l'espace se dilate, l'?nergie se mat?rialise et tout le reste est commentaire. Miche Cass? Du vide et de la cr?ation From a.cervellin at virgilio.it Wed Apr 12 14:25:10 2006 From: a.cervellin at virgilio.it (alessio) Date: Wed, 12 Apr 2006 13:25:10 +0100 (GMT+01:00) Subject: [csw-users] do not know what to do ? help Message-ID: <10a8e0ff17e.a.cervellin@virgilio.it> > This is WHAT i got (on more than one machines) as I was doing >pkg- get install mozilla [...] try a "pkg-get -uU", then try again "pkg-get -i mozilla" if you really want mozilla... but maybe you want seamonkey, which is the new version of mozilla (aka 1.8.0.1), indeed the CSWmozilla package is abadoned. From andy at riftware.com Wed Apr 12 22:20:13 2006 From: andy at riftware.com (Andrew Chandler) Date: Wed, 12 Apr 2006 15:20:13 -0500 Subject: [csw-users] cvs source snapshot for 1.12.14 Message-ID: <005601c65e6e$832b62f0$06b328c0@AChandlerV> How hard would it be to get a CSW built snapshot of the current cvs 1.12.14 feature branch? We have several cvs clients that just broke when we went to 1.12.13 and it turns out its because of a zlib issue they have fixed in the current source for 1.12.14. We're looking at downloading /building ourselves but I didn't know if the cvs maintainer could build it easily so that it would upgrade our pkg-get based system. -------------- next part -------------- An HTML attachment was scrubbed... URL: From a.cervellin at acm.org Wed Apr 12 22:26:08 2006 From: a.cervellin at acm.org (Alessio Cervellin) Date: Wed, 12 Apr 2006 22:26:08 +0200 Subject: [csw-users] cvs source snapshot for 1.12.14 In-Reply-To: <005601c65e6e$832b62f0$06b328c0@AChandlerV> References: <005601c65e6e$832b62f0$06b328c0@AChandlerV> Message-ID: <443D6260.1060403@acm.org> Andrew Chandler wrote: > How hard would it be to get a CSW built snapshot of the current cvs > 1.12.14 feature branch? We have several cvs clients that just broke > when we went to 1.12.13 and it turns out its because of a zlib issue > they have fixed in the current source for 1.12.14. We?re looking at > downloading /building ourselves but I didn?t know if the cvs maintainer > could build it easily so that it would upgrade our pkg-get based system. you can fill a package upgrade request here: http://www.blastwave.org/mantis/index.php From andy at riftware.com Wed Apr 12 22:51:46 2006 From: andy at riftware.com (Andrew Chandler) Date: Wed, 12 Apr 2006 15:51:46 -0500 Subject: [csw-users] cvs source snapshot for 1.12.14 In-Reply-To: <443D6260.1060403@acm.org> Message-ID: <006401c65e72$eb9dae20$06b328c0@AChandlerV> Turns out CSW is already installing the fixed version of zlib so our build guy just downloaded the 1.12.13 cvs sources and is compiling with the option to use external zlib. It appears to have even figured out that it wants to install to /opt/csw/bin !! must be reading a config file or something so I guess we'll hold off on the update request until we see how this goes - thanks! -----Original Message----- From: users-bounces+andy=riftware.com at lists.blastwave.org [mailto:users-bounces+andy=riftware.com at lists.blastwave.org] On Behalf Of Alessio Cervellin Sent: Wednesday, April 12, 2006 3:26 PM To: questions and discussions Subject: Re: [csw-users] cvs source snapshot for 1.12.14 Andrew Chandler wrote: > How hard would it be to get a CSW built snapshot of the current cvs > 1.12.14 feature branch? We have several cvs clients that just broke > when we went to 1.12.13 and it turns out its because of a zlib issue > they have fixed in the current source for 1.12.14. We're looking at > downloading /building ourselves but I didn't know if the cvs maintainer > could build it easily so that it would upgrade our pkg-get based system. you can fill a package upgrade request here: http://www.blastwave.org/mantis/index.php _______________________________________________ users mailing list users at lists.blastwave.org https://lists.blastwave.org/mailman/listinfo/users From asmoore at blastwave.org Thu Apr 13 00:51:36 2006 From: asmoore at blastwave.org (Alex Moore) Date: Wed, 12 Apr 2006 17:51:36 -0500 Subject: [csw-users] do not know what to do ? help In-Reply-To: <443CEA1B.3030407@ganil.fr> References: <443CEA1B.3030407@ganil.fr> Message-ID: <20060412175136.00000494@sws602.mcsun.local> On Wed, 12 Apr 2006 13:52:59 +0200 vaillant at ganil.fr (Vaillant Daniel) wrote: > Error: dependancy openldap_rt (CSWoldaprt) not up to date > Call pkg-get again in 'upgrade all' mode > eg: '/opt/csw/bin/pkg-get upgrade' > This will then upgrade all packages cleanly run `pkg-get -Uu` first. According to this message, that will update openldap_rt. Then run your original pkg-get again. Alex -- From kbmetz at pertinent.net Thu Apr 13 04:37:57 2006 From: kbmetz at pertinent.net (Kevin) Date: Wed, 12 Apr 2006 19:37:57 -0700 Subject: [csw-users] mod-auth-mysql Message-ID: <443DB985.9030905@pertinent.net> Ok, I'm at wits end here. I'm trying to get mod-auth-mysql compiled on a Solaris 10 box that I'm working on. So far I've downloaded all the blastwave packages (apache2, apache2-devel, mysql, gcc4, etc). But, for the life of my I can't get it to compile. I tried the source forge page http://sourceforge.net/projects/modauthmysql It won't compile, I get an error about 'cc: command not found'. If I try and tell it to use cc=gcc then I get errors about invalid options, etc. I've tried several versions and nothing seems to want to compile on this box and I don't understand what libtool under apache does either. I do have my paths set correct (/opt/csw/bin:/opt/csw/gcc4/bin) If anyone could give me any assistance it would greatly be appreciated. Thanks Kevin From comand at blastwave.org Thu Apr 13 06:38:48 2006 From: comand at blastwave.org (Cory Omand) Date: Wed, 12 Apr 2006 21:38:48 -0700 Subject: [csw-users] mod-auth-mysql In-Reply-To: <443DB985.9030905@pertinent.net> References: <443DB985.9030905@pertinent.net> Message-ID: On 4/12/06, Kevin wrote: > Ok, I'm at wits end here. I'm trying to get mod-auth-mysql compiled on a > Solaris 10 box that I'm working on. So far I've downloaded all the > blastwave packages (apache2, apache2-devel, mysql, gcc4, etc). But, for > the life of my I can't get it to compile. > > I tried the source forge page http://sourceforge.net/projects/modauthmysql > > It won't compile, I get an error about 'cc: command not found'. If I try > and tell it to use cc=gcc then I get errors about invalid options, etc. > I've tried several versions and nothing seems to want to compile on this > box and I don't understand what libtool under apache does either. > > I do have my paths set correct (/opt/csw/bin:/opt/csw/gcc4/bin) > > If anyone could give me any assistance it would greatly be appreciated. Hi, Apache2 modules must be built with the same compiler as apache2 itself was built with, so GCC won't work. You can download the newest Sun Studio free of charge. Once you have that installed, and you can find 'cc' in your path, you should be able to get started. Regards, Cory. From dclarke at blastwave.org Thu Apr 13 22:24:41 2006 From: dclarke at blastwave.org (Dennis Clarke) Date: Thu, 13 Apr 2006 16:24:41 -0400 (EDT) Subject: [csw-users] Active discussion about open source software for Solaris Message-ID: <1529.209.226.147.103.1144959881.squirrel@mail.blastwave.org> ALL : There is an active and vibrant discussion ongoing within the OpenSolaris project that addresses the issue of open source software packages for Solaris and the Companion CD in particular. The discussion has been heated at time and possibly even outright inflammatory. My concern is that the community here be aware of this discussion and I ask that you get involved if you can. There is a vast array of talent here and there is a distinct possibility that we can provide input that will help the entire Solaris user base. This is a very good thing and its a discussion that is long overdue. Dennis Clarke =========== Example post to the OpenSolaris mail list ============ > Dennis Clarke writes: >> > On 4/13/06, Dennis Clarke wrote: >> >> > Dennis Clarke wrote: >> >> >>> Dennis Clarke wrote: >> >> >> I blatantly disagree with the creation of yet another separate >> project that completely replaces services and processes that >> already exist ... > > Where, then, would be the right place to discuss the sorts of issues > that the use of open source software on Solaris raises? https://lists.blastwave.org/mailman/listinfo If you do not see the list that is right then one will be created. > For instance, we have the interesting issue of what to do when some > open source package becomes a fundamental part of Open Solaris itself. > There are many such examples to look at -- libtecla, tcp_wrappers, > OpenSSL. These packages need to be created in such a fashion that they work smoothly with every supported current release of Solaris on all supported architectures with the posibility for expansion into other architectures. PowerPC for example. Solaris 8 is still shipping and very much supported. We need to look at each of the current releases and determine how each to proceed. That is beyond the scope of this discussion and should be had in a mail list dedicated to the topic and within the boundaries of a project focused on delivering open source software to ALL Solaris users on supported architectures past and present. See the lists above. > What should be done about that? Should this other consolidation > (whether it's Blastwave, something else, or even both) continue to > deliver those same bits? What technical issues arise in doing so? Also beyond the scope of this thread but perfectly reasonable in a list such as users at lists.blastwave.org or some new list that you feel needs to be created. > What packages should be migrated over and treated as parts of the > system? I don't doubt that we've missed the boat here, and that there > are common parts that "everybody" installs. Do we have a plan for > them? The only plan that we had was to create everything from scratch with the exception of a few SUNW packages and put them all into the /opt/csw tree regardless if the software title already existed in the wos in the Solaris product. Since the Solaris Community was excluded from discussions about what goes into the Solaris product then the only reasonable course of action was to "fork" and start over from scratch. Years ago. Hence the massive pile of libs that exist in the CSW software tree at Blastwave. All integrated to work with each other and tested continually. > I think it'd be great to have a place to discuss all this. See the lists server I mentioned above. The Solaris Community built the list server on quad CPU Enterprise class Sun hardware. > I don't have a stake in this -- I don't really care whether the answer is > Blastwave, sunfreeware, companion CD, or anything else -- other than > seeing that the Open Solaris community looks at the problem seriously. The problem was looked at seriously. As serious as cancer. The only course of action at the time was to start from scratch and create everything we needed in /opt/csw. > If all it ends up doing is recommending some existing solution, I'd be > thrilled. Any existing solution is insufficient to address the needs of all the existing Solaris revs and certainly do not address ALL the needs of future releases. OpenSolaris distros also need to be given support although they may choose to do _anything_ . As I have said over and over now, the Solaris Community has existed for a long long time and needed to address serious problems with the existing closed processes. The doors are always open. -- Dennis Clarke From eric.enright at gmail.com Fri Apr 14 20:16:15 2006 From: eric.enright at gmail.com (Eric Enright) Date: Fri, 14 Apr 2006 14:16:15 -0400 Subject: [csw-users] Fwd: Maintainer Verification Message-ID: <3a74b99d0604141116u3c864e83jfcec96375590fc7a@mail.gmail.com> Hello, The forwarded message is from a discussion on osol-discuss concerning myself and the identity verification required of new Blastwave maintainers. As I mentioned in the thread, I am willing to work with whoever/do whatever to get my identity proven. Currently I am a part time Computer Programmer Analyst student at Fanshawe College in London, Ontario, Canada and graduate this year. In the fall I will be (acceptance pending) attending The University of Western Ontario in Computer Sciences. I do currently work full time, but in a non-technical field, and my employer likely doesn't care about any of this. I want to work with Blastwave because I depend on it for a number of applications and libraries. Most software I do build for myself is linked against it, and I have seen mention at various times of others wanting some of this same software built on Solaris. Thus, it makes sense to me to get it integrated. So, what can we do? Regards, Eric ---------- Forwarded message ---------- From: Dennis Clarke Date: Apr 14, 2006 7:41 AM Subject: Re: [osol-discuss] Project proposal: Nevada Companion Software To: Eric Enright Cc: casper.dik at sun.com, Stefan Teleman , opensolaris-discuss at opensolaris.org, Glynn Foster , phil at blastwave.org > > Twice over the past two years I have made attempts at joining the > Blastwave maintainer community, only to ultimately be rejected because > I do not have a "work email address" (I am a student (older student, > far from a freshman)). This was explained to me by Phil Brown as > being for legal reasons, as employers are more responsible for the > actions of their employees than educational institutions are. Fair > enough, this makes some sense to me, especially considering the > setting of many Solaris installations. > > In that regard, there is /some/ exclusivity at Blastwave. This rather > put me off, since one of the projects has accepted patches by me in > the past which provides Solaris support (Licq), and another one of the > projects now lists packages created by me on their homepage (gtkpod). > The latter even has CSW dependencies, and was created using modified > cswutils scripts. > > This post is a bit offtopic, I admit, but "exclusivity" activated > something in my brain like a keyword. I am a happy Blastwave user who > has been following most of this discussion. > Eric, this is a really tough policy. It is tough to enforce and tough to tell people, good people, that no, we can not have you building software that will be running in the servers at Lockheed Martin, NASA and MIT. The issue of liability has been a very tough one but it was needed. Let's consider the posibility that someone joins and claims to be a programmer for company XYZ Inc. In truth they work for no one. We call up company XYZ to confirm that they actually work there and then someone will say "yes, they work here and we will put you right through." In truth it is two people in the same room and their business is to destroy servers with really nasty software. So we have another stage of verification. Someone must actually know this person and be able to verify them. Also a really tough policy to enforce. I think we had a person in Germany that waited for a while before someone could drive over to them and meet them. We also had to say goodbye to another valuable maintainer because he could not be verified. Have there been exceptions? Absolutely. No one ever questioned Eric Boutilier or Torrey McMahon ( http://blogs.sun.com/roller/page/torrey ) or J?rg Schilling. But some measures, as I am sure you will agree, need to be enforced to ensure safety and quality. Clearly we need to look at your case again. -- Dennis Clarke -- Eric Enright From a.cervellin at acm.org Sun Apr 16 11:51:42 2006 From: a.cervellin at acm.org (Alessio Cervellin) Date: Sun, 16 Apr 2006 11:51:42 +0200 Subject: [csw-users] [announce] Seamonkey 1.0.1 now available on testing Message-ID: <444213AE.3010701@acm.org> Seamonkey 1.0.1 (aka Mozilla suite 1.8.0.2) is now available for testing on http://www.blastwave.org/testing This is an important update, it has improved stability and contains the following *security* fixes: MFSA 2006-29 Spoofing with translucent windows MFSA 2006-28 Security check of js_ValueToFunctionObject() can be circumvented MFSA 2006-26 Mail Multiple Information Disclosure MFSA 2006-25 Privilege escalation through Print Preview MFSA 2006-24 Privilege escalation using crypto.generateCRMFRequest MFSA 2006-23 File stealing by changing input type MFSA 2006-22 CSS Letter-Spacing Heap Overflow Vulnerability MFSA 2006-20 Crashes with evidence of memory corruption (rv:1.8.0.2) From TFSchiller at gmx.de Mon Apr 17 15:04:09 2006 From: TFSchiller at gmx.de (Thomas F. Schiller) Date: Mon, 17 Apr 2006 15:04:09 +0200 Subject: [csw-users] Fwd: Maintainer Verification In-Reply-To: <3a74b99d0604141116u3c864e83jfcec96375590fc7a@mail.gmail.com> References: <3a74b99d0604141116u3c864e83jfcec96375590fc7a@mail.gmail.com> Message-ID: <20060417150409.0000625b@sealion> Hello, I am not very happy about what you wrote:-( Well, I can understand that blastwave wants to know the maintainer on the other hand there are already a lot of packages old. Python for example and I got already software not running on the old blastwave version. I am using sylpheed-claws 2.1.0 RC2, there is already 2.1.1. I am not blaming Alex because he is maintaining a lot of packages and imho Sylpheed-claws (including the dependencies) is already enough work for one freelancer who is not paid for the work. I am really impressed what big amount of work Alex is doing and because of this I installed sun studio to build packages of my own. BUT I read this I don't have the hope that I may do it for blastwave in the near future. So I will sit down and wait that less and less people are doing more and more work. I am becoming angry when I am reading sentences like this: "But some measures, as I am sure you will agree, need to be enforced to ensure safety and quality. Quality means (well at least in my company here in Germany) also that emails are answered and the fulfillment of commitments. To make it clear: I ordered a DVD last October, I started a research at Germans customs in February, they never received a DVD with my name on it. One email was answered after I complained about it. The email with the results of the German customs is still unanswered. On Fri, 14 Apr 2006 14:16:15 -0400 "Eric Enright" wrote: > Hello, > > The forwarded message is from a discussion on osol-discuss concerning > myself and the identity verification required of new Blastwave > maintainers. As I mentioned in the thread, I am willing to work with > whoever/do whatever to get my identity proven. > > Currently I am a part time Computer Programmer Analyst student at > Fanshawe College in London, Ontario, Canada and graduate this year. > In the fall I will be (acceptance pending) attending The University of > Western Ontario in Computer Sciences. I do currently work full time, > but in a non-technical field, and my employer likely doesn't care > about any of this. > > I want to work with Blastwave because I depend on it for a number of > applications and libraries. Most software I do build for myself is > linked against it, and I have seen mention at various times of others > wanting some of this same software built on Solaris. Thus, it makes > sense to me to get it integrated. > > So, what can we do? > > Regards, > Eric > > > > ---------- Forwarded message ---------- > From: Dennis Clarke > Date: Apr 14, 2006 7:41 AM > Subject: Re: [osol-discuss] Project proposal: Nevada Companion Software > To: Eric Enright > Cc: casper.dik at sun.com, Stefan Teleman , > opensolaris-discuss at opensolaris.org, Glynn Foster > , phil at blastwave.org > > > > > > Twice over the past two years I have made attempts at joining the > > Blastwave maintainer community, only to ultimately be rejected because > > I do not have a "work email address" (I am a student (older student, > > far from a freshman)). This was explained to me by Phil Brown as > > being for legal reasons, as employers are more responsible for the > > actions of their employees than educational institutions are. Fair > > enough, this makes some sense to me, especially considering the > > setting of many Solaris installations. > > > > In that regard, there is /some/ exclusivity at Blastwave. This rather > > put me off, since one of the projects has accepted patches by me in > > the past which provides Solaris support (Licq), and another one of the > > projects now lists packages created by me on their homepage (gtkpod). > > The latter even has CSW dependencies, and was created using modified > > cswutils scripts. > > > > This post is a bit offtopic, I admit, but "exclusivity" activated > > something in my brain like a keyword. I am a happy Blastwave user who > > has been following most of this discussion. > > > > Eric, this is a really tough policy. It is tough to enforce and tough to > tell people, good people, that no, we can not have you building software > that will be running in the servers at Lockheed Martin, NASA and MIT. The > issue of liability has been a very tough one but it was needed. > > Let's consider the posibility that someone joins and claims to be a > programmer for company XYZ Inc. In truth they work for no one. We call up > company XYZ to confirm that they actually work there and then someone will > say "yes, they work here and we will put you right through." > > In truth it is two people in the same room and their business is to destroy > servers with really nasty software. > > So we have another stage of verification. Someone must actually know this > person and be able to verify them. Also a really tough policy to enforce. > I think we had a person in Germany that waited for a while before someone > could drive over to them and meet them. We also had to say goodbye to > another valuable maintainer because he could not be verified. > > Have there been exceptions? Absolutely. No one ever questioned Eric > Boutilier or Torrey McMahon ( http://blogs.sun.com/roller/page/torrey ) or > J?rg Schilling. But some measures, as I am sure you will agree, need to be > enforced to ensure safety and quality. > > Clearly we need to look at your case again. > > -- > Dennis Clarke > > > > -- > Eric Enright > _______________________________________________ > users mailing list > users at lists.blastwave.org > https://lists.blastwave.org/mailman/listinfo/users > From crimson at unspeakable.org Mon Apr 17 16:32:34 2006 From: crimson at unspeakable.org (Scott Walker) Date: Mon, 17 Apr 2006 11:32:34 -0300 Subject: [csw-users] Fwd: Maintainer Verification In-Reply-To: <20060417150409.0000625b@sealion> References: <3a74b99d0604141116u3c864e83jfcec96375590fc7a@mail.gmail.com> <20060417150409.0000625b@sealion> Message-ID: <4443A702.3060706@unspeakable.org> OT semi, How does this policy flow through to maintainers for offical distro sites? I've been trying for about 6 months now to get on the distro list. As I've been mirroring it since then. I've submitted my info on the "sign up here to become a mirror" But that never resulted in a Hello, welcome, or a good bye sorry we're full ATM. Some kind of a response would be nice. Once again slightly OT, but this fits under the policies section and I was curious :) Thomas F. Schiller wrote: | Hello, | | I am not very happy about what you wrote:-( | | Well, I can understand that blastwave wants to know the maintainer on the other hand there are already a lot of packages old. | Python for example and I got already software not running on the old blastwave version. | I am using sylpheed-claws 2.1.0 RC2, there is already 2.1.1. I am not blaming Alex because he is maintaining a lot of packages and imho Sylpheed-claws (including the dependencies) is already enough work for one freelancer who is not paid for the work. | I am really impressed what big amount of work Alex is doing and because of this I installed sun studio to build packages of my own. | BUT I read this I don't have the hope that I may do it for blastwave in the near future. | So I will sit down and wait that less and less people are doing more and more work. | | I am becoming angry when I am reading sentences like this: | "But some measures, as I am sure you will agree, need to be enforced to ensure safety and quality. | | Quality means (well at least in my company here in Germany) also that emails are answered and the fulfillment of commitments. | To make it clear: I ordered a DVD last October, I started a research at Germans customs in February, they never received a DVD with my name on it. | One email was answered after I complained about it. The email with the results of the German customs is still unanswered. | | | On Fri, 14 Apr 2006 14:16:15 -0400 | "Eric Enright" wrote: | |> Hello, |> |> The forwarded message is from a discussion on osol-discuss concerning |> myself and the identity verification required of new Blastwave |> maintainers. As I mentioned in the thread, I am willing to work with |> whoever/do whatever to get my identity proven. |> |> Currently I am a part time Computer Programmer Analyst student at |> Fanshawe College in London, Ontario, Canada and graduate this year. |> In the fall I will be (acceptance pending) attending The University of |> Western Ontario in Computer Sciences. I do currently work full time, |> but in a non-technical field, and my employer likely doesn't care |> about any of this. |> |> I want to work with Blastwave because I depend on it for a number of |> applications and libraries. Most software I do build for myself is |> linked against it, and I have seen mention at various times of others |> wanting some of this same software built on Solaris. Thus, it makes |> sense to me to get it integrated. |> |> So, what can we do? |> |> Regards, |> Eric |> |> |> |> ---------- Forwarded message ---------- |> From: Dennis Clarke |> Date: Apr 14, 2006 7:41 AM |> Subject: Re: [osol-discuss] Project proposal: Nevada Companion Software |> To: Eric Enright |> Cc: casper.dik at sun.com, Stefan Teleman , |> opensolaris-discuss at opensolaris.org, Glynn Foster |> , phil at blastwave.org |> |> |>> Twice over the past two years I have made attempts at joining the |>> Blastwave maintainer community, only to ultimately be rejected because |>> I do not have a "work email address" (I am a student (older student, |>> far from a freshman)). This was explained to me by Phil Brown as |>> being for legal reasons, as employers are more responsible for the |>> actions of their employees than educational institutions are. Fair |>> enough, this makes some sense to me, especially considering the |>> setting of many Solaris installations. |>> |>> In that regard, there is /some/ exclusivity at Blastwave. This rather |>> put me off, since one of the projects has accepted patches by me in |>> the past which provides Solaris support (Licq), and another one of the |>> projects now lists packages created by me on their homepage (gtkpod). |>> The latter even has CSW dependencies, and was created using modified |>> cswutils scripts. |>> |>> This post is a bit offtopic, I admit, but "exclusivity" activated |>> something in my brain like a keyword. I am a happy Blastwave user who |>> has been following most of this discussion. |>> |> Eric, this is a really tough policy. It is tough to enforce and tough to |> tell people, good people, that no, we can not have you building software |> that will be running in the servers at Lockheed Martin, NASA and MIT. The |> issue of liability has been a very tough one but it was needed. |> |> Let's consider the posibility that someone joins and claims to be a |> programmer for company XYZ Inc. In truth they work for no one. We call up |> company XYZ to confirm that they actually work there and then someone will |> say "yes, they work here and we will put you right through." |> |> In truth it is two people in the same room and their business is to destroy |> servers with really nasty software. |> |> So we have another stage of verification. Someone must actually know this |> person and be able to verify them. Also a really tough policy to enforce. |> I think we had a person in Germany that waited for a while before someone |> could drive over to them and meet them. We also had to say goodbye to |> another valuable maintainer because he could not be verified. |> |> Have there been exceptions? Absolutely. No one ever questioned Eric |> Boutilier or Torrey McMahon ( http://blogs.sun.com/roller/page/torrey ) or |> J?rg Schilling. But some measures, as I am sure you will agree, need to be |> enforced to ensure safety and quality. |> |> Clearly we need to look at your case again. |> |> -- |> Dennis Clarke |> |> |> |> -- |> Eric Enright |> _______________________________________________ |> users mailing list |> users at lists.blastwave.org |> https://lists.blastwave.org/mailman/listinfo/users |> | _______________________________________________ | users mailing list | users at lists.blastwave.org | https://lists.blastwave.org/mailman/listinfo/users From gmAB.20.rmaeder at spamgourmet.com Mon Apr 17 16:44:54 2006 From: gmAB.20.rmaeder at spamgourmet.com (Roman Maeder) Date: Mon, 17 Apr 2006 16:44:54 +0200 Subject: [csw-users] which KDE version on 'stable'? Message-ID: my up-to-date package versions for KDE (stable branch, after "pkg-get -U" and "pkg-get compare") on Solaris 8 look like: kde_gcc_dtlogin 3.4.2,REV=2005.09.16 SAME kdeaddons_gcc 3.4.2 SAME kdeadmin_gcc 3.4.1 SAME kdeartwork_gcc 3.4.1 SAME kdebase_gcc 3.4.2,REV=2005.09.20 SAME kdeedu_gcc 3.5.1 SAME kdegames_gcc 3.5.1 SAME kdegraphics_gcc 3.4.2 SAME kdelibs_gcc 3.4.2 SAME kdemultimedia_gcc 3.4.2 SAME kdenetwork_gcc 3.4.3 SAME kdepim_gcc 3.4.1 SAME kdeutils_gcc 3.4.2 SAME which is quite a collection of different version numbers. Is this really all up to date? Which version of KDE is this supposed to be? Roman From maybird1776 at yahoo.com Tue Apr 18 20:25:41 2006 From: maybird1776 at yahoo.com (ken mays) Date: Tue, 18 Apr 2006 11:25:41 -0700 (PDT) Subject: [csw-users] Fwd: [csw-maintainers] [Fwd: which KDE version on 'stable'?] Message-ID: <20060418182541.36304.qmail@web33608.mail.mud.yahoo.com> For anyone use CSW_kdegcc: What you are seeing in the build versions was the last time the package was patched/updated under the KDE 3.4.x branch (last version being 3.4.3). The latest CSW_kdegcc is mainly based on the KDE 3.4.3 branch, with a few optional packages from KDE v3.5.x. ~ Ken Mays __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com -------------- next part -------------- An embedded message was scrubbed... From: Alessio Cervellin Subject: [csw-maintainers] [Fwd: [csw-users] which KDE version on 'stable'?] Date: Mon, 17 Apr 2006 17:37:54 +0200 Size: 4776 URL: From pub.cra at gmail.com Wed Apr 19 11:29:32 2006 From: pub.cra at gmail.com (Pub cra) Date: Wed, 19 Apr 2006 11:29:32 +0200 Subject: [csw-users] security updates on the stable branch? Message-ID: <2b7a00120604190229i2d607e42ucd033ce414ca1a76@mail.gmail.com> Hi, I use the unstable branch of blastwave and I am pretty happy with it. I see you have now a stable branch what makes it very interesting for the solaris 8 servers at work (replacing sunfreeware). I wonder if there are security uploads to the stable branch or that it's stays the same until the next stable migration 3 month later. Thx, Cra -------------- next part -------------- An HTML attachment was scrubbed... URL: From james at blastwave.org Wed Apr 19 11:44:17 2006 From: james at blastwave.org (James Lee) Date: Wed, 19 Apr 2006 09:44:17 GMT Subject: [csw-users] security updates on the stable branch? In-Reply-To: <2b7a00120604190229i2d607e42ucd033ce414ca1a76@mail.gmail.com> References: <2b7a00120604190229i2d607e42ucd033ce414ca1a76@mail.gmail.com> Message-ID: <20060419.9441700.3110964707@landeck.jamesipoos.com> On 19/04/06, 10:29:32, Pub cra wrote regarding [csw-users] security updates on the stable branch?: > I wonder if there are security uploads to the stable branch or that it's > stays the same until the next stable migration 3 month later. If there is a security or loss-of-data issue then stable will be updated and by a mid term stable release. An example of this was the 2006-02 interim release which included Posgresql 8.1.3. James. From pub.cra at gmail.com Wed Apr 19 12:02:41 2006 From: pub.cra at gmail.com (Pub cra) Date: Wed, 19 Apr 2006 12:02:41 +0200 Subject: [csw-users] security updates on the stable branch? In-Reply-To: <20060419.9441700.3110964707@landeck.jamesipoos.com> References: <2b7a00120604190229i2d607e42ucd033ce414ca1a76@mail.gmail.com> <20060419.9441700.3110964707@landeck.jamesipoos.com> Message-ID: <2b7a00120604190302s1edf5023ocbe7ee2216dbb7a8@mail.gmail.com> On 4/19/06, James Lee wrote: > > On 19/04/06, 10:29:32, Pub cra wrote regarding > [csw-users] security updates on the stable branch?: > > > I wonder if there are security uploads to the stable branch or that it's > > stays the same until the next stable migration 3 month later. > > If there is a security or loss-of-data issue then stable will > be updated and by a mid term stable release. > > An example of this was the 2006-02 interim release which included > Posgresql 8.1.3. > > So no on package-based updates (like a apache or openssh hole). Mmm, though decision between stable and unstable then. Thanks for your answer, cra -------------- next part -------------- An HTML attachment was scrubbed... URL: From james at blastwave.org Wed Apr 19 12:18:41 2006 From: james at blastwave.org (James Lee) Date: Wed, 19 Apr 2006 10:18:41 GMT Subject: [csw-users] security updates on the stable branch? In-Reply-To: <2b7a00120604190302s1edf5023ocbe7ee2216dbb7a8@mail.gmail.com> References: <2b7a00120604190229i2d607e42ucd033ce414ca1a76@mail.gmail.com> <20060419.9441700.3110964707@landeck.jamesipoos.com> <2b7a00120604190302s1edf5023ocbe7ee2216dbb7a8@mail.gmail.com> Message-ID: <20060419.10184100.836901299@landeck.jamesipoos.com> On 19/04/06, 11:02:41, Pub cra wrote regarding Re: [csw-users] security updates on the stable branch?: > > > I wonder if there are security uploads to the stable branch or that it's > > > stays the same until the next stable migration 3 month later. > > > > If there is a security or loss-of-data issue then stable will > > be updated and by a mid term stable release. > > > > An example of this was the 2006-02 interim release which included > > Posgresql 8.1.3. > > > > > So no on package-based updates (like a apache or openssh hole). Mmm, > though decision between stable and unstable then. Not sure what you mean, if there was a problem with apache or openssh, then yes, their packages would be updated and added. All packages in stable would be QA checked as a set and a mid-term stable release takes place. James. From pub.cra at gmail.com Thu Apr 20 19:29:16 2006 From: pub.cra at gmail.com (Pub cra) Date: Thu, 20 Apr 2006 19:29:16 +0200 Subject: [csw-users] security updates on the stable branch? In-Reply-To: <20060419.10184100.836901299@landeck.jamesipoos.com> References: <2b7a00120604190229i2d607e42ucd033ce414ca1a76@mail.gmail.com> <20060419.9441700.3110964707@landeck.jamesipoos.com> <2b7a00120604190302s1edf5023ocbe7ee2216dbb7a8@mail.gmail.com> <20060419.10184100.836901299@landeck.jamesipoos.com> Message-ID: <2b7a00120604201029h66b3ed36n5ec1d82783baf17e@mail.gmail.com> On 4/19/06, James Lee wrote: > Not sure what you mean, if there was a problem with apache or openssh, > then yes, their packages would be updated and added. All packages in > stable would be QA checked as a set and a mid-term stable release takes > place. > > Sorry, I'm was thinking of the debian style of security updates when I posed the question: the update (patching/upgrade, QA and release happens by package and not by release. So by example when an apache vulnerability is found, only *that* package is patched and re-released inmediately. So between releases you have lots of updates. Blastwaves seems to work diffently if I read your mail correctly. You correct a collection of bugs on several packages and release a "release" (on timely basis, but with mid-term releases if necessary). Advantage is less breakage, disavantage is that it's *possible * that you'll be running vulnerable software for weeks or months (until the next mid-term stable release). Please do not read my mail as a critic, as I really do appreciate your work. I just need to evaluate things correctly before taking a decision to move a serverpark from sunfreeware/self-compile to blastwave. C. From a.cervellin at acm.org Fri Apr 21 22:18:33 2006 From: a.cervellin at acm.org (Alessio Cervellin) Date: Fri, 21 Apr 2006 22:18:33 +0200 Subject: [csw-users] pbzip2 0.9.6 available on testing Message-ID: <44493E19.6080901@acm.org> pbzip2 0.9.6 is now available on /testing (this is a new CSW package). PBZIP2 is a parallel implementation of the bzip2 block-sorting file compressor that uses pthreads and achieves near-linear speedup on SMP machines. The output of this version is fully compatible with bzip2 v1.0.2 (ie: anything compressed with pbzip2 can be decompressed with bzip2). It is simply great: its speedup against bzip2 is linear to the number of processors or cores of the system, e.g. on a dual sparc processor machine it compresses a file in half the time of the standard bzip2, and it produces a fully backward compatible .bz2 archive. Same gain is achieved on machines having single processor with dual core like intel centrino duo. Once you try it, you'll forget the old bzip2. http://compression.ca/pbzip2/ Dependencies: CSWbzip2 From Kenny.Raby at acs-inc.com Fri Apr 21 23:29:28 2006 From: Kenny.Raby at acs-inc.com (Raby, Kenny G) Date: Fri, 21 Apr 2006 16:29:28 -0500 Subject: [csw-users] Getting Seamonkey to work from local display Message-ID: <0861D2805488D448AF65D655E899D97A03DCF93C@amsexc01.ams.acs-inc.net> I've been trying to bring up seamonkey (I also tried mozilla which is having the same problem) on the local display of a SunBlade 150 running Solaris 9, but it core dumps (under CDE, I can't get CSW Gnome to work either) If I bring it up using SecureCRT with X-Windows forwarding to Exceed on my Windows desktop it works. Any suggestions as to what I am doing wrong? Kenny -------------- next part -------------- An HTML attachment was scrubbed... URL: From a.cervellin at acm.org Fri Apr 21 23:33:45 2006 From: a.cervellin at acm.org (Alessio Cervellin) Date: Fri, 21 Apr 2006 23:33:45 +0200 Subject: [csw-users] Getting Seamonkey to work from local display In-Reply-To: <0861D2805488D448AF65D655E899D97A03DCF93C@amsexc01.ams.acs-inc.net> References: <0861D2805488D448AF65D655E899D97A03DCF93C@amsexc01.ams.acs-inc.net> Message-ID: <44494FB9.6020007@acm.org> Raby, Kenny G wrote: > > I've been trying to bring up seamonkey (I also tried mozilla which is > having the same problem) on the local display of a SunBlade 150 running > Solaris 9, but it core dumps (under CDE, I can't get CSW Gnome to work > either) just as a test, why not to try CSWxfce as desktop manager? From Kenny.Raby at acs-inc.com Fri Apr 21 23:35:51 2006 From: Kenny.Raby at acs-inc.com (Raby, Kenny G) Date: Fri, 21 Apr 2006 16:35:51 -0500 Subject: [csw-users] Getting Seamonkey to work from local display Message-ID: <0861D2805488D448AF65D655E899D97A03DCF93D@amsexc01.ams.acs-inc.net> > -----Original Message----- > From: users-bounces+kenny.raby=acs-inc.com at lists.blastwave.org > [mailto:users-bounces+kenny.raby=acs-inc.com at lists.blastwave.org] On > Behalf Of Alessio Cervellin > Sent: Friday, April 21, 2006 2:34 PM > To: questions and discussions > Subject: Re: [csw-users] Getting Seamonkey to work from local display > > Raby, Kenny G wrote: > > > > I've been trying to bring up seamonkey (I also tried mozilla which is > > having the same problem) on the local display of a SunBlade 150 running > > Solaris 9, but it core dumps (under CDE, I can't get CSW Gnome to work > > either) > > just as a test, why not to try CSWxfce as desktop manager? Actually I did a few months ago and had the same problem as Gnome in that when I select it from the login screen it just doesn't work. But since I did that a few months ago I can try again. -------------- next part -------------- An HTML attachment was scrubbed... URL: From a.cervellin at acm.org Fri Apr 21 23:40:04 2006 From: a.cervellin at acm.org (Alessio Cervellin) Date: Fri, 21 Apr 2006 23:40:04 +0200 Subject: [csw-users] Getting Seamonkey to work from local display In-Reply-To: <0861D2805488D448AF65D655E899D97A03DCF93D@amsexc01.ams.acs-inc.net> References: <0861D2805488D448AF65D655E899D97A03DCF93D@amsexc01.ams.acs-inc.net> Message-ID: <44495134.2050405@acm.org> Raby, Kenny G wrote: > Actually I did a few months ago and had the same problem as Gnome in > that when I select it from the login screen it just doesn't work. But > since I did that a few months ago I can try again. mmm, if CSWgnome does not work, CSWxfce does not work, CSWseamonkey does not work, CSWmozilla does not work.... i suspect there is something messed up on your system. maybe you could totally remove all the CSW packages (and so /opt/csw) and install again everything. Or maybe there is something corrupted in the system libraries, who knows... From Kenny.Raby at acs-inc.com Fri Apr 21 23:49:57 2006 From: Kenny.Raby at acs-inc.com (Raby, Kenny G) Date: Fri, 21 Apr 2006 16:49:57 -0500 Subject: [csw-users] Getting Seamonkey to work from local display Message-ID: <0861D2805488D448AF65D655E899D97A03DCF93E@amsexc01.ams.acs-inc.net> > -----Original Message----- > From: users-bounces+kenny.raby=acs-inc.com at lists.blastwave.org > [mailto:users-bounces+kenny.raby=acs-inc.com at lists.blastwave.org] On > Behalf Of Alessio Cervellin > Sent: Friday, April 21, 2006 2:40 PM > To: questions and discussions > Subject: Re: [csw-users] Getting Seamonkey to work from local display > > Raby, Kenny G wrote: > > > Actually I did a few months ago and had the same problem as Gnome in > > that when I select it from the login screen it just doesn't work. But > > since I did that a few months ago I can try again. > > mmm, if CSWgnome does not work, CSWxfce does not work, CSWseamonkey does > not work, CSWmozilla does not work.... i suspect there is something > messed up on your system. maybe you could totally remove all the CSW > packages (and so /opt/csw) and install again everything. Or maybe there > is something corrupted in the system libraries, who knows... I actually did the removal of all CSW packages and reinstall of CSW on the SB 150 about a week ago as well. I also tried to get CSW Gnome to work on a V890 and a V880 which had recently been installed with Solaris 9 and it didn't work on them either. seamonkey works if I do the X-11 tunneling to Exceed on my Windows PC or even if I just export a Display to my Windows PC. On the V890 I also tried bringing it up under Sun's Gnome and it core dumped. Bringing up a CDE desktop using XDMCP via Exceed it will core dump. On the V890 and V880 Sun's version of Mozilla works well (I don't have it installed on the SunBlade 150) under CDE via Reflection/Exceed. So whatever I'm doing wrong I've done it multiple times on multiple machines. Kenny -------------- next part -------------- An HTML attachment was scrubbed... URL: From Kenny.Raby at acs-inc.com Sat Apr 22 00:02:36 2006 From: Kenny.Raby at acs-inc.com (Raby, Kenny G) Date: Fri, 21 Apr 2006 17:02:36 -0500 Subject: [csw-users] Getting Seamonkey to work from local display Message-ID: <0861D2805488D448AF65D655E899D97A03DCF93F@amsexc01.ams.acs-inc.net> > Behalf Of Alessio Cervellin > Sent: Friday, April 21, 2006 2:34 PM > To: questions and discussions > Subject: Re: [csw-users] Getting Seamonkey to work from local display > > Raby, Kenny G wrote: > > > > I've been trying to bring up seamonkey (I also tried mozilla which is > > having the same problem) on the local display of a SunBlade 150 running > > Solaris 9, but it core dumps (under CDE, I can't get CSW Gnome to work > > either) > > just as a test, why not to try CSWxfce as desktop manager? I just installed xfce and xfce_dtlogin on the SB150 (I use XFCE on Linux boxes as well so am familiar with it but only very basically) I log out, select it from the log in screen it comes up with a nice pretty blue screen with the mouse and XFCE on it and nothing else. The very first time I try to click the right mouse button a rectangle appears as if it wants to bring up the menu but then it goes away and nothing else happens. It just sits there. Pretty but not very useful. I even rebooted but that didn't change anything. Kenny -------------- next part -------------- An HTML attachment was scrubbed... URL: From hasei at mail.com Sat Apr 22 01:54:08 2006 From: hasei at mail.com (Spectrum V. Maligning) Date: Fri, 21 Apr 2006 19:54:08 -0400 Subject: [csw-users] like to watch child porno? Message-ID: <7425969985.20060421195408@mail.com> Like to watch child porno? You need to hide your IP address! by the soft for hiding your IP and get 100 links with the best CP sites for free! http://www.netconceal.com/ From james at blastwave.org Sat Apr 22 10:18:20 2006 From: james at blastwave.org (James Lee) Date: Sat, 22 Apr 2006 08:18:20 GMT Subject: [csw-users] Getting Seamonkey to work from local display In-Reply-To: <0861D2805488D448AF65D655E899D97A03DCF93C@amsexc01.ams.acs-inc.net> References: <0861D2805488D448AF65D655E899D97A03DCF93C@amsexc01.ams.acs-inc.net> Message-ID: <20060422.8182000.895621624@landeck.jamesipoos.com> On 21/04/06, 22:29:28, "Raby," Kenny G wrote regarding [csw-users] Getting Seamonkey to work from local display: > I've been trying to bring up seamonkey (I also tried mozilla which is > having the same problem) on the local display of a SunBlade 150 running > Solaris 9, but it core dumps (under CDE, I can't get CSW Gnome to work > either) > If I bring it up using SecureCRT with X-Windows forwarding to Exceed on > my Windows desktop it works. What is your colour depth on each display? (Run xdpyinfo and look for depths.) James. From eric.enright at gmail.com Sat Apr 22 11:15:35 2006 From: eric.enright at gmail.com (Eric Enright) Date: Sat, 22 Apr 2006 05:15:35 -0400 Subject: [csw-users] Fwd: Maintainer Verification In-Reply-To: <20060417150409.0000625b@sealion> References: <3a74b99d0604141116u3c864e83jfcec96375590fc7a@mail.gmail.com> <20060417150409.0000625b@sealion> Message-ID: <3a74b99d0604220215w1229d7csdb5e62f3fe647894@mail.gmail.com> On 4/17/06, Thomas F. Schiller wrote: > I am not very happy about what you wrote:-( Neither am I.. > BUT I read this I don't have the hope that I may do it for blastwave in the near future. > So I will sit down and wait that less and less people are doing more and more work. You echo many of my own thoughts.. > Quality means (well at least in my company here in Germany) also that emails are answered and the fulfillment of commitments. Indeed. My original post to this list about this matter was over a week ago, and the only replies received were yours and Scott Walker's. When discussing this on osol-discuss, replies were quick and to the point. When moving the discussion to a more proper forum, it appears to fall upon deaf ears. I can understand being busy, and not having the answer to every question, but in Dennis' transcript below I see a commitment. Even an acknowledgement of this thread would be nice. Here I am using CSW every day, and wanting to help. How can we make this happen? > > > On Fri, 14 Apr 2006 14:16:15 -0400 > "Eric Enright" wrote: > > > Hello, > > > > The forwarded message is from a discussion on osol-discuss concerning > > myself and the identity verification required of new Blastwave > > maintainers. As I mentioned in the thread, I am willing to work with > > whoever/do whatever to get my identity proven. > > > > Currently I am a part time Computer Programmer Analyst student at > > Fanshawe College in London, Ontario, Canada and graduate this year. > > In the fall I will be (acceptance pending) attending The University of > > Western Ontario in Computer Sciences. I do currently work full time, > > but in a non-technical field, and my employer likely doesn't care > > about any of this. > > > > I want to work with Blastwave because I depend on it for a number of > > applications and libraries. Most software I do build for myself is > > linked against it, and I have seen mention at various times of others > > wanting some of this same software built on Solaris. Thus, it makes > > sense to me to get it integrated. > > > > So, what can we do? > > > > Regards, > > Eric > > > > > > > > ---------- Forwarded message ---------- > > From: Dennis Clarke > > Date: Apr 14, 2006 7:41 AM > > Subject: Re: [osol-discuss] Project proposal: Nevada Companion Software > > To: Eric Enright > > Cc: casper.dik at sun.com, Stefan Teleman , > > opensolaris-discuss at opensolaris.org, Glynn Foster > > , phil at blastwave.org > > > > > > > > > > Twice over the past two years I have made attempts at joining the > > > Blastwave maintainer community, only to ultimately be rejected because > > > I do not have a "work email address" (I am a student (older student, > > > far from a freshman)). This was explained to me by Phil Brown as > > > being for legal reasons, as employers are more responsible for the > > > actions of their employees than educational institutions are. Fair > > > enough, this makes some sense to me, especially considering the > > > setting of many Solaris installations. > > > > > > In that regard, there is /some/ exclusivity at Blastwave. This rather > > > put me off, since one of the projects has accepted patches by me in > > > the past which provides Solaris support (Licq), and another one of the > > > projects now lists packages created by me on their homepage (gtkpod). > > > The latter even has CSW dependencies, and was created using modified > > > cswutils scripts. > > > > > > This post is a bit offtopic, I admit, but "exclusivity" activated > > > something in my brain like a keyword. I am a happy Blastwave user who > > > has been following most of this discussion. > > > > > > > Eric, this is a really tough policy. It is tough to enforce and tough to > > tell people, good people, that no, we can not have you building software > > that will be running in the servers at Lockheed Martin, NASA and MIT. The > > issue of liability has been a very tough one but it was needed. > > > > Let's consider the posibility that someone joins and claims to be a > > programmer for company XYZ Inc. In truth they work for no one. We call up > > company XYZ to confirm that they actually work there and then someone will > > say "yes, they work here and we will put you right through." > > > > In truth it is two people in the same room and their business is to destroy > > servers with really nasty software. > > > > So we have another stage of verification. Someone must actually know this > > person and be able to verify them. Also a really tough policy to enforce. > > I think we had a person in Germany that waited for a while before someone > > could drive over to them and meet them. We also had to say goodbye to > > another valuable maintainer because he could not be verified. > > > > Have there been exceptions? Absolutely. No one ever questioned Eric > > Boutilier or Torrey McMahon ( http://blogs.sun.com/roller/page/torrey ) or > > J?rg Schilling. But some measures, as I am sure you will agree, need to be > > enforced to ensure safety and quality. > > > > Clearly we need to look at your case again. > > > > -- > > Dennis Clarke > > > > > > > > -- > > Eric Enright > > _______________________________________________ > > users mailing list > > users at lists.blastwave.org > > https://lists.blastwave.org/mailman/listinfo/users > > > -- Eric Enright From james at blastwave.org Sat Apr 22 13:06:01 2006 From: james at blastwave.org (James Lee) Date: Sat, 22 Apr 2006 11:06:01 GMT Subject: [csw-users] security updates on the stable branch? References: <2b7a00120604190229i2d607e42ucd033ce414ca1a76@mail.gmail.com> <20060419.9441700.3110964707@landeck.jamesipoos.com> <2b7a00120604190302s1edf5023ocbe7ee2216dbb7a8@mail.gmail.com> <20060419.10184100.836901299@landeck.jamesipoos.com> <2b7a00120604201029h66b3ed36n5ec1d82783baf17e@mail.gmail.com> Message-ID: <20060422.11060100.3166170071@landeck.jamesipoos.com> On 20/04/06, 18:29:16, Pub cra wrote regarding Re: [csw-users] security updates on the stable branch?: > Sorry, I'm was thinking of the debian style of security updates when I > posed the question: the update (patching/upgrade, QA and release > happens by package and not by release. > So by example when an apache vulnerability is found, only *that* > package is patched and re-released inmediately. So between releases > you have lots of updates. > Blastwaves seems to work diffently if I read your mail correctly. You > correct a collection of bugs on several packages and release a > "release" (on timely basis, but with mid-term releases if necessary). > Advantage is less breakage, disavantage is that it's *possible * that > you'll be running vulnerable software for weeks or months (until the > next mid-term stable release). A release is a collection of individual packages, the problem is that most packages don't work in isolation as just individual packages and sometimes a particular version package only works when used in combination with other package of particular versions. Pick-n-mix of packages or adding one-at-a-time does *not* work. A "stable release" is a QAed collection, and is distinct from "a release to unstable" (or "a release to stable" if there was such a thing). A "stable release" should be seen as an "integrated software suite". Examples: CSWfoo requires CSWbar, then CSWbar is updated. Does CSWfoo still work? Answer: not necessarily. If it is found that in order to add CSWbar a new CSWfoo is needed then *both* have to be and will be added to stable. The chain can get longer because it might be that CSWbaz either requires or supports CSWfoo and it too has to be updated. Those packages not affected will not be added to stable mid term. The term "package tree" is often used, it's not a tree in the usual sense, the interconnection forms not a tree but a network: http://pfelecan.free.fr/blastwave/dependencyGraph/cswdepgraph.html As to the immediacy of response to security updates it's only happened once in our short history. Our posgresql packages with the fix were in the stable release candidate and being tested before the problem was publicly announced by Postgres themselves. Stable does not mean just old. > Please do not read my mail as a critic, as I really do appreciate your > work. I just need to evaluate things correctly before taking a > decision to move a serverpark from sunfreeware/self-compile to > blastwave. Not at all, you ask both probing and useful questions. I know that many of these issues are not clear from the Blastwave documentation. Blastwave has the potential to be great, it's not there yet, but I hope at least that the direction is correct and it will progress. James. From yurchp at yahoo.com Sun Apr 23 01:14:41 2006 From: yurchp at yahoo.com (Philip Yurchuk) Date: Sat, 22 Apr 2006 16:14:41 -0700 (PDT) Subject: [csw-users] Any dspam users? Message-ID: <20060422231441.88914.qmail@web35801.mail.mud.yahoo.com> I'm trying to set up dspam and running into some trouble. I'm using Solaris 10 x86, and trying to integrate dspam with Postfix and MySQL 4 (both from Blastwave). I was wondering if anyone got dspam working on their machine, and if they'd be kind enough to share their their configure options, and postfix/dspam conf files. Thanks in advance, Phil __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From yurchp at yahoo.com Sun Apr 23 06:23:38 2006 From: yurchp at yahoo.com (Philip Yurchuk) Date: Sat, 22 Apr 2006 21:23:38 -0700 (PDT) Subject: [csw-users] mod_php for Apache2? Message-ID: <20060423042338.25886.qmail@web35802.mail.mud.yahoo.com> Hello, I noticed that mod_php (specifically mod_php_core) has support for Apache 2, but I don't see any ap2_modphp package to install it. Is there a how-to document for this? A 3rd party PHP app I use won't work under PHP 5, so if I can switch to 4 that'd be a big help. Thanks, Philip __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From mark at markround.com Sun Apr 23 10:58:17 2006 From: mark at markround.com (Mark Round) Date: Sun, 23 Apr 2006 09:58:17 +0100 Subject: [csw-users] mod_php for Apache2? In-Reply-To: <20060423042338.25886.qmail@web35802.mail.mud.yahoo.com> References: <20060423042338.25886.qmail@web35802.mail.mud.yahoo.com> Message-ID: <1035F48C-3305-4659-A2E4-22BE4AA73C5A@markround.com> Hiya, You don't need a separate package. The core mod_php package has both SAPIs for Spache 1 and Apache 2 - when you install it, it will activate itself in whichever verison of CSW Apache you have installed (or even both). Hope this helps, -Mark On 23 Apr 2006, at 5:23 am, Philip Yurchuk wrote: > Hello, > > I noticed that mod_php (specifically mod_php_core) has > support for Apache 2, but I don't see any ap2_modphp > package to install it. Is there a how-to document for > this? A 3rd party PHP app I use won't work under PHP > 5, so if I can switch to 4 that'd be a big help. > > Thanks, > Philip > > > __________________________________________________ > Do You Yahoo!? > Tired of spam? Yahoo! Mail has the best spam protection around > http://mail.yahoo.com > _______________________________________________ > users mailing list > users at lists.blastwave.org > https://lists.blastwave.org/mailman/listinfo/users > -- Mark Round mark at markround.com :wq From owigger at geo.unizh.ch Sun Apr 23 22:54:51 2006 From: owigger at geo.unizh.ch (Othmar Wigger) Date: Sun, 23 Apr 2006 22:54:51 +0200 (MEST) Subject: [csw-users] Xfce hangs (was: Getting Seamonkey to work) In-Reply-To: References: Message-ID: On Sat, 22 Apr 2006, Raby, Kenny G wrote: > > I just installed xfce and xfce_dtlogin on the SB150 (I use XFCE on Linux > boxes as well so am familiar with it but only very basically) > > I log out, select it from the log in screen it comes up with a nice pretty > blue screen with the mouse and XFCE on it and nothing else. The very first > time I try to click the right mouse button a rectangle appears as if it > wants to bring up the menu but then it goes away and nothing else happens. > It just sits there. Pretty but not very useful. I even rebooted but that > didn't change anything. Xfce hangs like this on all the Solaris10 boxes I ever installed with CSW. I found that killing the utaudio process helps. You can restart /opt/SUNWut/bin/utaudio later in the session and enjoy sound. Only the utaudio that gets started from Xfce session startup hangs. Othmar From yurchp at yahoo.com Mon Apr 24 00:29:13 2006 From: yurchp at yahoo.com (Philip Yurchuk) Date: Sun, 23 Apr 2006 15:29:13 -0700 (PDT) Subject: [csw-users] mod_php for Apache2? In-Reply-To: <1035F48C-3305-4659-A2E4-22BE4AA73C5A@markround.com> Message-ID: <20060423222913.30011.qmail@web35814.mail.mud.yahoo.com> Thanks! I had ap2_modphp5 installed, so I had to uninstall that, and reinstall mod_php. Now I'm back in business, and can start working on Tomcat/mod_jk integration :) Thanks again, Phil --- Mark Round wrote: > Hiya, > > You don't need a separate package. The core mod_php > package has both > SAPIs for Spache 1 and Apache 2 - when you install > it, it will > activate itself in whichever verison of CSW Apache > you have installed > (or even both). > > Hope this helps, > > -Mark > > On 23 Apr 2006, at 5:23 am, Philip Yurchuk wrote: > > > Hello, > > > > I noticed that mod_php (specifically mod_php_core) > has > > support for Apache 2, but I don't see any > ap2_modphp > > package to install it. Is there a how-to document > for > > this? A 3rd party PHP app I use won't work under > PHP > > 5, so if I can switch to 4 that'd be a big help. > > > > Thanks, > > Philip > > > > > > __________________________________________________ > > Do You Yahoo!? > > Tired of spam? Yahoo! Mail has the best spam > protection around > > http://mail.yahoo.com > > _______________________________________________ > > users mailing list > > users at lists.blastwave.org > > https://lists.blastwave.org/mailman/listinfo/users > > > > -- > Mark Round > mark at markround.com > :wq > > > > _______________________________________________ > users mailing list > users at lists.blastwave.org > https://lists.blastwave.org/mailman/listinfo/users > __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From mats.larsson at ericsson.com Mon Apr 24 09:50:08 2006 From: mats.larsson at ericsson.com (Mats Larsson) Date: Mon, 24 Apr 2006 09:50:08 +0200 Subject: [csw-users] pbzip2 0.9.6 available on testing In-Reply-To: <44493E19.6080901@acm.org> References: <44493E19.6080901@acm.org> Message-ID: <444C8330.80002@ericsson.com> On 2006-04-21 22:18, Alessio Cervellin wrote: > pbzip2 0.9.6 is now available on /testing (this is a new CSW package). Hmmm can't find it on http://www.blastwave.org/testing/ It shows up on http://www.blastwave.org/packages.php but I can't install it with pkg-get % pkg-get -Ui pbzip2 ... Updated description file ERROR: pbzip2 unrecognized Perhaps you need to run pkg-get -U % Am I missing something? /MOL From a.cervellin at acm.org Mon Apr 24 22:35:54 2006 From: a.cervellin at acm.org (Alessio Cervellin) Date: Mon, 24 Apr 2006 22:35:54 +0200 Subject: [csw-users] pbzip2 0.9.6 available on testing In-Reply-To: <444C8330.80002@ericsson.com> References: <44493E19.6080901@acm.org> <444C8330.80002@ericsson.com> Message-ID: <444D36AA.4070802@acm.org> Mats Larsson wrote: > Hmmm can't find it on http://www.blastwave.org/testing/ > > It shows up on http://www.blastwave.org/packages.php but I can't install > it with pkg-get > > % pkg-get -Ui pbzip2 > ... > Updated description file > ERROR: pbzip2 unrecognized > Perhaps you need to run pkg-get -U > % > > Am I missing something? it's not anymore in /testing because it passed in the unstable catalog just a few hours ago. try to update your catalog with pkg-get -U, if you can't still download it, than check that the mirror you are using is in sync with the very latest catalog. From mats.larsson at ericsson.com Tue Apr 25 09:34:04 2006 From: mats.larsson at ericsson.com (Mats Larsson) Date: Tue, 25 Apr 2006 09:34:04 +0200 Subject: [csw-users] pbzip2 0.9.6 available on testing In-Reply-To: <444D36AA.4070802@acm.org> References: <44493E19.6080901@acm.org> <444C8330.80002@ericsson.com> <444D36AA.4070802@acm.org> Message-ID: <444DD0EC.4050009@ericsson.com> On 2006-04-24 22:35, Alessio Cervellin wrote: > Mats Larsson wrote: > >> Hmmm can't find it on http://www.blastwave.org/testing/ >> >> It shows up on http://www.blastwave.org/packages.php but I can't install >> it with pkg-get >> >> % pkg-get -Ui pbzip2 >> ... >> Updated description file >> ERROR: pbzip2 unrecognized >> Perhaps you need to run pkg-get -U >> % >> >> Am I missing something? > > it's not anymore in /testing because it passed in the unstable catalog > just a few hours ago. > try to update your catalog with pkg-get -U, if you can't still download > it, than check that the mirror you are using is in sync with the very > latest catalog. I did try the following mirrors: http://blastwave.informatik.uni-erlangen.de/csw/unstable http://ibiblio.org/pub/packages/solaris/csw/unstable According to http://www.canoedissent.org.uk/mirrorStatus.jsp they are in sync. Still the same error. /MOL From james at blastwave.org Tue Apr 25 11:02:21 2006 From: james at blastwave.org (James Lee) Date: Tue, 25 Apr 2006 09:02:21 GMT Subject: [csw-users] pbzip2 0.9.6 available on testing In-Reply-To: <444DD0EC.4050009@ericsson.com> References: <44493E19.6080901@acm.org> <444C8330.80002@ericsson.com> <444D36AA.4070802@acm.org> <444DD0EC.4050009@ericsson.com> Message-ID: <20060425.9022100.3354081082@landeck.jamesipoos.com> On 25/04/06, 08:34:04, Mats Larsson wrote regarding Re: [csw-users] pbzip2 0.9.6 available on testing: > > it's not anymore in /testing because it passed in the unstable catalog > > just a few hours ago. > > try to update your catalog with pkg-get -U, if you can't still download > > it, than check that the mirror you are using is in sync with the very > > latest catalog. > I did try the following mirrors: > http://blastwave.informatik.uni-erlangen.de/csw/unstable > http://ibiblio.org/pub/packages/solaris/csw/unstable > According to http://www.canoedissent.org.uk/mirrorStatus.jsp they are in > sync. It also shows the latest catalog (2006-04-19 20:47 GMT) is older than the pbzip2 testing announcement. Obviously it's not yet come through the system. James. From mats.larsson at ericsson.com Tue Apr 25 11:10:44 2006 From: mats.larsson at ericsson.com (Mats Larsson) Date: Tue, 25 Apr 2006 11:10:44 +0200 Subject: [csw-users] pbzip2 0.9.6 available on testing In-Reply-To: <20060425.9022100.3354081082@landeck.jamesipoos.com> References: <44493E19.6080901@acm.org> <444C8330.80002@ericsson.com> <444D36AA.4070802@acm.org> <444DD0EC.4050009@ericsson.com> <20060425.9022100.3354081082@landeck.jamesipoos.com> Message-ID: <444DE794.6090509@ericsson.com> On 2006-04-25 11:02, James Lee wrote: > On 25/04/06, 08:34:04, Mats Larsson wrote > regarding Re: [csw-users] pbzip2 0.9.6 available on testing: > >>> it's not anymore in /testing because it passed in the unstable catalog >>> just a few hours ago. >>> try to update your catalog with pkg-get -U, if you can't still download >>> it, than check that the mirror you are using is in sync with the very >>> latest catalog. > >> I did try the following mirrors: >> http://blastwave.informatik.uni-erlangen.de/csw/unstable >> http://ibiblio.org/pub/packages/solaris/csw/unstable > >> According to http://www.canoedissent.org.uk/mirrorStatus.jsp they are in >> sync. > > It also shows the latest catalog (2006-04-19 20:47 GMT) is older > than the pbzip2 testing announcement. Obviously it's not yet come > through the system. OK, then I suppose the testing was far more faster than the system ;). -- Mats Larsson | Sr Software Analyst | R&D IT Stockholm | Ericsson AB From a.cervellin at acm.org Tue Apr 25 11:33:11 2006 From: a.cervellin at acm.org (Alessio Cervellin) Date: Tue, 25 Apr 2006 11:33:11 +0200 Subject: [csw-users] pbzip2 0.9.6 available on testing In-Reply-To: <444DE794.6090509@ericsson.com> References: <44493E19.6080901@acm.org> <444C8330.80002@ericsson.com> <444D36AA.4070802@acm.org> <444DD0EC.4050009@ericsson.com> <20060425.9022100.3354081082@landeck.jamesipoos.com> <444DE794.6090509@ericsson.com> Message-ID: <444DECD7.8090708@acm.org> Mats Larsson wrote: > OK, then I suppose the testing was far more faster than the system ;). what happened is that the package has been moved from /testing to /newpkgs, the next step is from phil which updates the database (and that's why you can already see it here http://www.blastwave.org/packages/pbzip2). now i guess the next step is the updating of the catalog and the distribution of the file to the mirrors. probably this step is still in process... From secure at bb&t.com Wed Apr 26 02:28:09 2006 From: secure at bb&t.com (BB&T Bank) Date: Wed, 26 Apr 2006 09:28:09 +0900 Subject: [csw-users] Attention BB&T Online Client Message-ID: <1146011289.54351.qmail@bb&t.com> An HTML attachment was scrubbed... URL: From Roland.Egle at uibk.ac.at Wed Apr 26 16:22:06 2006 From: Roland.Egle at uibk.ac.at (Roland Egle) Date: Wed, 26 Apr 2006 16:22:06 +0200 Subject: [csw-users] openssh package Message-ID: <444F820E.4040902@uibk.ac.at> Hello How can i get informations about the compile options in this package? I am specially interested on the --with-pam option sincerelly Roland From a.cervellin at virgilio.it Wed Apr 26 16:30:15 2006 From: a.cervellin at virgilio.it (Alessio Cervellin) Date: Wed, 26 Apr 2006 15:30:15 +0100 (GMT+01:00) Subject: [csw-users] openssh package Message-ID: <10ad69b7e70.a.cervellin@virgilio.it> Da: Roland.Egle at uibk.ac.at > How can i get informations about the compile options in this package? >I am specially interested on the -- with-pam option try to check here: http://www.blastwave.org/packages. php/openssh then click on "view news and info" From gnutered at yahoo.com.au Thu Apr 27 05:55:45 2006 From: gnutered at yahoo.com.au (Tony Lewis) Date: Thu, 27 Apr 2006 13:55:45 +1000 Subject: [csw-users] a later GNOME? Message-ID: <445040C1.8040305@yahoo.com.au> Hey all, I'm a new subscriber, though I've been using the Blastwave s/w for about a year at work. What are the chances of getting an updated GNOME? GNOME is now 2.14, and 2.8 is starting to look a little aged, plus I'm having a Sol 9 + GNOME + VNC issue (see a soon-to-follow email) I realise that making the GNOME packages is likely to be no picnic. I had a quick stab using GARNOME yesterday. Hit brick walls quickly :-) Tony Lewis From lewis at tonyandrobyn.com Thu Apr 27 05:55:38 2006 From: lewis at tonyandrobyn.com (Tony and Robyn Lewis) Date: Thu, 27 Apr 2006 13:55:38 +1000 Subject: [csw-users] a later GNOME? Message-ID: <445040BA.9010500@tonyandrobyn.com> Hey all, I'm a new subscriber, though I've been using the Blastwave s/w for about a year at work. What are the chances of getting an updated GNOME? GNOME is now 2.14, and 2.8 is starting to look a little aged, plus I'm having a Sol 9 + GNOME + VNC issue (see a soon-to-follow email) I realise that making the GNOME packages is likely to be no picnic. I had a quick stab using GARNOME yesterday. Hit brick walls quickly :-) Tony Lewis From gnutered at yahoo.com.au Thu Apr 27 05:56:06 2006 From: gnutered at yahoo.com.au (Tony Lewis) Date: Thu, 27 Apr 2006 13:56:06 +1000 Subject: [csw-users] Solaris 9 + GNOME 2.8 / KDE 3.4 + Xvnc problem Message-ID: <445040D6.6090009@yahoo.com.au> I reported a bug a few days ago: http://www.blastwave.org/mantis/view_bug_page.php?f_id=1577 Is anyone else seeing this problem? It seems that when I run Xvnc at depth > 8, and try to log into a GNOME 2.8 or KDE 3.4 session, on a SPARC Solaris 9 box, I get a segfault. If I change any variable (CDE instead of GNOME/KDE, Sol 10 instead of 9, XDMCP rather than VNC, or depth = 8), it works. None of those are acceptable to my current problem, though, so I'm seeking some help in fixing this. Anyone got any suggestions? From doug at doughunt.co.uk Fri Apr 28 01:30:42 2006 From: doug at doughunt.co.uk (Doug) Date: Fri, 28 Apr 2006 00:30:42 +0100 Subject: [csw-users] upnp media server on Solaris SPARC Message-ID: <44515422.1010104@doughunt.co.uk> Hi Johan, I stumbled across your post on blastwave.org about running a upnp media server on a solaris box. I was wondering whether you had had any joy? Many thanks. Doug From customer.dept at chase.com Fri Apr 28 13:54:24 2006 From: customer.dept at chase.com (customer.dept at chase.com) Date: Fri, 28 Apr 2006 06:54:24 -0500 Subject: [csw-users] JPMorgan-Chase & Co. Suspension Notice Message-ID: An HTML attachment was scrubbed... URL: From tim.smith at degreec.com Fri Apr 28 13:55:00 2006 From: tim.smith at degreec.com (Tim Smith) Date: Fri, 28 Apr 2006 07:55:00 -0400 Subject: [csw-users] solaris10 release cycle In-Reply-To: <445040BA.9010500@tonyandrobyn.com> References: <445040BA.9010500@tonyandrobyn.com> Message-ID: <44520294.3060108@degreec.com> Anyone know when the next release of solaris10 is due? I have a couple installs pending and if its only a week or something away, I plan to hold off. -Tim Smith > > From realmcking at gmail.com Fri Apr 28 14:58:41 2006 From: realmcking at gmail.com (Mark McCoy) Date: Fri, 28 Apr 2006 07:58:41 -0500 Subject: [csw-users] solaris10 release cycle In-Reply-To: <44520294.3060108@degreec.com> References: <445040BA.9010500@tonyandrobyn.com> <44520294.3060108@degreec.com> Message-ID: Supposedly in June. On 4/28/06, Tim Smith wrote: > Anyone know when the next release of solaris10 is due? I have a couple > installs pending and if its only a week or something away, I plan to > hold off. > > -Tim Smith > > > > > > _______________________________________________ > users mailing list > users at lists.blastwave.org > https://lists.blastwave.org/mailman/listinfo/users > -- Mark McCoy -- Professional Unix geek If Tyranny and Oppression come to this land, it will be in the guise of fighting a foreign enemy. - James Madison, fourth US president (1751-1836) From customer.dept at chase.com Fri Apr 28 18:25:25 2006 From: customer.dept at chase.com (customer.dept at chase.com) Date: Fri, 28 Apr 2006 12:25:25 -0400 Subject: [csw-users] JPMorgan-Chase & Co. Suspension Notice Message-ID: An HTML attachment was scrubbed... URL: