Mercurial > pidgin
annotate libfaim/aim_meta.c @ 324:6fb76461870a
[gaim-migrate @ 334]
whoops
committer: Tailor Script <tailor@pidgin.im>
author | Eric Warmenhoven <eric@warmenhoven.org> |
---|---|
date | Fri, 02 Jun 2000 21:33:01 +0000 |
parents | 0f14e6d8a51b |
children | b402a23f35df |
rev | line source |
---|---|
282 | 1 /* |
2 * Administrative things for libfaim. | |
3 * | |
4 * Changes by EWarmenhoven Wed May 31 00:31:52 UTC 2000 | |
5 * - I don't wanna use aim_buildcode! :) I'll put the things that get made | |
6 * by the .sh file into Makefile.am and hopefully that'll work better. | |
7 * | |
8 */ | |
9 | |
10 #include <faim/aim.h> | |
11 /* #include <aim_buildcode.h> /* generated by mkbuildinfo.sh */ | |
12 | |
283
0f14e6d8a51b
[gaim-migrate @ 293]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
282
diff
changeset
|
13 char *aim_getbuilddate(void) |
282 | 14 { |
15 return AIM_BUILDDATE; | |
16 } | |
17 | |
283
0f14e6d8a51b
[gaim-migrate @ 293]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
282
diff
changeset
|
18 char *aim_getbuildtime(void) |
282 | 19 { |
20 return AIM_BUILDTIME; | |
21 } | |
22 | |
23 char *aim_getbuildstring(void) | |
24 { | |
25 static char string[100]; | |
26 | |
283
0f14e6d8a51b
[gaim-migrate @ 293]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
282
diff
changeset
|
27 snprintf(string, 99, "%d.%d.%d-%s%s", |
282 | 28 FAIM_VERSION_MAJOR, |
29 FAIM_VERSION_MINOR, | |
30 FAIM_VERSION_MINORMINOR, | |
31 aim_getbuilddate(), | |
32 aim_getbuildtime()); | |
33 return string; | |
34 } | |
35 |