| /third_party/zlib/ |
| H A D | configure | 2 # configure script for zlib. 4 # Normally configure builds both a static and a shared library. 5 # If you want to build just a static library, use: ./configure --static 8 # prefix=$HOME CC=cc CFLAGS="-O4" ./configure 10 # (setenv prefix $HOME; setenv CC cc; setenv CFLAGS "-O4"; ./configure) 16 # start off configure.log 17 echo -------------------- >> configure.log 18 echo $0 $* >> configure.log 19 date >> configure.log 53 test -n "${CROSS_PREFIX}" && echo Using ${AR} | tee -a configure [all...] |
| /third_party/ltp/include/mk/ |
| H A D | automake.mk | 35 .PHONY: testcases/realtime/configure 36 testcases/realtime/configure: 39 .PHONY: testcases/open_posix_testsuite/configure 40 testcases/open_posix_testsuite/configure: 44 autotools: aclocal autoconf autoheader automake $(addsuffix /configure,$(AUTOCONFED_SUBDIRS)) 53 autoconf: configure 55 configure: configure.ac aclocal.m4 59 autoheader: configure.ac $(wildcard m4/*.m4) m4/ltp-version.m4 aclocal.m4 90 $(RM) -f aclocal.m4 configure [all...] |
| /third_party/icu/tools/release/java/ |
| H A D | Makefile | 46 tmp-old: $(OLD_ICU)/source/configure 48 ( cd $(OLD_ICU_BUILD)/ && $(OLD_ICU)/source/configure ) 51 tmp-new: $(NEW_ICU)/source/configure 53 ( cd $(NEW_ICU_BUILD)/ && $(NEW_ICU)/source/configure ) 55 inplace-old: $(OLD_ICU)/source/configure 57 ( cd $(OLD_ICU_BUILD)/ && ./configure ) 60 inplace-new: $(NEW_ICU)/source/configure 62 ( cd $(NEW_ICU_BUILD)/ && ./configure ) 110 # @echo "$@ does not seem to exist - was configure run?" ; false
|
| /third_party/libsnd/Scripts/ |
| H A D | static-deps-build.mk | 48 config : Build/Stamp/configure 98 (cd Build/$(ogg_version) && autoreconf -vif && CFLAGS=-fPIC ./configure $(config_options) --disable-crc && make all install) 102 (cd Build/$(ogg_version) && CFLAGS=-fPIC ./configure $(config_options) && make all install) 107 (cd Build/$(vorbis_version) && CFLAGS=-fPIC ./configure $(config_options) && make all install) 108 (cd Build/$(flac_version) && CFLAGS=-fPIC ./configure $(config_options) && make all install) 109 (cd Build/$(opus_version) && CFLAGS=-fPIC ./configure $(config_options) && make all install) 112 configure : configure.ac 115 Build/Stamp/configure : Build/Stamp/install-libs configure [all...] |
| /third_party/ltp/ |
| H A D | build.sh | 26 local configure="$1" 32 echo "=== configure $configure $@ ===" 33 if ! $configure $@; then 34 echo "== ERROR: configure failed, config.log ==" 45 run_configure ./configure $CONFIGURE_OPTS_IN_TREE --prefix=$prefix $@ 52 run_configure $SRC_DIR/configure $CONFIGURE_OPTS_OUT_TREE $@ 153 -c CC Define compiler (\$CC variable), needed only for configure step 157 to --prefix option of configure script. For out-of-tree build is this 164 -t TYPE Specify build type, default: $DEFAULT_BUILD, only for configure ste [all...] |
| /third_party/python/Lib/tkinter/test/test_ttk/ |
| H A D | test_style.py | 30 style.configure('TButton', background='yellow') 31 self.assertEqual(style.configure('TButton', 'background'), 33 self.assertIsInstance(style.configure('TButton'), dict) 72 style.configure('TButton', background='yellow') 134 default = style.configure(name) 139 print('configure', theme, name, default) 145 self.assertEqual(style.configure(newname), None) 146 style.configure(newname, **default) 147 self.assertEqual(style.configure(newname), default) 149 self.assertEqual(style.configure(newnam [all...] |
| /third_party/python/Modules/_decimal/tests/ |
| H A D | runall-memorydebugger.sh | 12 # Set additional CFLAGS and LDFLAGS for ./configure 78 ./configure CFLAGS="$ADD_CFLAGS" LDFLAGS="$ADD_LDFLAGS" --with-pydebug $args > /dev/null 2>&1 90 ./configure CFLAGS="$ADD_CFLAGS" LDFLAGS="$ADD_LDFLAGS" $args > /dev/null 2>&1 110 ./configure CFLAGS="$ADD_CFLAGS" LDFLAGS="$ADD_LDFLAGS" --without-pymalloc $args > /dev/null 2>&1 136 ./configure CFLAGS="$ADD_CFLAGS" LDFLAGS="$ADD_LDFLAGS" --with-pydebug $args > /dev/null 2>&1 147 ./configure CFLAGS="$ADD_CFLAGS" LDFLAGS="$ADD_LDFLAGS" $args > /dev/null 2>&1 167 ./configure CFLAGS="$ADD_CFLAGS" LDFLAGS="$ADD_LDFLAGS" --without-pymalloc $args > /dev/null 2>&1
|
| /third_party/skia/third_party/externals/harfbuzz/ |
| H A D | git.mk | 62 # - Recursive configure doesn't work as $(top_srcdir)/git.mk inside the 63 # submodule doesn't find us. If you have configure.{in,ac} files in 82 $(srcdir)/configure.scan \ 83 `AUX_DIR=$(srcdir)/$$(cd $(top_srcdir); $(AUTOCONF) --trace 'AC_CONFIG_AUX_DIR:$$1' ./configure.ac); \ 99 `cd $(top_srcdir); $(AUTOCONF) --trace 'AC_CONFIG_HEADERS:$$1' ./configure.ac | \ 105 `cd $(top_srcdir); $(AUTOCONF) --trace 'AC_CONFIG_FILES:$$1' ./configure.ac | \ 114 `MACRO_DIR=$(srcdir)/$$(cd $(top_srcdir); $(AUTOCONF) --trace 'AC_CONFIG_MACRO_DIR:$$1' ./configure.ac); \ 128 `MACRO_DIR=$(srcdir)/$$(cd $(top_srcdir); $(AUTOCONF) --trace 'AC_CONFIG_MACRO_DIR:$$1' ./configure.ac); \ 220 FLAVOR=$$(cd $(top_srcdir); $(AUTOCONF) --trace 'GTK_DOC_CHECK:$$2' ./configure.ac); \ 311 if test -f $(srcdir)/configure; the [all...] |
| /third_party/python/PCbuild/ |
| H A D | prepare_ssl.py | 18 # it should configure OpenSSL such that it is ready to be built by 88 def run_configure(configure, do_script): 89 print("perl Configure "+configure+" no-idea no-mdc2") 90 os.system("perl Configure "+configure+" no-idea no-mdc2") 119 configure = "VC-WIN32" 123 configure = "VC-WIN64A" 131 # run configure, copy includes, patch files 132 run_configure(configure, do_script)
|
| /third_party/ltp/testcases/realtime/ |
| H A D | Makefile | 62 $(RM) -f aclocal.m4 configure $(AUTOMAKE_FILES) m4/Makefile.in 68 autoconf: configure 70 include/realtime_config.h.in: configure.ac $(wildcard m4/*.m4) aclocal.m4 73 configure: configure.ac aclocal.m4
|
| /third_party/python/Lib/tkinter/test/test_tkinter/ |
| H A D | test_images.py | 108 image.configure(data=data) 115 image.configure(maskdata=data) 122 image.configure(file=self.testfile) 129 image.configure(maskfile=self.testfile) 136 image.configure(background='blue') 143 image.configure(foreground='yellow') 229 image.configure(data=data) 238 image.configure(file=self.testfile, format='gif') 247 image.configure(file=self.testfile) 255 image.configure(gamm [all...] |
| /third_party/curl/ |
| H A D | Makefile | 26 ./configure 30 ./configure --with-openssl 46 ./configure 50 ./configure --with-openssl
|
| /third_party/icu/icu4c/as_is/os400/ |
| H A D | unpax-icu.sh | 153 # Generate and run the configure script 157 echo "Generating qsh compatible configure ..." 160 sed -f icu/as_is/os400/convertConfigure.sed icu/source/configure > icu/source/configureTemp 161 del -f icu/source/configure 162 mv icu/source/configureTemp icu/source/configure 163 chmod 755 icu/source/configure
|
| /third_party/pulseaudio/ohosbuild/ |
| H A D | ohos_paconfig.sh | 23 rm -rf autom4te.cache/ build-aux/ config.h config.h.in config.h.in~ config.log config.status configure 29 sed -i 's/\.\/git-version-gen .tarball-version//g' configure.ac 30 sed -i 's/\[m4_esyscmd()\],//g' configure.ac 52 # configure file faulty. 66 CFLAGS="$CFLAGS -g -O0" $PASRC_PATH/configure --enable-force-preopen ${PA_CONFIG_OPTIONS} && \
|
| /third_party/skia/third_party/externals/freetype/ |
| H A D | autogen.sh | 114 if test -f ./builds/unix/configure.raw; then 161 echo "generating \`configure.ac'" 163 < configure.raw > configure.ac 173 chmod +x ./configure
|
| /third_party/protobuf/python/release/wheel/ |
| H A D | protobuf_optimized_pip.sh | 47 sed -i '/AC_PROG_OBJC/d' configure.ac 48 sed -i 's/conformance\/Makefile//g' configure.ac 55 CXXFLAGS="-fPIC -g -O2" ./configure
|
| /third_party/libcoap/scripts/ |
| H A D | api-version-bump.sh | 3 if ! test -f configure.ac; then 8 declare $(sed -ne '/^LIBCOAP_API_VERSION=[0-9]\+/{p; q}' configure.ac) 59 # Finally, increase LIBCOAP_API_VERSION in configure.ac and re-run autoconf 60 sed -i "s/^\(LIBCOAP_API_VERSION=\)$LIBCOAP_API_VERSION/\1$NEW_VERSION/" configure.ac && autoreconf
|
| H A D | dist.sh | 52 echo "./configure $*" 53 ./configure $* || cat config.log 65 $DIR/configure $PREFIX $WITH_TESTS $SILENT $WITH_DOCS --enable-examples $WITH_TLS && \
|
| /third_party/ffmpeg/tests/ |
| H A D | fate.sh | 44 configure()( function 46 ${shell} ${src}/configure \ 118 configure >configure.log 2>&1 || fail 3 "error configuring"
|
| /third_party/FreeBSD/sys/arm/arm/ |
| H A D | autoconf.c | 61 configure(void) in configure() function 73 * WORKAROUND: Inside configure(), nexus_init() function calls in OsBsdInit() 77 * Temporarily ifdef configure until this routine is implemented in OsBsdInit() 81 configure(); in OsBsdInit()
|
| /third_party/protobuf/kokoro/release/python/linux/ |
| H A D | config.sh | 13 ./configure 15 CXXFLAGS="-fPIC -g -O2" ./configure
|
| /third_party/protobuf/kokoro/release/python/macos/ |
| H A D | config.sh | 30 ./configure 32 CXXFLAGS="-std=c++14 -fPIC -g -O2" ./configure
|
| /third_party/python/Lib/idlelib/idle_test/ |
| H A D | htest.py | 381 text.configure(bg=root.cget('bg'), relief='flat', height=4, width=70) 417 text.configure(state='normal') # enable text editing 420 text.configure(state='disabled') # preserve read-only property
|
| /third_party/curl/projects/ |
| H A D | build-openssl.bat | 274 call :configure x64 debug static %LEGACY_BUILD%
283 call :configure x64 debug shared %LEGACY_BUILD%
294 call :configure x64 release static %LEGACY_BUILD%
303 call :configure x64 release shared %LEGACY_BUILD%
321 call :configure x86 debug static %LEGACY_BUILD%
330 call :configure x86 debug shared %LEGACY_BUILD%
341 call :configure x86 release static %LEGACY_BUILD%
350 call :configure x86 release shared %LEGACY_BUILD%
361 rem Function to configure the build.
368 :configure
label [all...] |
| /third_party/skia/third_party/externals/freetype/builds/unix/ |
| H A D | detect.mk | 61 # If a Unix platform is detected, the configure script is called and 64 # Arguments to `configure' should be in the CFG variable. Example: 89 $(TOP_DIR)/builds/unix/configure $(value CFG) 92 ./configure $(value CFG)
|