Re: [pgadmin-hackers] Update
> -Original Message- > From: Adam H. Pendleton [mailto:[EMAIL PROTECTED] > Sent: 06 October 2003 16:07 > To: pgadmin-hackers > Subject: [pgadmin-hackers] Update > > > Hello everyone! I've been out of town for the weekend, so I > wasn't able > to work on any pgAdmin stuff while I was gone. I'm going to get back > into it, so I wanted to make sure that I've got everything on > my to-do list: > > *) Fix -DSSL compilation problem > *) Make static build more static > *) Fix J-M's xpm include problem > *) RH 7.3 SRPM building > *) Mac OS X port > > Did I miss anything? Hi Adam, It would be cool if there were a generic mechanism we could use to write the version number into scripts 'n' stuff at configure time. The would certainly make my life easier with various build scripts. Regards, Dave. ---(end of broadcast)--- TIP 9: the planner will ignore your desire to choose an index scan if your joining column's datatypes do not match
Re: [pgadmin-hackers] gcc ignoring defined macros?
Title: Message -Original Message-From: Adam H. Pendleton [mailto:[EMAIL PROTECTED] Sent: 06 October 2003 18:26To: Dave PageCc: Hiroshi Saito; [EMAIL PROTECTED]Subject: Re: [pgadmin-hackers] gcc ignoring defined macros? Dave Page wrote: I was about to fix this, when I realized that I was about to add -DSSL to the command-line for *all* situations. Is this what we want, or is this supposed to be a conditional compile option? If it's needed for *all* situations, then why included it at all, why not just remove the #ifdefs and always compile the SSL code? We should probably include it as an option as not everyone compiles PostgreSQL with SSL support (I normally don't for example). Can it be done automagically by looking for the SSL_connect symbol in libpq.a/libpq.so? Regards, Dave.
[pgadmin-hackers] wxWindows RPMs
Dear friends, There are still some problems compiling wxWindows official RPMs, but we are getting closer. Could you summarize what needs to be applied to wxWindows in order to compile pgAdmin3? Are Andreas patches getting accepted? Cheers, Jean-Michel ---(end of broadcast)--- TIP 3: if posting/reading through Usenet, please send an appropriate subscribe-nomail command to [EMAIL PROTECTED] so that your message can get through to the mailing list cleanly
Re: [pgadmin-hackers] wxWindows RPMs
Jean-Michel POURE wrote: Dear friends, There are still some problems compiling wxWindows official RPMs, but we are getting closer. Could you summarize what needs to be applied to wxWindows in order to compile pgAdmin3? Are Andreas patches getting accepted? AFAICS they are ignored. Not a single comment on 6 patches/bugs so far. We'll need a wx-pgadmin-20031010, it seems. Regards, Andreas ---(end of broadcast)--- TIP 6: Have you searched our list archives? http://archives.postgresql.org
Re: [pgadmin-hackers] Update
Dave Page wrote: It would be cool if there were a generic mechanism we could use to write the version number into scripts 'n' stuff at configure time. The would certainly make my life easier with various build scripts. By "write them into scripts" what do you mean? Can you provide an example of what you would like to see? ahp
Re: [pgadmin-hackers] Update
Title: Message
-Original Message-From: Adam H.
Pendleton [mailto:[EMAIL PROTECTED] Sent: 07 October 2003
13:37To: Dave PageCc: pgadmin-hackersSubject:
Re: [pgadmin-hackers] UpdateDave Page wrote:
It would be cool if there were a generic mechanism we could use to write
the version number into scripts 'n' stuff at configure time. The would
certainly make my life easier with various build scripts.
By "write them into scripts" what do you mean? Can you provide
an example of what you would like to see?
Say I
have some code in a script that looks like:
mv
pgadmin3.tgz pgadmin3-${VERSION}.tgz
When
configure runs, it then changes that to:
mv
pgadmin3.tgz pgadmin3-1.1.0.tgz
Rather
than change it of course, it could take script.in and create
script.
Regards, Dave.
Re: [pgadmin-hackers] wxWindows RPMs
> -Original Message- > From: Andreas Pflug [mailto:[EMAIL PROTECTED] > Sent: 07 October 2003 13:34 > To: [EMAIL PROTECTED] > Cc: [EMAIL PROTECTED] > Subject: Re: [pgadmin-hackers] wxWindows RPMs > > > Jean-Michel POURE wrote: > > >Dear friends, > > > >There are still some problems compiling wxWindows official > RPMs, but we > >are > >getting closer. Could you summarize what needs to be applied > to wxWindows in > >order to compile pgAdmin3? Are Andreas patches getting accepted? > > > AFAICS they are ignored. Not a single comment on 6 > patches/bugs so far. > > We'll need a wx-pgadmin-20031010, it seems. None of the patches are critical for development are they, so we can afford to wait a while? Perhaps we should create a patch directory on Snake and just keep them all in there so they don't get lost or forgotten (like Hiroshi's which I'm sure he thinks we'll forget :-) ), Regards, Dave ---(end of broadcast)--- TIP 4: Don't 'kill -9' the postmaster
Re: [pgadmin-hackers] Update
Dave Page wrote:
Message
Say I have some code in a script that looks
like:
mv pgadmin3.tgz pgadmin3-${VERSION}.tgz
When configure runs, it then changes that to:
mv pgadmin3.tgz pgadmin3-1.1.0.tgz
Rather than change it of course, it could
take script.in and create script.
Sure, that seems easy enough to do. The only catch would be that
configure would probably have to have the version number hard-coded
into it. Otherwise it shouldn't be a problem. If you give me some
specifics, or just a script to start with, I'll take a crack at it.
ahp
Re: [pgadmin-hackers] wxWindows RPMs
Le Mardi 7 Octobre 2003 14:45, Dave Page a écrit : > Perhaps we should create a patch directory on Snake and just keep them > all in there so they don't get lost or forgotten (like Hiroshi's which > I'm sure he thinks we'll forget :-) ), In http://snake.pgadmin.org/wxwindows/patches? That would be nice because I will publish daily build logs for wxWindows members. Cheers, Jean-Michel ---(end of broadcast)--- TIP 2: you can get off all lists at once with the unregister command (send "unregister YourEmailAddressHere" to [EMAIL PROTECTED])
Re: [pgadmin-hackers] Update
Title: Message
-Original Message-From: Adam H.
Pendleton [mailto:[EMAIL PROTECTED] Sent: 07 October 2003
13:48To: Dave PageCc: pgadmin-hackersSubject:
Re: [pgadmin-hackers] UpdateDave Page wrote:
Say I have some code in a script that looks like:
mv
pgadmin3.tgz pgadmin3-${VERSION}.tgz
When configure runs, it then changes that to:
mv
pgadmin3.tgz pgadmin3-1.1.0.tgz
Rather than change it of course, it could take script.in and
create script.
Sure, that seems easy enough to do. The only catch would be that
configure would probably have to have the version number hard-coded into
it. Otherwise it shouldn't be a problem. If you give me some
specifics, or just a script to start with, I'll take a crack at
it.
I
don't have a script yet as it would mean rewriting/splitting some of them - for
example the pkg/src/build-tarball script would have to be split into pre and
post configure sections.
Can't
configure get the version number from configure.ac?
Regards, Dave.
Re: [pgadmin-hackers] wxWindows RPMs
> -Original Message- > From: Jean-Michel POURE [mailto:[EMAIL PROTECTED] > Sent: 07 October 2003 13:41 > To: Dave Page; Andreas Pflug > Cc: [EMAIL PROTECTED] > Subject: Re: [pgadmin-hackers] wxWindows RPMs > > > Le Mardi 7 Octobre 2003 14:45, Dave Page a écrit : > > Perhaps we should create a patch directory on Snake and > just keep them > > all in there so they don't get lost or forgotten (like > Hiroshi's which > > I'm sure he thinks we'll forget :-) ), > > In http://snake.pgadmin.org/wxwindows/patches? That would be > nice because I > will publish daily build logs for wxWindows members. If you like :-) Regards, Dave. ---(end of broadcast)--- TIP 3: if posting/reading through Usenet, please send an appropriate subscribe-nomail command to [EMAIL PROTECTED] so that your message can get through to the mailing list cleanly
Re: [pgadmin-hackers] wxWindows RPMs
Le Mardi 7 Octobre 2003 14:54, Dave Page a écrit : > In http://snake.pgadmin.org/wxwindows/patches? That would be > nice because I will publish daily build logs for wxWindows members. > If you like :-) Cool. You can upload your patches to: http://snake.pgadmin.org/wxwindows/patches Cheers, Jean-Michel ---(end of broadcast)--- TIP 5: Have you checked our extensive FAQ? http://www.postgresql.org/docs/faqs/FAQ.html
Re: [pgadmin-hackers] Update
Adam H. Pendleton wrote:
Dave Page wrote:
Say I have some code in a script that looks like:
mv pgadmin3.tgz pgadmin3-${VERSION}.tgz
When configure runs, it then changes that to:
mv pgadmin3.tgz pgadmin3-1.1.0.tgz
Rather than change it of course, it could take /script.in/ and create
/script/.
Sure, that seems easy enough to do. The only catch would be that
configure would probably have to have the version number hard-coded
into it.
Can't we have this grep/awk-ed from version.h? I just introduced the
macro VERSION_PACKAGE:
grep VERSION_PACKAGE src/include/version.h | awk '{print $3}'
Regards,
Andreas
---(end of broadcast)---
TIP 7: don't forget to increase your free space map settings
Re: [pgadmin-hackers] wxWindows RPMs
It is Good idea. Commit If it did, yesterday's I am a stranger.:-) - Original Message - From: "Dave Page" <[EMAIL PROTECTED]> >> -Original Message- >> From: Jean-Michel POURE [mailto:[EMAIL PROTECTED] >> >> Le Mardi 7 Octobre 2003 14:45, Dave Page a écrit : >> > Perhaps we should create a patch directory on Snake and >> just keep them >> > all in there so they don't get lost or forgotten (like >> Hiroshi's which >> > I'm sure he thinks we'll forget :-) ), Oops, It is because I forget it well.:-) >> >> In http://snake.pgadmin.org/wxwindows/patches? That would be >> nice because I >> will publish daily build logs for wxWindows members. > >If you like :-) > >Regards, Dave. My server recovered vigor.! All right, let's do my best. regards, Hiroshi Saito ---(end of broadcast)--- TIP 3: if posting/reading through Usenet, please send an appropriate subscribe-nomail command to [EMAIL PROTECTED] so that your message can get through to the mailing list cleanly
[pgadmin-hackers] unsubscribe
unsubscribe
[pgadmin-hackers] unsubscribe
unsubscribe Johan van der Wiel Technical Support Specialist Databases/Unix Central Support e-mail: [EMAIL PROTECTED] Getronics Infrastructure Solutions BV Marconibaan 5 3439 MR Nieuwegein Tel.: +31 (0)30 600 5471 Fax: +31 (0)20 587 9399 E-mail: [EMAIL PROTECTED] Support aanvragen Getronics Services Contact Center Tel.: +31 (0)30 600 5544 Fax: +31 (0)30 601 0111 E-mail: [EMAIL PROTECTED] Http://www.getronics.nl The information transmitted is intended only for use by the addressee and may contain confidential and/or privileged material. Any review, re-transmission, dissemination or other use of it, or the taking of any action in reliance upon this information by persons and/or entities other than the intended recipient is prohibited. If you received this in error, please inform the sender and/or addressee immediately and delete the material. Thank you. ---(end of broadcast)--- TIP 1: subscribe and unsubscribe commands go to [EMAIL PROTECTED]
Re: [pgadmin-hackers] wxWindows RPMs
> -Original Message- > From: Hiroshi Saito [mailto:[EMAIL PROTECTED] > Sent: 07 October 2003 14:09 > To: Dave Page; [EMAIL PROTECTED]; Andreas Pflug > Cc: [EMAIL PROTECTED] > Subject: Re: [pgadmin-hackers] wxWindows RPMs > > - Original Message - > From: "Dave Page" <[EMAIL PROTECTED]> > > >> -Original Message- > >> From: Jean-Michel POURE [mailto:[EMAIL PROTECTED] > >> > >> Le Mardi 7 Octobre 2003 14:45, Dave Page a écrit : > >> > Perhaps we should create a patch directory on Snake and > >> just keep them > >> > all in there so they don't get lost or forgotten (like > >> Hiroshi's which > >> > I'm sure he thinks we'll forget :-) ), > > Oops, > It is because I forget it well.:-) Hi Hiroshi, I have added the keywords fix - I didn't do it originally because I thought (without looking at it) that it was a patch for wxWindows! Regards, Dave. ---(end of broadcast)--- TIP 1: subscribe and unsubscribe commands go to [EMAIL PROTECTED]
[pgadmin-hackers] FW: IMPORTANT: Upcoming changes in IPs ...
For info: This will affect the pgAdmin website and primary ftp site, as well as the mailing lists. Snake and the CVS server will not be affected as they are a few thousand miles away from Panama! Regards, Dave > > We received word late last week that our co-lo facility in > Panama is changing buildings (same block, new building), as > well as changing network uplinks ... > > They are anticipating ~6hrs downtime on Saturday to move the > hardware to the new server room, pending that we receive our > new IPs on time ... we will be setting all the domain TTLs > low so that by the time the servers come back up, DNS has > timed out and will pick up the new IPs ... > > svr1.postgresql.org will be one of the first VMs to be coming > up, as its currently sitting on the database server ... web > related VMs will come up as quickly as we can get the > appropriate IPs switched over ... we'll be spending the rest > of this week laying down the framework for switching the IPs > in the various VM config files, so that we have less to do on > Saturday ... > > Will send out a note once we have a more definite time, but > it will most likely be around 4pm GMT ... > ---(end of broadcast)--- TIP 5: Have you checked our extensive FAQ? http://www.postgresql.org/docs/faqs/FAQ.html
Re: [pgadmin-hackers] [pgadmin-support] Os x link problem
> -Original Message- > From: Adam H. Pendleton [mailto:[EMAIL PROTECTED] > Sent: 07 October 2003 20:10 > To: Dave Page > Cc: attilio drei; [EMAIL PROTECTED] > Subject: Re: [pgadmin-support] Os x link problem > > > Actually, it works on Mac OS X, I just haven't had a chance > to post the > details. You got it going? That's excellent news - nice work!! Have a beer on me :-) Regards, Dave ---(end of broadcast)--- TIP 6: Have you searched our list archives? http://archives.postgresql.org
[pgadmin-hackers] CVS compile error
I still get this compile error, on Mac, with the CVS HEAD from both pgadmin3 and wxWindows: utils/utffile.cpp: In member function `off_t wxUtfFile::Read(wxString&, long long int)': utils/utffile.cpp:85: no matching function for call to `wxMBConv::MB2WC( wxStringBuffer, char*&, long unsigned int)' /usr/local/wx2/include/wx/strconv.h:46: candidates are: virtual size_t wxMBConv::MB2WC(wchar_t*, const char*, long unsigned int) const ahp ---(end of broadcast)--- TIP 7: don't forget to increase your free space map settings
[pgadmin-hackers] Degrade(character conversion problem) pga3?
Hi Andreas. I have a problem. It is a happening within this week. See below. http://cre-ent.skcapi.co.jp/~saito/pgadmin3/20030922_1.jpg http://cre-ent.skcapi.co.jp/~saito/pgadmin3/20031007_1.jpg Tonight, let me know it if you know something though it will be examined. Thank you. regards, Hiroshi Saito ---(end of broadcast)--- TIP 1: subscribe and unsubscribe commands go to [EMAIL PROTECTED]
