~vcs-imports/libiconv/trunk

« back to all changes in this revision

Viewing changes to Makefile.devel

  • Committer: Bruno Haible
  • Date: 2023-09-16 10:04:24 UTC
  • Revision ID: git-v1:6ad5ae562aa163e91ff37e92bf1b5591a87742ee
Fix a misnomer.

* include/export.h (LIBICONV_SHLIB_EXPORTED): Renamed from
LIBICONV_DLL_EXPORTED. Prefer the term "shared library", since the term
"DLL" applies only to Windows.
* Makefile.devel (include/iconv.h.build.in): Insert
LIBICONV_SHLIB_EXPORTED instead of LIBICONV_DLL_EXPORTED.
* configure.ac (DLL_VARIABLE): Update comment.
* lib/Makefile.in (DEFS): Update comment.
* woe32dll/export.h: Update comment.
* libcharset/include/export.h (LIBCHARSET_SHLIB_EXPORTED): Renamed from
LIBCHARSET_DLL_EXPORTED. Prefer the term "shared library", since the
term "DLL" applies only to Windows.
* libcharset/Makefile.devel (include/libcharset.h.build.in,
include/localcharset.h.build.in): Insert LIBCHARSET_SHLIB_EXPORTED
instead of LIBCHARSET_DLL_EXPORTED.
* libcharset/lib/relocatable-stub.c (libcharset_set_relocation_prefix): Use
LIBCHARSET_SHLIB_EXPORTED instead of LIBCHARSET_DLL_EXPORTED.
* libcharset/lib/Makefile.in (DEFS): Update comment.
* libcharset/Makefile.in (install-lib): Update comment.

Show diffs side-by-side

added added

removed removed

Lines of Context:
137
137
 
138
138
include/iconv.h.build.in : include/iconv.h.in include/export.h
139
139
        cat $< \
140
 
        | sed -e 's/extern \([^"]\)/extern LIBICONV_DLL_EXPORTED \1/' \
 
140
        | sed -e 's/extern \([^"]\)/extern LIBICONV_SHLIB_EXPORTED \1/' \
141
141
              -e '/_LIBICONV_VERSION/r include/export.h' \
142
142
        | sed -e '/_LIBICONV_VERSION/,/[*][/]$$/{/_LIBICONV_VERSION/!d;}' > $@
143
143