[pgadmin-hackers] FW: [pgadmin-support] pgadmin for SuSE Linux 9.2 32/64 bit CPU.

2005-02-10 Thread Dave Page
 

 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On Behalf Of Dave Page
 Sent: 10 February 2005 14:58
 To: Vasilev Max; pgadmin-support@postgresql.org
 Subject: Re: [pgadmin-support] pgadmin for SuSE Linux 9.2 
 32/64 bit CPU.
 
  
 
  %build
  export CFLAGS=
  export CXXFLAGS=
  %ifarch x86_64 amd64
  %configure --enable-static --with-wx-config=%{withwxconfig}
  --with-wx=/usr/local --with-ssl LDFLAGS=-L/usr/X11R6/lib64
  %else
  %configure --enable-static --with-wx-config=%{withwxconfig}
  --with-wx=/usr/local --with-ssl
  %endif
  make all

Hi Devrim,

The fc1 spec file has changed somewhat from the other 2 - can you merge
these updates in if you're happy with them please?

I'm also keen to get rid of the OS specific spec files if possible - is
merging them something you would be abvle to look at?

Thanks, Dave.

---(end of broadcast)---
TIP 4: Don't 'kill -9' the postmaster


Re: [pgadmin-hackers] FW: [pgadmin-support] pgadmin for SuSE Linux 9.2 32/64 bit CPU.

2005-02-10 Thread Devrim GUNDUZ
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Hi,
On Thu, 10 Feb 2005, Dave Page wrote:
The fc1 spec file has changed somewhat from the other 2 - can you merge
these updates in if you're happy with them please?
I can , but not nowadays. I can do it next week.
I'm also keen to get rid of the OS specific spec files if possible - is
merging them something you would be abvle to look at?
I'm not that experienced in building RPMs on other platforms than 
Fedora/Red Hat. So I'm not sure that we can use all-in-one spec file. I 
have to look at it.

Regards,
- --
Devrim GUNDUZ 
devrim~gunduz.org, devrim~PostgreSQL.org, devrim.gunduz~linux.org.tr
http://www.tdmsoft.com http://www.gunduz.org
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQFCC3lVtl86P3SPfQ4RAkmwAKCQYfcwzlf6PJcD/vIWioLg+dX2DQCfRdey
WcREXFlM90Q4SaOFPUzvQss=
=LYoN
-END PGP SIGNATURE-
---(end of broadcast)---
TIP 1: subscribe and unsubscribe commands go to [EMAIL PROTECTED]


[pgadmin-hackers] CVS Commit by dpage: Add 64 bit libs per Vasilev Max

2005-02-10 Thread cvs
Log Message:
---
Add 64 bit libs per Vasilev Max

Modified Files:
--
pgadmin3/pkg/mandrake:
pgadmin3.spec (r1.2 - r1.3)
pgadmin3/pkg/redhat:
pgadmin3.spec (r1.40 - r1.41)

Index: pgadmin3.spec
===
RCS file: /projects/pgadmin3/pkg/mandrake/pgadmin3.spec,v
retrieving revision 1.2
retrieving revision 1.3
diff -Lpkg/mandrake/pgadmin3.spec -Lpkg/mandrake/pgadmin3.spec -u -w -r1.2 -r1.3
--- pkg/mandrake/pgadmin3.spec
+++ pkg/mandrake/pgadmin3.spec
@@ -36,7 +36,11 @@
 %build
 export CFLAGS=
 export CXXFLAGS=
-%configure --with-wx-config=%{withwxconfig} --with-wx=/usr
+%ifarch x86_64 amd64
+%configure --with-wx-config=%{withwxconfig} --with-wx=/usr --with-ssl 
LDFLAGS=-L/usr/X11R6/lib64
+%else
+%configure --with-wx-config=%{withwxconfig} --with-wx=/usr --with-ssl
+%endif
 make all
 
 %install
@@ -63,6 +67,10 @@
 %{_datadir}/applications
 
 %changelog
+* Thur Feb 10 2005 Dave Page [EMAIL PROTECTED]
+- 1.2.0
+- Add 64 bit libs per Vasilev Max
+
 * Tue Dec 3 2004 Hugo Ferreira hmf at inescporto.pt
 - 1.2.0 
 - Some changes for MDK 10.1 (name, BuildRequires, minor_version to 1mdk  and 
Index: pgadmin3.spec
===
RCS file: /projects/pgadmin3/pkg/redhat/pgadmin3.spec,v
retrieving revision 1.40
retrieving revision 1.41
diff -Lpkg/redhat/pgadmin3.spec -Lpkg/redhat/pgadmin3.spec -u -w -r1.40 -r1.41
--- pkg/redhat/pgadmin3.spec
+++ pkg/redhat/pgadmin3.spec
@@ -34,7 +34,11 @@
 %build
 export CFLAGS=
 export CXXFLAGS=
-%configure --enable-debug --enable-static --with-wx-config=%{withwxconfig}
+%ifarch x86_64 amd64
+%configure --enable-static --with-wx-config=%{withwxconfig} 
--with-wx=/usr/local --with-ssl LDFLAGS=-L/usr/X11R6/lib64
+%else
+%configure --enable-static --with-wx-config=%{withwxconfig} 
--with-wx=/usr/local --with-ssl
+%endif
 make all
 
 %install
@@ -59,6 +63,10 @@
 %{_datadir}/applications
 
 %changelog
+* Thur Feb 10 2005 Dave Page [EMAIL PROTECTED]
+- 1.2.0
+- Add 64 bit libs per Vasilev Max
+
 * Mon Jun 10 2003 Jean-Michel POURE pgadmin-hackers@postgresql.org
 - Initial build
 
---(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] FW: [pgadmin-support] pgadmin for SuSE Linux 9.2 32/64 bit CPU.

2005-02-10 Thread Dave Page
 

 -Original Message-
 From: Devrim GUNDUZ [mailto:[EMAIL PROTECTED] 
 Sent: 10 February 2005 15:10
 To: Dave Page
 Cc: pgadmin-hackers@postgresql.org
 Subject: Re: FW: [pgadmin-support] pgadmin for SuSE Linux 9.2 
 32/64 bit CPU.
 
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 
 
 Hi,
 
 On Thu, 10 Feb 2005, Dave Page wrote:
 
  The fc1 spec file has changed somewhat from the other 2 - 
 can you merge
  these updates in if you're happy with them please?
 
 I can , but not nowadays. I can do it next week.
 
  I'm also keen to get rid of the OS specific spec files if 
 possible - is
  merging them something you would be abvle to look at?
 
 I'm not that experienced in building RPMs on other platforms than 
 Fedora/Red Hat. So I'm not sure that we can use all-in-one 
 spec file. I 
 have to look at it.

Thanks Devrim :-)

/D

---(end of broadcast)---
TIP 8: explain analyze is your friend