Skip to content

Commit

Permalink
autoreconf
Browse files Browse the repository at this point in the history
  • Loading branch information
semmerson committed Dec 12, 2023
1 parent cae1a26 commit 0571a37
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -64,3 +64,4 @@ coverity-scan
*.tgz
/clang-scan
/_build/
udunits.pc
4 changes: 4 additions & 0 deletions CHANGE_LOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2.3.0.1
Build:
* Added udunits.pc to build and installation to support software that uses UDUNITS

2.3.0.0 2023-08-21T08:33:24-0600
Database:
* Added "per mille" unit with appropriate symbol and "ppt"
Expand Down
9 changes: 5 additions & 4 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ ACLOCAL_AMFLAGS = -I m4
SUBDIRS = lib prog
DIST_SUBDIRS = lib prog
info_TEXINFOS = udunits2.texi
TEXINFO_TEX = ./texinfo.tex
EXTRA_DIST = \
CHANGE_LOG \
CMakeLists.txt \
Expand Down Expand Up @@ -65,13 +66,12 @@ release: ftp web-update
.PHONY: hostchecks hostcheck remote-checks web-update ftp \
download-update available release

udunits2.info: version.texi LICENSE
udunits2.html: version.texi LICENSE
udunits2.pdf: version.texi LICENSE

$(srcdir)/version.texi: $(srcdir)/stamp-vti
@cp $(srcdir)/stamp-vti $@

pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = @[email protected]

CMakeLists.txt: CHANGE_LOG
versionId=`awk '{print $$1;exit}' CHANGE_LOG`; \
if ! `echo "$$versionId" | egrep '^[0-9.]+$$' >/dev/null`; then \
Expand All @@ -86,3 +86,4 @@ CMakeLists.txt: CHANGE_LOG
else \
touch $@; \
fi;

2 changes: 1 addition & 1 deletion lib/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ install(TARGETS libudunits2 EXPORT udunits2-targets
ARCHIVE DESTINATION lib
LIBRARY DESTINATION lib
RUNTIME DESTINATION bin)
install(FILES udunits2.h converter.h DESTINATION include)
install(FILES udunits2.h DimPow.h converter.h DESTINATION include)
install(FILES
udunits2.xml
udunits2-accepted.xml
Expand Down
2 changes: 2 additions & 0 deletions lib/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
SUBDIRS = xmlFailures xmlSuccesses
lib_LTLIBRARIES = libudunits2.la
libudunits2_la_SOURCES = unitcore.c \
DimPow.c DimPow.h \
DimVec.c DimVec.h \
converter.c \
formatter.c \
idToUnitMap.c idToUnitMap.h \
Expand Down

0 comments on commit 0571a37

Please sign in to comment.