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
cc1ec003
...
cc1ec00351c3435ba953e2356079c48f059de0b3
authored
2002-02-15 20:54:14 +0000
by
Jeff Bailey
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Fix AC_REPLACE_FUNCS to generate libtool objects
1 parent
a9f4408a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
1 deletions
ChangeLog
configure.in
lib/Makefile.am
ChangeLog
View file @
cc1ec00
2002
-
02
-
15
Jeff
Bailey
<
jbailey
@outpost
.
dnsalias
.
org
>
*
configure
.
in
:
Hack
to
make
AC_REPLACE_FUNCS
refer
to
.
lo
instead
of
.
o
*
lib
/
Makefile
.
am
:
Use
libtool
objects
instead
.
2002
-
02
-
14
Sergey
Poznyakoff
*
mail
.
local
/
main
.
c
:
Removed
confusing
print_help
()
...
...
configure.in
View file @
cc1ec00
...
...
@@ -335,6 +335,13 @@ dnl get sysconfdir expanded.
CPPFLAGS="$CPPFLAGS -DSYSCONFDIR=\\\"\$(sysconfdir)\\\""
dnl This is really UGLY! This works around a libtool/autoconf bug that only
dnl allows LIBOBJS to contain .o, not .lo for libtool.
LTLIBOBJS=`echo "$LIBOBJS" | sed 's/\.[^.]* /.lo /g;s/\.[^.]*$/.lo/'`
AC_SUBST(LTLIBOBJS)
LTALLOCA=`echo "$ALLOCA" | sed 's/\.[^.]* /.lo /g;s/\.[^.]*$/.lo/'`
AC_SUBST(LTALLOCA)
dnl Output Makefiles
AC_OUTPUT(Makefile mailutils.spec include/Makefile include/mailutils/Makefile
m4/Makefile doc/Makefile doc/man/Makefile doc/rfc/Makefile
...
...
lib/Makefile.am
View file @
cc1ec00
...
...
@@ -15,5 +15,5 @@ EXTRA_DIST = alloca.c fnmatch.c fgetpwent.c getpass.c malloc.c obstack.c \
noinst_HEADERS
=
argcv.h error.h fnmatch.h getline.h getopt.h md5.h mu_dbm.h
\
regex.h snprintf.h xalloc.h xstrtol.h obstack.h mu_argp.h
libmailutils_la_LIBADD
=
@L
IBOBJS@ @
ALLOCA@
libmailutils_la_LIBADD
=
@L
TLIBOBJS@ @LT
ALLOCA@
...
...
Please
register
or
sign in
to post a comment