278db4720b
- Lv's master site was gone because ISP was terminated the service. Submittter contacted the lv's author, he says "I can't create a new site so busy". So submitter uploaded lv's source code to GitHub. - Attached diff that changes MAINTAINER address and MASTER_SITES point to GitHub, some related changes also included. - patches re-generated patch by "make makepatch". - submitter becomes maintainer PR: 210067 Submitted by: IWAMOTO Kouichi <sue@iwmt.org>
25 lines
588 B
Text
25 lines
588 B
Text
--- Makefile.in.orig 2004-01-06 07:22:17 UTC
|
|
+++ Makefile.in
|
|
@@ -9,11 +9,11 @@ VERSION= 451
|
|
srcdir= @srcdir@
|
|
VPATH= @srcdir@
|
|
|
|
-prefix= @prefix@
|
|
+prefix= ${DESTDIR}@prefix@
|
|
exec_prefix= @exec_prefix@
|
|
bindir= @bindir@
|
|
libdir= @libdir@
|
|
-mandir= @mandir@
|
|
+mandir= ${DESTDIR}@mandir@
|
|
|
|
lvlibdir= $(libdir)/lv
|
|
distdir = lv$(VERSION)
|
|
@@ -41,7 +41,7 @@ UNIOBJS= utf.o unimap.o unirev.o
|
|
all: lv
|
|
|
|
lv: $(OBJS) $(UNIOBJS)
|
|
- $(PURIFY) $(CC) $(LDFLAGS) -o $@ $(OBJS) $(UNIOBJS) $(LIBS)
|
|
+ $(PURIFY) $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(OBJS) $(UNIOBJS) $(LIBS)
|
|
|
|
.c.o:
|
|
$(CC) $(CFLAGS) -c $<
|