We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 602b0d0 commit 6380e70Copy full SHA for 6380e70
src/makefiles/Makefile.hpux
@@ -2,6 +2,12 @@ HPUX_MAJOR= $(shell uname -r|sed 's/^[^.]*\.\([^.]*\).*/\1/')
2
# HP-UX 10 has a select() in libcurses, so we need to get the libc version first
3
ifeq ($(HPUX_MAJOR), 10)
4
LDFLAGS:= -Wl,-E -lc $(LDFLAGS)
5
+ CFLAGS+= -DUSE_POSIX_SIGNALS
6
+endif
7
+
8
+# HP-UX 09 needs libc before libPW, so we need to get the libc version first
9
+ifeq ($(HPUX_MAJOR), 09)
10
+ LDFLAGS:= -Wl,-E $(LDFLAGS:-lPW=-lc -lPW)
11
endif
12
13
# Does anyone use this stuff?
@@ -23,4 +29,3 @@ endif
23
29
24
30
%.sl: %.o
25
31
$(LD) -b -o $@ $<
26
-
0 commit comments