mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
524739d401
XXXtgetent from original PR fixed PR: 12279 Submitted by: Issei Suzuki <issei@issei.org>
32 lines
1.3 KiB
Plaintext
32 lines
1.3 KiB
Plaintext
--- lib/Makefile.in.orig Tue May 11 17:35:00 1999
|
|
+++ lib/Makefile.in Fri Jun 18 16:01:12 1999
|
|
@@ -99,14 +99,14 @@
|
|
|
|
AUTOMAKE_OPTIONS = 1.0 foreign dist-zip no-dependencies
|
|
|
|
-SUBDIRS = zlib sshmath sshreadline sshutil sshapputil sshcrypt sshproto sshsession sshpgp
|
|
+SUBDIRS = sshmath sshreadline sshutil sshapputil sshcrypt sshproto sshsession sshpgp
|
|
|
|
# sshtest testsuite
|
|
|
|
lib_LIBRARIES = libssh.a
|
|
# libsshcrypt.kpure.a
|
|
|
|
-SUBLIBRARIES = sshmath/libsshmath.a zlib/libz.a sshutil/libsshutil.a sshapputil/libsshapputil.a sshcrypt/libsshcrypt.a sshproto/libsshproto.a sshsession/libsshsession.a sshreadline/libsshreadline.a sshpgp/libsshpgp.a
|
|
+SUBLIBRARIES = sshmath/libsshmath.a sshutil/libsshutil.a sshapputil/libsshapputil.a sshcrypt/libsshcrypt.a sshproto/libsshproto.a sshsession/libsshsession.a sshreadline/libsshreadline.a sshpgp/libsshpgp.a
|
|
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
|
CONFIG_HEADER = ../sshconf.h
|
|
CONFIG_CLEAN_FILES =
|
|
@@ -369,11 +369,6 @@
|
|
all-local: includes
|
|
includes:
|
|
-if test '!' -d ../include; then mkdir ../include; fi
|
|
- for i in zlib/zlib.h zlib/zconf.h; do \
|
|
- if test -f $(srcdir)/$$i; then \
|
|
- $(COPY_INCLUDE) $(srcdir)/$$i ../include; \
|
|
- fi; \
|
|
- done
|
|
-for dir in $(SUBDIRS); do \
|
|
if test "$$dir" != "zlib" && test "$$dir" != "gmp"; then \
|
|
( cd $$dir && $(MAKE) includes) ; \
|