Re: postgresql 7.2b4 compile problems

Started by Tom Laneover 24 years ago1 messagesgeneral
Jump to latest
#1Tom Lane
tgl@sss.pgh.pa.us

"mike" <matrix@vianet.ca> writes:

gcc -O2 -Wall -Wmissing-prototypes -Wmissing-declarations pg_dump.o common.=
o pg_backup_archiver.o pg_backup_db.o pg_backup_custom.o pg_backup_files.o =
pg_backup_null.o pg_backup_tar.o -L../../../src/interfaces/libpq -lpq -Wl,=
-rpath,/usr/lib -lpam -lcrypt -lresolv -lnsl -ldl -lm -lbsd -lhistory -o p=
g_dump
../../../src/interfaces/libpq/libpq.so: undefined reference to `atexit'

[scratches head...] As far as I can see, there's only one use of
atexit() in the 7.2 sources, and that's in psql not pg_dump. More
to the point, it won't get compiled unless configure found that atexit()
is indeed available from your system's C library. Is HAVE_ATEXIT
defined in your src/include/pg_config.h?

regards, tom lane