]> git.tuebingen.mpg.de Git - paraslash.git/commitdiff
configure: Replace AC_HELP_STRING by AS_HELP_STRING.
authorAndre Noll <maan@systemlinux.org>
Sun, 22 Jul 2012 20:37:58 +0000 (22:37 +0200)
committerAndre Noll <maan@systemlinux.org>
Mon, 27 Aug 2012 11:01:06 +0000 (13:01 +0200)
The former is considered obsolete. Reported by

autoconf --warnings obsolete

configure.ac

index bc9c36047790106ddcf58a38ca358f1b9caa296c..e07f9e07cdde1fd8c163816103baf6289af72e94 100644 (file)
@@ -236,13 +236,13 @@ have_osl=yes
 OLD_CPPFLAGS="$CPPFLAGS"
 OLD_LD_FLAGS="$LDFLAGS"
 OLD_LIBS="$LIBS"
 OLD_CPPFLAGS="$CPPFLAGS"
 OLD_LD_FLAGS="$LDFLAGS"
 OLD_LIBS="$LIBS"
-AC_ARG_WITH(osl_headers, [AC_HELP_STRING(--with-osl-headers=dir,
+AC_ARG_WITH(osl_headers, [AS_HELP_STRING(--with-osl-headers=dir,
        [look for osl.h also in dir])])
 if test -n "$with_osl_headers"; then
        osl_cppflags="-I$with_osl_headers"
        CPPFLAGS="$CPPFLAGS $osl_cppflags"
 fi
        [look for osl.h also in dir])])
 if test -n "$with_osl_headers"; then
        osl_cppflags="-I$with_osl_headers"
        CPPFLAGS="$CPPFLAGS $osl_cppflags"
 fi
-AC_ARG_WITH(osl_libs, [AC_HELP_STRING(--with-osl-libs=dir,
+AC_ARG_WITH(osl_libs, [AS_HELP_STRING(--with-osl-libs=dir,
        [look for libosl also in dir])])
 if test -n "$with_osl_libs"; then
        osl_libs="-L$with_osl_libs"
        [look for libosl also in dir])])
 if test -n "$with_osl_libs"; then
        osl_libs="-L$with_osl_libs"
@@ -300,13 +300,13 @@ if test "$check_openssl" = "yes"; then
        OLD_LD_FLAGS="$LDFLAGS"
        OLD_LIBS="$LIBS"
        have_openssl="yes"
        OLD_LD_FLAGS="$LDFLAGS"
        OLD_LIBS="$LIBS"
        have_openssl="yes"
-       AC_ARG_WITH(openssl_headers, [AC_HELP_STRING(--with-openssl-headers=dir,
+       AC_ARG_WITH(openssl_headers, [AS_HELP_STRING(--with-openssl-headers=dir,
                [look for openssl headers also in dir])])
        if test -n "$with_openssl_headers"; then
                openssl_cppflags="-I$with_openssl_headers"
                CPPFLAGS="$CPPFLAGS $openssl_cppflags"
        fi
                [look for openssl headers also in dir])])
        if test -n "$with_openssl_headers"; then
                openssl_cppflags="-I$with_openssl_headers"
                CPPFLAGS="$CPPFLAGS $openssl_cppflags"
        fi
-       AC_ARG_WITH(openssl_libs, [AC_HELP_STRING(--with-openssl-libs=dir,
+       AC_ARG_WITH(openssl_libs, [AS_HELP_STRING(--with-openssl-libs=dir,
                [look for openssl libraries also in dir])])
        if test -n "$with_openssl_libs"; then
                openssl_libs="-L$with_openssl_libs"
                [look for openssl libraries also in dir])])
        if test -n "$with_openssl_libs"; then
                openssl_libs="-L$with_openssl_libs"
@@ -357,13 +357,13 @@ if test "$check_gcrypt" = "yes"; then
        OLD_LD_FLAGS="$LDFLAGS"
        OLD_LIBS="$LIBS"
        have_gcrypt="yes"
        OLD_LD_FLAGS="$LDFLAGS"
        OLD_LIBS="$LIBS"
        have_gcrypt="yes"
-       AC_ARG_WITH(gcrypt_headers, [AC_HELP_STRING(--with-gcrypt-headers=dir,
+       AC_ARG_WITH(gcrypt_headers, [AS_HELP_STRING(--with-gcrypt-headers=dir,
                [look for gcrypt headers also in dir])])
        if test -n "$with_gcrypt_headers"; then
                gcrypt_cppflags="-I$with_gcrypt_headers"
                CPPFLAGS="$CPPFLAGS $gcrypt_cppflags"
        fi
                [look for gcrypt headers also in dir])])
        if test -n "$with_gcrypt_headers"; then
                gcrypt_cppflags="-I$with_gcrypt_headers"
                CPPFLAGS="$CPPFLAGS $gcrypt_cppflags"
        fi
-       AC_ARG_WITH(gcrypt_libs, [AC_HELP_STRING(--with-gcrypt-libs=dir,
+       AC_ARG_WITH(gcrypt_libs, [AS_HELP_STRING(--with-gcrypt-libs=dir,
                [look for libgcrypt also in dir])])
        if test -n "$with_gcrypt_libs"; then
                gcrypt_libs="-L$with_gcrypt_libs"
                [look for libgcrypt also in dir])])
        if test -n "$with_gcrypt_libs"; then
                gcrypt_libs="-L$with_gcrypt_libs"
@@ -440,13 +440,13 @@ have_curses="yes"
 OLD_CPPFLAGS="$CPPFLAGS"
 OLD_LD_FLAGS="$LDFLAGS"
 OLD_LIBS="$LIBS"
 OLD_CPPFLAGS="$CPPFLAGS"
 OLD_LD_FLAGS="$LDFLAGS"
 OLD_LIBS="$LIBS"
-AC_ARG_WITH(curses_headers, [AC_HELP_STRING(--with-curses-headers=dir,
+AC_ARG_WITH(curses_headers, [AS_HELP_STRING(--with-curses-headers=dir,
        [look for curses.h also in dir])])
 if test -n "$with_curses_headers"; then
        curses_cppflags="-I$with_curses_headers"
        CPPFLAGS="$CPPFLAGS $curses_cppflags"
 fi
        [look for curses.h also in dir])])
 if test -n "$with_curses_headers"; then
        curses_cppflags="-I$with_curses_headers"
        CPPFLAGS="$CPPFLAGS $curses_cppflags"
 fi
-AC_ARG_WITH(curses_libs, [AC_HELP_STRING(--with-curses-libs=dir,
+AC_ARG_WITH(curses_libs, [AS_HELP_STRING(--with-curses-libs=dir,
        [look for libcurses also in dir])])
 if test -n "$with_curses_libs"; then
        curses_libs="-L$with_curses_libs"
        [look for libcurses also in dir])])
 if test -n "$with_curses_libs"; then
        curses_libs="-L$with_curses_libs"
@@ -522,17 +522,17 @@ have_ogg="yes"
 OLD_CPPFLAGS="$CPPFLAGS"
 OLD_LD_FLAGS="$LDFLAGS"
 OLD_LIBS="$LIBS"
 OLD_CPPFLAGS="$CPPFLAGS"
 OLD_LD_FLAGS="$LDFLAGS"
 OLD_LIBS="$LIBS"
-AC_ARG_WITH(ogg_headers, [AC_HELP_STRING(--with-ogg-headers=dir,
+AC_ARG_WITH(ogg_headers, [AS_HELP_STRING(--with-ogg-headers=dir,
        [look for ogg headers also in dir])])
        [look for ogg headers also in dir])])
-AC_ARG_WITH(ogg_libs, [AC_HELP_STRING(--with-ogg-libs=dir,
+AC_ARG_WITH(ogg_libs, [AS_HELP_STRING(--with-ogg-libs=dir,
        [look for ogg libs also in dir])])
        [look for ogg libs also in dir])])
-AC_ARG_WITH(vorbis_headers, [AC_HELP_STRING(--with-vorbis-headers=dir,
+AC_ARG_WITH(vorbis_headers, [AS_HELP_STRING(--with-vorbis-headers=dir,
        [look for vorbis headers also in dir])])
        [look for vorbis headers also in dir])])
-AC_ARG_WITH(vorbis_libs, [AC_HELP_STRING(--with-vorbis-libs=dir,
+AC_ARG_WITH(vorbis_libs, [AS_HELP_STRING(--with-vorbis-libs=dir,
        [look for vorbis libs also in dir])])
        [look for vorbis libs also in dir])])
-AC_ARG_WITH(speex_headers, [AC_HELP_STRING(--with-speex-headers=dir,
+AC_ARG_WITH(speex_headers, [AS_HELP_STRING(--with-speex-headers=dir,
        [look for speex headers also in dir])])
        [look for speex headers also in dir])])
-AC_ARG_WITH(speex_libs, [AC_HELP_STRING(--with-speex-libs=dir,
+AC_ARG_WITH(speex_libs, [AS_HELP_STRING(--with-speex-libs=dir,
        [look for speex libs also in dir])])
 
 if test -n "$with_ogg_headers"; then
        [look for speex libs also in dir])])
 
 if test -n "$with_ogg_headers"; then
@@ -641,13 +641,13 @@ have_faad=yes
 OLD_CPPFLAGS="$CPPFLAGS"
 OLD_LD_FLAGS="$LDFLAGS"
 OLD_LIBS="$LIBS"
 OLD_CPPFLAGS="$CPPFLAGS"
 OLD_LD_FLAGS="$LDFLAGS"
 OLD_LIBS="$LIBS"
-AC_ARG_WITH(faad_headers, [AC_HELP_STRING(--with-faad-headers=dir,
+AC_ARG_WITH(faad_headers, [AS_HELP_STRING(--with-faad-headers=dir,
        [look for neaacdec.h also in dir])])
 if test -n "$with_faad_headers"; then
        faad_cppflags="-I$with_faad_headers"
        CPPFLAGS="$CPPFLAGS $faad_cppflags"
 fi
        [look for neaacdec.h also in dir])])
 if test -n "$with_faad_headers"; then
        faad_cppflags="-I$with_faad_headers"
        CPPFLAGS="$CPPFLAGS $faad_cppflags"
 fi
-AC_ARG_WITH(faad_libs, [AC_HELP_STRING(--with-faad-libs=dir,
+AC_ARG_WITH(faad_libs, [AS_HELP_STRING(--with-faad-libs=dir,
        [look for libfaad also in dir])])
 if test -n "$with_faad_libs"; then
        faad_libs="-L$with_faad_libs"
        [look for libfaad also in dir])])
 if test -n "$with_faad_libs"; then
        faad_libs="-L$with_faad_libs"
@@ -682,13 +682,13 @@ OLD_CPPFLAGS="$CPPFLAGS"
 OLD_LD_FLAGS="$LDFLAGS"
 OLD_LIBS="$LIBS"
 
 OLD_LD_FLAGS="$LDFLAGS"
 OLD_LIBS="$LIBS"
 
-AC_ARG_WITH(mad_headers, [AC_HELP_STRING(--with-mad-headers=dir,
+AC_ARG_WITH(mad_headers, [AS_HELP_STRING(--with-mad-headers=dir,
        [look for mad.h also in dir])])
 if test -n "$with_mad_headers"; then
        mad_cppflags="-I$with_mad_headers"
        CPPFLAGS="$CPPFLAGS $mad_cppflags"
 fi
        [look for mad.h also in dir])])
 if test -n "$with_mad_headers"; then
        mad_cppflags="-I$with_mad_headers"
        CPPFLAGS="$CPPFLAGS $mad_cppflags"
 fi
-AC_ARG_WITH(mad_libs, [AC_HELP_STRING(--with-mad-libs=dir,
+AC_ARG_WITH(mad_libs, [AS_HELP_STRING(--with-mad-libs=dir,
        [look for libmad also in dir])])
 if test -n "$with_mad_libs"; then
        mad_libs="-L$with_mad_libs"
        [look for libmad also in dir])])
 if test -n "$with_mad_libs"; then
        mad_libs="-L$with_mad_libs"
@@ -724,13 +724,13 @@ OLD_LD_FLAGS="$LDFLAGS"
 OLD_LIBS="$LIBS"
 
 have_libid3tag="yes"
 OLD_LIBS="$LIBS"
 
 have_libid3tag="yes"
-AC_ARG_WITH(id3tag_headers, [AC_HELP_STRING(--with-id3tag-headers=dir,
+AC_ARG_WITH(id3tag_headers, [AS_HELP_STRING(--with-id3tag-headers=dir,
        [look for id3tag header files also in dir])])
 if test -n "$with_id3tag_headers"; then
        id3tag_cppflags="-I$with_id3tag_headers"
        CPPFLAGS="$CPPFLAGS $id3tag_cppflags"
 fi
        [look for id3tag header files also in dir])])
 if test -n "$with_id3tag_headers"; then
        id3tag_cppflags="-I$with_id3tag_headers"
        CPPFLAGS="$CPPFLAGS $id3tag_cppflags"
 fi
-AC_ARG_WITH(id3tag_libs, [AC_HELP_STRING(--with-id3tag-libs=dir,
+AC_ARG_WITH(id3tag_libs, [AS_HELP_STRING(--with-id3tag-libs=dir,
        [look for id3tag libs also in dir])])
 if test -n "$with_id3tag_libs"; then
        id3tag_libs="-L$with_id3tag_libs"
        [look for id3tag libs also in dir])])
 if test -n "$with_id3tag_libs"; then
        id3tag_libs="-L$with_id3tag_libs"
@@ -762,13 +762,13 @@ OLD_LD_FLAGS="$LDFLAGS"
 OLD_LIBS="$LIBS"
 
 have_flac="yes"
 OLD_LIBS="$LIBS"
 
 have_flac="yes"
-AC_ARG_WITH(flac_headers, [AC_HELP_STRING(--with-flac-headers=dir,
+AC_ARG_WITH(flac_headers, [AS_HELP_STRING(--with-flac-headers=dir,
        [look for flac headers also in dir])])
 if test -n "$with_flac_headers"; then
        flac_cppflags="-I$with_flac_headers"
        CPPFLAGS="$CPPFLAGS $flac_cppflags"
 fi
        [look for flac headers also in dir])])
 if test -n "$with_flac_headers"; then
        flac_cppflags="-I$with_flac_headers"
        CPPFLAGS="$CPPFLAGS $flac_cppflags"
 fi
-AC_ARG_WITH(flac_libs, [AC_HELP_STRING(--with-flac-libs=dir,
+AC_ARG_WITH(flac_libs, [AS_HELP_STRING(--with-flac-libs=dir,
        [look for flac libs also in dir])])
 if test -n "$with_flac_libs"; then
        flac_libs="-L$with_flac_libs"
        [look for flac libs also in dir])])
 if test -n "$with_flac_libs"; then
        flac_libs="-L$with_flac_libs"
@@ -879,13 +879,13 @@ OLD_LD_FLAGS="$LDFLAGS"
 OLD_LIBS="$LIBS"
 
 have_ao="yes"
 OLD_LIBS="$LIBS"
 
 have_ao="yes"
-AC_ARG_WITH(ao_headers, [AC_HELP_STRING(--with-ao-headers=dir,
+AC_ARG_WITH(ao_headers, [AS_HELP_STRING(--with-ao-headers=dir,
        [look for ao/ao.h also in dir])])
 if test -n "$with_ao_headers"; then
        ao_cppflags="-I$with_ao_headers"
        CPPFLAGS="$CPPFLAGS $ao_cppflags"
 fi
        [look for ao/ao.h also in dir])])
 if test -n "$with_ao_headers"; then
        ao_cppflags="-I$with_ao_headers"
        CPPFLAGS="$CPPFLAGS $ao_cppflags"
 fi
-AC_ARG_WITH(ao_libs, [AC_HELP_STRING(--with-ao-libs=dir,
+AC_ARG_WITH(ao_libs, [AS_HELP_STRING(--with-ao-libs=dir,
        [look for libao also in dir])])
 if test -n "$with_ao_libs"; then
        ao_libs="-L$with_ao_libs"
        [look for libao also in dir])])
 if test -n "$with_ao_libs"; then
        ao_libs="-L$with_ao_libs"
@@ -938,14 +938,14 @@ OLD_LD_FLAGS="$LDFLAGS"
 OLD_LIBS="$LIBS"
 
 have_readline="yes"
 OLD_LIBS="$LIBS"
 
 have_readline="yes"
-AC_ARG_WITH(readline_headers, [AC_HELP_STRING(--with-readline-headers=dir,
+AC_ARG_WITH(readline_headers, [AS_HELP_STRING(--with-readline-headers=dir,
        [look for libreadline header files also in dir])])
 if test -n "$with_readline_headers"; then
        readline_cppflags="-I$with_readline_headers"
        CPPFLAGS="$CPPFLAGS $readline_cppflags"
 fi
 
        [look for libreadline header files also in dir])])
 if test -n "$with_readline_headers"; then
        readline_cppflags="-I$with_readline_headers"
        CPPFLAGS="$CPPFLAGS $readline_cppflags"
 fi
 
-AC_ARG_WITH(readline_libs, [AC_HELP_STRING(--with-readline-libs=dir,
+AC_ARG_WITH(readline_libs, [AS_HELP_STRING(--with-readline-libs=dir,
        [look for readline library also in dir])])
 if test -n "$with_readline_libs"; then
        readline_libs="-L$with_readline_libs"
        [look for readline library also in dir])])
 if test -n "$with_readline_libs"; then
        readline_libs="-L$with_readline_libs"