One year worth of changes. Most notable ones: * Index merging is now much more stable. * Sphinx now has official IANA assigned ports, 9312 for native API and 9306 for SphinxQL. See full release log: http://sphinxsearch.com/docs/current.html#rel099
82 lines
3.1 KiB
Text
82 lines
3.1 KiB
Text
$NetBSD: patch-aa,v 1.2 2009/12/15 11:51:51 fhajny Exp $
|
|
|
|
--- Makefile.in.orig 2009-01-20 14:03:09.000000000 +0000
|
|
+++ Makefile.in
|
|
@@ -61,7 +61,7 @@ am__vpath_adj = case $$p in \
|
|
*) f=$$p;; \
|
|
esac;
|
|
am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
|
|
-am__installdirs = "$(DESTDIR)$(sysconfdir)"
|
|
+am__installdirs = "$(DESTDIR)$(egdir)"
|
|
sysconfDATA_INSTALL = $(INSTALL_DATA)
|
|
DATA = $(sysconf_DATA)
|
|
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
|
|
@@ -174,6 +174,7 @@ sbindir = @sbindir@
|
|
sharedstatedir = @sharedstatedir@
|
|
srcdir = @srcdir@
|
|
sysconfdir = @sysconfdir@
|
|
+egdir = @egdir@
|
|
target_alias = @target_alias@
|
|
top_builddir = @top_builddir@
|
|
top_srcdir = @top_srcdir@
|
|
@@ -240,20 +241,20 @@ sphinx-min.conf.dist: $(top_builddir)/co
|
|
cd $(top_builddir) && $(SHELL) ./config.status $@
|
|
install-sysconfDATA: $(sysconf_DATA)
|
|
@$(NORMAL_INSTALL)
|
|
- test -z "$(sysconfdir)" || $(MKDIR_P) "$(DESTDIR)$(sysconfdir)"
|
|
+ test -z "$(egdir)" || $(MKDIR_P) "$(DESTDIR)$(egdir)"
|
|
@list='$(sysconf_DATA)'; for p in $$list; do \
|
|
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
|
f=$(am__strip_dir) \
|
|
- echo " $(sysconfDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(sysconfdir)/$$f'"; \
|
|
- $(sysconfDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(sysconfdir)/$$f"; \
|
|
+ echo " $(sysconfDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(egdir)/$$f'"; \
|
|
+ $(sysconfDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(egdir)/$$f"; \
|
|
done
|
|
|
|
uninstall-sysconfDATA:
|
|
@$(NORMAL_UNINSTALL)
|
|
@list='$(sysconf_DATA)'; for p in $$list; do \
|
|
f=$(am__strip_dir) \
|
|
- echo " rm -f '$(DESTDIR)$(sysconfdir)/$$f'"; \
|
|
- rm -f "$(DESTDIR)$(sysconfdir)/$$f"; \
|
|
+ echo " rm -f '$(DESTDIR)$(egdir)/$$f'"; \
|
|
+ rm -f "$(DESTDIR)$(egdir)/$$f"; \
|
|
done
|
|
|
|
# This directory's subdirectories are mostly independent; you can cd
|
|
@@ -539,7 +540,7 @@ check: check-recursive
|
|
all-am: Makefile $(DATA)
|
|
installdirs: installdirs-recursive
|
|
installdirs-am:
|
|
- for dir in "$(DESTDIR)$(sysconfdir)"; do \
|
|
+ for dir in "$(DESTDIR)$(egdir)"; do \
|
|
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
|
|
done
|
|
install: install-recursive
|
|
@@ -587,7 +588,6 @@ info-am:
|
|
|
|
install-data-am:
|
|
@$(NORMAL_INSTALL)
|
|
- $(MAKE) $(AM_MAKEFLAGS) install-data-hook
|
|
|
|
install-dvi: install-dvi-recursive
|
|
|
|
@@ -635,7 +635,7 @@ uninstall-am: uninstall-sysconfDATA
|
|
distclean-generic distclean-hdr distclean-tags distcleancheck \
|
|
distdir distuninstallcheck dvi dvi-am html html-am info \
|
|
info-am install install-am install-data install-data-am \
|
|
- install-data-hook install-dvi install-dvi-am install-exec \
|
|
+ install-dvi install-dvi-am install-exec \
|
|
install-exec-am install-html install-html-am install-info \
|
|
install-info-am install-man install-pdf install-pdf-am \
|
|
install-ps install-ps-am install-strip install-sysconfDATA \
|
|
@@ -645,8 +645,6 @@ uninstall-am: uninstall-sysconfDATA
|
|
uninstall uninstall-am uninstall-sysconfDATA
|
|
|
|
|
|
-install-data-hook:
|
|
- mkdir -p $(DESTDIR)$(localstatedir)/data && mkdir -p $(DESTDIR)$(localstatedir)/log
|
|
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
|
# Otherwise a system limit (for SysV at least) may be exceeded.
|
|
.NOEXPORT:
|