diff options
| author | Alexander Barton <alex@barton.de> | 2003-03-31 19:01:02 +0000 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2003-03-31 19:01:02 +0000 |
| commit | 016e547daa10eaf3351259364959f80e8f28cef1 (patch) | |
| tree | 7b4fbab248883411e0bbdf428b7d9d7a75d74d7b /src/portab | |
| parent | b588eaed024fa067d1afd82749e593e218c77e37 (diff) | |
| download | ngircd-016e547daa10eaf3351259364959f80e8f28cef1.tar.gz ngircd-016e547daa10eaf3351259364959f80e8f28cef1.zip | |
Re-corrected test for CVS version.
Diffstat (limited to 'src/portab')
| -rw-r--r-- | src/portab/portab.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/portab/portab.h b/src/portab/portab.h index c911613c..dc0a4f92 100644 --- a/src/portab/portab.h +++ b/src/portab/portab.h @@ -8,7 +8,7 @@ * (at your option) any later version. * Please read the file COPYING, README and AUTHORS for more information. * - * $Id: portab.h,v 1.14 2003/03/17 01:12:10 alex Exp $ + * $Id: portab.h,v 1.15 2003/03/31 19:01:02 alex Exp $ * * Portability functions and declarations (header for libngbportab). */ @@ -146,6 +146,14 @@ EXTERN size_t strlcpy PARAMS(( CHAR *dst, CONST CHAR *src, size_t size )); EXTERN INT vsnprintf PARAMS(( CHAR *str, size_t count, CONST CHAR *fmt, va_list args )); #endif +#ifndef PACKAGE_NAME +#define PACKAGE_NAME PACKAGE +#endif + +#ifndef PACKAGE_VERSION +#define PACKAGE_VERSION VERSION +#endif + #endif |