diff options
author | Andrey A. Chernov <ache@FreeBSD.org> | 2000-05-06 01:53:36 +0000 |
---|---|---|
committer | Andrey A. Chernov <ache@FreeBSD.org> | 2000-05-06 01:53:36 +0000 |
commit | 00dd8623835d1bc1e20fc0d9f4abfb8993648ffa (patch) | |
tree | dee2b6b7759757ea64f8ddd28a41930e4cf72ecc /textproc/glimpse/files | |
parent | e0d7a722a934d37fef1027e2364c95166e516f51 (diff) |
Notes
Diffstat (limited to 'textproc/glimpse/files')
-rw-r--r-- | textproc/glimpse/files/patch-ab | 71 | ||||
-rw-r--r-- | textproc/glimpse/files/patch-ad | 22 |
2 files changed, 64 insertions, 29 deletions
diff --git a/textproc/glimpse/files/patch-ab b/textproc/glimpse/files/patch-ab index 5738b75594bf..06e70a4db2de 100644 --- a/textproc/glimpse/files/patch-ab +++ b/textproc/glimpse/files/patch-ab @@ -1,25 +1,46 @@ -*** libtemplate/include/autoconf.h.in.orig Thu Aug 22 07:51:39 1996 ---- libtemplate/include/autoconf.h.in Thu Aug 22 07:51:57 1996 -*************** -*** 156,165 **** - #undef HAVE_SRANDOM - - /* Define if you have strdup. */ -! #undef HAVE_STRDUP - - /* Define if you have strerror. */ -! #undef HAVE_STRERROR - - /* Define if you have sysconf. */ - #undef HAVE_SYSCONF ---- 156,165 ---- - #undef HAVE_SRANDOM - - /* Define if you have strdup. */ -! #define HAVE_STRDUP 1 - - /* Define if you have strerror. */ -! #define HAVE_STRERROR 1 - - /* Define if you have sysconf. */ - #undef HAVE_SYSCONF +--- libtemplate/include/autoconf.h.in.orig Thu Nov 21 05:28:49 1996 ++++ libtemplate/include/autoconf.h.in Fri May 5 21:23:48 2000 +@@ -108,7 +108,7 @@ + #undef HAVE_BZERO + + /* Define if you have flock. */ +-#undef HAVE_FLOCK ++#define HAVE_FLOCK + + /* Define if you have fsync. */ + #undef HAVE_FSYNC +@@ -120,7 +120,7 @@ + #undef HAVE_GETCWD + + /* Define if you have getdtablesize. */ +-#undef HAVE_GETDTABLESIZE ++#define HAVE_GETDTABLESIZE + + /* Define if you have lrand48. */ + #undef HAVE_LRAND48 +@@ -144,10 +144,10 @@ + #undef HAVE_RENAME + + /* Define if you have setlinebuf. */ +-#undef HAVE_SETLINEBUF ++#define HAVE_SETLINEBUF + + /* Define if you have setrlimit. */ +-#undef HAVE_SETRLIMIT ++#define HAVE_SETRLIMIT + + /* Define if you have srand48. */ + #undef HAVE_SRAND48 +@@ -156,10 +156,10 @@ + #undef HAVE_SRANDOM + + /* Define if you have strdup. */ +-#undef HAVE_STRDUP ++#define HAVE_STRDUP 1 + + /* Define if you have strerror. */ +-#undef HAVE_STRERROR ++#define HAVE_STRERROR + + /* Define if you have sysconf. */ + #undef HAVE_SYSCONF diff --git a/textproc/glimpse/files/patch-ad b/textproc/glimpse/files/patch-ad index 852e9e2da023..b88c8f9dba40 100644 --- a/textproc/glimpse/files/patch-ad +++ b/textproc/glimpse/files/patch-ad @@ -1,11 +1,25 @@ ---- Makefile.in~ Thu Nov 21 12:58:42 1996 -+++ Makefile.in Thu Apr 8 23:01:33 1999 -@@ -32,7 +32,7 @@ - COMPRESSDIR = compress +--- Makefile.in.orig Sat Jul 24 01:24:43 1999 ++++ Makefile.in Fri May 5 21:52:52 2000 +@@ -35,7 +35,7 @@ COMPRESSSRC = $(srcdir)/$(COMPRESSDIR) + DESTDIR = $(srcdir)/bin -CFLAGS = @CFLAGS@ -O -DSTRUCTURED_QUERIES=1 +CFLAGS = -O @CFLAGS@ -DSTRUCTURED_QUERIES=1 ALL_CFLAGS = $(CFLAGS) $(DEFS) -I$(INDEXSRC) -I$(AGREPSRC) -I$(TEMPLATESRC)/include LINKFLAGS = @LDFLAGS@ -I$(INDEXSRC) -I$(AGREPSRC) -I$(TEMPLATESRC)/include +@@ -85,11 +85,11 @@ + install: all installdirs + cd $(DESTDIR) ;\ + for f in $(ALL_PROGS) ; do \ +- $(INSTALL_PROGRAM) $$f $(bindir)/$(binprefix)$(f) ;\ ++ $(INSTALL_PROGRAM) $$f $(bindir)/$(binprefix) ;\ + done + cd $(srcdir) ;\ + for f in $(ALL_MANS) ; do \ +- $(INSTALL_DATA) $$f $(mandir)/$(manprefix)$(f).$(manext) ;\ ++ $(INSTALL_DATA) $$f $(mandir)/$(manprefix) ;\ + done + # $(INSTALL_PROGRAM) $(PROGINDEX) $(bindir)/$(binprefix)glimpseindex + # $(INSTALL_PROGRAM) $(PROGAGREP) $(bindir)/$(binprefix)agrep |