| /freebsd/crypto/openssl/Configurations/ |
| H A D | 00-base-templates.conf | 100 my @libs = (); 101 push(@libs, "-L".$withargs{jitter_lib}) if $withargs{jitter_lib}; 102 push(@libs, "-L".$withargs{zlib_lib}) if $withargs{zlib_lib}; 103 push(@libs, "-L".$withargs{brotli_lib}) if $withargs{brotli_lib}; 104 push(@libs, "-L".$withargs{zstd_lib}) if $withargs{zstd_lib}; 105 return join(" ", @libs); 109 my @libs = (); 110 push(@libs, "-l:libjitterentropy.a") if !defined($disabled{jitter}); 111 … push(@libs, "-lz") if !defined($disabled{zlib}) && defined($disabled{"zlib-dynamic"}); 113 push(@libs, "-lbrotlienc"); [all …]
|
| /freebsd/contrib/netbsd-tests/net/ |
| H A D | net_common.sh | 147 local libs= 150 libs="$*" 152 atf_check -s exit:0 rump_server $libs $sock 162 local libs="$BASIC_LIBS" 168 libs="$libs -lrumpnet_$lib" 171 _rump_server_start_common $sock $libs 180 local libs="$FS_LIBS" 186 libs="$libs -lrumpnet_$lib" 189 _rump_server_start_common $sock $libs
|
| /freebsd/contrib/dialog/ |
| H A D | dialog-config.in | 148 --libs) 157 --libs-only-L) 170 --libs-only-l) 183 --libs-only-other) 230 --libs echos the libraries needed to link with ${THIS} 232 --libs-only-L echos -L linker options (search path) for ${THIS} 233 --libs-only-l echos -l linker options (libraries) for ${THIS} 234 --libs-only-other echos linker options other than -L/-l
|
| /freebsd/contrib/atf/atf-c++/ |
| H A D | pkg_config_test.sh | 105 pkg-config --libs-only-L --libs-only-other atf-c++ 108 pkg-config --libs-only-l atf-c++ 109 libs=$(cat stdout) 111 echo "LIBS are: ${libs}" 114 atf_check -s eq:0 -o empty -e empty ${cxx} ${ldflags} -o tp tp.o ${libs}
|
| /freebsd/contrib/atf/atf-c/ |
| H A D | pkg_config_test.sh | 106 pkg-config --libs-only-L --libs-only-other atf-c 108 atf_check -s eq:0 -o save:stdout -e empty pkg-config --libs-only-l atf-c 109 libs=$(cat stdout) 111 echo "LIBS are: ${libs}" 114 atf_check -s eq:0 -o empty -e empty ${cc} ${ldflags} -o tp tp.o ${libs}
|
| /freebsd/contrib/ncurses/misc/ |
| H A D | Makefile.in | 97 @MAKE_PHONY@.PHONY : install.libs 98 @MAKE_PHONY@.PHONY : libs 104 @MAKE_PHONY@.PHONY : uninstall.libs 139 install.libs :: $(BINDIR) ncurses-config 156 @MAKE_PC_FILES@install.libs :: pc-files 195 uninstall : @MISC_UNINSTALL_DATA@ uninstall.libs 202 uninstall.libs :
|
| H A D | ncurses-config.in | 250 --libs) 259 --libs-only-L) 272 --libs-only-l) 285 --libs-only-other) 353 --libs echoes the libraries needed to link with ${CURSES_LIB} 355 --libs-only-L echoes -L linker options (search path) for ${CURSES_LIB} 356 --libs-only-l echoes -l linker options (libraries) for ${CURSES_LIB} 357 --libs-only-other echoes linker options other than -L/-l
|
| /freebsd/contrib/arm-optimized-routines/ |
| H A D | Makefile | 34 libm-libs = -lm 35 libc-libs = -lc 36 mpfr-libs = -lmpfr 37 gmp-libs = -lgmp 38 mpc-libs = -lmpc
|
| H A D | config.mk.dist | 71 libm-libs = -lmsvcrt -lvcruntime -lucrt 72 libc-libs = 76 mpfr-libs = $(SYSROOT)/lib/libmpfr.dll.a 77 gmp-libs = $(SYSROOT)/lib/libgmp.dll.a 78 mpc-libs = $(SYSROOT)/lib/libmpc.dll.a 87 math-ldlibs += $(mpfr-libs) $(gmp-libs)
|
| /freebsd/crypto/krb5/src/config/ |
| H A D | libnover.in | 99 all-liblinks: all-libs $(PLUGINLINK) 100 all-libs: $(PLUGIN) 102 clean-libs: 109 install-libs: $(PLUGININST) 123 # install-unix: install-libs 124 # clean-unix:: clean-liblinks clean-libs 127 # all-unix: all-libs 128 # install-unix: install-libs 129 # clean-unix:: clean-libs
|
| H A D | lib.in | 112 all-libs: $(LIBLIST) 115 clean-libs: 130 install-libs: $(LIBINSTLIST) 155 # install-unix: install-libs 156 # clean-unix:: clean-liblinks clean-libs 159 # all-unix: all-libs 160 # install-unix: install-libs 161 # clean-unix:: clean-libs
|
| /freebsd/crypto/openssl/util/ |
| H A D | ck_errf.pl | 88 my %libs = ( SYS => 1, ERR => 1 ); 94 $libs{$1} = 1; 112 unless ( $libs{$errlib} ) { 114 $libs{$errlib} = 1; # To not display it again
|
| /freebsd/contrib/file/magic/Magdir/ |
| H A D | bsdi | 11 >32 byte 0x6a (uses shared libs) 26 >36 belong 0xb4100001 (uses shared libs) 32 >36 belong 0xb4100001 (uses shared libs) 38 >36 belong 0xb4100001 (uses shared libs)
|
| /freebsd/contrib/googletest/googletest/cmake/ |
| H A D | internal_utils.cmake | 213 # cxx_executable_with_flags(name cxx_flags libs srcs...) 217 function(cxx_executable_with_flags name cxx_flags libs) 235 foreach (lib "${libs}") 242 # Creates a named target that depends on the given libs and is built 245 function(cxx_executable name dir libs) 247 ${name} "${cxx_default}" "${libs}" "${dir}/${name}.cc" ${ARGN}) 254 # cxx_test_with_flags(name cxx_flags libs srcs...) 256 # Creates a named C++ test that depends on the given libs and is built 258 function(cxx_test_with_flags name cxx_flags libs) 259 cxx_executable_with_flags(${name} "${cxx_flags}" "${libs}" ${ARGN}) [all …]
|
| /freebsd/crypto/krb5/src/plugins/preauth/securid_sam2/ |
| H A D | Makefile.in | 22 all-unix: all-libs 23 install-unix: install-libs 24 clean-unix:: clean-libs clean-libobjs
|
| /freebsd/contrib/ncurses/form/ |
| H A D | Makefile.in | 147 @MAKE_PHONY@.PHONY : install.libs 148 @MAKE_PHONY@.PHONY : libs 153 @MAKE_PHONY@.PHONY : uninstall.libs 156 libs \ 208 -rm -rf .libs *.dSYM
|
| /freebsd/contrib/ncurses/panel/ |
| H A D | Makefile.in | 149 @MAKE_PHONY@.PHONY : install.libs 150 @MAKE_PHONY@.PHONY : libs 155 @MAKE_PHONY@.PHONY : uninstall.libs 158 libs \ 205 -rm -rf .libs *.dSYM
|
| /freebsd/contrib/arm-optimized-routines/networking/ |
| H A D | Dir.mk | 20 networking-libs := \ 37 $(networking-libs) \ 41 all-networking: $(networking-libs) $(networking-tools) $(networking-includes) 69 $(networking-libs:build/lib/%=$(DESTDIR)$(libdir)/%) \
|
| /freebsd/contrib/sendmail/contrib/ |
| H A D | mmuegel | 33 # 12339 -r--r--r-- libs/date.pl 34 # 3198 -r--r--r-- libs/elapsed.pl 35 # 4356 -r--r--r-- libs/mail.pl 36 # 6908 -r--r--r-- libs/mqueue.pl 37 # 7024 -r--r--r-- libs/newgetopts.pl 38 # 4687 -r--r--r-- libs/strings1.pl 39 # 1609 -r--r--r-- libs/timespec.pl 82 libs. See the manual pages for a complete description of each tool. 150 # ============= libs/date.pl ============== 151 if test ! -d 'libs'; then [all …]
|
| /freebsd/crypto/openssh/contrib/ |
| H A D | Makefile | 9 `gnome-config --libs gnome gnomeui` 14 `$(PKG_CONFIG) --libs gtk+-2.0 x11` 19 `$(PKG_CONFIG) --libs gtk+-3.0 x11`
|
| /freebsd/contrib/arm-optimized-routines/math/ |
| H A D | Dir.mk | 60 math-libs := \ 82 $(math-libs) \ 87 all-math: $(math-libs) $(math-tools) $(math-includes) 157 $(math-host-tools): HOST_LDLIBS += $(libm-libs) $(mpfr-libs) $(mpc-libs) 158 $(math-tools): LDLIBS += $(math-ldlibs) $(libm-libs) 168 $(CC) $(CFLAGS_ALL) $(LDFLAGS) -o $@ $^ $(libm-libs) 171 $(CC) $(CFLAGS_ALL) $(LDFLAGS) -o $@ $^ $(libm-libs) 175 …$(CC) $(CFLAGS_ALL) $(LDFLAGS) -o $@ $< $(libm-libs) $(libc-libs) build/lib/libmathlib.a $(libm-li… 284 $(math-libs:build/lib/%=$(DESTDIR)$(libdir)/%) \
|
| /freebsd/contrib/lutok/examples/ |
| H A D | Makefile | 37 LUTOK_LDFLAGS = $$(pkg-config --libs-only-L lutok) \ 38 $$(pkg-config --libs-only-other lutok) 39 LUTOK_LIBS = $$(pkg-config --libs-only-l lutok)
|
| /freebsd/contrib/ncurses/menu/ |
| H A D | Makefile.in | 149 @MAKE_PHONY@.PHONY : install.libs 150 @MAKE_PHONY@.PHONY : libs 155 @MAKE_PHONY@.PHONY : uninstall.libs 158 libs \ 211 -rm -rf .libs *.dSYM
|
| /freebsd/contrib/libxo/ |
| H A D | libxo-config.in | 26 --libs print library linking information 42 libs=false 97 --libs)
|
| /freebsd/contrib/ncurses/include/ |
| H A D | Makefile.in | 103 @MAKE_PHONY@.PHONY : install.libs 104 @MAKE_PHONY@.PHONY : libs 109 @MAKE_PHONY@.PHONY : uninstall.libs 112 libs \
|