remove the ENABLE_STRNATPMPERR ifdefs to see if that'll make hudson happy

This commit is contained in:
Charles Kerr 2008-07-15 17:09:10 +00:00
parent 5739207640
commit 2705db2b6a
3 changed files with 0 additions and 6 deletions

View File

@ -1,7 +1,5 @@
noinst_LIBRARIES = libnatpmp.a
AM_CPPFLAGS = -DENABLE_STRNATPMPERR
libnatpmp_a_SOURCES = \
getgateway.c \
natpmp.c

View File

@ -267,7 +267,6 @@ int readnatpmpresponseorretry(natpmp_t * p, natpmpresp_t * response)
return n;
}
#ifdef ENABLE_STRNATPMPERR
const char * strnatpmperr(int r)
{
const char * s;
@ -335,5 +334,4 @@ const char * strnatpmperr(int r)
}
return s;
}
#endif

View File

@ -179,8 +179,6 @@ LIBSPEC int getnatpmprequesttimeout(natpmp_t * p, struct timeval * timeout);
* NATPMP_ERR_UNDEFINEDERROR */
LIBSPEC int readnatpmpresponseorretry(natpmp_t * p, natpmpresp_t * response);
#ifdef ENABLE_STRNATPMPERR
LIBSPEC const char * strnatpmperr(int t);
#endif
#endif