returning back to sntl name;

v0.5.xx
Alexander Vdolainen 10 years ago
parent d13af92d0d
commit 3b06cd0228

@ -63,7 +63,7 @@ AM_CONDITIONAL(BUILD_WIN32, test "x$enable_win32_build" = "xyes")
AC_OUTPUT([ AC_OUTPUT([
Makefile Makefile
lib/libsntllv2.pc lib/libsntl.pc
lib/Makefile lib/Makefile
include/Makefile include/Makefile
examples/Makefile examples/Makefile

12
debian/changelog vendored

@ -1,12 +1,12 @@
libsntl (0.3.0) stable; urgency=high libsntl (0.3.0) stable; urgency=high
* New improved architecture * New improved architecture
* Performance tricks * Performance tricks
* Long messages * Long messages
* Extended API * Extended API
* It's incompatible with 0.2.xx and below by protocol * 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 libsntl (0.2.1) stable; urgency=low

4
debian/files vendored

@ -1,2 +1,2 @@
libsntl-dev_0.2.1_amd64.deb libdevel extra libsntl-dev_0.3.0_amd64.deb libdevel extra
libsntl_0.2.1_amd64.deb libs extra libsntl_0.3.0_amd64.deb libs extra

@ -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= misc:Depends=

@ -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\ -Wall\
-g -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 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 if BUILD_WIN32
libsntllv2_la_LIBADD += -luuid libsntl_la_LIBADD += -luuid
else else
libsntllv2_la_LIBADD += $(LIBUUID_LIBS) libsntl_la_LIBADD += $(LIBUUID_LIBS)
endif !BUILD_WIN32 endif !BUILD_WIN32
pkgconfigdir = $(libdir)/pkgconfig pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = libsntllv2.pc pkgconfig_DATA = libsntl.pc
EXTRA_DIST = \ EXTRA_DIST = \
libsntllv2.pc.in libsntl.pc.in

@ -9,5 +9,5 @@ Name: libsntllv2
Description: Secure Network Transport Layer library implementation Description: Secure Network Transport Layer library implementation
Version: @VERSION@ Version: @VERSION@
Requires: Requires:
Libs: -L${libdir} -lsntllv2 Libs: -L${libdir} -lsntl
Cflags: -I${includedir} Cflags: -I${includedir}

@ -11,7 +11,7 @@ AM_CPPFLAGS = \
AM_CFLAGS = -Wall -g AM_CFLAGS = -Wall -g
# where to find libsntl # where to find libsntl
libsntl = ../lib/.libs/libsntllv2.la libsntl = ../lib/.libs/libsntl.la
if !BUILD_WIN32 if !BUILD_WIN32

Loading…
Cancel
Save