blob: 87ffdfcdd3513b22180ea1e5d8116edddc4faacb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/*
* C Preprocessor definitions we do *NOT* want to leave defined autoconf.h
* Which are dependent on where the header is being used.
*
* Version: $Id$
*/
/*
* If were building a module we may have local PACKAGE_* defines if
* AC_INIT() was called with full arguments.
*/
#ifdef IS_MODULE
# undef PACKAGE_BUGREPORT
# undef PACKAGE_NAME
# undef PACKAGE_STRING
# undef PACKAGE_TARNAME
# undef PACKAGE_URL
# undef PACKAGE_VERSION
#endif
|