diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 1998-09-27 03:02:15 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 1998-09-27 03:02:15 +0000 |
commit | ff84ba4feaf4bf1cbc6407652ac10dc829eba05d (patch) | |
tree | eac875bc8cb80d69612c97545982758c86fcd43d /ftp/ncftp3/files | |
parent | Remove regexp support uulib. (diff) |
ELFify
Notes
Notes:
svn path=/head/; revision=13437
Diffstat (limited to 'ftp/ncftp3/files')
-rw-r--r-- | ftp/ncftp3/files/patch-ae | 47 | ||||
-rw-r--r-- | ftp/ncftp3/files/patch-af | 47 |
2 files changed, 22 insertions, 72 deletions
diff --git a/ftp/ncftp3/files/patch-ae b/ftp/ncftp3/files/patch-ae index b1844072b3f6..59a39996305d 100644 --- a/ftp/ncftp3/files/patch-ae +++ b/ftp/ncftp3/files/patch-ae @@ -1,36 +1,11 @@ -*** libncftp/Makefile.in.orig Thu Nov 13 04:43:48 1997 ---- libncftp/Makefile.in Tue Sep 8 00:22:36 1998 -*************** -*** 14,20 **** - LIBS=-lStrn @LIBS@ - LDFLAGS=-L@srcdir@/../Strn @LDFLAGS@ - LIB=libncftp.a -! LIBSO=libncftp.so.2 - LIBSOS=libncftp.so - - # Any -D definitions: ---- 14,20 ---- - LIBS=-lStrn @LIBS@ - LDFLAGS=-L@srcdir@/../Strn @LDFLAGS@ - LIB=libncftp.a -! LIBSO=libncftp.so.2.0 - LIBSOS=libncftp.so - - # Any -D definitions: -*************** -*** 55,61 **** - - $(LIBSO): $(SOBJS) - /bin/rm -f $(LIBSO) $(LIBSOS) -! gcc -shared -Wl,-soname,$(LIBSO) -o $(LIBSO) $(SOBJS) - /bin/ln -s $(LIBSO) $(LIBSOS) - -@/bin/ls -l $(LIBSO) - ---- 55,61 ---- - - $(LIBSO): $(SOBJS) - /bin/rm -f $(LIBSO) $(LIBSOS) -! $(CC) -shared -Wl,-x -o $(LIBSO) `lorder $(SOBJS) | tsort -q` - /bin/ln -s $(LIBSO) $(LIBSOS) - -@/bin/ls -l $(LIBSO) - +--- libncftp/Makefile.in.orig Wed Nov 12 17:43:48 1997 ++++ libncftp/Makefile.in Sat Sep 26 19:48:19 1998 +@@ -55,7 +55,7 @@ + + $(LIBSO): $(SOBJS) + /bin/rm -f $(LIBSO) $(LIBSOS) +- gcc -shared -Wl,-soname,$(LIBSO) -o $(LIBSO) $(SOBJS) ++ $(CC) -shared -Wl,-x -o $(LIBSO) `lorder $(SOBJS) | tsort -q` + /bin/ln -s $(LIBSO) $(LIBSOS) + -@/bin/ls -l $(LIBSO) + diff --git a/ftp/ncftp3/files/patch-af b/ftp/ncftp3/files/patch-af index 11d901fadec8..e1789260866b 100644 --- a/ftp/ncftp3/files/patch-af +++ b/ftp/ncftp3/files/patch-af @@ -1,36 +1,11 @@ -*** Strn/Makefile.orig Tue Nov 11 15:28:01 1997 ---- Strn/Makefile Tue Sep 8 00:25:07 1998 -*************** -*** 6,12 **** - SHELL=/bin/sh - .SUFFIXES: .c .o .so - LIB=libStrn.a -! LIBSO=libStrn.so.1 - LIBSOS=libStrn.so - CC=cc - CPPFLAGS= ---- 6,12 ---- - SHELL=/bin/sh - .SUFFIXES: .c .o .so - LIB=libStrn.a -! LIBSO=libStrn.so.1.0 - LIBSOS=libStrn.so - CC=cc - CPPFLAGS= -*************** -*** 42,48 **** - - $(LIBSO): $(SOBJS) - /bin/rm -f $(LIBSO) -! gcc -shared -Wl,-soname,$(LIBSO) -o $(LIBSO) $(SOBJS) - /bin/ln -s $(LIBSO) $(LIBSOS) - -@/bin/ls -l $(LIBSOS) $(LIBSO) - ---- 42,48 ---- - - $(LIBSO): $(SOBJS) - /bin/rm -f $(LIBSO) -! $(CC) -shared -Wl,-x -o $(LIBSO) `lorder $(SOBJS) | tsort -q` - /bin/ln -s $(LIBSO) $(LIBSOS) - -@/bin/ls -l $(LIBSOS) $(LIBSO) - +--- Strn/Makefile.orig Tue Nov 11 04:28:01 1997 ++++ Strn/Makefile Sat Sep 26 19:47:28 1998 +@@ -42,7 +42,7 @@ + + $(LIBSO): $(SOBJS) + /bin/rm -f $(LIBSO) +- gcc -shared -Wl,-soname,$(LIBSO) -o $(LIBSO) $(SOBJS) ++ $(CC) -shared -Wl,-x -o $(LIBSO) `lorder $(SOBJS) | tsort -q` + /bin/ln -s $(LIBSO) $(LIBSOS) + -@/bin/ls -l $(LIBSOS) $(LIBSO) + |