diff options
author | Steve Price <steve@FreeBSD.org> | 1999-04-03 01:15:54 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 1999-04-03 01:15:54 +0000 |
commit | 26bb1d17298aead28b8519e7495ebb31ae81d60d (patch) | |
tree | 89886204fb7bcda6f7674a3fdb0a4141e5c466b3 /devel/libshhopt/files/patch-aa | |
parent | Activate the scwm port. (diff) |
Import of libshhopt version 1.1.4.
A library for parsing command line options.
PR: 6331
Submitted by: Andrey Zakhvatov <andy@icc.surw.chel.su>
Diffstat (limited to 'devel/libshhopt/files/patch-aa')
-rw-r--r-- | devel/libshhopt/files/patch-aa | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/devel/libshhopt/files/patch-aa b/devel/libshhopt/files/patch-aa new file mode 100644 index 000000000000..963686074ff3 --- /dev/null +++ b/devel/libshhopt/files/patch-aa @@ -0,0 +1,37 @@ +--- Makefile.orig Sun Jul 5 12:08:59 1998 ++++ Makefile Fri Apr 2 15:15:59 1999 +@@ -6,10 +6,10 @@ + VERSION = $(VERMAJ).$(VERMIN).$(VERPAT) + + # Define SHARED as 1 for Linux shared ELF library +-#SHARED = 1 ++SHARED = 1 + + ifeq ($(SHARED),1) +-LIBTARGET = lib$(DIST).so.$(VERSION) ++LIBTARGET = lib$(DIST).so.$(VERMAJ) + LIBTARGETSO = lib$(DIST).so + LIBTARGETSOMAJ = $(LIBTARGETSO).$(VERMAJ) + CCSHRD = -fPIC +@@ -23,8 +23,8 @@ + INSTBASEDIR = /usr/local + INSTLIBDIR = $(INSTBASEDIR)/lib + INSTINCDIR = $(INSTBASEDIR)/include +-INSTALL = install -m 644 +-INSTALLPROG = install -m 755 ++INSTALL = install -c -m 644 ++INSTALLPROG = install -c -m 755 + MKDIRP = install -d -m 755 + + CC = gcc +@@ -67,9 +67,7 @@ + $(INSTALL) $(LIBTARGET) $(INSTLIBDIR) + $(INSTALL) $(LIBHEAD) $(INSTINCDIR) + ifeq ($(SHARED),1) +- ln -sf $(LIBTARGET) $(INSTLIBDIR)/$(LIBTARGETSOMAJ) +- ln -sf $(LIBTARGETSOMAJ) $(INSTLIBDIR)/$(LIBTARGETSO) +- echo "If you use GNU/Linux, remember to run ldconfig" ++ ln -sf $(LIBTARGET) $(INSTLIBDIR)/$(LIBTARGETSO) + endif + + clean: |