Sophie

Sophie

distrib > Mandriva > current > i586 > media > contrib-release-src > by-pkgid > 5860c76a9657184d337ed67436870424 > files > 2

syck-0.55-7mdv2010.0.src.rpm

diff -Naur syck-0.55/configure.in syck-0.55.oden/configure.in
--- syck-0.55/configure.in	2005-04-06 19:18:59.000000000 +0200
+++ syck-0.55.oden/configure.in	2007-08-07 14:34:17.000000000 +0200
@@ -1,5 +1,5 @@
 # Process this file with autoconf to produce a configure script.
-AC_INIT(syck, 0.54)
+AC_INIT(syck, 0.55)
 AC_CONFIG_AUX_DIR(config)
 AC_PREREQ(2.50)
 
@@ -15,6 +15,7 @@
 AC_PROG_AWK
 AC_PROG_YACC
 AM_PROG_LEX
+AC_PROG_LIBTOOL
 
 # Checks for libraries.
 
diff -Naur syck-0.55/lib/Makefile.am syck-0.55.oden/lib/Makefile.am
--- syck-0.55/lib/Makefile.am	2004-08-18 19:49:47.000000000 +0200
+++ syck-0.55.oden/lib/Makefile.am	2007-08-07 14:32:57.000000000 +0200
@@ -4,18 +4,19 @@
 
 AM_YFLAGS = -d -t -v -p syck
 
-lib_LIBRARIES = libsyck.a
+lib_LTLIBRARIES = libsyck.la
 include_HEADERS = syck.h syck_st.h
 
-libsyck_a_SOURCES = \
-			emitter.c \
+libsyck_la_LDFLAGS  = -export-dynamic -version-info 0:0:0
+libsyck_la_SOURCES = \
+            emitter.c \
             handler.c \
             node.c \
             syck.c \
             syck_st.c \
             gram.y \
             bytecode.re \
-			yaml2byte.c \
+            yaml2byte.c \
             token.re \
             implicit.re
 
diff -Naur syck-0.55/tests/Makefile.am syck-0.55.oden/tests/Makefile.am
--- syck-0.55/tests/Makefile.am	2005-01-01 03:06:25.000000000 +0100
+++ syck-0.55.oden/tests/Makefile.am	2007-08-07 14:33:20.000000000 +0200
@@ -1,5 +1,5 @@
 INCLUDES = -I$(top_srcdir)/lib
-LDFLAGS = -L$(top_srcdir)/lib
+AM_LDFLAGS = -L$(top_srcdir)/lib
 
 TESTS = test-basic test-parse test-yts test-emit
 noinst_PROGRAMS = test-basic test-parse test-yts test-emit