diff options
author | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-08 04:18:52 +0000 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-08 04:18:52 +0000 |
commit | 6a83373eb86eec673be2d24fe840a9bce97fcaaa (patch) | |
tree | 5af649b83e4681c1da7b99fb6f15025d6e04c7a2 /configure | |
parent | Adding upstream version 0.8. (diff) | |
download | zutils-6a83373eb86eec673be2d24fe840a9bce97fcaaa.tar.xz zutils-6a83373eb86eec673be2d24fe840a9bce97fcaaa.zip |
Adding upstream version 0.9~rc1.upstream/0.9_rc1
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
Diffstat (limited to '')
-rwxr-xr-x | configure | 14 |
1 files changed, 12 insertions, 2 deletions
@@ -5,12 +5,12 @@ # This configure script is free software: you have unlimited permission # to copy, distribute and modify it. # -# Date of this version: 2010-11-15 +# Date of this version: 2010-11-20 args= no_create= pkgname=zutils -pkgversion=0.8 +pkgversion=0.9-rc1 progname=zutils srctrigger=zutils.h @@ -25,6 +25,8 @@ datadir='$(prefix)/share' infodir='$(datadir)/info' mandir='$(datadir)/man' sysconfdir='$(prefix)/etc' +DIFF=diff +GREP=grep if [ -n "${CXX}" ] ; then args="${args} CXX=\"${CXX}\"" ; fi if [ -n "${CPPFLAGS}" ] ; then args="${args} CPPFLAGS=\"${CPPFLAGS}\"" ; fi @@ -67,6 +69,8 @@ while [ -n "$1" ] ; do echo " CPPFLAGS=OPTIONS command line options for the preprocessor [${CPPFLAGS}]" echo " CXXFLAGS=OPTIONS command line options for the C++ compiler [${CXXFLAGS}]" echo " LDFLAGS=OPTIONS command line options for the linker [${LDFLAGS}]" + echo " DIFF=NAME diff program to use with zdiff [diff]" + echo " GREP=NAME grep program to use with zgrep [grep]" echo exit 0 ;; --version | --ve* | -V) @@ -95,6 +99,8 @@ while [ -n "$1" ] ; do CPPFLAGS=*) CPPFLAGS=${optarg} ;; CXXFLAGS=*) CXXFLAGS=${optarg} ;; LDFLAGS=*) LDFLAGS=${optarg} ;; + DIFF=*) DIFF=${optarg} ;; + GREP=*) GREP=${optarg} ;; --* | *=* | *-*-*) ;; *) @@ -166,6 +172,8 @@ echo "CXX = ${CXX}" echo "CPPFLAGS = ${CPPFLAGS}" echo "CXXFLAGS = ${CXXFLAGS}" echo "LDFLAGS = ${LDFLAGS}" +echo "DIFF = ${DIFF}" +echo "GREP = ${GREP}" rm -f Makefile cat > Makefile << EOF # Makefile for Zutils - Utilities dealing with compressed files @@ -190,6 +198,8 @@ CXX = ${CXX} CPPFLAGS = ${CPPFLAGS} CXXFLAGS = ${CXXFLAGS} LDFLAGS = ${LDFLAGS} +DIFF = ${DIFF} +GREP = ${GREP} EOF cat ${srcdir}/Makefile.in >> Makefile |