Commit ca17e9b5 authored by Felix Paul Kühne's avatar Felix Paul Kühne

* fixed the compilation of libiconv on OSX

parent b23ce68f
...@@ -387,7 +387,11 @@ ifdef HAVE_DARWIN_OS ...@@ -387,7 +387,11 @@ ifdef HAVE_DARWIN_OS
endif endif
.iconv: libiconv .iconv: libiconv
ifdef HAVE_DARWIN_OS
(cd libiconv; ./configure $(HOSTCONF) --prefix=$(PREFIX) --disable-nls && make && make install)
else
(cd libiconv; CPPFLAGS="-Dssize_t=long" ./configure $(HOSTCONF) --prefix=$(PREFIX) --disable-nls && make && make install) (cd libiconv; CPPFLAGS="-Dssize_t=long" ./configure $(HOSTCONF) --prefix=$(PREFIX) --disable-nls && make && make install)
endif
$(INSTALL_NAME) $(INSTALL_NAME)
touch $@ touch $@
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment