mirror of
https://github.com/postgres/postgres.git
synced 2025-07-31 22:04:40 +03:00
Remove ancient hack to work around a peculiarity of libcurses on HPUX.
Since we now use libtermcap in preference to libcurses, no need for hack anymore.
This commit is contained in:
@ -1,12 +1,6 @@
|
|||||||
# HP-UX 10 has a select() in libcurses, so we need to get the libc version,
|
# If we don't have POSIX signals, we need to use the libBSD signal routines.
|
||||||
# which we do by linking -lc before -lcurses. (Unfortunately we can't
|
# (HPUX 9 and early HPUX 10 releases don't have POSIX signals.) Link in
|
||||||
# just not use libcurses.) This also ensures that we get the POSIX signal
|
# libBSD only in that case.
|
||||||
# routines in libc, not the BSD-like ones in libBSD.
|
|
||||||
LIBS := -lc $(LIBS)
|
|
||||||
|
|
||||||
# On the other hand, if we don't have POSIX signals, we need to use the
|
|
||||||
# libBSD signal routines. (HPUX 9 and early HPUX 10 releases don't have
|
|
||||||
# POSIX signals.) Make sure libBSD comes before libc in that case.
|
|
||||||
ifeq ($(HAVE_POSIX_SIGNALS), no)
|
ifeq ($(HAVE_POSIX_SIGNALS), no)
|
||||||
LIBS := -lBSD $(LIBS)
|
LIBS := -lBSD $(LIBS)
|
||||||
endif
|
endif
|
||||||
|
Reference in New Issue
Block a user