473,788 Members | 3,053 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

building 7.4.1 (on linux) with --disable-shared

Does it currently work? src/backend/utils/mb/conversion_proc s/*/ is not
building anything, and 'make install' fails because it tries to copy
*.so files.

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

Nov 23 '05 #1
2 1559
David Garamond <li***@zara.6.i sreserved.com> writes:
Does it currently work? src/backend/utils/mb/conversion_proc s/*/ is not
building anything, and 'make install' fails because it tries to copy
*.so files.


For sufficiently small values of "current", it builds. You do realize
you won't have any PL languages or conversions, I trust.

2004-01-21 14:25 tgl

* src/: backend/utils/mb/conversion_proc s/Makefile,
backend/utils/mb/conversion_proc s/proc.mk, pl/plperl/GNUmakefile,
pl/plpython/Makefile, pl/tcl/Makefile (REL7_4_STABLE) : Back-patch
repairs for --disable-shared support.

2004-01-21 14:22 tgl

* src/backend/utils/mb/conversion_proc s/Makefile: If we don't have
shared libraries, we don't have conversions. Make
conversion_crea te.sql be empty (except for a helpful comment) in
this case. Allows initdb to succeed with --disable-shared.

2004-01-21 14:04 tgl

* src/: backend/utils/mb/conversion_proc s/proc.mk,
pl/plperl/GNUmakefile, pl/plpython/Makefile, pl/tcl/Makefile: Fix
bit-rot in support for building with --disable-shared. This patch
gets us past 'make install', but initdb still fails for lack of
conversion libraries ...

regards, tom lane

---------------------------(end of broadcast)---------------------------
TIP 6: Have you searched our list archives?

http://archives.postgresql.org

Nov 23 '05 #2
Tom Lane wrote:
David Garamond <li***@zara.6.i sreserved.com> writes:
Does it currently work? src/backend/utils/mb/conversion_proc s/*/ is not
building anything, and 'make install' fails because it tries to copy
*.so files.


For sufficiently small values of "current", it builds. You do realize
you won't have any PL languages or conversions, I trust.

2004-01-21 14:25 tgl

* src/: backend/utils/mb/conversion_proc s/Makefile,
backend/utils/mb/conversion_proc s/proc.mk, pl/plperl/GNUmakefile,
pl/plpython/Makefile, pl/tcl/Makefile (REL7_4_STABLE) : Back-patch
repairs for --disable-shared support.

....
[snip]

Thanks, maybe I'll try this on 7.4.2. Yes, I was just trying out
different configure options. I notice that --disable-shared means
differently than in, one example, Ruby. In Ruby, --disable-shared means
the binaries (i.e. /usr/bin/ruby) are linked statically with the runtime
(libruby.so), but all *.so files are still produced.

--
dave

---------------------------(end of broadcast)---------------------------
TIP 7: don't forget to increase your free space map settings

Nov 23 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
3639
by: Google Mike | last post by:
After a lot of thought and research, and playing with FreeTDS and InlineTDS, as well as various ODBC connections, I have determined that the fastest and cheapest way to get up and going with PHP on Linux, connecting to MS SQL Server, unless it was already pre-installed by your Linux installation, is to build your own multithreaded TCP socket server on Windows and connect to it through the socket API in PHP on Linux (if you have installed...
7
2421
by: Erik Johnson | last post by:
I am trying to upgrade my Python installation. After downloading sources and building Python 2.3.4, I am unable to use the command history editing feature in the interactive interpreter (where the up-arrow would previously give you the last command line to edit, it now just prints "^[[A".) This is a feature I use often, and it kinda nullifies that warm fuzzy feeling you get when things are otherwise working as expected. Python 2.2.2 was...
1
15878
by: francescomoi | last post by:
Hi. I'm trying to build MySQL-python-1.2.0 on my Linux FC2 (with MySQL 3.23.58). But when building, I get this error message: ------------------------------------------------------- # python setup.py build running build running build_py running build_ext building '_mysql' extension
0
1773
by: Samuel M. Smith | last post by:
I can build python 2.4.2 from source on the embedded linux box when I nfs mount and boot a full debian distribution. The embedded box also has stripped down linux distribution in onboard flash. My goal is to run python from the stripped down linux in onboard flash. I can successfully install python to the onboard flash when booted to the nfs version by using make install with $DESTDIR set to the onboard flash mounted directory
1
8103
by: srihari | last post by:
Hai, I am trying to install IBM DB2 8.1 on Red Hat linux 8.0. My machine is Intel XEON 64bit. The installation went well except for the creation of tools catalog. When I tried to install the tools catalog as a post installation task I get some java error. $ db2 CREATE TOOLS CATALOG SYSTOOLS USE EXISTING DATABASE TOOLSDB FORCE SQL22209N The DB2 Administration Server encountered an unexpected Java error on host "". I have jdk1.3 already...
7
2394
by: Hal Vaughan | last post by:
I have a problem with port forwarding and I have been working on it for over 2 weeks with no luck. I have found C programs that almost work and Java programs that almost work, but nothing that does what I need. I've even tried writing a port forwarder in Java and found problems that nobody seems to have the answer to in forums. I need to make it work essentially the same on both Windows and Linux. There is one program, in C, that...
1
3465
by: Sorin Schwimmer | last post by:
Hi All, After a disaster in which I lost my whole harddrive, I decided to install the newest everything that I use. I put the latest Gentoo Linux, with gcc 4.1.1, installed tcl/tk 8.4.14 and tried Python 2.5. I tried with and without the suggested -fwrapv compiler option, and make gave me the same:
15
3228
by: kyosohma | last post by:
Hi, I am trying to get a small group of volunteers together to create Windows binaries for any Python extension developer that needs them, much like the package/extension builders who volunteer their time to create Linux RPMs. The main thing I need are people willing to test the binaries to make sure the extension is stable. This would require installing the binary and probably downloading the source too to get the developer's test
6
1762
by: fordie1000 | last post by:
Hi, I want to build a small-ish computer from individual components ... I have been taking parts from computers for years and upgrading older computers with fans/PSUs/motherboards etc. but I have never actually built a full system. I want the machine to use a mini-ITX 2.0 motherboard and obviously the same size case but I was wondering if anyone has any advice for me on the best type of components to go for ... sites to buy from...
2
1426
by: Alex Buell | last post by:
Hi, I've been working on building my own toolchain running on Linux. I'm currently building a 'freestanding' library along with startup code to be linked together. Unfortunately I've run into problems with the startup code with passing command line arguments to main(). Whilst it works in most occasions, one of my test programs core dumps and debugging can't find the cause. Could someone please point me at the more appropriate newsgroups...
0
9498
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10172
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9964
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8993
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7517
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6749
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5535
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3670
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2894
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.