aboutsummaryrefslogtreecommitdiff
path: root/src/config.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2011-04-06 14:14:01 +0000
committerMike Buland <eichlan@xagasoft.com>2011-04-06 14:14:01 +0000
commit9f440fb38b36f2d602710695dd53ad9c80e84c2c (patch)
treeb5b1fb4dec3fd4433c564f8b69bc155782e2b00b /src/config.h
parent5fdf49f609a658161f482b406590531d4941ac46 (diff)
downloadlibbu++-9f440fb38b36f2d602710695dd53ad9c80e84c2c.tar.gz
libbu++-9f440fb38b36f2d602710695dd53ad9c80e84c2c.tar.bz2
libbu++-9f440fb38b36f2d602710695dd53ad9c80e84c2c.tar.xz
libbu++-9f440fb38b36f2d602710695dd53ad9c80e84c2c.zip
Libbu++ generates it's own system specific config file as well as a fancy
version header file all programs can now use to determine which version, api version, and svn revision of libbu++ they're linking against. It doesn't quite work for windows yet, but it will, eventually.
Diffstat (limited to 'src/config.h')
-rw-r--r--src/config.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/config.h b/src/config.h
index ce954de..260d406 100644
--- a/src/config.h
+++ b/src/config.h
@@ -17,7 +17,11 @@
17 17
18#include "bu/extratypes.h" 18#include "bu/extratypes.h"
19 19
20// Later if we need autoconfig stuff, here's where it'll go. 20#ifndef WIN32
21// #include "bu/autoconfig.h" 21#include "bu/autoconfig.h"
22#else
23#warning Cannot generate an autoinclude file for windows yet
24#endif
25
22 26
23#endif 27#endif