diff options
author | Matthew Hunt <mph@FreeBSD.org> | 1998-05-02 18:02:44 +0000 |
---|---|---|
committer | Matthew Hunt <mph@FreeBSD.org> | 1998-05-02 18:02:44 +0000 |
commit | 3da9d946fe49d40c3894e6250de91ab63863109e (patch) | |
tree | bac1039f25089673a3324b4ff10e4ec939a1d9f1 /games/libshhcards/files | |
parent | Deactivate libshhcards, to be moved to games. (diff) |
A library for displaying playing cards in X11. Moved from devel to games.
Notes
Notes:
svn path=/head/; revision=10804
Diffstat (limited to 'games/libshhcards/files')
-rw-r--r-- | games/libshhcards/files/patch-aa | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/games/libshhcards/files/patch-aa b/games/libshhcards/files/patch-aa new file mode 100644 index 000000000000..3e8689482157 --- /dev/null +++ b/games/libshhcards/files/patch-aa @@ -0,0 +1,31 @@ +--- Makefile.orig Sun Mar 23 04:02:53 1997 ++++ Makefile Fri May 1 22:29:34 1998 +@@ -8,7 +8,7 @@ + ########################################################################### + + # Define SHARED as 1 for Linux shared ELF library +-#SHARED = 1 ++SHARED = 1 + + ifeq ($(SHARED),1) + LIBTARGET = lib$(DIST).so.$(VERSION) +@@ -28,8 +28,8 @@ + INSTALL = install -m 644 + MKDIRP = install -d -m 755 + +-CC = gcc +-OPTIM = -O2 ++#CC = gcc ++OPTIM = $(CFLAGS) + + ########################################################################### + +@@ -87,7 +87,7 @@ + + $(LIBTARGET): $(LIBOBJS) + ifeq ($(SHARED),1) +- $(CC) -shared -Wl,-soname,$(LIBTARGETSOMAJ) -o $(LIBTARGET) $(LIBOBJS) ++ $(CC) -shared -o $(LIBTARGET) $(LIBOBJS) + else + ar rcs $(LIBTARGET) $(LIBOBJS) + endif |