]> git.ipfire.org Git - thirdparty/zlib-ng.git/commitdiff
Add more --help output to configure
authorHans Kristian Rosbach <hk-git@circlestorm.org>
Mon, 17 Sep 2018 10:45:15 +0000 (12:45 +0200)
committerHans Kristian Rosbach <hk-git@circlestorm.org>
Mon, 17 Sep 2018 10:45:15 +0000 (12:45 +0200)
configure

index e57ab4cde2e28bb08c9a6624c59d1556cb5414e8..fbb48349717e3f72c574ddf0e3d998fd35e2eed9 100755 (executable)
--- a/configure
+++ b/configure
@@ -137,10 +137,15 @@ do
 case "$1" in
     -h* | --help)
       echo 'usage:' | tee -a configure.log
-      echo '  configure [--zlib-compat] [--prefix=PREFIX]  [--eprefix=EXPREFIX]' | tee -a configure.log
+      echo '  configure [--prefix=PREFIX]  [--eprefix=EXPREFIX]' | tee -a configure.log
       echo '    [--static] [--32] [--64] [--libdir=LIBDIR] [--sharedlibdir=LIBDIR]' | tee -a configure.log
       echo '    [--includedir=INCLUDEDIR] [--archs="-arch i386 -arch x86_64"]' | tee -a configure.log
-      echo '    [--acle] [--neon]' | tee -a configure.log
+      echo '    [--warn]                    Enables extra compiler warnings' | tee -a configure.log
+      echo '    [--debug]                   Enables extra debug prints during operation' | tee -a configure.log
+      echo '    [--zlib-compat]             Compiles for zlib-compatible API instead of zlib-ng API' | tee -a configure.log
+      echo '    [--without-optimizations]   Compiles without support for optional instruction sets' | tee -a configure.log
+      echo '    [--without-new-strategies]  Compiles without using new additional deflate strategies' | tee -a configure.log
+      echo '    [--acle] [--neon]           Compiles with additional instruction set enabled' | tee -a configure.log
         exit 0 ;;
     -p*=* | --prefix=*) prefix=`echo $1 | sed 's/.*=//'`; shift ;;
     -e*=* | --eprefix=*) exec_prefix=`echo $1 | sed 's/.*=//'`; shift ;;