diff options
author | Thomas Gellekum <tg@FreeBSD.org> | 1997-11-19 12:18:07 +0000 |
---|---|---|
committer | Thomas Gellekum <tg@FreeBSD.org> | 1997-11-19 12:18:07 +0000 |
commit | 9ff9802dd70d8601c66d4571abdfd6b6478fbfe8 (patch) | |
tree | 37a818a45bb750a17f29aeb8b127c9fdff4cf1a4 /x11/libdnd/files/patch-ab | |
parent | Make it install stuff in the right place. (diff) |
Make `make reinstall' work. Build and install shared libraries.
Notes
Notes:
svn path=/head/; revision=8706
Diffstat (limited to 'x11/libdnd/files/patch-ab')
-rw-r--r-- | x11/libdnd/files/patch-ab | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/x11/libdnd/files/patch-ab b/x11/libdnd/files/patch-ab new file mode 100644 index 000000000000..8a762934dbe7 --- /dev/null +++ b/x11/libdnd/files/patch-ab @@ -0,0 +1,53 @@ +--- Makefile.in.orig Fri May 23 04:18:22 1997 ++++ Makefile.in Wed Nov 19 13:11:44 1997 +@@ -23,20 +23,28 @@ + CXXCOMPILE = $(CXX) $(INCLUDES) $(CXXFLAGS) -c + LINK = $(CC) $(LDFLAGS) -o $@ + ++SOCOMPILE= $(COMPILE) -fpic ++SOCXXCOMPILE = $(CXX) $(INCLUDES) $(CXXFLAGS) -c -fpic ++ + default: all + +-all: libC libCpp dndtest ++all: libC libCpp dndtest libC-so libCpp-so + + install: libCpp libC + install -d $(INC_DIR) +- install DragAndDrop.h DragAndDropTypes.h $(INC_DIR) ++ install -c -m 644 DragAndDrop.h DragAndDropTypes.h $(INC_DIR) + install -d $(LIB_DIR) +- install libDnd.a libDnd++.a $(LIB_DIR) ++ install -c -m 644 libDnd.a libDnd++.a $(LIB_DIR) ++ install -c libDnd.so.1.0 libDnd++.so.1.0 $(LIB_DIR) + + libC: libDnd.a + + libCpp: libDnd++.a + ++libC-so: libDnd.so.1.0 ++ ++libCpp-so: libDnd++.so.1.0 ++ + dndtest: dndtest.c libDnd.a + rm -f dndtest + $(COMPILE) dndtest.c +@@ -57,6 +65,16 @@ + $(AR) cru libDnd++.a DragAndDrop.o + $(RANLIB) libDnd++.a + +-clean: +- rm -f *.o *.cxx *.a dndtest *~ *bak ++libDnd.so.1.0: DragAndDrop.c ++ rm -f DragAndDrop.so ++ $(SOCOMPILE) -o DragAndDrop.so DragAndDrop.c ++ $(LD) -Bshareable -x -o libDnd.so.1.0 DragAndDrop.so + ++libDnd++.so.1.0: DragAndDrop.c ++ rm -f DragAndDrop.so DragAndDrop.cxx ++ ln -s DragAndDrop.c DragAndDrop.cxx ++ $(SOCXXCOMPILE) -o DragAndDrop.so DragAndDrop.cxx ++ $(LD) -Bshareable -x -o libDnd++.so.1.0 DragAndDrop.so ++ ++clean: ++ rm -f *.o *.so *.cxx *.a dndtest *~ *bak |