Use cc' rather than ld' to build the shared lib. It knows better our

requirements.
This commit is contained in:
David E. O'Brien 2000-12-02 20:03:24 +00:00
parent ca82746f02
commit 1c9cff08a3
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=35612

View File

@ -1,5 +1,5 @@
--- Makefile.orig Wed Jan 26 23:11:08 2000
+++ Makefile Fri Nov 24 14:33:13 2000
+++ Makefile Fri Nov 24 14:42:09 2000
@@ -1 +1 @@
-CFLAGS = -O2 -Wall
+CFLAGS += -Wall
@ -12,7 +12,7 @@
+ETCDIR = ${PREFIX}/etc
@@ -18 +18 @@
- $(LD) $(LDFLAGS) -o $@ $^
+ $(LD) $(LDFLAGS) -o $@ $> /usr/lib/libgcc_pic.a
+ $(CC) -shared -o $@ $>
@@ -27,5 +27,5 @@
- install --mode=0755 muttzilla.so $(LIBDIR)
- install --mode=0755 -d $(MZLIBDIR)