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
5c39e227
...
5c39e22731eaca28a2197c7c0526c242feb3370b
authored
2003-05-24 23:59:23 +0000
by
Alain Magloire
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
ChangeLog: updated.
configure.ac : Check "long long" and "long double"
1 parent
6efca0a2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
ChangeLog
configure.ac
ChangeLog
View file @
5c39e22
2003
-
05
-
24
Alain
Magloire
*
snprintf
.
c
:
Change
to
be
under
LGPL
not
GPL
.
*
configure
.
ac
:
Check
for
"long long"
and
"long double"
.
*
lib
/
snprintf
.
c
:
Change
to
be
under
LGPL
not
GPL
.
(
vsnprintf
)
:
implement
"%lld"
,
"%qd"
,
"%Lg"
*
snprintf
.
h
:
New
macro
LONG_LONG
,
LONG_DOUBLE
*
lib
/
snprintf
.
h
:
New
macro
LONG_LONG
,
LONG_DOUBLE
default
to
long
long
,
long
double
.
2003
-
05
-
20
Sergey
Poznyakoff
...
...
configure.ac
View file @
5c39e22
...
...
@@ -276,6 +276,8 @@ AC_CHECK_TYPE(socklen_t, , AC_DEFINE(socklen_t, int, [Define to int if <sys/type
# include <socket.h>
#endif
])
AC_CHECK_TYPE(long long, , AC_DEFINE(LONG_LONG, long, [Define to long if compiler does not support]))
AC_CHECK_TYPE(long double, , AC_DEFINE(LONG_DOUBLE, double, [Define to double if compiler does not support]))
AC_STRUCT_TM
AC_CHECK_MEMBERS([struct tm.tm_zone, struct tm.tm_gmtoff, struct tm.tm_isdst],
...
...
Please
register
or
sign in
to post a comment