Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
18f5fbc0
...
18f5fbc0e87f4f9a7a9e277f55aebaaaf296ecf9
authored
2005-11-09 09:38:34 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Somewhat reluctantly append $(EXEEXT) to binary target names to fix cygwin builds.
1 parent
22a0ee27
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
30 additions
and
28 deletions
configure.ac
mail.remote/Makefile.am
mh/Makefile.am
configure.ac
View file @
18f5fbc
...
...
@@ -866,7 +866,7 @@ GDBM)
AC_DEFINE(WITH_GDBM,1,
[Enable use of GNU DBM library]))
LIBS="$LIBS -lgdbm"
POPAUTH=
popauth
POPAUTH=
'popauth$(EXEEXT)'
status_gdbm=yes]);;
BDB2)
AC_CHECK_LIB(db, db_open,
...
...
@@ -875,7 +875,7 @@ BDB2)
[Enable use of Berkeley DB]))
LIBS="$LIBS -ldb"
MU_DB2_CURSOR
POPAUTH=
popauth
POPAUTH=
'popauth$(EXEEXT)'
status_bdb2=yes]);;
NDBM)
AC_CHECK_LIB(ndbm, dbm_open,
...
...
@@ -883,7 +883,7 @@ NDBM)
AC_DEFINE(WITH_NDBM,1,
[Enable use of NDBM]))
LIBS="$LIBS -lndbm"
POPAUTH=
popauth
POPAUTH=
'popauth$(EXEEXT)'
status_ndbm=yes]);;
ODBM)
AC_CHECK_LIB(dbm, dbminit,
...
...
@@ -891,7 +891,7 @@ ODBM)
AC_DEFINE(WITH_OLD_DBM,1,
[Enable use of old DBM library]))
LIBS="$LIBS -ldbm"
POPAUTH=
popauth
POPAUTH=
'popauth$(EXEEXT)'
status_dbm=yes]);;
esac
...
...
mail.remote/Makefile.am
View file @
18f5fbc
...
...
@@ -20,7 +20,7 @@
INCLUDES
=
-I
$(srcdir)
-I
$(top_srcdir)
/lib -I
${
top_builddir
}
/include/mailutils/gnu -I
$(top_srcdir)
/include @INTLINCS@
SUBDIRS
=
testsuite
PROGRAMS_SMTP
=
mail.remote
PROGRAMS_SMTP
=
mail.remote
$(EXEEXT)
EXTRA_PROGRAMS
=
mail.remote
libexec_PROGRAMS
=
@BUILD_SMTP_PROGRAMS@
...
...
mh/Makefile.am
View file @
18f5fbc
...
...
@@ -17,30 +17,32 @@
## Foundation, Inc. 51 Franklin Street, Fifth Floor, Boston, MA
## 02110-1301 USA
# All MH programs. Note that we have to explicitely append EXEEXT, Makefile
# won't do that.
PROGRAMS_MH
=
\
ali
\
anno
\
comp
\
fmtcheck
\
folder
\
forw
\
inc
\
install-mh
\
mark
\
mhl
\
mhn
\
mhparam
\
mhpath
\
pick
\
refile
\
repl
\
rmf
\
rmm
\
scan
\
send
\
sortm
\
whatnow
\
whom
ali
$(EXEEXT)
\
anno
$(EXEEXT)
\
comp
$(EXEEXT)
\
fmtcheck
$(EXEEXT)
\
folder
$(EXEEXT)
\
forw
$(EXEEXT)
\
inc
$(EXEEXT)
\
install-mh
$(EXEEXT)
\
mark
$(EXEEXT)
\
mhl
$(EXEEXT)
\
mhn
$(EXEEXT)
\
mhparam
$(EXEEXT)
\
mhpath
$(EXEEXT)
\
pick
$(EXEEXT)
\
refile
$(EXEEXT)
\
repl
$(EXEEXT)
\
rmf
$(EXEEXT)
\
rmm
$(EXEEXT)
\
scan
$(EXEEXT)
\
send
$(EXEEXT)
\
sortm
$(EXEEXT)
\
whatnow
$(EXEEXT)
\
whom
$(EXEEXT)
EXTRA_PROGRAMS
=
\
ali
\
...
...
Please
register
or
sign in
to post a comment