The only reason for this has to do with a silly config file copying convention.
Below is how I fixed it:
================================================================================

Fix a quirk that requires the GNU make:
Open ./imap/Makefile.in, on what should be line 858, you'll see

imapd.cnf: imapd.c...@ssllib@
        cp $< $@
        touch $@

replace it with

imapd.cnf: imapd.c...@ssllib@
        cp imapd.c...@ssllib@ imapd.cnf
        touch imapd.cnf

There should be a nearly identical rule just a few lines below it, replace it 
too, with

pop3d.cnf: pop3d.c...@ssllib@
        cp pop3d.c...@ssllib@ pop3d.cnf
        touch pop3d.cnf


------------------------------------------------------------------------------
This SF.net email is sponsored by 

Make an app they can't live without
Enter the BlackBerry Developer Challenge
http://p.sf.net/sfu/RIM-dev2dev 
_______________________________________________
courier-users mailing list
[email protected]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users

Reply via email to