From: David Bremner Date: Wed, 9 Apr 2014 11:24:02 +0000 (-0300) Subject: build: add canonicalize_file_name to symbols exported from libnotmuch.so X-Git-Tag: 0.18_rc0~20 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=3242e29e57ac;hp=59c6103e1c169c3b65e8d63dc2211c6ad0e24841 build: add canonicalize_file_name to symbols exported from libnotmuch.so This is needed for our compat version of canonicalize_file_name to be used. --- diff --git a/lib/gen-version-script.sh b/lib/gen-version-script.sh index 76670d57..64a73749 100644 --- a/lib/gen-version-script.sh +++ b/lib/gen-version-script.sh @@ -23,6 +23,6 @@ while read sym; do ;; esac done -nm $* | awk '$1 ~ "^[0-9a-fA-F][0-9a-fA-F]*$" && $2 == "T" && $3 ~ "^get(line|delim)$" {print $3 ";"}' +nm $* | awk '$1 ~ "^[0-9a-fA-F][0-9a-fA-F]*$" && $2 == "T" && $3 ~ "^(getline|getdelim|canonicalize_file_name)$" {print $3 ";"}' sed -n 's/^[[:space:]]*\(notmuch_[a-z_]*\)[[:space:]]*(.*/ \1;/p' $HEADER printf "local: *;\n};\n"