mirror of
https://github.com/libssh2/libssh2.git
synced 2026-01-06 14:21:57 +03:00
- introduce the concept of a project level setup header `src/libssh2_setup.h`, that is used by `src`, `example` and `tests` alike. Move there all common platform/compiler configuration from `src/libssh2_priv.h`, individual sources and `CMakeFiles.txt` files. Also move there our hand-crafted (= not auto-generated by CMake or autotools) configuration `win32/libssh2-config.h`. - `win32` directory is empty now, delete it. - `Makefile.mk`: adapt to the above. Build-directory is the target triplet, or any custom name set via `BLD_DIR`. - sync header path order between build systems: build/src -> source/src -> source/include - delete redundant references to `windows.h`, `winsock2.h`, `ws2tcpip.h`. - delete unnecessary #includes, update order (`libssh2_setup.h` first, `winsock2.h` first), simplify where possible. This makes the code warning-free without `WIN32_LEAN_AND_MEAN`. At the same time this patch applies this macro globally, to avoid header bloat. - example: add missing *nix header guards. - example: fix misindented `HAVE_UNISTD_H` `#ifdef`s. - set `WIN32` with all build-tools. - set `HAVE_SYS_PARAM_H` in the hand-crafted config for MinGW. To match auto-detection. - move a source-specific macro to `misc.c` from `libssh2_priv.h`. See the PR's individual commits for step-by-step updates. Closes #932
34 lines
618 B
Makefile
34 lines
618 B
Makefile
AUTOMAKE_OPTIONS = foreign nostdinc
|
|
|
|
EXTRA_DIST = CMakeLists.txt
|
|
|
|
# examples
|
|
noinst_PROGRAMS = \
|
|
direct_tcpip \
|
|
scp \
|
|
scp_nonblock \
|
|
scp_write \
|
|
scp_write_nonblock \
|
|
sftp \
|
|
sftp_RW_nonblock \
|
|
sftp_append \
|
|
sftp_mkdir \
|
|
sftp_mkdir_nonblock \
|
|
sftp_nonblock \
|
|
sftp_write \
|
|
sftp_write_nonblock \
|
|
sftp_write_sliding \
|
|
sftpdir \
|
|
sftpdir_nonblock \
|
|
ssh2 \
|
|
ssh2_agent \
|
|
ssh2_agent_forwarding \
|
|
ssh2_echo \
|
|
ssh2_exec \
|
|
subsystem_netconf \
|
|
tcpip-forward \
|
|
x11
|
|
|
|
AM_CPPFLAGS = -I$(top_builddir)/src -I$(top_srcdir)/src -I$(top_srcdir)/include
|
|
LDADD = $(top_builddir)/src/libssh2.la
|