From 592118f1dacadb565ea54a02cad17e114c1a98d1 Mon Sep 17 00:00:00 2001 From: Elliott Sales de Andrade Date: Sun, 5 Jan 2014 20:57:44 -0500 Subject: [PATCH 1/4] Fix version in configure.ac. I'm assuming that the next release is 1.0.2, but maybe it will be 1.1... --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index f627b0000c..afe55ea05c 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.61]) -AC_INIT([libsass], [1.0], [support@moovweb.com]) +AC_INIT([libsass], [1.0.2devel], [support@moovweb.com]) AC_CONFIG_SRCDIR([ast.hpp]) AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_HEADERS([config.h]) From 8fd856bd6dba5b0e953140dbf4608445593de09b Mon Sep 17 00:00:00 2001 From: Elliott Sales de Andrade Date: Sun, 5 Jan 2014 21:00:12 -0500 Subject: [PATCH 2/4] Don't attempt to distribute sassc.c. It's not part of the source code, and only used for testing. --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 7d06415521..b7b19973ba 100644 --- a/Makefile.am +++ b/Makefile.am @@ -22,7 +22,7 @@ if ENABLE_TESTS noinst_PROGRAMS = sass-tester -sass_tester_SOURCES = $(SASS_SASSC_PATH)/sassc.c +nodist_sass_tester_SOURCES = $(SASS_SASSC_PATH)/sassc.c sass_tester_LDADD = libsass.la sass_tester_LDFLAGS = -no-install From 381d2fdabfd1f118b3d2f3b1254d90063dcb02f6 Mon Sep 17 00:00:00 2001 From: Elliott Sales de Andrade Date: Sun, 5 Jan 2014 21:28:28 -0500 Subject: [PATCH 3/4] Add headers to source list. If they aren't specified anywhere, they don't get included in the tarball made by `make dist`. --- Makefile.am | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index b7b19973ba..3482f7b997 100644 --- a/Makefile.am +++ b/Makefile.am @@ -8,7 +8,13 @@ libsass_la_SOURCES = ast.cpp base64vlq.cpp bind.cpp constants.cpp context.cpp co copy_c_str.cpp error_handling.cpp eval.cpp expand.cpp extend.cpp file.cpp \ functions.cpp inspect.cpp output_compressed.cpp output_nested.cpp \ parser.cpp prelexer.cpp sass.cpp sass_interface.cpp source_map.cpp to_c.cpp to_string.cpp \ - units.cpp + units.cpp \ + ast_def_macros.hpp ast_factory.hpp ast_fwd_decl.hpp ast.hpp backtrace.hpp base64vlq.hpp \ + bind.hpp color_names.hpp constants.hpp context.hpp contextualize.hpp copy_c_str.hpp \ + environment.hpp error_handling.hpp eval.hpp expand.hpp extend.hpp file.hpp functions.hpp \ + inspect.hpp kwd_arg_macros.hpp mapping.hpp memory_manager.hpp operation.hpp \ + output_compressed.hpp output_nested.hpp parser.hpp position.hpp prelexer.hpp source_map.hpp \ + to_c.hpp token.hpp to_string.hpp units.hpp libsass_la_LDFLAGS = -no-undefined -version-info 0:0:0 include_HEADERS = sass_interface.h sass.h From f8a3e4bc217858cb5b7c9511ab6e6937edc80e87 Mon Sep 17 00:00:00 2001 From: Elliott Sales de Andrade Date: Sun, 5 Jan 2014 22:02:38 -0500 Subject: [PATCH 4/4] Add documentation to EXTRA_DIST. --- Makefile.am | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile.am b/Makefile.am index 3482f7b997..374f5d5e35 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,5 +1,11 @@ ACLOCAL_AMFLAGS = -I m4 +EXTRA_DIST = \ + COPYING \ + INSTALL \ + LICENSE \ + Readme.md + pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = support/libsass.pc