Displaying 3 results from an estimated 3 matches for "unicodemap".
2009 Nov 23
4
Upgrade Dovecot 1.2.7 to 1.2.8 on OS X (10.6.2)
Hi there, I've tried to update Dovecot to the latest version and have
come upon an error during make. Previous upgrades have all been very easy
(thank you!) and it appears that the updated make script includes a wget
command and unfortunately OS X does not come with wget by default (curl is
the default). Not being completely up to speed with the whole autoconf and
make process, I'm a
2007 Nov 19
1
src/lib/Makefile.am: a trivial ``$(srcdir)'' patch
May I suggest the following trivial patch?
diff -r ff9e591a2aa5 src/lib/Makefile.am
--- a/src/lib/Makefile.am Sun Nov 18 21:44:22 2007 +0200
+++ b/src/lib/Makefile.am Tue Nov 20 00:29:04 2007 +0600
@@ -4,9 +4,9 @@ BUILT_SOURCES = unicodemap.c
EXTRA_DIST = unicodemap.c unicodemap.pl
-unicodemap.c:
+$(srcdir)/unicodemap.c:
test -f UnicodeData.txt || wget http://www.unicode.org/Public/UNIDATA/UnicodeData.txt
- perl unicodemap.pl < UnicodeData.txt > $@
+ perl $(srcdir)/unicodemap.pl < UnicodeData.txt > $@
liblib_a_SO...
2007 Dec 31
4
1.1b13 build in FreeBSD fails using 'make'; 'gmake' apparently required
...dovecot in a freebsd 62R jail.
following instructions at
http://wiki.dovecot.org/CompilingSource
./configure
make
sudo make install
after an OK 'configure', @ 'make', i get
make
make all-recursive
Making all in src
Making all in lib
make: don't know how to make unicodemap.c. Stop
*** Error code 1
Stop in /s/usr-local/build/dovecot/dovecot/src.
*** Error code 1
Stop in /s/usr-local/build/dovecot/dovecot.
*** Error code 1
Stop in /s/usr-local/build/dovecot/dovecot.
looking at source, i couldn't figure this out ...
on a whim, i tried 'gmake',...