[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
_AC_LIBOBJ fix
From: |
Derek R. Price |
Subject: |
_AC_LIBOBJ fix |
Date: |
Tue, 06 Feb 2001 15:41:22 -0500 |
_AC_LIBOBJ wasn't tacking the '.c' extension onto file names before
calling AC_LIBSOURCE. Patch attached.
ChangeLog:
* acgeneral.m4 (_AC_LIBOBJ): call AC_LIBSOURCE with '.c'
extension
appended to function name
Derek
--
Derek Price CVS Solutions Architect ( http://CVSHome.org )
mailto:address@hidden OpenAvenue ( http://OpenAvenue.com )
--
Southern DOS: Y'all reckon? (yep/Nope)
Index: ChangeLog
===================================================================
RCS file: /cvs/autoconf/ChangeLog,v
retrieving revision 1.1280
diff -u -r1.1280 ChangeLog
--- ChangeLog 2001/02/06 15:11:50 1.1280
+++ ChangeLog 2001/02/06 19:40:06
@@ -1,3 +1,8 @@
+2001-02-06 Derek Price <address@hidden>
+
+ * acgeneral.m4 (_AC_LIBOBJ): call AC_LIBSOURCE with '.c' extension
+ appended to function name
+
2001-02-06 Akim Demaille <address@hidden>
* acgeneral.m4 (_AC_RUN_LOG, _AC_RUN_LOG_STDERR, AC_RUN_LOG): New.
@@ -6,8 +11,8 @@
2001-02-05 Derek Price <address@hidden>
- * autoheader.sh: Only set config_h for the first call to
- AC_CONFIG_HEADERS.
+ * autoheader.sh: only set config_h for the first call to
+ AC_CONFIG_HEADERS
2001-02-05 Jim Meyering <address@hidden>
Index: acgeneral.m4
===================================================================
RCS file: /cvs/autoconf/acgeneral.m4,v
retrieving revision 1.692
diff -u -r1.692 acgeneral.m4
--- acgeneral.m4 2001/02/06 15:11:51 1.692
+++ acgeneral.m4 2001/02/06 19:40:08
@@ -3020,7 +3020,7 @@
# We don't use AC_SUBST/2 because it forces an unneeded eol.
m4_define([_AC_LIBOBJ],
[AS_LITERAL_IF([$1],
- [AC_LIBSOURCE([$1])],
+ [AC_LIBSOURCE([$1.c])],
[$2])dnl
AC_SUBST([LIBOBJS])dnl
LIBOBJS="$LIBOBJS $1.$ac_objext"])
- _AC_LIBOBJ fix,
Derek R. Price <=