returning back to sntl name;
This commit is contained in:
parent
d13af92d0d
commit
3b06cd0228
@ -63,7 +63,7 @@ AM_CONDITIONAL(BUILD_WIN32, test "x$enable_win32_build" = "xyes")
|
||||
|
||||
AC_OUTPUT([
|
||||
Makefile
|
||||
lib/libsntllv2.pc
|
||||
lib/libsntl.pc
|
||||
lib/Makefile
|
||||
include/Makefile
|
||||
examples/Makefile
|
||||
|
12
debian/changelog
vendored
12
debian/changelog
vendored
@ -1,12 +1,12 @@
|
||||
libsntl (0.3.0) stable; urgency=high
|
||||
|
||||
* New improved architecture
|
||||
* Performance tricks
|
||||
* Long messages
|
||||
* Extended API
|
||||
* It's incompatible with 0.2.xx and below by protocol
|
||||
* New improved architecture
|
||||
* Performance tricks
|
||||
* Long messages
|
||||
* Extended API
|
||||
* It's incompatible with 0.2.xx and below by protocol
|
||||
|
||||
-- Alexander Vdolainen <vdo@askele.com> Thu, 16 Jul 2015 22:50:32 +0200
|
||||
-- Alexander Vdolainen <vdo@askele.com> Thu, 16 Jul 2015 22:50:32 +0200
|
||||
|
||||
libsntl (0.2.1) stable; urgency=low
|
||||
|
||||
|
4
debian/files
vendored
4
debian/files
vendored
@ -1,2 +1,2 @@
|
||||
libsntl-dev_0.2.1_amd64.deb libdevel extra
|
||||
libsntl_0.2.1_amd64.deb libs extra
|
||||
libsntl-dev_0.3.0_amd64.deb libdevel extra
|
||||
libsntl_0.3.0_amd64.deb libs extra
|
||||
|
2
debian/libsntl.substvars
vendored
2
debian/libsntl.substvars
vendored
@ -1,2 +1,2 @@
|
||||
shlibs:Depends=libc6 (>= 2.3.2), libsexpr, libssl1.0.0 (>= 1.0.1), libtdata, libuuid1 (>= 2.20.1)
|
||||
shlibs:Depends=libc6 (>= 2.2.5), libsexpr, libssl1.0.0 (>= 1.0.1), libtdata, libuuid1 (>= 2.20.1)
|
||||
misc:Depends=
|
||||
|
2
debian/shlibs.local.ex
vendored
2
debian/shlibs.local.ex
vendored
@ -1 +1 @@
|
||||
libsntl 0.2.0 libsntl (>> 0.2.0), libsntl (<< 0.2.99)
|
||||
libsntl 0.3.0 libsntl (>> 0.3.0), libsntl (<< 0.3.99)
|
||||
|
@ -10,25 +10,25 @@ AM_CFLAGS =\
|
||||
-Wall\
|
||||
-g
|
||||
|
||||
lib_LTLIBRARIES = libsntllv2.la
|
||||
lib_LTLIBRARIES = libsntl.la
|
||||
|
||||
|
||||
libsntllv2_la_SOURCES = \
|
||||
libsntl_la_SOURCES = \
|
||||
connex.c sntllv2.c chansx.c messagesx.c rpclist.c uuid.c
|
||||
|
||||
libsntllv2_la_LDFLAGS = -Wl,--export-dynamic
|
||||
libsntl_la_LDFLAGS = -Wl,--export-dynamic
|
||||
|
||||
libsntllv2_la_LIBADD = -lpthread -lcrypto $(LIBTDATA_LIBS) $(LIBSEXPR_LIBS) $(OPENSSL_LIBS)
|
||||
libsntl_la_LIBADD = -lpthread -lcrypto $(LIBTDATA_LIBS) $(LIBSEXPR_LIBS) $(OPENSSL_LIBS)
|
||||
|
||||
if BUILD_WIN32
|
||||
libsntllv2_la_LIBADD += -luuid
|
||||
libsntl_la_LIBADD += -luuid
|
||||
else
|
||||
libsntllv2_la_LIBADD += $(LIBUUID_LIBS)
|
||||
libsntl_la_LIBADD += $(LIBUUID_LIBS)
|
||||
endif !BUILD_WIN32
|
||||
|
||||
pkgconfigdir = $(libdir)/pkgconfig
|
||||
pkgconfig_DATA = libsntllv2.pc
|
||||
pkgconfig_DATA = libsntl.pc
|
||||
|
||||
EXTRA_DIST = \
|
||||
libsntllv2.pc.in
|
||||
libsntl.pc.in
|
||||
|
||||
|
@ -9,5 +9,5 @@ Name: libsntllv2
|
||||
Description: Secure Network Transport Layer library implementation
|
||||
Version: @VERSION@
|
||||
Requires:
|
||||
Libs: -L${libdir} -lsntllv2
|
||||
Libs: -L${libdir} -lsntl
|
||||
Cflags: -I${includedir}
|
@ -11,7 +11,7 @@ AM_CPPFLAGS = \
|
||||
AM_CFLAGS = -Wall -g
|
||||
|
||||
# where to find libsntl
|
||||
libsntl = ../lib/.libs/libsntllv2.la
|
||||
libsntl = ../lib/.libs/libsntl.la
|
||||
|
||||
if !BUILD_WIN32
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user