-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix the distribution configuration to work properly
include all the headers in the tarball (some are 'noinst') put the jstruct headers in $(includedir)/jstruct/* Add a note for the confusing libtool .so version info setting.
- Loading branch information
1 parent
c0f4092
commit 3baa690
Showing
3 changed files
with
13 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
AC_INIT([libjstruct.la], [0.0.5], [[email protected]]) | ||
AC_INIT([libjstruct.la], [0.0.6], [[email protected]]) | ||
AC_CONFIG_AUX_DIR([build-aux]) | ||
AC_CONFIG_MACRO_DIR([m4]) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,13 @@ | ||
## Process this file with automake to produce Makefile.in | ||
|
||
lib_LTLIBRARIES = libjstruct.la | ||
|
||
libjstructincludedir = $(includedir)/jstruct | ||
libjstruct_la_SOURCES = jstruct.c jstruct_private.c error.c export.c import.c | ||
include_HEADERS = jstruct.h export.h import.h error.h result.h | ||
# libtool -version-info c:r:a | ||
# no interface change: bump revision only, don’t touch current nor age. | ||
# interface change: set revision to 0, bump current and age. | ||
# recompile/link change: Bump current, set revision and age to 0. | ||
libjstruct_la_LDFLAGS = -version-info 0:0:0 | ||
libjstructinclude_HEADERS = jstruct.h export.h import.h error.h result.h | ||
noinst_HEADERS = jstruct_private.h export_private.h import_private.h error.init.h result.init.h |