Error while ACE 5.3.1 or 5.4.1 compiling and installing by MinGW 3.3.3Hi,
I have installed MinGW packages:
binutils-2.13.90-20030111-1.tar.gz
gcc-core-3.3.3-20040217-1.tar.gz
gcc-g++-3.3.3-20040217-1.tar.gz
mingw-runtime-3.3.tar.gz
w32api-2.5.tar.gz
Also I've configured environment due to ACE-INSTALL.html according
MinGW compiler. OS: WinXP SP2.
$ACE_ROOT=F:\ACE531
I get next compiling error:
F:\ACE531\ace>gmake
gmake.EXE[1]: Entering directory `F:/ACE531/ace'
d:\Utils\Unix\diff.EXE: -: Invalid argument
gmake.EXE[1]: Leaving directory `F:/ACE531/ace'
gmake.EXE[1]: Entering directory `F:/ACE531/ace'
d:/Utils/Unix/gmake.EXE -f Makefile.dirs SUBDIR_TARGET=all
RMCast.subdir
gmake.EXE[2]: Entering directory `F:/ACE531/ace'
d:/Utils/Unix/gmake.EXE -f Makefile -C RMCast all
gmake.EXE[3]: Entering directory `F:/ACE531/ace/RMCast'
Installing libACE_RMCast.dll -> F:\ACE531/ace
d:\Utils\Unix\cp.EXE: F:ACE531aceRMCast/libACE_RMCast.dll: No such
file or directory
Installing libACE_RMCast.dll -> F:\ACE531/ace
d:\Utils\Unix\cp.EXE: F:ACE531aceRMCast/libACE_RMCast.dll: No such
file or directory
gmake.EXE[3]: *** [F:\ACE531/ace/libACE_RMCast.dll] Error 1
gmake.EXE[3]: Leaving directory `F:/ACE531/ace/RMCast'
gmake.EXE[2]: *** [RMCast.subdir] Error 2
gmake.EXE[2]: Leaving directory `F:/ACE531/ace'
gmake.EXE[1]: *** [all.nested] Error 2
gmake.EXE[1]: Leaving directory `F:/ACE531/ace'
d:\Utils\Unix\gmake.EXE: *** [all] Error 2
There are no folder separators in path (for exampl...
Newbie question; why (cons (list 1 2) (list 3 4)) is ((1 2) 3 4) and not ((1 2) (3 4))Hi,
I just started to learn LISP, and stumbled in SICP upon
(cons (list 1 2) (list 3 4))
is evaluated to
((1 2) 3 4)
I do not understand why this is not:
((1 2) (3 4))
because
(cdr (cons (list 1 2) (list 3 4)))
is
(3 4)
and
(car (cons (list 1 2) (list 3 4)))
is
(1 2)
Is there a logical explanation?
Thank you for your patience.
--
Greg
Out of order,
gregor <gregor@ediwo.com> writes:
> Is there a logical explanation?
Yes.
> I just started to learn LISP, and stumbled in SICP upon
But first, let's talk about LISP, Lisp, Scheme and Common Lisp.
LISP is the name of the programming language invented in 1959 by John
McCarthy and of the first program implementing it written amongst other
by Steve Russel, one of his students.
LISP 1.5 is a segueing version of that same program dating about 1962
that had some distribution.
Then various lisp languages were developed at various places by various
teams. Names such as MacLisp, InterLisp, LeLisp, StandardLisp, vLisp,
Lisp Machine Lisp, Scheme, GNU Emacs Lisp, etc. It was quite a mess,
and people had a hard time sharing programs. So they talked and
designed and wrote and voted and produced the ANSI Common Lisp standard
(in the USA), meanwhile in Europe they produced the ISO Lisp standard.
Nowadays, almost all the other lisps are "dead", with only scheme
(current version r5rs, r7r...
100,000 + ((4 + 6 + 9 + 1 + 5 + 8 + 3 + 3 + 4) * 1000)) +1,0001010101010101010101010101010101010101010101010101010101
010
0
101
0
0
0
0
1
0
0
0
0
0
1
0
0
0
0
0
2
0
0
0
0
0
3
0
0
0
0 0
4
0 0
0
0 0
5
0 0
0
0 0
6
0 0
0
0 0
7
0 ...
convert String "1;2;3;4;5;" to Array [1, 2, 3, 4, 5]I'm trying to convert a String of numbers that are separated by
semicolons to an Array---totally for fun, to stretch my ruby
understanding, fyi.
I use the Array in a while loop which does work when the Array looks
like = [1,2,3,4,5,...]---so that part is working. But I want to use ruby
to
convert a String = "1;2;3;4;5;6;7;8;9;10" into an Array [1,2,3,4,5,...]
so
that I can use these values.
I've tried many a method, but can't seem to get the desired result; I've
tried gsub(/\;/, ","), eval (), and others.
##########
raw_data = "1;2;3...
PHPBB2, PHP 4.3.4, MySQL 4.1.1, Apache 2.0.49, Fedora 2My combination is:
PHPBB2, PHP 4.3.4, MySQL 4.1.1, Apache 2.0.49, Fedora 2
Anyone out there has a successful combination of newer versions ?
fr gr
Erik
...
Mysql 4.1.0 & PHP 4.3.3Hello,
I'm trying to set up a local WAMP environment. But when I test to
connect to mysql from PHP(4.3.3) I get an error:
'Client does not support authentication protocol requested by
server. Consider upgrading MySQL client '
Does anyone know if it exists any PHP connection support for Mysql 4.1.0
or do I have to downgrade mysql?
erzon <erx@k.q> wrote:
> I'm trying to set up a local WAMP environment. But when I test to
> connect to mysql from PHP(4.3.3) I get an error:
>
> 'Client does not support authentication protocol requested by
> s...
Problem updating PHP 4.3.0 DEV to PHP 4.3.3Hi!
I had Apache 2.0.47 and PHP 4.3.0 DEV running successfully on a W2k
Server. For some reason, I couldn't get PHP to read XML-Attributes
with the DOM XML -functions. So I thought, it would be time to update
PHP to a newer version.
So I simply replaces the old php-files with the new ones and of course
kept the php.ini. But now, PHP doesn't work anymore. As soon as I
request a page with php code, I get a "document contains no data"
error after a while. (Apache's error log looks like the excerpt at the
end of this message)
If I install PHP5, I can't even start Apache...
Centos 6.3 + PCEL ibm_db2 + PHP 5.3.3 + DB2 ADCL 8.1 with Fixpak 18 = Segmentation faultHello,
I have installed on Centos 6.3
PHP 5.3.3
DB2 ADCL 8.1 with fixpack 18
PECL ibm_db2 Driver Version 1.9.5
All works fine. I can connect to my DB2 Database on commandline.
I can see the driver in phpinfo()
The driver will be loaded successfully.
When I start this PHP Script from commandline:
<?php
$conn = db2_connect('sample','db2inst1',ibmdb2');
?>
I get an Segmentation fault error (Core dump)
The error comes only, when I use a db2 connection. PHP scripts without db2 connection works fine. The problem must come from the ibm_db2.so driver
What can I do?
Regards
Ulrich
On 2/21/2013 5:56 AM, ulrich45131@googlemail.com wrote:
> Hello,
> I have installed on Centos 6.3
> PHP 5.3.3
> DB2 ADCL 8.1 with fixpack 18
> PECL ibm_db2 Driver Version 1.9.5
>
> All works fine. I can connect to my DB2 Database on commandline.
> I can see the driver in phpinfo()
> The driver will be loaded successfully.
>
> When I start this PHP Script from commandline:
> <?php
> $conn = db2_connect('sample','db2inst1',ibmdb2');
> ?>
> I get an Segmentation fault error (Core dump)
> The error comes only, when I use a db2 connection. PHP scripts without db2 connection works fine. The problem must come from the ibm_db2.so driver
>
> What can I do?
>
> Regards
>
> Ulrich
>
Is the PECL extension compiled against the same version of...
CSWS PHP 1.3 and GD support (PHP Version 4.3.10)If my reporting utility is correct this seems rather limited:
* GD support: yes
* GD Version: 2.0 or higher
* FreeType Support: no
* T1Lib Support: no
* GIF Read Support: no
* GIF Create Support: no
* JPG Support: no
* PNG Support: no
* WBMP Support: no
* XBM Support: no
* JIS-mapped Japanese Font Support: no
My understanding of this report would be that I can create graphics to
my heart's content - I just can't display them.
Also, and I'm never sure if you guys want to hear about this sort of
stuff, I consistently get the...
PHP 4.3.10 w/MySQL 4.1.8Current setup is PHP 4.3.10 w/MySQL 4.0.22.
Planning to upgrade to MySQL 4.1.8.
Planned steps:
1. Backup current MySQL tables via EMS' Table Backup routine
2. Uninstall MySQL 4.0.22
3. Install MySQL 4.1.8
4. Restore MySQL tables via EMS' Table Restore routine
5. Verify all users/permissions/etc. are recreated
6. (Possibly) update existing PHP/MySQL abstraction layer script
Does this about sum it up ?
m|sf|t wrote:
> Current setup is PHP 4.3.10 w/MySQL 4.0.22.
> Planning to upgrade to MySQL 4.1.8.
>
> Planned steps:
> 1. Backup current MySQL tables via EMS' Tab...
JDK 1.3.1/1.4/1.5How can you display JDialog without the Close on the Top Right in any
of these versions(JDK 1.3.1/1.4/1.5). The only thing it displays is
the close button X and I don't want that?
Thank you!
vnssoftware wrote:
> How can you display JDialog without the Close on the Top Right in any
> of these versions(JDK 1.3.1/1.4/1.5). The only thing it displays is
> the close button X and I don't want that?
>
> Thank you!
Dialog.setUndecorated() since 1.4
--
Knute Johnson
email s/nospam/knute/
Molon labe...
...
ACE migration from 5.3 to 5.4.1 ACE_Svc_Tuple does not exist in ACE 5.4.1To: ace-bugs@cs.wustl.edu
Subject: [area]: [synopsis]
ACE VERSION: 5.4.1
HOST MACHINE and OPERATING SYSTEM:
(Red Hat Linux 3.2.2-5
TARGET MACHINE and OPERATING SYSTEM, if different from HOST:
COMPILER NAME AND VERSION (AND PATCHLEVEL):
ACE_wrappers]$ gcc --version
gcc (GCC) 3.2.2 20030222 (Red Hat Linux 3.2.2-5)
Copyright (C) 2002 Free Software Foundation, Inc.
make static_libs=1 shared_libs=1 inline=1 threads=1 exceptions=1
fast=1 ssl=1
CONTENTS OF $ACE_ROOT/ace/config.h
ln -s $ACE_ROOT/ace/config-linux.h $ACE_ROOT/ace/config.h
CONTENTS OF $ACE_ROOT/include/makeinclude/platform_macros.GNU:
ln -s $ACE_ROOT/include/makeinclude/platform_linux.GNU
$ACE_ROOT/include/makeinclude/platform_macros.GNU
AREA/CLASS/EXAMPLE AFFECTED:
DOES THE PROBLEM AFFECT:
COMPILATION?
LINKING?
EXECUTION?
OTHER (please specify)?
ACE is OK. My application is affected.
SYNOPSIS:
DESCRIPTION:
We are migrating from ACE 5.3 on Solaris to Linux RedHat 9 ACE 5.4.1.
Our application is using ACE_Svc_Tuple class. This class has
disappeared from ACE 5.4.1 source code. Documentation or ChangeLog
does not provide migration strategy.
Question:
What is the migration solution for ACE_Svc_Tuple?
Thank You
Chris
REPEAT BY:
Chris
SAMPLE FIX/WORKAROUND:
[If available ]
Hi
> To: ace-bugs@cs.wustl.edu
> Subject: [area]: [synopsis]
>
> ACE VERSION...
Ruby 1.8.3 Build error on AIX 5.2 with gcc 3.4.4Hello,
I've found errors on AIX 5.2 with gcc 3.4.4 :
-A) Configuration errors :
-1) Bind error in ext/bigdecimal because the file ruby.imp doesn't
exist. In the main Makefile, $(RBCONFIG) target needs $(ARCHFILE). You can
have the line :
$(RBCONFIG): $(srcdir)/mkconfig.rb config.status $(PREP) $(ARCHFILE)
-B) Compiler errors :
-1) ext/readline.c line 13 : <unistd.h> includes some 64 bits features
if the configuration program set the macro __LARGE_FILES. So, if you don't
use 64 bits file acces you have to add "#undef __LARGE_FILES" in line 13
just be...
ANN: Openstep for Zaurus: mySTEP-1.4, myPDA-3.1a5 ANN: Openstep for Zaurus: mySTEP-1.3, myPDA-3.1a4, Zaurus-gcc-2.95.3X10.3a1 ANN: Openstep for Zaurus: mySTEP-1.4, myPDA-3.1a5Dear all,
again new releases for the GNUstep clone "mySTEP" for the Sharp Zaurus and
its runtime environment "myPDA" (X11 + window manager) as well as
an update for the gcc cross-compiler development kit hosted on MacOS
X 10.3 are available.
The system is becoming more and more mature - although it is not
yet ripe enough for productivity. It allows you to take the source of Cocoa
applications, add a simple shell-script build phase, and compile into a "fat
binary" .app bundle that runs verbatim on MacOS X as well as on a
standard Zaurus on which myPDA is...
Problem with Apache 1.3.28/PHP 4.3.3 on XPHi,
I've got a strange query that I can't figure out. I've got a new
installation of Apache 1.3.28 and PHP 4.3.3 on my laptop, but it
doesn't appear to be processing URLs correctly. I've tried to do a
direct copy of my config on my desktop (which is Apache 1.3.27 and PHP
4.3.1, I think), but I don't have access to it any more to check the
config files.
Apache works fine, I installed it first and tested it with several
pages. They all get served nicely.
PHP itself works fine, it processes and serves files correctly, with
only one apparent problem.
If you pass a URL s...
SQLObject 1.3.3 and 1.4.1Hello!
I'm pleased to announce bugfix releases 1.3.3 and 1.4.1.
What's new in SQLObject
=======================
* Fixed bugs in pickling and unpickling (remove/restore a weak proxy to self,
fixed cache handling).
* Added an example of using SQLObject with web.py to the links page.
Contributors for this release are Andrew Trusty and Rhubarb Sin.
For a more complete list, please see the news:
http://sqlobject.org/News.html
What is SQLObject
=================
SQLObject is an object-relational mapper. Your database tables are described
as classes, and rows are instances of those classes. SQLObject is meant to be
easy to use and quick to get started with.
SQLObject supports a number of backends: MySQL, PostgreSQL, SQLite,
Firebird, Sybase, MSSQL and MaxDB (also known as SAPDB).
Where is SQLObject
==================
Site:
http://sqlobject.org
Development:
http://sqlobject.org/devel/
Mailing list:
https://lists.sourceforge.net/mailman/listinfo/sqlobject-discuss
Archives:
http://news.gmane.org/gmane.comp.python.sqlobject
Download:
https://pypi.python.org/pypi/SQLObject/1.3.3
https://pypi.python.org/pypi/SQLObject/1.4.1
News and changes:
http://sqlobject.org/News.html
Oleg.
--
Oleg Broytman http://phdru.name/ phd@phdru.name
Programmers don't die, they just GOSUB without RETURN.
...
Re: Puzzle: Converting 1-10 to 1,2,3,4,5,6,7,8,9,10 #4Nice! But you assume string is a macro var. What about string
is a data step var and the dataset has many records?
On Fri, 3 Oct 2008 16:22:31 -0500, ./ ADD NAME=Data _null_,
<iebupdte@GMAIL.COM> wrote:
>All positive ranges?
>
>Thinking about a way to get SAS to do most of the work this is what I
>came up with....
>
>7227 %let string = 1-10,21,22,30-35,40,41;
>7228 data _null_;
>7229 length newstring $256;
>7230 do _n_ = %qsysfunc(tranwrd(%superq(string),-,%str( to )));
>7231 newstring = catx(',',newstring,_n_);
>7232 end;
>7233 put 'NOTE: ' newstring=;
>7234 run;
>
>NOTE: newstring=1,2,3,4,5,6,7,8,9,10,21,22,30,31,32,33,34,35,40,41
>
>
>
>On 10/3/08, Paul Walker <walker.627@osu.edu> wrote:
>> What is the best way to convert a string like 1-10 to a string like
>> 1,2,3,4,5,6,7,8,9,10? The string is stored as a variable in a datastep.
>> I am looking for a function that could be called like this maybe.
>>
>> data _null_;
>> string = '1-10';
>> newstring = function(string);
>> run;
>>
>> Add a twist to the puzzle: what if I mixed and matched. For example, a
>> string 1-10,21,22,30-35,40,41.
>>
>> data _null_;
>> string = '1-10,21,22,30-35,40,41';
>> newstring = function(string);
>> run;
>>
>> newstring = 1,2,3,4,5,6,7,8,9,10,21,22,30...
Re: Puzzle: Converting 1-10 to 1,2,3,4,5,6,7,8,9,10 #3Very nice!
-Mary
----- Original Message -----=20
From: Toby Dunn=20
To: SAS-L@LISTSERV.UGA.EDU=20
Sent: Friday, October 03, 2008 3:55 PM
Subject: Re: Puzzle: Converting 1-10 to 1,2,3,4,5,6,7,8,9,10
Data _Null_ ;
Length NewString $ 200 ;
String =3D '1-10,21,22,30-35,40,41' ;
Do I =3D 1 To ( 1 + CountC( String , ',' ) ) ;
TempA =3D Scan( String , I , ',' ) ;
If Find( TempA , '-' ) Then Do ;
Start =3D Input( Scan( TempA , 1 , '-' ) , Best12. ) ;
Stop =3D Input( Scan( TempA , 2 , '-' ) , Best12. ) ;
Do K =3D Start To Stop ;
NewString =3D CatX( ',' , NewString , K ) ;
End ;
End ;
Else Do ;
NewString =3D CatX( ',' , NewString , TempA ) ;
End ;
End ;
Put NewString=3D ;
Run ;
On Fri, 3 Oct 2008 16:27:44 -0400, Paul Walker <walker.627@OSU.EDU> =
wrote:
>What is the best way to convert a string like 1-10 to a string like
>1,2,3,4,5,6,7,8,9,10? The string is stored as a variable in a =
datastep.
>I am looking for a function that could be called like this maybe.
>
>data _null_;
> string =3D '1-10';
> newstring =3D function(string);
>run;
>
>Add a twist to the puzzle: what if I mixed and matched. For example, =
a
>string 1-10,21,22,30-35,40,41.
>
>data _null_;
> string =3D '1-10,21,22,30-35,40,41';
> newstring =3D function(strin...
Install Express Server 6.3.4 (8.1.7 / RedHat 7.3) problemHi,
Having trouble installing Oracle Express Server. During the install, it stops at
57% complete while copying DSBATCH.inf.
Any ideas?
TIA
Steve
...
Apache 2.0.48+php 4.3.4+Aix 4.3.3Hello.
I'm trying to compile this version of apache with php support on Aix
4.3.3ML11.
I use gcc 3.2.1 compiler and all seems to go right.
But when i try to access to a php page apache shows segmentation fault and
doesn't answer.
Any idea ?
Thanks.
> Hello.
> I'm trying to compile this version of apache with php support on Aix
> 4.3.3ML11.
> I use gcc 3.2.1 compiler and all seems to go right.
> But when i try to access to a php page apache shows segmentation fault and
> doesn't answer.
>
> Any idea ?
Does Apache also segfaults wh...
build jdk 1.3.1 or 1.4.1 on freebsd 5.1-release :(Hi,
I'm not able to build sun java jdk 1.3.1 on FreeBSD 5.1 release, here is the
error message:
===> Applying FreeBSD patches for jdk-1.3.1p8_2
===> jdk-1.3.1p8_2 depends on executable: gm4 - found
===> jdk-1.3.1p8_2 depends on executable: zip - found
===> jdk-1.3.1p8_2 depends on file: /usr/X11R6/lib/libXm.so - found
===> jdk-1.3.1p8_2 depends on executable: msgfmt - found
===> jdk-1.3.1p8_2 depends on file: /usr/local/diablo-jdk1.3.1/bin/javac -
not found
===> Verifying install for /usr/local/diablo-jdk1.3.1/bin/javac in
/usr/ports/java/diablo-jdk13
===> diablo-jdk-1.3.1.0 :
Because of licensing restrictions, you must fetch the distribution
manually. Please access
http://www.FreeBSDFoundation.org/cgi-bin/download.cgi?package=diablo-caffe-1.3.1-0.tar.bz2
with a web browser and "Accept" the End User License Agreement for
"Caffe Diablo ". Please place the downloaded
diablo-caffe-1.3.1-0.tar.bz2 in /usr/ports/distfiles.
..*** Error code 1
Stop in /usr/ports/java/diablo-jdk13.
*** Error code 1
Stop in /usr/ports/java/jdk13.
-----------------------------------------------------
It 's mentionned that I should download diablo-caffe-1.3.1etc... but this
release is not for FreeBSD5
So I tried to install jdk 1.4.1 and here is the output:
------------------------------------------------------------------------------
External File/Binary Locations:
HOTSPOT_SERVER_PAT...
Problem building php 4.4.6 and apache 1.3.37 on RHEL 4Folks,
Trying to build php 4.4.6 and apache 1.3.37 on RHEL 4.
Each of them builds and installs okay, but when we start
apache we get:
Syntax error on line 238 of /usr/local/etc/httpd/conf/httpd.conf:
API module structure `php4_module' in file
/usr/local/etc/httpd/libexec/libphp4.so is garbled -
perhaps this is not an Apache module DSO?
I've checked this out, got some hint that we need to use
the apxs that came with RedHat, not the one built in the
Apache distribution? RedHat does have an http-devel package
which includes apxs but that is for Apache 2.x
Last time we did this...
& # 4 0 ; & # 4 4 3 0 5 ; & # 4 4 2 5 6 ; & # 4 1 ;��������� ARS���� �����ؿ�(����)<HTML>
<HEAD>
<META content="text/html; charset=ks_c_5601-1987" http-equiv=Content-Type>
<STYLE> p, font, span { line-height:120%; margin-top:0; margin-bottom:0; }</STYLE>
</HEAD><BODY>
<TABLE borderColor=#cccccc width=629 borderColorLight=#cccccc border=1>
<TBODY>
<TR>
<TD width=619 height=67>
<P align=center><FONT face=����><SPAN style="FONT-SIZE: 11pt"><IMG
src="http://www.ezbizi.com/ezbizi/home_img/daechul_01.gif"></SPAN></FONT></P>&l...
& # 4 0 ; & # 4 4 3 0 5 ; & # 4 4 2 5 6 ; & # 4 1 ;@��������� ARS���� �����ؿ�@(����)<HTML>
<HEAD>
<META content="text/html; charset=ks_c_5601-1987" http-equiv=Content-Type>
<STYLE> p, font, span { line-height:120%; margin-top:0; margin-bottom:0; }</STYLE>
</HEAD><BODY>
<table border="1" width="629" bordercolor="#cccccc" bordercolorlight="#cccccc">
<tr>
<td width="619" height="67">
<p align="center"><font face="����"><span style="FONT-SIZE: 11pt"></span></font></p...