mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
33e36dc1e8
Usage example: -Dreproducible=true \ -Dsource-date-epoch=$(git log -1 --pretty=%ct)
16 lines
299 B
C
16 lines
299 B
C
/* Version numbers etc; always rebuilt to reflect the latest info */
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include "elinks.h"
|
|
|
|
#include "vernum.h"
|
|
|
|
#ifndef CONFIG_REPRODUCIBLE
|
|
const char *build_date = __DATE__;
|
|
const char *build_time = __TIME__;
|
|
#endif
|
|
const char *build_id = BUILD_ID;
|