mirror of
https://github.com/nmap/nmap.git
synced 2026-09-01 16:02:01 +00:00
Arp sp00fing c0de
This commit is contained in:
parent
db7794d596
commit
aafb4a0a82
19 changed files with 330 additions and 191 deletions
|
|
@ -22,7 +22,7 @@ pkglibdir = $(libdir)/libdnet
|
|||
pkgincludedir = $(includedir)/libdnet
|
||||
top_builddir = .
|
||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||
INSTALL = config/install-sh -c
|
||||
INSTALL = /usr/bin/install -c
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
|
|
@ -34,8 +34,8 @@ POST_INSTALL = :
|
|||
NORMAL_UNINSTALL = :
|
||||
PRE_UNINSTALL = :
|
||||
POST_UNINSTALL = :
|
||||
build_triplet = sparc-sun-solaris2.9
|
||||
host_triplet = sparc-sun-solaris2.9
|
||||
build_triplet = x86_64-unknown-linux-gnu
|
||||
host_triplet = x86_64-unknown-linux-gnu
|
||||
DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \
|
||||
$(srcdir)/Makefile.in $(srcdir)/dnet-config.in \
|
||||
$(top_srcdir)/Makefile.am.common $(top_srcdir)/configure \
|
||||
|
|
@ -118,11 +118,11 @@ INSTALL_PROGRAM = ${INSTALL}
|
|||
INSTALL_SCRIPT = ${INSTALL}
|
||||
INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
|
||||
LDFLAGS =
|
||||
LIBOBJS = err$U.o strsep$U.o arp-ioctl$U.o eth-dlpi$U.o fw-none$U.o intf$U.o ip-cooked$U.o route-bsd$U.o tun-none$U.o
|
||||
LIBS = -lsocket -lnsl
|
||||
LIBOBJS = strlcat$U.o strlcpy$U.o arp-ioctl$U.o eth-linux$U.o fw-ipchains$U.o intf$U.o ip$U.o route-linux$U.o tun-linux$U.o
|
||||
LIBS =
|
||||
LIBTOOL = $(SHELL) $(top_builddir)/libtool
|
||||
LN_S = ln -s
|
||||
LTLIBOBJS = err$U.lo strsep$U.lo arp-ioctl$U.lo eth-dlpi$U.lo fw-none$U.lo intf$U.lo ip-cooked$U.lo route-bsd$U.lo tun-none$U.lo
|
||||
LTLIBOBJS = strlcat$U.lo strlcpy$U.lo arp-ioctl$U.lo eth-linux$U.lo fw-ipchains$U.lo intf$U.lo ip$U.lo route-linux$U.lo tun-linux$U.lo
|
||||
MAINT = #
|
||||
MAINTAINER_MODE_FALSE =
|
||||
MAINTAINER_MODE_TRUE = #
|
||||
|
|
@ -140,7 +140,7 @@ PYTHON_FALSE =
|
|||
PYTHON_TRUE = #
|
||||
RANLIB = ranlib
|
||||
SET_MAKE =
|
||||
SHELL = /bin/bash
|
||||
SHELL = /bin/sh
|
||||
STRIP = strip
|
||||
TCLINC =
|
||||
TCLLIB =
|
||||
|
|
@ -164,18 +164,18 @@ am__quote =
|
|||
am__tar = ${AMTAR} chof - "$$tardir"
|
||||
am__untar = ${AMTAR} xf -
|
||||
bindir = ${exec_prefix}/bin
|
||||
build = sparc-sun-solaris2.9
|
||||
build = x86_64-unknown-linux-gnu
|
||||
build_alias =
|
||||
build_cpu = sparc
|
||||
build_os = solaris2.9
|
||||
build_vendor = sun
|
||||
build_cpu = x86_64
|
||||
build_os = linux-gnu
|
||||
build_vendor = unknown
|
||||
datadir = ${prefix}/share
|
||||
exec_prefix = ${prefix}
|
||||
host = sparc-sun-solaris2.9
|
||||
host = x86_64-unknown-linux-gnu
|
||||
host_alias =
|
||||
host_cpu = sparc
|
||||
host_os = solaris2.9
|
||||
host_vendor = sun
|
||||
host_cpu = x86_64
|
||||
host_os = linux-gnu
|
||||
host_vendor = unknown
|
||||
includedir = ${prefix}/include
|
||||
infodir = ${prefix}/info
|
||||
install_sh = /home/fyodor/nmap/libdnet-stripped/config/install-sh
|
||||
|
|
@ -183,7 +183,7 @@ libdir = ${exec_prefix}/lib
|
|||
libexecdir = ${exec_prefix}/libexec
|
||||
localstatedir = ${prefix}/var
|
||||
mandir = ${prefix}/man
|
||||
mkdir_p = $(mkinstalldirs)
|
||||
mkdir_p = mkdir -p --
|
||||
oldincludedir = /usr/include
|
||||
prefix = /usr/local
|
||||
program_transform_name = s,x,x,
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@ pkglibdir = $(libdir)/libdnet
|
|||
pkgincludedir = $(includedir)/libdnet
|
||||
top_builddir = ..
|
||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||
INSTALL = ../config/install-sh -c
|
||||
INSTALL = /usr/bin/install -c
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
|
|
@ -34,8 +34,8 @@ POST_INSTALL = :
|
|||
NORMAL_UNINSTALL = :
|
||||
PRE_UNINSTALL = :
|
||||
POST_UNINSTALL = :
|
||||
build_triplet = sparc-sun-solaris2.9
|
||||
host_triplet = sparc-sun-solaris2.9
|
||||
build_triplet = x86_64-unknown-linux-gnu
|
||||
host_triplet = x86_64-unknown-linux-gnu
|
||||
DIST_COMMON = $(include_HEADERS) $(srcdir)/Makefile.am \
|
||||
$(srcdir)/Makefile.in $(srcdir)/config.h.in \
|
||||
$(top_srcdir)/Makefile.am.common
|
||||
|
|
@ -109,11 +109,11 @@ INSTALL_PROGRAM = ${INSTALL}
|
|||
INSTALL_SCRIPT = ${INSTALL}
|
||||
INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
|
||||
LDFLAGS =
|
||||
LIBOBJS = err$U.o strsep$U.o arp-ioctl$U.o eth-dlpi$U.o fw-none$U.o intf$U.o ip-cooked$U.o route-bsd$U.o tun-none$U.o
|
||||
LIBS = -lsocket -lnsl
|
||||
LIBOBJS = strlcat$U.o strlcpy$U.o arp-ioctl$U.o eth-linux$U.o fw-ipchains$U.o intf$U.o ip$U.o route-linux$U.o tun-linux$U.o
|
||||
LIBS =
|
||||
LIBTOOL = $(SHELL) $(top_builddir)/libtool
|
||||
LN_S = ln -s
|
||||
LTLIBOBJS = err$U.lo strsep$U.lo arp-ioctl$U.lo eth-dlpi$U.lo fw-none$U.lo intf$U.lo ip-cooked$U.lo route-bsd$U.lo tun-none$U.lo
|
||||
LTLIBOBJS = strlcat$U.lo strlcpy$U.lo arp-ioctl$U.lo eth-linux$U.lo fw-ipchains$U.lo intf$U.lo ip$U.lo route-linux$U.lo tun-linux$U.lo
|
||||
MAINT = #
|
||||
MAINTAINER_MODE_FALSE =
|
||||
MAINTAINER_MODE_TRUE = #
|
||||
|
|
@ -131,7 +131,7 @@ PYTHON_FALSE =
|
|||
PYTHON_TRUE = #
|
||||
RANLIB = ranlib
|
||||
SET_MAKE =
|
||||
SHELL = /bin/bash
|
||||
SHELL = /bin/sh
|
||||
STRIP = strip
|
||||
TCLINC =
|
||||
TCLLIB =
|
||||
|
|
@ -155,18 +155,18 @@ am__quote =
|
|||
am__tar = ${AMTAR} chof - "$$tardir"
|
||||
am__untar = ${AMTAR} xf -
|
||||
bindir = ${exec_prefix}/bin
|
||||
build = sparc-sun-solaris2.9
|
||||
build = x86_64-unknown-linux-gnu
|
||||
build_alias =
|
||||
build_cpu = sparc
|
||||
build_os = solaris2.9
|
||||
build_vendor = sun
|
||||
build_cpu = x86_64
|
||||
build_os = linux-gnu
|
||||
build_vendor = unknown
|
||||
datadir = ${prefix}/share
|
||||
exec_prefix = ${prefix}
|
||||
host = sparc-sun-solaris2.9
|
||||
host = x86_64-unknown-linux-gnu
|
||||
host_alias =
|
||||
host_cpu = sparc
|
||||
host_os = solaris2.9
|
||||
host_vendor = sun
|
||||
host_cpu = x86_64
|
||||
host_os = linux-gnu
|
||||
host_vendor = unknown
|
||||
includedir = ${prefix}/include
|
||||
infodir = ${prefix}/info
|
||||
install_sh = /home/fyodor/nmap/libdnet-stripped/config/install-sh
|
||||
|
|
@ -174,7 +174,7 @@ libdir = ${exec_prefix}/lib
|
|||
libexecdir = ${exec_prefix}/libexec
|
||||
localstatedir = ${prefix}/var
|
||||
mandir = ${prefix}/man
|
||||
mkdir_p = $(mkinstalldirs)
|
||||
mkdir_p = mkdir -p --
|
||||
oldincludedir = /usr/include
|
||||
prefix = /usr/local
|
||||
program_transform_name = s,x,x,
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
/* include/config.h.in. Generated automatically from configure.in by autoheader. */
|
||||
|
||||
/* Define if arpreq struct has arp_dev. */
|
||||
/* #undef HAVE_ARPREQ_ARP_DEV */
|
||||
#define HAVE_ARPREQ_ARP_DEV 1
|
||||
|
||||
/* Define if you have the Berkeley Packet Filter. */
|
||||
/* #undef HAVE_BSD_BPF */
|
||||
|
|
@ -11,7 +11,7 @@
|
|||
#define HAVE_DLFCN_H 1
|
||||
|
||||
/* Define if you have the `err' function. */
|
||||
/* #undef HAVE_ERR */
|
||||
#define HAVE_ERR 1
|
||||
|
||||
/* Define if you have the <fcntl.h> header file. */
|
||||
#define HAVE_FCNTL_H 1
|
||||
|
|
@ -44,13 +44,13 @@
|
|||
/* #undef HAVE_LIBNM */
|
||||
|
||||
/* Define if you have the `nsl' library (-lnsl). */
|
||||
#define HAVE_LIBNSL 1
|
||||
/* #undef HAVE_LIBNSL */
|
||||
|
||||
/* Define if you have the `resolv' library (-lresolv). */
|
||||
/* #undef HAVE_LIBRESOLV */
|
||||
|
||||
/* Define if you have the `socket' library (-lsocket). */
|
||||
#define HAVE_LIBSOCKET 1
|
||||
/* #undef HAVE_LIBSOCKET */
|
||||
|
||||
/* Define if you have the `str' library (-lstr). */
|
||||
/* #undef HAVE_LIBSTR */
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
/* #undef HAVE_LIBWS2_32 */
|
||||
|
||||
/* Define if you have the <linux/if_tun.h> header file. */
|
||||
/* #undef HAVE_LINUX_IF_TUN_H */
|
||||
#define HAVE_LINUX_IF_TUN_H 1
|
||||
|
||||
/* Define if you have the <linux/ip_fwchains.h> header file. */
|
||||
/* #undef HAVE_LINUX_IP_FWCHAINS_H */
|
||||
|
|
@ -69,19 +69,19 @@
|
|||
|
||||
/* Define if you have the <linux/netfilter_ipv4/ipchains_core.h> header file.
|
||||
*/
|
||||
/* #undef HAVE_LINUX_NETFILTER_IPV4_IPCHAINS_CORE_H */
|
||||
#define HAVE_LINUX_NETFILTER_IPV4_IPCHAINS_CORE_H 1
|
||||
|
||||
/* Define if you have Linux PF_PACKET sockets. */
|
||||
/* #undef HAVE_LINUX_PF_PACKET */
|
||||
#define HAVE_LINUX_PF_PACKET 1
|
||||
|
||||
/* Define if you have the Linux /proc filesystem. */
|
||||
/* #undef HAVE_LINUX_PROCFS */
|
||||
#define HAVE_LINUX_PROCFS 1
|
||||
|
||||
/* Define if you have the <memory.h> header file. */
|
||||
#define HAVE_MEMORY_H 1
|
||||
|
||||
/* Define if you have the <netinet/in_var.h> header file. */
|
||||
#define HAVE_NETINET_IN_VAR_H 1
|
||||
/* #undef HAVE_NETINET_IN_VAR_H */
|
||||
|
||||
/* Define if you have the <netinet/ip_compat.h> header file. */
|
||||
/* #undef HAVE_NETINET_IP_COMPAT_H */
|
||||
|
|
@ -96,13 +96,13 @@
|
|||
/* #undef HAVE_NETINET_IP_FW_H */
|
||||
|
||||
/* Define if you have the <net/bpf.h> header file. */
|
||||
#define HAVE_NET_BPF_H 1
|
||||
/* #undef HAVE_NET_BPF_H */
|
||||
|
||||
/* Define if you have the <net/if_arp.h> header file. */
|
||||
#define HAVE_NET_IF_ARP_H 1
|
||||
|
||||
/* Define if you have the <net/if_dl.h> header file. */
|
||||
#define HAVE_NET_IF_DL_H 1
|
||||
/* #undef HAVE_NET_IF_DL_H */
|
||||
|
||||
/* Define if you have the <net/if.h> header file. */
|
||||
#define HAVE_NET_IF_H 1
|
||||
|
|
@ -129,13 +129,13 @@
|
|||
#define HAVE_NET_ROUTE_H 1
|
||||
|
||||
/* Define if you have cooked raw IP sockets. */
|
||||
#define HAVE_RAWIP_COOKED 1
|
||||
/* #undef HAVE_RAWIP_COOKED */
|
||||
|
||||
/* Define if raw IP sockets require host byte ordering for ip_off, ip_len. */
|
||||
/* #undef HAVE_RAWIP_HOST_OFFLEN */
|
||||
|
||||
/* Define if <net/route.h> has rt_msghdr struct. */
|
||||
#define HAVE_ROUTE_RT_MSGHDR 1
|
||||
/* #undef HAVE_ROUTE_RT_MSGHDR */
|
||||
|
||||
/* Define if <netinet/in.h> has sockaddr_in6 struct. */
|
||||
#define HAVE_SOCKADDR_IN6 1
|
||||
|
|
@ -144,13 +144,13 @@
|
|||
/* #undef HAVE_SOCKADDR_SA_LEN */
|
||||
|
||||
/* Define if you have the <stdint.h> header file. */
|
||||
/* #undef HAVE_STDINT_H */
|
||||
#define HAVE_STDINT_H 1
|
||||
|
||||
/* Define if you have the <stdlib.h> header file. */
|
||||
#define HAVE_STDLIB_H 1
|
||||
|
||||
/* Define if you have SNMP MIB2 STREAMS. */
|
||||
#define HAVE_STREAMS_MIB2 1
|
||||
/* #undef HAVE_STREAMS_MIB2 */
|
||||
|
||||
/* Define if you have route(7) STREAMS. */
|
||||
/* #undef HAVE_STREAMS_ROUTE */
|
||||
|
|
@ -162,19 +162,19 @@
|
|||
#define HAVE_STRING_H 1
|
||||
|
||||
/* Define if you have the `strlcat' function. */
|
||||
#define HAVE_STRLCAT 1
|
||||
/* #undef HAVE_STRLCAT */
|
||||
|
||||
/* Define if you have the `strlcpy' function. */
|
||||
#define HAVE_STRLCPY 1
|
||||
/* #undef HAVE_STRLCPY */
|
||||
|
||||
/* Define if you have the <stropts.h> header file. */
|
||||
#define HAVE_STROPTS_H 1
|
||||
|
||||
/* Define if you have the `strsep' function. */
|
||||
/* #undef HAVE_STRSEP */
|
||||
#define HAVE_STRSEP 1
|
||||
|
||||
/* Define if you have the <sys/bufmod.h> header file. */
|
||||
#define HAVE_SYS_BUFMOD_H 1
|
||||
/* #undef HAVE_SYS_BUFMOD_H */
|
||||
|
||||
/* Define if you have the <sys/dlpihdr.h> header file. */
|
||||
/* #undef HAVE_SYS_DLPIHDR_H */
|
||||
|
|
@ -183,7 +183,7 @@
|
|||
/* #undef HAVE_SYS_DLPI_EXT_H */
|
||||
|
||||
/* Define if you have the <sys/dlpi.h> header file. */
|
||||
#define HAVE_SYS_DLPI_H 1
|
||||
/* #undef HAVE_SYS_DLPI_H */
|
||||
|
||||
/* Define if you have the <sys/ioctl.h> header file. */
|
||||
#define HAVE_SYS_IOCTL_H 1
|
||||
|
|
@ -198,13 +198,13 @@
|
|||
#define HAVE_SYS_SOCKET_H 1
|
||||
|
||||
/* Define if you have the <sys/sockio.h> header file. */
|
||||
#define HAVE_SYS_SOCKIO_H 1
|
||||
/* #undef HAVE_SYS_SOCKIO_H */
|
||||
|
||||
/* Define if you have the <sys/stat.h> header file. */
|
||||
#define HAVE_SYS_STAT_H 1
|
||||
|
||||
/* Define if you have the <sys/sysctl.h> header file. */
|
||||
/* #undef HAVE_SYS_SYSCTL_H */
|
||||
#define HAVE_SYS_SYSCTL_H 1
|
||||
|
||||
/* Define if you have the <sys/time.h> header file. */
|
||||
#define HAVE_SYS_TIME_H 1
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@ pkglibdir = $(libdir)/libdnet
|
|||
pkgincludedir = $(includedir)/libdnet
|
||||
top_builddir = ../..
|
||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||
INSTALL = ../../config/install-sh -c
|
||||
INSTALL = /usr/bin/install -c
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
|
|
@ -34,8 +34,8 @@ POST_INSTALL = :
|
|||
NORMAL_UNINSTALL = :
|
||||
PRE_UNINSTALL = :
|
||||
POST_UNINSTALL = :
|
||||
build_triplet = sparc-sun-solaris2.9
|
||||
host_triplet = sparc-sun-solaris2.9
|
||||
build_triplet = x86_64-unknown-linux-gnu
|
||||
host_triplet = x86_64-unknown-linux-gnu
|
||||
DIST_COMMON = $(dnetinclude_HEADERS) $(srcdir)/Makefile.am \
|
||||
$(srcdir)/Makefile.in $(top_srcdir)/Makefile.am.common
|
||||
subdir = include/dnet
|
||||
|
|
@ -101,11 +101,11 @@ INSTALL_PROGRAM = ${INSTALL}
|
|||
INSTALL_SCRIPT = ${INSTALL}
|
||||
INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
|
||||
LDFLAGS =
|
||||
LIBOBJS = err$U.o strsep$U.o arp-ioctl$U.o eth-dlpi$U.o fw-none$U.o intf$U.o ip-cooked$U.o route-bsd$U.o tun-none$U.o
|
||||
LIBS = -lsocket -lnsl
|
||||
LIBOBJS = strlcat$U.o strlcpy$U.o arp-ioctl$U.o eth-linux$U.o fw-ipchains$U.o intf$U.o ip$U.o route-linux$U.o tun-linux$U.o
|
||||
LIBS =
|
||||
LIBTOOL = $(SHELL) $(top_builddir)/libtool
|
||||
LN_S = ln -s
|
||||
LTLIBOBJS = err$U.lo strsep$U.lo arp-ioctl$U.lo eth-dlpi$U.lo fw-none$U.lo intf$U.lo ip-cooked$U.lo route-bsd$U.lo tun-none$U.lo
|
||||
LTLIBOBJS = strlcat$U.lo strlcpy$U.lo arp-ioctl$U.lo eth-linux$U.lo fw-ipchains$U.lo intf$U.lo ip$U.lo route-linux$U.lo tun-linux$U.lo
|
||||
MAINT = #
|
||||
MAINTAINER_MODE_FALSE =
|
||||
MAINTAINER_MODE_TRUE = #
|
||||
|
|
@ -123,7 +123,7 @@ PYTHON_FALSE =
|
|||
PYTHON_TRUE = #
|
||||
RANLIB = ranlib
|
||||
SET_MAKE =
|
||||
SHELL = /bin/bash
|
||||
SHELL = /bin/sh
|
||||
STRIP = strip
|
||||
TCLINC =
|
||||
TCLLIB =
|
||||
|
|
@ -147,18 +147,18 @@ am__quote =
|
|||
am__tar = ${AMTAR} chof - "$$tardir"
|
||||
am__untar = ${AMTAR} xf -
|
||||
bindir = ${exec_prefix}/bin
|
||||
build = sparc-sun-solaris2.9
|
||||
build = x86_64-unknown-linux-gnu
|
||||
build_alias =
|
||||
build_cpu = sparc
|
||||
build_os = solaris2.9
|
||||
build_vendor = sun
|
||||
build_cpu = x86_64
|
||||
build_os = linux-gnu
|
||||
build_vendor = unknown
|
||||
datadir = ${prefix}/share
|
||||
exec_prefix = ${prefix}
|
||||
host = sparc-sun-solaris2.9
|
||||
host = x86_64-unknown-linux-gnu
|
||||
host_alias =
|
||||
host_cpu = sparc
|
||||
host_os = solaris2.9
|
||||
host_vendor = sun
|
||||
host_cpu = x86_64
|
||||
host_os = linux-gnu
|
||||
host_vendor = unknown
|
||||
includedir = ${prefix}/include
|
||||
infodir = ${prefix}/info
|
||||
install_sh = /home/fyodor/nmap/libdnet-stripped/config/install-sh
|
||||
|
|
@ -166,7 +166,7 @@ libdir = ${exec_prefix}/lib
|
|||
libexecdir = ${exec_prefix}/libexec
|
||||
localstatedir = ${prefix}/var
|
||||
mandir = ${prefix}/man
|
||||
mkdir_p = $(mkinstalldirs)
|
||||
mkdir_p = mkdir -p --
|
||||
oldincludedir = /usr/include
|
||||
prefix = /usr/local
|
||||
program_transform_name = s,x,x,
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#! /bin/bash
|
||||
#! /bin/sh
|
||||
|
||||
# libtoolT - Provide generalized library-building support services.
|
||||
# Generated automatically by (GNU libdnet 1.10)
|
||||
|
|
@ -40,14 +40,14 @@ Xsed="/bin/sed -e s/^X//"
|
|||
if test "X${CDPATH+set}" = Xset; then CDPATH=:; export CDPATH; fi
|
||||
|
||||
# The names of the tagged configurations supported by this script.
|
||||
available_tags="available_tags= CXX F77"
|
||||
available_tags=" CXX F77"
|
||||
|
||||
# ### BEGIN LIBTOOL CONFIG
|
||||
|
||||
# Libtool was configured on host ultra:
|
||||
# Libtool was configured on host flog.yuma.net:
|
||||
|
||||
# Shell to use when invoking shell scripts.
|
||||
SHELL="/bin/bash"
|
||||
SHELL="/bin/sh"
|
||||
|
||||
# Whether or not to build shared libraries.
|
||||
build_libtool_libs=yes
|
||||
|
|
@ -56,17 +56,17 @@ build_libtool_libs=yes
|
|||
build_old_libs=yes
|
||||
|
||||
# Whether or not to add -lc for building shared libraries.
|
||||
build_libtool_need_lc=yes
|
||||
build_libtool_need_lc=no
|
||||
|
||||
# Whether or not to disallow shared libs when runtime libs are static
|
||||
allow_libtool_libs_with_static_runtimes=no
|
||||
|
||||
# Whether or not to optimize for fast installation.
|
||||
fast_install=needless
|
||||
fast_install=yes
|
||||
|
||||
# The host system.
|
||||
host_alias=
|
||||
host=sparc-sun-solaris2.9
|
||||
host=x86_64-unknown-linux-gnu
|
||||
|
||||
# An echo program that does not interpret backslashes.
|
||||
echo="echo"
|
||||
|
|
@ -88,13 +88,13 @@ with_gcc=yes
|
|||
EGREP="grep -E"
|
||||
|
||||
# The linker used to build libraries.
|
||||
LD="/usr/ccs/bin/ld"
|
||||
LD="/usr/bin/ld -m elf_x86_64"
|
||||
|
||||
# Whether we need hard or soft links.
|
||||
LN_S="ln -s"
|
||||
|
||||
# A BSD-compatible nm program.
|
||||
NM="/usr/ccs/bin/nm -p"
|
||||
NM="/usr/bin/nm -B"
|
||||
|
||||
# A symbol stripping program
|
||||
STRIP="strip"
|
||||
|
|
@ -138,7 +138,7 @@ pic_flag=" -fPIC -DPIC"
|
|||
pic_mode=default
|
||||
|
||||
# What is the maximum length of a command?
|
||||
max_cmd_len=262144
|
||||
max_cmd_len=32768
|
||||
|
||||
# Does compiler simultaneously support -c and -o options?
|
||||
compiler_c_o="yes"
|
||||
|
|
@ -168,10 +168,10 @@ link_static_flag="-static"
|
|||
no_builtin_flag=" -fno-builtin"
|
||||
|
||||
# Compiler flag to allow reflexive dlopens.
|
||||
export_dynamic_flag_spec=""
|
||||
export_dynamic_flag_spec="\${wl}--export-dynamic"
|
||||
|
||||
# Compiler flag to generate shared objects directly from archives.
|
||||
whole_archive_flag_spec="-z allextract\$convenience -z defaultextract"
|
||||
whole_archive_flag_spec="\${wl}--whole-archive\$convenience \${wl}--no-whole-archive"
|
||||
|
||||
# Compiler flag to generate thread-safe objects.
|
||||
thread_safe_flag_spec=""
|
||||
|
|
@ -202,10 +202,12 @@ old_archive_from_new_cmds=""
|
|||
old_archive_from_expsyms_cmds=""
|
||||
|
||||
# Commands used to build and install a shared archive.
|
||||
archive_cmds="\$CC -shared \${wl}-h \${wl}\$soname -o \$lib \$libobjs \$deplibs \$compiler_flags"
|
||||
archive_expsym_cmds="\$echo \\\"{ global:\\\" > \$lib.exp~cat \$export_symbols | \$SED -e \\\"s/\\\\(.*\\\\)/\\\\1;/\\\" >> \$lib.exp~\$echo \\\"local: *; };\\\" >> \$lib.exp~
|
||||
\$CC -shared \${wl}-M \${wl}\$lib.exp \${wl}-h \${wl}\$soname -o \$lib \$libobjs \$deplibs \$compiler_flags~\$rm \$lib.exp"
|
||||
postinstall_cmds="chmod +x \$lib"
|
||||
archive_cmds="\$CC -shared \$libobjs \$deplibs \$compiler_flags \${wl}-soname \$wl\$soname -o \$lib"
|
||||
archive_expsym_cmds="\$echo \\\"{ global:\\\" > \$output_objdir/\$libname.ver~
|
||||
cat \$export_symbols | sed -e \\\"s/\\\\(.*\\\\)/\\\\1;/\\\" >> \$output_objdir/\$libname.ver~
|
||||
\$echo \\\"local: *; };\\\" >> \$output_objdir/\$libname.ver~
|
||||
\$CC -shared \$libobjs \$deplibs \$compiler_flags \${wl}-soname \$wl\$soname \${wl}-version-script \${wl}\$output_objdir/\$libname.ver -o \$lib"
|
||||
postinstall_cmds=""
|
||||
postuninstall_cmds=""
|
||||
|
||||
# Commands used to build a loadable module (assumed same as above if empty)
|
||||
|
|
@ -213,8 +215,8 @@ module_cmds=""
|
|||
module_expsym_cmds=""
|
||||
|
||||
# Commands to strip libraries.
|
||||
old_striplib=""
|
||||
striplib=""
|
||||
old_striplib="strip --strip-debug"
|
||||
striplib="strip --strip-unneeded"
|
||||
|
||||
# Dependencies to place before the objects being linked to create a
|
||||
# shared library.
|
||||
|
|
@ -246,16 +248,16 @@ file_magic_cmd="\$MAGIC_CMD"
|
|||
allow_undefined_flag=""
|
||||
|
||||
# Flag that forces no undefined symbols.
|
||||
no_undefined_flag=" -z text"
|
||||
no_undefined_flag=""
|
||||
|
||||
# Commands used to finish a libtool library installation in a directory.
|
||||
finish_cmds=""
|
||||
finish_cmds="PATH=\\\"\\\$PATH:/sbin\\\" ldconfig -n \$libdir"
|
||||
|
||||
# Same as above, but a single script fragment to be evaled but not shown.
|
||||
finish_eval=""
|
||||
|
||||
# Take the output of nm and produce a listing of raw symbols and C names.
|
||||
global_symbol_pipe="sed -n -e 's/^.*[ ]\\([BDRT][BDRT]*\\)[ ][ ]*\\(\\)\\([_A-Za-z][_A-Za-z0-9]*\\)\$/\\1 \\2\\3 \\3/p'"
|
||||
global_symbol_pipe="sed -n -e 's/^.*[ ]\\([ABCDGIRSTW][ABCDGIRSTW]*\\)[ ][ ]*\\(\\)\\([_A-Za-z][_A-Za-z0-9]*\\)\$/\\1 \\2\\3 \\3/p'"
|
||||
|
||||
# Transform the output of nm in a proper C declaration
|
||||
global_symbol_to_cdecl="sed -n -e 's/^. .* \\(.*\\)\$/extern int \\1;/p'"
|
||||
|
|
@ -264,13 +266,13 @@ global_symbol_to_cdecl="sed -n -e 's/^. .* \\(.*\\)\$/extern int \\1;/p'"
|
|||
global_symbol_to_c_name_address="sed -n -e 's/^: \\([^ ]*\\) \$/ {\\\"\\1\\\", (lt_ptr) 0},/p' -e 's/^[BCDEGRST] \\([^ ]*\\) \\([^ ]*\\)\$/ {\"\\2\", (lt_ptr) \\&\\2},/p'"
|
||||
|
||||
# This is the shared library runtime path variable.
|
||||
runpath_var=
|
||||
runpath_var=LD_RUN_PATH
|
||||
|
||||
# This is the shared library path variable.
|
||||
shlibpath_var=LD_LIBRARY_PATH
|
||||
|
||||
# Is shlibpath searched before the hard-coded library search path?
|
||||
shlibpath_overrides_runpath=yes
|
||||
shlibpath_overrides_runpath=no
|
||||
|
||||
# How to hardcode a shared library path into an executable.
|
||||
hardcode_action=immediate
|
||||
|
|
@ -280,7 +282,7 @@ hardcode_into_libs=yes
|
|||
|
||||
# Flag to hardcode $libdir into a binary during linking.
|
||||
# This must work even if $libdir does not exist.
|
||||
hardcode_libdir_flag_spec="-R\$libdir"
|
||||
hardcode_libdir_flag_spec="\${wl}--rpath \${wl}\$libdir"
|
||||
|
||||
# If ld is used when linking, flag to hardcode $libdir into
|
||||
# a binary during linking. This must work even if $libdir does
|
||||
|
|
@ -300,7 +302,7 @@ hardcode_minus_L=no
|
|||
|
||||
# Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into
|
||||
# the resulting binary.
|
||||
hardcode_shlibpath_var=no
|
||||
hardcode_shlibpath_var=unsupported
|
||||
|
||||
# Set to yes if building a shared library automatically hardcodes DIR into the library
|
||||
# and all subsequent libraries and executables linked against it.
|
||||
|
|
@ -308,16 +310,16 @@ hardcode_automatic=no
|
|||
|
||||
# Variables whose values should be saved in libtool wrapper scripts and
|
||||
# restored at relink time.
|
||||
variables_saved_for_relink="PATH GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH"
|
||||
variables_saved_for_relink="PATH LD_RUN_PATH GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH"
|
||||
|
||||
# Whether libtool must link a program against all its dependency libraries.
|
||||
link_all_deplibs=yes
|
||||
link_all_deplibs=unknown
|
||||
|
||||
# Compile-time system search path for libraries
|
||||
sys_lib_search_path_spec=" /usr/local/lib/gcc/sparc-sun-solaris2.9/3.4.2/ /usr/lib/gcc/sparc-sun-solaris2.9/3.4.2/ /usr/local/lib/gcc/sparc-sun-solaris2.9/3.4.2/../../../../sparc-sun-solaris2.9/lib/sparc-sun-solaris2.9/3.4.2/ /usr/local/lib/gcc/sparc-sun-solaris2.9/3.4.2/../../../../sparc-sun-solaris2.9/lib/ /usr/ccs/bin/sparc-sun-solaris2.9/3.4.2/ /usr/ccs/bin/ /usr/ccs/lib/sparc-sun-solaris2.9/3.4.2/ /usr/ccs/lib/ /usr/local/lib/gcc/sparc-sun-solaris2.9/3.4.2/../../../sparc-sun-solaris2.9/3.4.2/ /usr/local/lib/gcc/sparc-sun-solaris2.9/3.4.2/../../../ /lib/sparc-sun-solaris2.9/3.4.2/ /lib/ /usr/lib/sparc-sun-solaris2.9/3.4.2/ /usr/lib/"
|
||||
sys_lib_search_path_spec="/lib64 /usr/lib64 /usr/local/lib64"
|
||||
|
||||
# Run-time system search path for libraries
|
||||
sys_lib_dlsearch_path_spec="/lib /usr/lib"
|
||||
sys_lib_dlsearch_path_spec="/lib64 /usr/lib64 include ld.so.conf.d/*.conf /usr/X11R6/lib /usr/X11R6/lib64 /usr/lib/mysql /usr/lib64/mysql "
|
||||
|
||||
# Fix the shell variable $srcfile for the compiler.
|
||||
fix_srcfile_path=""
|
||||
|
|
@ -6763,10 +6765,10 @@ build_old_libs=`case $build_libtool_libs in yes) $echo no;; *) $echo yes;; esac`
|
|||
# End:
|
||||
# ### BEGIN LIBTOOL TAG CONFIG: CXX
|
||||
|
||||
# Libtool was configured on host ultra:
|
||||
# Libtool was configured on host flog.yuma.net:
|
||||
|
||||
# Shell to use when invoking shell scripts.
|
||||
SHELL="/bin/bash"
|
||||
SHELL="/bin/sh"
|
||||
|
||||
# Whether or not to build shared libraries.
|
||||
build_libtool_libs=yes
|
||||
|
|
@ -6781,11 +6783,11 @@ build_libtool_need_lc=no
|
|||
allow_libtool_libs_with_static_runtimes=no
|
||||
|
||||
# Whether or not to optimize for fast installation.
|
||||
fast_install=needless
|
||||
fast_install=yes
|
||||
|
||||
# The host system.
|
||||
host_alias=
|
||||
host=sparc-sun-solaris2.9
|
||||
host=x86_64-unknown-linux-gnu
|
||||
|
||||
# An echo program that does not interpret backslashes.
|
||||
echo="echo"
|
||||
|
|
@ -6807,13 +6809,13 @@ with_gcc=yes
|
|||
EGREP="grep -E"
|
||||
|
||||
# The linker used to build libraries.
|
||||
LD="/usr/ccs/bin/ld"
|
||||
LD="/usr/bin/ld -m elf_x86_64"
|
||||
|
||||
# Whether we need hard or soft links.
|
||||
LN_S="ln -s"
|
||||
|
||||
# A BSD-compatible nm program.
|
||||
NM="/usr/ccs/bin/nm -p"
|
||||
NM="/usr/bin/nm -B"
|
||||
|
||||
# A symbol stripping program
|
||||
STRIP="strip"
|
||||
|
|
@ -6857,7 +6859,7 @@ pic_flag=" -fPIC -DPIC"
|
|||
pic_mode=default
|
||||
|
||||
# What is the maximum length of a command?
|
||||
max_cmd_len=262144
|
||||
max_cmd_len=32768
|
||||
|
||||
# Does compiler simultaneously support -c and -o options?
|
||||
compiler_c_o="yes"
|
||||
|
|
@ -6887,10 +6889,10 @@ link_static_flag="-static"
|
|||
no_builtin_flag=" -fno-builtin"
|
||||
|
||||
# Compiler flag to allow reflexive dlopens.
|
||||
export_dynamic_flag_spec=""
|
||||
export_dynamic_flag_spec="\${wl}--export-dynamic"
|
||||
|
||||
# Compiler flag to generate shared objects directly from archives.
|
||||
whole_archive_flag_spec=""
|
||||
whole_archive_flag_spec="\${wl}--whole-archive\$convenience \${wl}--no-whole-archive"
|
||||
|
||||
# Compiler flag to generate thread-safe objects.
|
||||
thread_safe_flag_spec=""
|
||||
|
|
@ -6921,10 +6923,9 @@ old_archive_from_new_cmds=""
|
|||
old_archive_from_expsyms_cmds=""
|
||||
|
||||
# Commands used to build and install a shared archive.
|
||||
archive_cmds="\$CC -shared -nostdlib \$LDFLAGS \$predep_objects \$libobjs \$deplibs \$postdep_objects \$compiler_flags \${wl}-h \$wl\$soname -o \$lib"
|
||||
archive_expsym_cmds="\$echo \\\"{ global:\\\" > \$lib.exp~cat \$export_symbols | \$SED -e \\\"s/\\\\(.*\\\\)/\\\\1;/\\\" >> \$lib.exp~\$echo \\\"local: *; };\\\" >> \$lib.exp~
|
||||
\$CC -shared -nostdlib \${wl}-M \$wl\$lib.exp -o \$lib \$predep_objects \$libobjs \$deplibs \$postdep_objects \$compiler_flags~\$rm \$lib.exp"
|
||||
postinstall_cmds="chmod +x \$lib"
|
||||
archive_cmds="\$CC -shared -nostdlib \$predep_objects \$libobjs \$deplibs \$postdep_objects \$compiler_flags \${wl}-soname \$wl\$soname -o \$lib"
|
||||
archive_expsym_cmds="\$CC -shared -nostdlib \$predep_objects \$libobjs \$deplibs \$postdep_objects \$compiler_flags \${wl}-soname \$wl\$soname \${wl}-retain-symbols-file \$wl\$export_symbols -o \$lib"
|
||||
postinstall_cmds=""
|
||||
postuninstall_cmds=""
|
||||
|
||||
# Commands used to build a loadable module (assumed same as above if empty)
|
||||
|
|
@ -6932,16 +6933,16 @@ module_cmds=""
|
|||
module_expsym_cmds=""
|
||||
|
||||
# Commands to strip libraries.
|
||||
old_striplib=""
|
||||
striplib=""
|
||||
old_striplib="strip --strip-debug"
|
||||
striplib="strip --strip-unneeded"
|
||||
|
||||
# Dependencies to place before the objects being linked to create a
|
||||
# shared library.
|
||||
predep_objects="/usr/local/lib/gcc/sparc-sun-solaris2.9/3.4.2/crti.o /usr/ccs/lib/values-Xa.o /usr/local/lib/gcc/sparc-sun-solaris2.9/3.4.2/crtbegin.o"
|
||||
predep_objects="/usr/lib/gcc/x86_64-redhat-linux/3.4.3/../../../../lib64/crti.o /usr/lib/gcc/x86_64-redhat-linux/3.4.3/crtbeginS.o"
|
||||
|
||||
# Dependencies to place after the objects being linked to create a
|
||||
# shared library.
|
||||
postdep_objects="/usr/local/lib/gcc/sparc-sun-solaris2.9/3.4.2/crtend.o /usr/local/lib/gcc/sparc-sun-solaris2.9/3.4.2/crtn.o"
|
||||
postdep_objects="/usr/lib/gcc/x86_64-redhat-linux/3.4.3/crtendS.o /usr/lib/gcc/x86_64-redhat-linux/3.4.3/../../../../lib64/crtn.o"
|
||||
|
||||
# Dependencies to place before the objects being linked to create a
|
||||
# shared library.
|
||||
|
|
@ -6949,11 +6950,11 @@ predeps=""
|
|||
|
||||
# Dependencies to place after the objects being linked to create a
|
||||
# shared library.
|
||||
postdeps="-lstdc++ -lm -lgcc_s -lgcc_s"
|
||||
postdeps="-lstdc++ -lm -lgcc_s -lc -lgcc_s"
|
||||
|
||||
# The library search path used internally by the compiler when linking
|
||||
# a shared library.
|
||||
compiler_lib_search_path="-L/usr/local/lib/gcc/sparc-sun-solaris2.9/3.4.2 -L/usr/ccs/bin -L/usr/ccs/lib -L/usr/local/lib/gcc/sparc-sun-solaris2.9/3.4.2/../../.."
|
||||
compiler_lib_search_path="-L/usr/lib/gcc/x86_64-redhat-linux/3.4.3 -L/usr/lib/gcc/x86_64-redhat-linux/3.4.3 -L/usr/lib/gcc/x86_64-redhat-linux/3.4.3/../../../../lib64 -L/usr/lib/gcc/x86_64-redhat-linux/3.4.3/../../.. -L/lib/../lib64 -L/usr/lib/../lib64"
|
||||
|
||||
# Method to check whether dependent libraries are shared objects.
|
||||
deplibs_check_method="pass_all"
|
||||
|
|
@ -6965,16 +6966,16 @@ file_magic_cmd="\$MAGIC_CMD"
|
|||
allow_undefined_flag=""
|
||||
|
||||
# Flag that forces no undefined symbols.
|
||||
no_undefined_flag=" \${wl}-z \${wl}defs"
|
||||
no_undefined_flag=""
|
||||
|
||||
# Commands used to finish a libtool library installation in a directory.
|
||||
finish_cmds=""
|
||||
finish_cmds="PATH=\\\"\\\$PATH:/sbin\\\" ldconfig -n \$libdir"
|
||||
|
||||
# Same as above, but a single script fragment to be evaled but not shown.
|
||||
finish_eval=""
|
||||
|
||||
# Take the output of nm and produce a listing of raw symbols and C names.
|
||||
global_symbol_pipe="sed -n -e 's/^.*[ ]\\([BDRT][BDRT]*\\)[ ][ ]*\\(\\)\\([_A-Za-z][_A-Za-z0-9]*\\)\$/\\1 \\2\\3 \\3/p'"
|
||||
global_symbol_pipe="sed -n -e 's/^.*[ ]\\([ABCDGIRSTW][ABCDGIRSTW]*\\)[ ][ ]*\\(\\)\\([_A-Za-z][_A-Za-z0-9]*\\)\$/\\1 \\2\\3 \\3/p'"
|
||||
|
||||
# Transform the output of nm in a proper C declaration
|
||||
global_symbol_to_cdecl="sed -n -e 's/^. .* \\(.*\\)\$/extern int \\1;/p'"
|
||||
|
|
@ -6983,13 +6984,13 @@ global_symbol_to_cdecl="sed -n -e 's/^. .* \\(.*\\)\$/extern int \\1;/p'"
|
|||
global_symbol_to_c_name_address="sed -n -e 's/^: \\([^ ]*\\) \$/ {\\\"\\1\\\", (lt_ptr) 0},/p' -e 's/^[BCDEGRST] \\([^ ]*\\) \\([^ ]*\\)\$/ {\"\\2\", (lt_ptr) \\&\\2},/p'"
|
||||
|
||||
# This is the shared library runtime path variable.
|
||||
runpath_var=
|
||||
runpath_var=LD_RUN_PATH
|
||||
|
||||
# This is the shared library path variable.
|
||||
shlibpath_var=LD_LIBRARY_PATH
|
||||
|
||||
# Is shlibpath searched before the hard-coded library search path?
|
||||
shlibpath_overrides_runpath=yes
|
||||
shlibpath_overrides_runpath=no
|
||||
|
||||
# How to hardcode a shared library path into an executable.
|
||||
hardcode_action=immediate
|
||||
|
|
@ -6999,7 +7000,7 @@ hardcode_into_libs=yes
|
|||
|
||||
# Flag to hardcode $libdir into a binary during linking.
|
||||
# This must work even if $libdir does not exist.
|
||||
hardcode_libdir_flag_spec="\${wl}-R \$wl\$libdir"
|
||||
hardcode_libdir_flag_spec="\${wl}--rpath \${wl}\$libdir"
|
||||
|
||||
# If ld is used when linking, flag to hardcode $libdir into
|
||||
# a binary during linking. This must work even if $libdir does
|
||||
|
|
@ -7027,16 +7028,16 @@ hardcode_automatic=no
|
|||
|
||||
# Variables whose values should be saved in libtool wrapper scripts and
|
||||
# restored at relink time.
|
||||
variables_saved_for_relink="PATH LD_LIBRARY_PATH GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH"
|
||||
variables_saved_for_relink="PATH LD_LIBRARY_PATH LD_RUN_PATH GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH"
|
||||
|
||||
# Whether libtool must link a program against all its dependency libraries.
|
||||
link_all_deplibs=unknown
|
||||
|
||||
# Compile-time system search path for libraries
|
||||
sys_lib_search_path_spec=" /usr/local/lib/gcc/sparc-sun-solaris2.9/3.4.2/ /usr/lib/gcc/sparc-sun-solaris2.9/3.4.2/ /usr/local/lib/gcc/sparc-sun-solaris2.9/3.4.2/../../../../sparc-sun-solaris2.9/lib/sparc-sun-solaris2.9/3.4.2/ /usr/local/lib/gcc/sparc-sun-solaris2.9/3.4.2/../../../../sparc-sun-solaris2.9/lib/ /usr/ccs/bin/sparc-sun-solaris2.9/3.4.2/ /usr/ccs/bin/ /usr/ccs/lib/sparc-sun-solaris2.9/3.4.2/ /usr/ccs/lib/ /usr/local/lib/gcc/sparc-sun-solaris2.9/3.4.2/../../../sparc-sun-solaris2.9/3.4.2/ /usr/local/lib/gcc/sparc-sun-solaris2.9/3.4.2/../../../ /lib/sparc-sun-solaris2.9/3.4.2/ /lib/ /usr/lib/sparc-sun-solaris2.9/3.4.2/ /usr/lib/"
|
||||
sys_lib_search_path_spec="/lib64 /usr/lib64 /usr/local/lib64"
|
||||
|
||||
# Run-time system search path for libraries
|
||||
sys_lib_dlsearch_path_spec="/lib /usr/lib"
|
||||
sys_lib_dlsearch_path_spec="/lib64 /usr/lib64 include ld.so.conf.d/*.conf /usr/X11R6/lib /usr/X11R6/lib64 /usr/lib/mysql /usr/lib64/mysql "
|
||||
|
||||
# Fix the shell variable $srcfile for the compiler.
|
||||
fix_srcfile_path=""
|
||||
|
|
@ -7060,10 +7061,10 @@ include_expsyms=""
|
|||
|
||||
# ### BEGIN LIBTOOL TAG CONFIG: F77
|
||||
|
||||
# Libtool was configured on host ultra:
|
||||
# Libtool was configured on host flog.yuma.net:
|
||||
|
||||
# Shell to use when invoking shell scripts.
|
||||
SHELL="/bin/bash"
|
||||
SHELL="/bin/sh"
|
||||
|
||||
# Whether or not to build shared libraries.
|
||||
build_libtool_libs=yes
|
||||
|
|
@ -7078,11 +7079,11 @@ build_libtool_need_lc=no
|
|||
allow_libtool_libs_with_static_runtimes=no
|
||||
|
||||
# Whether or not to optimize for fast installation.
|
||||
fast_install=needless
|
||||
fast_install=yes
|
||||
|
||||
# The host system.
|
||||
host_alias=
|
||||
host=sparc-sun-solaris2.9
|
||||
host=x86_64-unknown-linux-gnu
|
||||
|
||||
# An echo program that does not interpret backslashes.
|
||||
echo="echo"
|
||||
|
|
@ -7104,13 +7105,13 @@ with_gcc=yes
|
|||
EGREP="grep -E"
|
||||
|
||||
# The linker used to build libraries.
|
||||
LD="/usr/ccs/bin/ld"
|
||||
LD="/usr/bin/ld -m elf_x86_64"
|
||||
|
||||
# Whether we need hard or soft links.
|
||||
LN_S="ln -s"
|
||||
|
||||
# A BSD-compatible nm program.
|
||||
NM="/usr/ccs/bin/nm -p"
|
||||
NM="/usr/bin/nm -B"
|
||||
|
||||
# A symbol stripping program
|
||||
STRIP="strip"
|
||||
|
|
@ -7154,7 +7155,7 @@ pic_flag=" -fPIC"
|
|||
pic_mode=default
|
||||
|
||||
# What is the maximum length of a command?
|
||||
max_cmd_len=262144
|
||||
max_cmd_len=32768
|
||||
|
||||
# Does compiler simultaneously support -c and -o options?
|
||||
compiler_c_o="yes"
|
||||
|
|
@ -7184,10 +7185,10 @@ link_static_flag="-static"
|
|||
no_builtin_flag=""
|
||||
|
||||
# Compiler flag to allow reflexive dlopens.
|
||||
export_dynamic_flag_spec=""
|
||||
export_dynamic_flag_spec="\${wl}--export-dynamic"
|
||||
|
||||
# Compiler flag to generate shared objects directly from archives.
|
||||
whole_archive_flag_spec="-z allextract\$convenience -z defaultextract"
|
||||
whole_archive_flag_spec="\${wl}--whole-archive\$convenience \${wl}--no-whole-archive"
|
||||
|
||||
# Compiler flag to generate thread-safe objects.
|
||||
thread_safe_flag_spec=""
|
||||
|
|
@ -7218,10 +7219,12 @@ old_archive_from_new_cmds=""
|
|||
old_archive_from_expsyms_cmds=""
|
||||
|
||||
# Commands used to build and install a shared archive.
|
||||
archive_cmds="\$CC -shared \${wl}-h \${wl}\$soname -o \$lib \$libobjs \$deplibs \$compiler_flags"
|
||||
archive_expsym_cmds="\$echo \\\"{ global:\\\" > \$lib.exp~cat \$export_symbols | \$SED -e \\\"s/\\\\(.*\\\\)/\\\\1;/\\\" >> \$lib.exp~\$echo \\\"local: *; };\\\" >> \$lib.exp~
|
||||
\$CC -shared \${wl}-M \${wl}\$lib.exp \${wl}-h \${wl}\$soname -o \$lib \$libobjs \$deplibs \$compiler_flags~\$rm \$lib.exp"
|
||||
postinstall_cmds="chmod +x \$lib"
|
||||
archive_cmds="\$CC -shared \$libobjs \$deplibs \$compiler_flags \${wl}-soname \$wl\$soname -o \$lib"
|
||||
archive_expsym_cmds="\$echo \\\"{ global:\\\" > \$output_objdir/\$libname.ver~
|
||||
cat \$export_symbols | sed -e \\\"s/\\\\(.*\\\\)/\\\\1;/\\\" >> \$output_objdir/\$libname.ver~
|
||||
\$echo \\\"local: *; };\\\" >> \$output_objdir/\$libname.ver~
|
||||
\$CC -shared \$libobjs \$deplibs \$compiler_flags \${wl}-soname \$wl\$soname \${wl}-version-script \${wl}\$output_objdir/\$libname.ver -o \$lib"
|
||||
postinstall_cmds=""
|
||||
postuninstall_cmds=""
|
||||
|
||||
# Commands used to build a loadable module (assumed same as above if empty)
|
||||
|
|
@ -7229,8 +7232,8 @@ module_cmds=""
|
|||
module_expsym_cmds=""
|
||||
|
||||
# Commands to strip libraries.
|
||||
old_striplib=""
|
||||
striplib=""
|
||||
old_striplib="strip --strip-debug"
|
||||
striplib="strip --strip-unneeded"
|
||||
|
||||
# Dependencies to place before the objects being linked to create a
|
||||
# shared library.
|
||||
|
|
@ -7262,16 +7265,16 @@ file_magic_cmd="\$MAGIC_CMD"
|
|||
allow_undefined_flag=""
|
||||
|
||||
# Flag that forces no undefined symbols.
|
||||
no_undefined_flag=" -z text"
|
||||
no_undefined_flag=""
|
||||
|
||||
# Commands used to finish a libtool library installation in a directory.
|
||||
finish_cmds=""
|
||||
finish_cmds="PATH=\\\"\\\$PATH:/sbin\\\" ldconfig -n \$libdir"
|
||||
|
||||
# Same as above, but a single script fragment to be evaled but not shown.
|
||||
finish_eval=""
|
||||
|
||||
# Take the output of nm and produce a listing of raw symbols and C names.
|
||||
global_symbol_pipe="sed -n -e 's/^.*[ ]\\([BDRT][BDRT]*\\)[ ][ ]*\\(\\)\\([_A-Za-z][_A-Za-z0-9]*\\)\$/\\1 \\2\\3 \\3/p'"
|
||||
global_symbol_pipe="sed -n -e 's/^.*[ ]\\([ABCDGIRSTW][ABCDGIRSTW]*\\)[ ][ ]*\\(\\)\\([_A-Za-z][_A-Za-z0-9]*\\)\$/\\1 \\2\\3 \\3/p'"
|
||||
|
||||
# Transform the output of nm in a proper C declaration
|
||||
global_symbol_to_cdecl="sed -n -e 's/^. .* \\(.*\\)\$/extern int \\1;/p'"
|
||||
|
|
@ -7280,13 +7283,13 @@ global_symbol_to_cdecl="sed -n -e 's/^. .* \\(.*\\)\$/extern int \\1;/p'"
|
|||
global_symbol_to_c_name_address="sed -n -e 's/^: \\([^ ]*\\) \$/ {\\\"\\1\\\", (lt_ptr) 0},/p' -e 's/^[BCDEGRST] \\([^ ]*\\) \\([^ ]*\\)\$/ {\"\\2\", (lt_ptr) \\&\\2},/p'"
|
||||
|
||||
# This is the shared library runtime path variable.
|
||||
runpath_var=
|
||||
runpath_var=LD_RUN_PATH
|
||||
|
||||
# This is the shared library path variable.
|
||||
shlibpath_var=LD_LIBRARY_PATH
|
||||
|
||||
# Is shlibpath searched before the hard-coded library search path?
|
||||
shlibpath_overrides_runpath=yes
|
||||
shlibpath_overrides_runpath=no
|
||||
|
||||
# How to hardcode a shared library path into an executable.
|
||||
hardcode_action=immediate
|
||||
|
|
@ -7296,7 +7299,7 @@ hardcode_into_libs=yes
|
|||
|
||||
# Flag to hardcode $libdir into a binary during linking.
|
||||
# This must work even if $libdir does not exist.
|
||||
hardcode_libdir_flag_spec="-R\$libdir"
|
||||
hardcode_libdir_flag_spec="\${wl}--rpath \${wl}\$libdir"
|
||||
|
||||
# If ld is used when linking, flag to hardcode $libdir into
|
||||
# a binary during linking. This must work even if $libdir does
|
||||
|
|
@ -7316,7 +7319,7 @@ hardcode_minus_L=no
|
|||
|
||||
# Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into
|
||||
# the resulting binary.
|
||||
hardcode_shlibpath_var=no
|
||||
hardcode_shlibpath_var=unsupported
|
||||
|
||||
# Set to yes if building a shared library automatically hardcodes DIR into the library
|
||||
# and all subsequent libraries and executables linked against it.
|
||||
|
|
@ -7324,16 +7327,16 @@ hardcode_automatic=no
|
|||
|
||||
# Variables whose values should be saved in libtool wrapper scripts and
|
||||
# restored at relink time.
|
||||
variables_saved_for_relink="PATH LD_LIBRARY_PATH GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH"
|
||||
variables_saved_for_relink="PATH LD_LIBRARY_PATH LD_RUN_PATH GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH"
|
||||
|
||||
# Whether libtool must link a program against all its dependency libraries.
|
||||
link_all_deplibs=yes
|
||||
link_all_deplibs=unknown
|
||||
|
||||
# Compile-time system search path for libraries
|
||||
sys_lib_search_path_spec=" /usr/local/lib/gcc/sparc-sun-solaris2.9/3.4.2/ /usr/lib/gcc/sparc-sun-solaris2.9/3.4.2/ /usr/local/lib/gcc/sparc-sun-solaris2.9/3.4.2/../../../../sparc-sun-solaris2.9/lib/sparc-sun-solaris2.9/3.4.2/ /usr/local/lib/gcc/sparc-sun-solaris2.9/3.4.2/../../../../sparc-sun-solaris2.9/lib/ /usr/ccs/bin/sparc-sun-solaris2.9/3.4.2/ /usr/ccs/bin/ /usr/ccs/lib/sparc-sun-solaris2.9/3.4.2/ /usr/ccs/lib/ /usr/local/lib/gcc/sparc-sun-solaris2.9/3.4.2/../../../sparc-sun-solaris2.9/3.4.2/ /usr/local/lib/gcc/sparc-sun-solaris2.9/3.4.2/../../../ /lib/sparc-sun-solaris2.9/3.4.2/ /lib/ /usr/lib/sparc-sun-solaris2.9/3.4.2/ /usr/lib/"
|
||||
sys_lib_search_path_spec="/lib64 /usr/lib64 /usr/local/lib64"
|
||||
|
||||
# Run-time system search path for libraries
|
||||
sys_lib_dlsearch_path_spec="/lib /usr/lib"
|
||||
sys_lib_dlsearch_path_spec="/lib64 /usr/lib64 include ld.so.conf.d/*.conf /usr/X11R6/lib /usr/X11R6/lib64 /usr/lib/mysql /usr/lib64/mysql "
|
||||
|
||||
# Fix the shell variable $srcfile for the compiler.
|
||||
fix_srcfile_path=""
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@ pkglibdir = $(libdir)/libdnet
|
|||
pkgincludedir = $(includedir)/libdnet
|
||||
top_builddir = ..
|
||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||
INSTALL = ../config/install-sh -c
|
||||
INSTALL = /usr/bin/install -c
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
|
|
@ -36,8 +36,8 @@ POST_INSTALL = :
|
|||
NORMAL_UNINSTALL = :
|
||||
PRE_UNINSTALL = :
|
||||
POST_UNINSTALL = :
|
||||
build_triplet = sparc-sun-solaris2.9
|
||||
host_triplet = sparc-sun-solaris2.9
|
||||
build_triplet = x86_64-unknown-linux-gnu
|
||||
host_triplet = x86_64-unknown-linux-gnu
|
||||
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \
|
||||
$(top_srcdir)/Makefile.am.common arp-bsd.c arp-ioctl.c \
|
||||
arp-none.c arp-win32.c err.c eth-bsd.c eth-dlpi.c eth-linux.c \
|
||||
|
|
@ -65,7 +65,7 @@ am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
|
|||
am__installdirs = "$(DESTDIR)$(libdir)"
|
||||
libLTLIBRARIES_INSTALL = $(INSTALL)
|
||||
LTLIBRARIES = $(lib_LTLIBRARIES)
|
||||
libdnet_la_DEPENDENCIES = err$U.lo strsep$U.lo arp-ioctl$U.lo eth-dlpi$U.lo fw-none$U.lo intf$U.lo ip-cooked$U.lo route-bsd$U.lo tun-none$U.lo
|
||||
libdnet_la_DEPENDENCIES = strlcat$U.lo strlcpy$U.lo arp-ioctl$U.lo eth-linux$U.lo fw-ipchains$U.lo intf$U.lo ip$U.lo route-linux$U.lo tun-linux$U.lo
|
||||
am_libdnet_la_OBJECTS = addr-util.lo addr.lo blob.lo ip-util.lo ip6.lo \
|
||||
rand.lo
|
||||
libdnet_la_OBJECTS = $(am_libdnet_la_OBJECTS)
|
||||
|
|
@ -123,11 +123,11 @@ INSTALL_PROGRAM = ${INSTALL}
|
|||
INSTALL_SCRIPT = ${INSTALL}
|
||||
INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
|
||||
LDFLAGS =
|
||||
LIBOBJS = err$U.o strsep$U.o arp-ioctl$U.o eth-dlpi$U.o fw-none$U.o intf$U.o ip-cooked$U.o route-bsd$U.o tun-none$U.o
|
||||
LIBS = -lsocket -lnsl
|
||||
LIBOBJS = strlcat$U.o strlcpy$U.o arp-ioctl$U.o eth-linux$U.o fw-ipchains$U.o intf$U.o ip$U.o route-linux$U.o tun-linux$U.o
|
||||
LIBS =
|
||||
LIBTOOL = $(SHELL) $(top_builddir)/libtool
|
||||
LN_S = ln -s
|
||||
LTLIBOBJS = err$U.lo strsep$U.lo arp-ioctl$U.lo eth-dlpi$U.lo fw-none$U.lo intf$U.lo ip-cooked$U.lo route-bsd$U.lo tun-none$U.lo
|
||||
LTLIBOBJS = strlcat$U.lo strlcpy$U.lo arp-ioctl$U.lo eth-linux$U.lo fw-ipchains$U.lo intf$U.lo ip$U.lo route-linux$U.lo tun-linux$U.lo
|
||||
MAINT = #
|
||||
MAINTAINER_MODE_FALSE =
|
||||
MAINTAINER_MODE_TRUE = #
|
||||
|
|
@ -145,7 +145,7 @@ PYTHON_FALSE =
|
|||
PYTHON_TRUE = #
|
||||
RANLIB = ranlib
|
||||
SET_MAKE =
|
||||
SHELL = /bin/bash
|
||||
SHELL = /bin/sh
|
||||
STRIP = strip
|
||||
TCLINC =
|
||||
TCLLIB =
|
||||
|
|
@ -169,18 +169,18 @@ am__quote =
|
|||
am__tar = ${AMTAR} chof - "$$tardir"
|
||||
am__untar = ${AMTAR} xf -
|
||||
bindir = ${exec_prefix}/bin
|
||||
build = sparc-sun-solaris2.9
|
||||
build = x86_64-unknown-linux-gnu
|
||||
build_alias =
|
||||
build_cpu = sparc
|
||||
build_os = solaris2.9
|
||||
build_vendor = sun
|
||||
build_cpu = x86_64
|
||||
build_os = linux-gnu
|
||||
build_vendor = unknown
|
||||
datadir = ${prefix}/share
|
||||
exec_prefix = ${prefix}
|
||||
host = sparc-sun-solaris2.9
|
||||
host = x86_64-unknown-linux-gnu
|
||||
host_alias =
|
||||
host_cpu = sparc
|
||||
host_os = solaris2.9
|
||||
host_vendor = sun
|
||||
host_cpu = x86_64
|
||||
host_os = linux-gnu
|
||||
host_vendor = unknown
|
||||
includedir = ${prefix}/include
|
||||
infodir = ${prefix}/info
|
||||
install_sh = /home/fyodor/nmap/libdnet-stripped/config/install-sh
|
||||
|
|
@ -188,7 +188,7 @@ libdir = ${exec_prefix}/lib
|
|||
libexecdir = ${exec_prefix}/libexec
|
||||
localstatedir = ${prefix}/var
|
||||
mandir = ${prefix}/man
|
||||
mkdir_p = $(mkinstalldirs)
|
||||
mkdir_p = mkdir -p --
|
||||
oldincludedir = /usr/include
|
||||
prefix = /usr/local
|
||||
program_transform_name = s,x,x,
|
||||
|
|
@ -202,7 +202,7 @@ DISTCLEANFILES = *~
|
|||
lib_LTLIBRARIES = libdnet.la
|
||||
libdnet_la_SOURCES = addr-util.c addr.c blob.c ip-util.c ip6.c rand.c
|
||||
EXTRA_libdnet_la_SOURCES =
|
||||
libdnet_la_LIBADD = err$U.lo strsep$U.lo arp-ioctl$U.lo eth-dlpi$U.lo fw-none$U.lo intf$U.lo ip-cooked$U.lo route-bsd$U.lo tun-none$U.lo
|
||||
libdnet_la_LIBADD = strlcat$U.lo strlcpy$U.lo arp-ioctl$U.lo eth-linux$U.lo fw-ipchains$U.lo intf$U.lo ip$U.lo route-linux$U.lo tun-linux$U.lo
|
||||
libdnet_la_LDFLAGS = -version-info 1:0:0
|
||||
all: all-am
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue