diff options
author | Colin Watson <cjwatson@debian.org> | 2020-02-21 11:57:14 +0000 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2020-02-21 11:57:14 +0000 |
commit | f0de78bd4f29fa688c5df116f3f9cd43543a76d0 (patch) | |
tree | 856b0dee3f2764c13a32dad5ffe2424fab7fef41 /openbsd-compat/Makefile.in | |
parent | 4213eec74e74de6310c27a40c3e9759a08a73996 (diff) | |
parent | 8aa3455b16fddea4c0144a7c4a1edb10ec67dcc8 (diff) |
Import openssh_8.2p1.orig.tar.gz
Diffstat (limited to 'openbsd-compat/Makefile.in')
-rw-r--r-- | openbsd-compat/Makefile.in | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/openbsd-compat/Makefile.in b/openbsd-compat/Makefile.in index 1162dc550..3eb188f0b 100644 --- a/openbsd-compat/Makefile.in +++ b/openbsd-compat/Makefile.in | |||
@@ -7,12 +7,15 @@ VPATH=@srcdir@ | |||
7 | CC=@CC@ | 7 | CC=@CC@ |
8 | LD=@LD@ | 8 | LD=@LD@ |
9 | CFLAGS=@CFLAGS@ | 9 | CFLAGS=@CFLAGS@ |
10 | CFLAGS_NOPIE=@CFLAGS_NOPIE@ | ||
10 | CPPFLAGS=-I. -I.. -I$(srcdir) -I$(srcdir)/.. @CPPFLAGS@ @DEFS@ | 11 | CPPFLAGS=-I. -I.. -I$(srcdir) -I$(srcdir)/.. @CPPFLAGS@ @DEFS@ |
12 | PICFLAG=@PICFLAG@ | ||
11 | LIBS=@LIBS@ | 13 | LIBS=@LIBS@ |
12 | AR=@AR@ | 14 | AR=@AR@ |
13 | RANLIB=@RANLIB@ | 15 | RANLIB=@RANLIB@ |
14 | INSTALL=@INSTALL@ | 16 | INSTALL=@INSTALL@ |
15 | LDFLAGS=-L. @LDFLAGS@ | 17 | LDFLAGS=-L. @LDFLAGS@ |
18 | LDFLAGS_NOPIE=-L. -Lopenbsd-compat/ @LDFLAGS_NOPIE@ | ||
16 | 19 | ||
17 | OPENBSD=base64.o \ | 20 | OPENBSD=base64.o \ |
18 | basename.o \ | 21 | basename.o \ |
@@ -25,6 +28,7 @@ OPENBSD=base64.o \ | |||
25 | explicit_bzero.o \ | 28 | explicit_bzero.o \ |
26 | fmt_scaled.o \ | 29 | fmt_scaled.o \ |
27 | freezero.o \ | 30 | freezero.o \ |
31 | fnmatch.o \ | ||
28 | getcwd.o \ | 32 | getcwd.o \ |
29 | getgrouplist.o \ | 33 | getgrouplist.o \ |
30 | getopt_long.o \ | 34 | getopt_long.o \ |
@@ -40,7 +44,6 @@ OPENBSD=base64.o \ | |||
40 | readpassphrase.o \ | 44 | readpassphrase.o \ |
41 | reallocarray.o \ | 45 | reallocarray.o \ |
42 | recallocarray.o \ | 46 | recallocarray.o \ |
43 | rmd160.o \ | ||
44 | rresvport.o \ | 47 | rresvport.o \ |
45 | setenv.o \ | 48 | setenv.o \ |
46 | setproctitle.o \ | 49 | setproctitle.o \ |
@@ -96,7 +99,7 @@ PORTS= port-aix.o \ | |||
96 | port-uw.o | 99 | port-uw.o |
97 | 100 | ||
98 | .c.o: | 101 | .c.o: |
99 | $(CC) $(CFLAGS) $(CPPFLAGS) -c $< | 102 | $(CC) $(CFLAGS_NOPIE) $(PICFLAG) $(CPPFLAGS) -c $< |
100 | 103 | ||
101 | all: libopenbsd-compat.a | 104 | all: libopenbsd-compat.a |
102 | 105 | ||