1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
Author: Alastair McKinstry <mckinstry@debian.org>
Description: Add symbol versioning file.
Last-Updated: 2013-06-11
Forwarded: no
--- /dev/null
+++ b/cmor.ver
@@ -0,0 +1,7 @@
+CMOR_2.0.0 {
+ global:
+ cmor*;
+ __cmor_users_functions*;
+ Cd*;
+ local: *;
+};
--- a/configure.ac
+++ b/configure.ac
@@ -23,7 +23,7 @@
CMOR_VERSION=${PACKAGE_VERSION}" (commit: ${GIT_TAG})"
AC_PREFIX_DEFAULT([/usr/local/cmor])
-AC_CONFIG_FILES([Makefile setup.py compile_line.txt include/cmor_locale.h])
+AC_CONFIG_FILES([Makefile setup.py compile_line.txt include/cmor_locale.h cmor.pc])
INCFILES="include/cmor.h include/cmor_func_def.h include/cmor_md5.h `cd $srcdir ; ls include/cdTime/*.h include/cdTime/cdunifpp/*.h | tr \"\n\" \" \" `"
AC_SUBST(RTAG)
|