Fixed paths (libdir->bindir); removed the now unused libdir reference.
authormarkus schnalke <meillo@marmaro.de>
Fri, 9 Mar 2012 16:04:46 +0000 (17:04 +0100)
committermarkus schnalke <meillo@marmaro.de>
Fri, 9 Mar 2012 16:04:46 +0000 (17:04 +0100)
config/Makefile.in
config/config.c
uip/mhparam.c

index da7d12a..491ff85 100644 (file)
@@ -25,7 +25,7 @@ CFLAGS     = @CFLAGS@
 DEFS       = @DEFS@
 INCLUDES   = -I.. -I$(top_srcdir) @CPPFLAGS@
 CONFIGDEFS = -DNMHBINDIR='"$(bindir)"' -DNMHETCDIR='"$(etcdir)"' \
-               -DNMHLIBDIR='"$(libdir)"' -DSENDMAILPATH='"$(sendmailpath)"' \
+               -DSENDMAILPATH='"$(sendmailpath)"' \
                -DMAILSPOOL='"$(mailspool)"'
 
 COMPILE  = $(CC) -c $(DEFS) $(INCLUDES) $(CFLAGS)
index 3515dd0..158dd7a 100644 (file)
@@ -14,7 +14,6 @@
 ** nmh globals
 */
 
-char *mhlibdir = NMHLIBDIR;
 char *mhetcdir = NMHETCDIR;
 
 char *invo_name;        /* command invocation name    */
@@ -160,13 +159,13 @@ char *defaulteditor = "vi";
 ** This is the delivery program called by send to actually
 ** deliver mail to users.  This is the interface to the MTS.
 */
-char *postproc = NMHLIBDIR"/spost";
+char *postproc = NMHBINDIR"/spost";
 
 /*
 ** This is program is called by slocal to handle
 ** the action `folder' or `+'.
 */
-char *rcvstoreproc = NMHLIBDIR"/rcvstore";
+char *rcvstoreproc = NMHBINDIR"/rcvstore";
 
 /*
 ** This program is called to remove a message by rmm or refile -nolink.
index 2a1d97e..db8e85a 100644 (file)
@@ -11,8 +11,6 @@
 
 #include <h/mh.h>
 
-extern char *mhlibdir;
-
 static struct swit switches[] = {
 #define COMPSW  0
        { "components", 0 },
@@ -58,7 +56,6 @@ static struct proc procs [] = {
        { "version",       &version_num },
        { "whatnowproc",   &whatnowproc },
        { "etcdir",        &mhetcdir },
-       { "libdir",        &mhlibdir },
        { "backup-prefix", &backup_prefix },
        { "altmsg-link",   &altmsglink },
        { "draft-folder",  &draftfolder },