Home
last modified time | relevance | path

Searched +full:- +full:- +full:without +full:- +full:perl (Results 1 – 25 of 985) sorted by relevance

12345678910>>...40

/external/ltp/m4/
Dax_prog_perl_modules.m42 # https://www.gnu.org/software/autoconf-archive/ax_prog_perl_modules.html
7 # AX_PROG_PERL_MODULES([MODULES], [ACTION-IF-TRUE], [ACTION-IF-FALSE])
11 # Checks to see if the given perl modules are available. If true the shell
12 # commands in ACTION-IF-TRUE are executed. If not the shell commands in
13 # ACTION-IF-FALSE are run. Note if $PERL is not set (for example by
14 # calling AC_CHECK_PROG, or AC_PATH_PROG), AC_CHECK_PROG(PERL, perl, perl)
24 # AC_MSG_WARN(Need some Perl modules)
30 # Copying and distribution of this file, with or without modification, are
31 # permitted in any medium without royalty provided the copyright notice
32 # and this notice are preserved. This file is offered as-is, without any
[all …]
/external/ImageMagick/
DInstall-unix.txt3 ImageMagick builds on a variety of Unix and Unix-like operating systems
26 $magick> cd ImageMagick-7.0.9
36 Host system type: x86_64-unknown-linux-gnu
37 Build system type: x86_64-unknown-linux-gnu
40 ----------------------------------------------------------------------------
41 Shared libraries --enable-shared=yes yes
42 Static libraries --enable-static=yes yes
43 Module support --with-modules=yes yes
44 GNU ld --with-gnu-ld=yes yes
45 Quantum depth --with-quantum-depth=16 16
[all …]
DImageMagick.spec.in11 Source0: https://imagemagick.org/download/%{name}/%{name}-%{VERSION}-%{Patchlevel}.tar.bz2
13 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
14 BuildRequires: bzip2-devel, freetype-devel, libjpeg-devel, libpng-devel
15 BuildRequires: libtiff-devel, giflib-devel, zlib-devel, perl-devel >= 5.8.1
16 BuildRequires: perl-generators
17 BuildRequires: ghostscript-devel
18 BuildRequires: djvulibre-devel
19 BuildRequires: libwmf-devel, jasper-devel, libtool-ltdl-devel
20 BuildRequires: libX11-devel, libXext-devel, libXt-devel
21 BuildRequires: lcms2-devel, libxml2-devel, librsvg2-devel
[all …]
/external/ImageMagick/m4/
Dax_prog_perl_version.m42 # https://www.gnu.org/software/autoconf-archive/ax_prog_perl_version.html
7 # AX_PROG_PERL_VERSION([VERSION],[ACTION-IF-TRUE],[ACTION-IF-FALSE])
11 # Makes sure that perl supports the version indicated. If true the shell
12 # commands in ACTION-IF-TRUE are executed. If not the shell commands in
13 # ACTION-IF-FALSE are run. Note if $PERL is not set (for example by
18 # AC_PATH_PROG([PERL],[perl])
21 # This will check to make sure that the perl you have supports at least
24 # NOTE: This macro uses the $PERL variable to perform the check.
33 # Copying and distribution of this file, with or without modification, are
34 # permitted in any medium without royalty provided the copyright notice
[all …]
/external/ImageMagick/PerlMagick/
DMakefile.am1 # Copyright 1999-2021 ImageMagick Studio LLC, a non-profit organization
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # Copyright (C) 2003 - 2008 GraphicsMagick Group
27 perl-quantum-sources: $(PERLMAGICK)/quantum/@MAGICK_ABI_SUFFIX@.xs $(PERLMAGICK)/quantum/@MAGICK_AB…
29 perl-sources: perl-quantum-sources
30 @if test -n "$(VPATH)" ; then \
36 touch perl-sources
44 PERLMAGICK_ALL_LOCAL_TARGETS = all-perl
45 PERLMAGICK_INSTALL_EXEC_LOCAL_TARGETS = install-exec-perl
47 PERLMAGICK_UNINSTALL_LOCAL_TARGETS = uninstall-exec-perl
[all …]
DMagick.pm3 # Copyright 1999-2020 ImageMagick Studio LLC, a non-profit organization
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
31 # names by default without a very good reason. Use EXPORT_OK instead.
83 $self->set(@_) if @_;
93 $self->set(@_) if @_;
106 …e::Magick - objected-oriented Perl interface to ImageMagick. Use it to read, manipulate, or write …
112 $p->Read("imagefile");
113 $p->Set(attribute => value, ...)
114 ($a, ...) = $p->Get("attribute", ...)
115 $p->routine(parameter => value, ...)
[all …]
/external/zstd/tests/gzip/
Dzgrep-signal.sh5 # Copyright (C) 2010-2016 Free Software Foundation, Inc.
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
23 echo a | gzip -c > f.gz || framework_failure_
25 test "x$PERL" = x && PERL=perl
26 ("$PERL" -e 'use POSIX qw(dup2)') >/dev/null 2>&1 ||
27 skip_ "no suitable perl found"
30 # dangling pipe and SIGPIPE has the default signal-handling action.
33 # it. Fall back on Perl+POSIX, if available. Take care to close the
44 "$PERL" -e '
56 test 128 -lt $signal_status ||
[all …]
/external/oss-fuzz/projects/git/
DDockerfile7 # http://www.apache.org/licenses/LICENSE-2.0
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 FROM gcr.io/oss-fuzz-base/base-builder
18 RUN apt-get update && \
19 apt-get install --no-install-recommends -y \
20 cvs cvsps gettext libcgi-pm-perl libcurl4-gnutls-dev \
21 libdbd-sqlite3-perl liberror-perl libexpat1-dev libhttp-date-perl \
22 libio-pty-perl libmailtools-perl libpcre2-dev libpcre3-dev libsvn-perl \
23 perl-modules libyaml-perl libz-dev python subversion tcl unzip \
24 asciidoc docbook-xsl xmlto libssl-dev zip
/external/python/cpython2/PC/VS7.1/
Dbuild_ssl.py2 # Uses Perl to setup the OpenSSL environment correctly
14 # Python extensions without intervention.
33 # Find a suitable Perl installation for OpenSSL.
34 # cygwin perl does *not* work. ActivePerl does.
35 # Being a Perl dummy, the simplest way I can check is if the "Win32" package
38 for perl in perls:
39 fh = os.popen(perl + ' -e "use Win32;"')
44 return perl
45 print "Can not find a suitable PERL:"
47 print " the following perl interpreters were found:"
[all …]
/external/pcre/doc/
Dpcre2pattern.33 PCRE2 - Perl-compatible regular expressions (revised API)
8 are described in detail below. There is a quick-reference syntax summary in the
12 page. PCRE2 tries to match Perl syntax and semantics as closely as it can.
14 conflict with the Perl syntax) in order to provide some compatibility with
17 Perl's regular expressions are described in its own documentation, and regular
26 using a different algorithm that is not Perl-compatible. Some of the features
36 .SH "SPECIAL START-OF-PATTERN ITEMS"
40 by special items at the start of a pattern. These are not Perl-compatible, but
50 In the 8-bit and 16-bit PCRE2 libraries, characters may be coded either as
51 single code units, or as multiple UTF-8 or UTF-16 code units. UTF-32 can be
[all …]
Dpcre2posix.33 PCRE2 - Perl-compatible regular expressions (revised API)
25 This set of functions provides a POSIX-style API for the PCRE2 regular
26 expression 8-bit library. There are no POSIX-style wrappers for PCRE2's 16-bit
27 and 32-bit libraries. See the
39 means that a program can use the usual POSIX names without running the risk of
42 On Unix-like systems the PCRE2 POSIX library is called \fBlibpcre2-posix\fP, so
43 can be accessed by adding \fB-lpcre2-posix\fP to the command for linking an
45 necessary to add \fB-lpcre2-8\fP.
74 added at the request of users who want to make use of certain PCRE2-specific
77 When PCRE2 is called via these functions, it is only the API that is POSIX-like
[all …]
Dpcre2.txt1 -----------------------------------------------------------------------------
8 -----------------------------------------------------------------------------
16 PCRE2 - Perl-compatible regular expressions (revised API)
22 pattern matching using the same syntax and semantics as Perl, with just
25 API is more extensible, and it was simplified by abolishing the sepa-
31 As well as Perl-style regular expression patterns, some features that
32 appeared in Python and the original PCRE before they appeared in Perl
35 requesting some minor changes that give better ECMAScript (aka Java-
38 The source code for PCRE2 can be compiled to support strings of 8-bit,
39 16-bit, or 32-bit code units, which means that up to three separate li-
[all …]
/external/python/cpython2/PC/VC6/
Dbuild_ssl.py2 # Uses Perl to setup the OpenSSL environment correctly
14 # without intervention.
17 # Now this script supports pre-generated makefiles and assembly files.
18 # Developers don't need an installation of Perl anymore to build Python. A svn
38 # Find a suitable Perl installation for OpenSSL.
39 # cygwin perl does *not* work. ActivePerl does.
40 # Being a Perl dummy, the simplest way I can check is if the "Win32" package
43 for perl in perls:
44 fh = os.popen('"%s" -e "use Win32;"' % perl)
49 return perl
[all …]
/external/python/cpython2/PC/VS8.0/
Dbuild_ssl.py2 # Uses Perl to setup the OpenSSL environment correctly
14 # Python extensions without intervention.
17 # Now this script supports pre-generated makefiles and assembly files.
18 # Developers don't need an installation of Perl anymore to build Python. A svn
21 # In Order to create the files in the case of an update you still need Perl.
43 # Find a suitable Perl installation for OpenSSL.
44 # cygwin perl does *not* work. ActivePerl does.
45 # Being a Perl dummy, the simplest way I can check is if the "Win32" package
48 for perl in perls:
49 fh = os.popen('"%s" -e "use Win32;"' % perl)
[all …]
/external/ImageMagick/www/
Dadvanced-unix-installation.html8 <meta charset="utf-8" />
9 <meta name="viewport" content="width=device-width, initial-scale=1" />
10 <title>ImageMagick - Advanced Unix Source Installation</title>
11 <meta name="application-name" content="ImageMagick" />
13 <meta name="application-url" content="https://imagemagick.org" />
20 <meta name="revisit-after" content="2 DAYS" />
21 <meta name="resource-type" content="document" />
22 <meta name="copyright" content="Copyright (c) 1999-2020 ImageMagick Studio LLC" />
24 <meta name="magick-serial" content="P131-S030410-R485315270133-P82224-A6668-G1245-1" />
31 <meta name="google-site-verification" content="_bMOCDpkx9ZAzBwb2kF3PRHbfUUdFj2uO8Jd1AXArz4" />
[all …]
/external/curl/scripts/
DMakefile.am18 # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
21 # SPDX-License-Identifier: curl
25 EXTRA_DIST = updatemanpages.pl coverage.sh completion.pl firefox-db2pem.sh \
26 checksrc.pl mk-ca-bundle.pl
30 PERL = @PERL@ macro
37 all-local: $(ZSH_COMPLETION_FUNCTION_FILENAME) $(FISH_COMPLETION_FUNCTION_FILENAME)
41 @echo "NOTICE: we can't generate zsh completion when cross-compiling!"
42 else # if not cross-compiling:
43 @if ! test -x "$(PERL)"; then echo "No perl: can't install completion.pl"; exit 0; fi
44 $(PERL) $(srcdir)/completion.pl --curl $(top_builddir)/src/curl$(EXEEXT) --shell zsh > $@
[all …]
/external/curl/projects/
Dchecksrc.bat19 rem * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
22 rem * SPDX-License-Identifier: curl
43 if /i "%~1" == "-?" (
45 ) else if /i "%~1" == "-h" (
47 ) else if /i "%~1" == "-help" (
80 rem Check we have Perl in our path
81 perl --version <NUL 1>NUL 2>&1
84 if exist "%SystemDrive%\Perl" (
85 set "PATH=%SystemDrive%\Perl\bin;%PATH%"
118 … in ('dir "%SRC_DIR%\src\*.c.*" /b 2^>NUL') do @perl "%SRC_DIR%\scripts\checksrc.pl" "-D%SRC_DIR%\…
[all …]
/external/ImageMagick/PerlMagick/default/
DMagick.pm.in3 # Copyright 1999-2021 ImageMagick Studio LLC, a non-profit organization
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
29- objected-oriented Perl interface to ImageMagick for default quantum (@MAGICK_ABI_SUFFIX@). Use i…
35 $p->Read("imagefile");
36 $p->Set(attribute => value, ...)
37 ($a, ...) = $p->Get("attribute", ...)
38 $p->routine(parameter => value, ...)
39 $p->Mogrify("Routine", parameter => value, ...)
40 $p->Write("filename");
44 This Perl extension allows the reading, manipulation and writing of
[all …]
/external/openthread/third_party/nlbuild-autotools/repo/tools/packages/automake/automake.patches/
Dautomake-00.description1 2016-04-01 Paul Eggert <eggert@cs.ucla.edu>
3 automake: port to Perl 5.22 and later
5 Without this change, Perl 5.22 complains "Unescaped left brace in
7 Perl 5.26. See:
8 …http://search.cpan.org/dist/perl-5.22.0/pod/perldelta.pod#A_literal_%22{%22_should_now_be_escaped_…
/external/ImageMagick/PerlMagick/quantum/
Dquantum.pm3 # Copyright 1999-2021 ImageMagick Studio LLC, a non-profit organization
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
30 # names by default without a very good reason. Use EXPORT_OK instead.
82 $self->set(@_) if @_;
92 $self->set(@_) if @_;
105 …Q16HDRI - objected-oriented Perl interface to ImageMagick (Q16HDRI). Use it to create, edit, compo…
111 $p->Read("imagefile");
112 $p->Set(attribute => value, ...)
113 ($a, ...) = $p->Get("attribute", ...)
114 $p->routine(parameter => value, ...)
[all …]
Dquantum.pm.in3 # Copyright 1999-2021 ImageMagick Studio LLC, a non-profit organization
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
30 # names by default without a very good reason. Use EXPORT_OK instead.
82 $self->set(@_) if @_;
92 $self->set(@_) if @_;
105 …@ - objected-oriented Perl interface to ImageMagick (@MAGICK_ABI_SUFFIX@). Use it to create, edit,…
111 $p->Read("imagefile");
112 $p->Set(attribute => value, ...)
113 ($a, ...) = $p->Get("attribute", ...)
114 $p->routine(parameter => value, ...)
[all …]
/external/pcre/doc/html/
Dpcre2pattern.html17 <li><a name="TOC2" href="#SEC2">SPECIAL START-OF-PATTERN ITEMS</a>
36 <li><a name="TOC21" href="#SEC21">NON-ATOMIC ASSERTIONS</a>
52 are described in detail below. There is a quick-reference syntax summary in the
54 page. PCRE2 tries to match Perl syntax and semantics as closely as it can.
56 conflict with the Perl syntax) in order to provide some compatibility with
60 Perl's regular expressions are described in its own documentation, and regular
70 using a different algorithm that is not Perl-compatible. Some of the features
77 <br><a name="SEC2" href="#TOC1">SPECIAL START-OF-PATTERN ITEMS</a><br>
80 by special items at the start of a pattern. These are not Perl-compatible, but
90 In the 8-bit and 16-bit PCRE2 libraries, characters may be coded either as
[all …]
/external/pcre/
DPrepareRelease11 # 132html A Perl script that converts a .1 or .3 man page into HTML. It
15 # CheckMan A Perl script that checks man pages for typos in the mark up.
17 # CleanTxt A Perl script that cleans up the output of "nroff -man" by
21 # Detrail A Perl script that removes trailing spaces from files.
26 # doc/html can be deleted and re-created from scratch.
28 # README & NON-AUTOTOOLS-BUILD
31 # documentation, because some people just go to the HTML without
42 /bin/rm -f pcre2demo.3
46 perl ../CheckMan *.1 *.3
54 -----------------------------------------------------------------------------
[all …]
/external/pcre/maint/
DREADME13 Long-term ideas (wish list)
30 site. The generated file contains the tables for a 2-stage lookup of Unicode
48 pcre2_chartables.c.non-standard
79 sequence of bytes in the UTF-8 encoding, and vice versa. If its argument is a
80 hex number such as 0x1234, it outputs a list of the equivalent UTF-8 bytes.
81 If its argument is a sequence of concatenated UTF-8 bytes (e.g. 12e188b4) it
82 treats them as a UTF-8 string and outputs the equivalent code points in hex.
143 files are CMakeLists.txt and config-cmake.h.in. After making a release, test
146 . Run ./autogen.sh to ensure everything is up-to-date.
154 . Run tests in both 32-bit and 64-bit environments if possible. I can no longer
[all …]
/external/pcre/src/
Dpcre2_maketables.c2 * Perl-Compatible Regular Expressions *
6 and semantics are as close as possible to those of the Perl 5 language.
9 Original API code Copyright (c) 1997-2012 University of Cambridge
10 New API code Copyright (c) 2016-2020 University of Cambridge
12 -----------------------------------------------------------------------------
13 Redistribution and use in source and binary forms, with or without
25 this software without specific prior written permission.
38 -----------------------------------------------------------------------------
85 gcontext->memctl.malloc(TABLES_LENGTH, gcontext->memctl.memory_data) :
99 /* Next the case-flipping table */
[all …]

12345678910>>...40