diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2006-02-07 17:36:13 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2006-02-07 17:36:13 +0000 |
commit | 115e5dd5972fa7788f6639b3d0a8b2ef65e326e4 (patch) | |
tree | 92e2218e804919dbd1fd432d7d3cf45ae4daf5b3 /src | |
parent | ad177f10ee7a96a901280b7f94a6866fe7c4ca55 (diff) | |
download | postgresql-115e5dd5972fa7788f6639b3d0a8b2ef65e326e4.tar.gz postgresql-115e5dd5972fa7788f6639b3d0a8b2ef65e326e4.zip |
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.
Diffstat (limited to 'src')
-rw-r--r-- | src/makefiles/Makefile.hpux | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/src/makefiles/Makefile.hpux b/src/makefiles/Makefile.hpux index e2805bd83ac..1316fa1d68d 100644 --- a/src/makefiles/Makefile.hpux +++ b/src/makefiles/Makefile.hpux @@ -1,12 +1,6 @@ -# HP-UX 10 has a select() in libcurses, so we need to get the libc version, -# which we do by linking -lc before -lcurses. (Unfortunately we can't -# just not use libcurses.) This also ensures that we get the POSIX signal -# 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. +# 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.) Link in +# libBSD only in that case. ifeq ($(HAVE_POSIX_SIGNALS), no) LIBS := -lBSD $(LIBS) endif |