diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-04-14 11:01:23 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-04-14 11:01:23 +0000 |
commit | ed915f514392df4013b09aaa833d93a9ef4426d8 (patch) | |
tree | a4be87ce3f7442720e2b85b9feca534a83b631ea /lang/aleph/files | |
parent | Add missing BUILD_DEPENDS/RUN_DEPENDS (diff) |
- Support CXX/CXXFLAGS/PTHREAD_CFLAGS/PTHREAD_LIBS properly
- Fix pkg-plist
- Strip binaries
PR: 26554
Submitted by: tkato@prontomail.ne.jp
Notes
Notes:
svn path=/head/; revision=41367
Diffstat (limited to 'lang/aleph/files')
-rw-r--r-- | lang/aleph/files/patch-cnf::mak::aleph-rule.mak | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/lang/aleph/files/patch-cnf::mak::aleph-rule.mak b/lang/aleph/files/patch-cnf::mak::aleph-rule.mak new file mode 100644 index 000000000000..ad62af26242a --- /dev/null +++ b/lang/aleph/files/patch-cnf::mak::aleph-rule.mak @@ -0,0 +1,31 @@ +--- cnf/mak/aleph-rule.mak.orig Thu Mar 8 14:59:08 2001 ++++ cnf/mak/aleph-rule.mak Sat Apr 14 05:43:10 2001 +@@ -62,8 +62,8 @@ + endif + + ifeq ($(LKMODE),soname) +-SONAME = $(SOLIB).$(MAJOR).$(MINOR) +-SOVERS = $(SOLIB).$(MAJOR).$(MINOR).$(PATCH) ++SONAME = $(SOLIB).$(MAJOR) ++SOVERS = $(SOLIB).$(MAJOR) + endif + + # ---------------------------------------------------------------------------- +@@ -124,17 +124,13 @@ + $(SOLIB) : $(SOVERS) + @$(MKDIR) $(BLDLIB) + @$(CP) $(SOVERS) $(BLDLIB) +- @$(RM) $(BLDLIB)/$(SOLIB) + @$(RM) $(BLDLIB)/$(SONAME) +- @$(LN) $(SOVERS) $(BLDLIB)/$(SONAME) + @$(LN) $(SONAME) $(BLDLIB)/$(SOLIB) + + install-solib : $(SOVERS) + @$(MKDIR) $(LIBDIR) + @$(CP) $(SOVERS) $(LIBDIR) +- @$(RM) $(LIBDIR)/$(SONAME) + @$(RM) $(LIBDIR)/$(SOLIB) +- @$(LN) $(SOVERS) $(LIBDIR)/$(SONAME) + @$(LN) $(SONAME) $(LIBDIR)/$(SOLIB) + .PHONY: install-solib + endif |