Some more minor tweaks before release

pull/37/merge
Tim Stack 13 years ago
parent 2d1edb90a1
commit 2101a6c19b

@ -22,6 +22,7 @@ Lnav requires the following software packages:
ncurses - The ncurses text UI library.
readline - The readline line editing library.
zlib - The zlib compression library.
bz2 - The bzip2 compression library.
INSTALLATION

3
configure vendored

@ -2352,6 +2352,9 @@ for defdir in /usr/local /opt/local; do
if test -d "$defdir/lib"; then
LDFLAGS="$LDFLAGS -L$defdir/lib"
fi
if test -d "$defdir/lib64"; then
LDFLAGS="$LDFLAGS -L$defdir/lib64"
fi
done
case x$srcdir in

@ -15,6 +15,9 @@ for defdir in /usr/local /opt/local; do
if test -d "$defdir/lib"; then
LDFLAGS="$LDFLAGS -L$defdir/lib"
fi
if test -d "$defdir/lib64"; then
LDFLAGS="$LDFLAGS -L$defdir/lib64"
fi
done
dnl abssrcdir is the absolute path to the source base (regardless of where

@ -281,6 +281,7 @@ libdiag_a_SOURCES = \
lnav_SOURCES = lnav.cc $(HELP_SRC)
lnav_LDADD = help.o $(LDADD)
bin2c_SOURCES = bin2c.c
DISTCLEANFILES = help.c
all: config.h
$(MAKE) $(AM_MAKEFLAGS) all-am
@ -525,6 +526,7 @@ clean-generic:
distclean-generic:
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
-test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
maintainer-clean-generic:
@echo "This command is intended for maintainers to use"

Loading…
Cancel
Save