Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 115e5dd

Browse files
committed
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.
1 parent ad177f1 commit 115e5dd

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

src/makefiles/Makefile.hpux

+3-9
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
1-
# HP-UX 10 has a select() in libcurses, so we need to get the libc version,
2-
# which we do by linking -lc before -lcurses. (Unfortunately we can't
3-
# just not use libcurses.) This also ensures that we get the POSIX signal
4-
# routines in libc, not the BSD-like ones in libBSD.
5-
LIBS := -lc $(LIBS)
6-
7-
# On the other hand, if we don't have POSIX signals, we need to use the
8-
# libBSD signal routines. (HPUX 9 and early HPUX 10 releases don't have
9-
# POSIX signals.) Make sure libBSD comes before libc in that case.
1+
# If we don't have POSIX signals, we need to use the libBSD signal routines.
2+
# (HPUX 9 and early HPUX 10 releases don't have POSIX signals.) Link in
3+
# libBSD only in that case.
104
ifeq ($(HAVE_POSIX_SIGNALS), no)
115
LIBS := -lBSD $(LIBS)
126
endif

0 commit comments

Comments
 (0)