Firebird SQL Development
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsDatabasesFirebird SQL Development

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old October 13th, 2004, 10:21 AM
karthick.srini karthick.srini is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Sep 2004
Location: Chennai , India
Posts: 9 karthick.srini User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
link/Doc for building firebird , Linux

Dear Marius popa and Members,

Thanks for your help. "make install" call installs firebird DB itself.
My requirement is to generate firebird-1.5.1.XXX.tar.gz(same like the one hosted in firebird.sourceforge.net).

So I modified src/install/arch-specific/linux/Makefile.in as below

#included below in buildTarDir: to create FB.tar.gz

(cd $(GEN_ROOT); tar -C $(TarDir) -czf FB.tar.gz . )



install: buildTarDir
#commented installion of DB by default
#(cd $(GEN_ROOT)/$(TarDir); ./install.sh)
#cp -r $(GEN_ROOT)/$(DebugDir)/* /

Above changes don't has created firebird DB installion as I required. But tar creation does not take effect and it has thrown some errors as below,

/gen/FirebirdSS-1.5.1.4481-0.i686; tar -C ../buildroot -czf buildroot.tar.gz . )
(cd ../gen/FirebirdSS-1.5.1.4481-0.i686; tar -tzf buildroot.tar.gz > manifest.txt ) (cd ../gen; tar -C FirebirdSS-1.5.1.4481-0.i686 -czf FB.tar.gz . )
/bin/sh: -c: line 1: syntax error near unexpected token `('
/bin/sh: -c: line 1: `(cd ../gen/FirebirdSS-1.5.1.4481-0.i686; tar -tzf buildroot.tar.gz > manifest.txt ) (cd ../gen; tar -C FirebirdSS-1.5.1.4481-0.i686 -czf FB.tar.gz . )'
make[2]: *** [buildTarDir] Error 2
make[2]: Leaving directory `/home/mickeyclient/firebird_build/cvs1_5_1/firebird2/src'
make[1]: *** [install] Error 2
make[1]: Leaving directory `/home/mickeyclient/firebird_build/cvs1_5_1/firebird2/src'
make: *** [install] Error 2

If you have makefile as of my requirement / or if you know how to achieve my requirement please do help me.

Thanks & regards,
S.Karthick

Reply With Quote
  #2  
Old October 13th, 2004, 10:34 AM
mariuz's Avatar
mariuz mariuz is offline
Bug Hunter
Dev Shed Newbie (0 - 499 posts)
 
Join Date: May 2003
Location: Transylvania (Romania)
Posts: 274 mariuz User rank is Corporal (100 - 500 Reputation Level)mariuz User rank is Corporal (100 - 500 Reputation Level)mariuz User rank is Corporal (100 - 500 Reputation Level)mariuz User rank is Corporal (100 - 500 Reputation Level) 
Time spent in forums: 20 h 12 m 34 sec
Reputation Power: 9
Smile

this is how i build the firebird 2.0
Quote:
cat firebird20/compile_fb20.sh
cvs -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/firebird login
cvs -z3 -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/firebird co firebird2

cd firebird2
./autogen.sh --enable-debug --prefix=/opt/firebird20 --enable-superserver
make


to get the 1.5.1 version you need to change the checkout line

Here are the scripts updated for 1.5.x and vulcan
I hope is the right branch :)


cat compile_firebird_15x.sh
Quote:
cvs -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/firebird login
cvs -z3 -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/firebird co -rB1_5_Release firebird2

cd firebird2
./autogen.sh --enable-debug --prefix=/opt/firebird --enable-superserver
make
make install


and here is for vulcan

Quote:
cat compile_vulcan.sh
echo "password is \"fulda conference\""
cvs -d:pserver:fbReaders@cvs.netfrastructure.com:/usr/local/cvs login
cvs -d:pserver:fbReaders@cvs.netfrastructure.com:/usr/local/cvs checkout vulcan

cd vulcan
chmod +x autogen.sh
./autogen.sh
cd src
./set_platform linux32
./boot_build
./build
__________________
My home page: http://www.firebirdsql.org and work place :http://www.reea.net

Last edited by mariuz : October 13th, 2004 at 11:38 AM. Reason: echo in the wrong place

Reply With Quote
  #3  
Old October 14th, 2004, 10:17 AM
karthick.srini karthick.srini is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Sep 2004
Location: Chennai , India
Posts: 9 karthick.srini User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Thanks for your help. Make_install installs firebird DB itself.
My requirement is to generate firebird-1.5.1.XXX.tar.gz(same like the one hosted in firebird.sourceforge.net).

So I modified src/install/arch-specific/linux/Makefile.in as below

#included below in buildTarDir: to create FB.tar.gz

(cd $(GEN_ROOT); tar -C $(TarDir) -czf FB.tar.gz . )



install: buildTarDir
#commented installion of DB by default
#(cd $(GEN_ROOT)/$(TarDir); ./install.sh)
#cp -r $(GEN_ROOT)/$(DebugDir)/* /

Above changes don't has created firebird DB installion as I required. But tar creation does not take effect and it has thrown some errors. If you have makefile as of my requirement / or if you know how to achieve my requirement please do help me.

Reply With Quote
  #4  
Old October 20th, 2004, 01:19 AM
mariuz's Avatar
mariuz mariuz is offline
Bug Hunter
Dev Shed Newbie (0 - 499 posts)
 
Join Date: May 2003
Location: Transylvania (Romania)
Posts: 274 mariuz User rank is Corporal (100 - 500 Reputation Level)mariuz User rank is Corporal (100 - 500 Reputation Level)mariuz User rank is Corporal (100 - 500 Reputation Level)mariuz User rank is Corporal (100 - 500 Reputation Level) 
Time spent in forums: 20 h 12 m 34 sec
Reputation Power: 9
you can create the tar.gz from this dir gen/FirebirdSS-1.5.2.4585-0.pre1.i686/

the content is the same as one found on sf.net downloads (tar install)

ps:
start with a clean script

Last edited by mariuz : October 20th, 2004 at 01:26 AM.

Reply With Quote
Reply

Viewing: Dev Shed ForumsDatabasesFirebird SQL Development > link/Doc for building firebird , Linux


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 5 hosted by Hostway
Stay green...Green IT