Edit

thodg/libiconv/libcharset/Makefile.devel

Branch :

  • Show log

    Commit

  • Author : Bruno Haible
    Date : 2023-09-06 03:29:12
    Hash : bacf3318
    Message : Don't export symbols from static MSVC .obj files. Suggested by Dmitry Bely <dmitry.bely@gmail.com> in <https://lists.gnu.org/archive/html/bug-gnu-libiconv/2023-08/msg00002.html>. * include/export.h: Add a copyright notice. Set LIBICONV_DLL_EXPORTED to empty on MSVC when DLL_EXPORT is not defined. * Makefile.devel (include/iconv.h.build.in): Filter out the second copyright notice. * configure.ac (DLL_VARIABLE): Test DLL_EXPORT, not _DLL. * lib/relocatable.h: From gnulib: (RELOCATABLE_DLL_EXPORTED): Don't use __declspec(dllexport) when creating static .obj files with MSVC. * libcharset/include/export.h: Add a copyright notice. Set LIBCHARSET_DLL_EXPORTED to empty on MSVC when DLL_EXPORT is not defined. * libcharset/Makefile.devel (include/libcharset.h.build.in, include/localcharset.h.build.in): Filter out the second copyright notice.

  • libcharset/Makefile.devel
  • # This is the developer's makefile, not the user's makefile.
    # Don't use it unless you know exactly what you do!
    
    SHELL = /bin/sh
    MAKE = make
    AUTOCONF = autoconf
    AUTOHEADER = autoheader
    ACLOCAL = aclocal-1.16
    CP = cp
    RM = rm -f
    
    all : configures include/libcharset.h.build.in include/localcharset.h.build.in
    
    autoconf/aclocal.m4 : $(wildcard m4/*.m4)
    	test -d autoconf || mkdir autoconf
    	$(ACLOCAL) -I m4 --output=$@ && rm -rf autom4te.cache
    
    configures : configure config.h.in
    
    configure : configure.ac autoconf/aclocal.m4
    	$(AUTOCONF) --include autoconf && rm -rf autom4te.cache
    
    config.h.in : configure.ac autoconf/aclocal.m4
    	$(AUTOHEADER) --include autoconf && rm -rf autom4te.cache
    	touch config.h.in
    
    include/libcharset.h.build.in : include/libcharset.h.in include/export.h
    	cat $< \
    	| sed -e 's/extern \([^"]\)/extern LIBCHARSET_DLL_EXPORTED \1/' \
    	      -e '/#define _LIBCHARSET_H/r include/export.h' \
    	| sed -e '/#define _LIBCHARSET_H/,/[*][/]$$/{/#define _LIBCHARSET_H/!d;}' \
    	  > $@
    
    include/localcharset.h.build.in : include/localcharset.h.in include/export.h
    	cat $< \
    	| sed -e 's/extern \([^"]\)/extern LIBCHARSET_DLL_EXPORTED \1/' \
    	      -e '/#define _LOCALCHARSET_H/r include/export.h' \
    	| sed -e '/#define _LOCALCHARSET_H/,/[*][/]$$/{/#define _LOCALCHARSET_H/!d;}' \
    	  > $@
    
    totally-clean : force
    	rm -f autoconf/aclocal.m4 configure config.h.in include/libcharset.h.build.in include/localcharset.h.build.in
    
    force :