Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
710ee5a9
Commit
710ee5a9
authored
Mar 03, 2003
by
Rob Browning
Browse files
*** empty log message ***
parent
b0e44248
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
6 deletions
+17
-6
ChangeLog
ChangeLog
+6
-0
src/config.in
src/config.in
+11
-6
No files found.
ChangeLog
View file @
710ee5a9
2003-03-03 Rob Browning <rlb@defaultvalue.org>
* configure.in: add AC_CHECK_FUNCS for memcmp and memmove.
(AH_BOTTOM): switch tests to prefer memcmp, memset, and memmove
over bzero, bcmp, and bcopy.
2003-02-23 Simon Josefsson <jas@extundo.com>
* Makefile.in (install-arch-indep, uninstall): Add SMTP manual.
...
...
src/config.in
View file @
710ee5a9
...
...
@@ -343,6 +343,9 @@ Boston, MA 02111-1307, USA. */
/* Define to 1 if you have the `mbsinit' function. */
#undef HAVE_MBSINIT
/* Define to 1 if you have the `memcmp' function. */
#undef HAVE_MEMCMP
/* Define to 1 if you have the `memmove' function. */
#undef HAVE_MEMMOVE
...
...
@@ -1010,14 +1013,16 @@ typedef unsigned size_t;
# endif
#endif
#ifndef HAVE_BCOPY
#define bcopy(a,b,s) memcpy (b,a,s)
/* avoid deprecated functions */
#if HAVE_MEMCPY
# define bcopy(a,b,s) memcpy (b,a,s)
#endif
#if
ndef
HAVE_
BZERO
#define bzero(a,s) memset (a,0,s)
#if HAVE_
MEMSET
#
define bzero(a,s) memset (a,0,s)
#endif
#ifndef HAVE_BCMP
#define BCMP memcmp
#if HAVE_MEMCMP
# define BCMP memcmp
# define bcmp memcmp
#endif
#endif /* EMACS_CONFIG_H */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment