Merge pull request #420 from AdamMajer/compat_headers

Add compatibility headers
This commit is contained in:
Geoff McLane 2016-07-11 00:23:01 +02:00 committed by GitHub
commit 517a2ea72d
3 changed files with 18 additions and 0 deletions

View File

@ -140,6 +140,12 @@ set ( CFILES
set ( HFILES
${INCDIR}/tidyplatform.h ${INCDIR}/tidy.h ${INCDIR}/tidyenum.h
${INCDIR}/tidybuffio.h )
option (TIDY_COMPAT_HEADERS "If set to ON, compatability headers are included" OFF)
if (TIDY_COMPAT_HEADERS)
set ( HFILES ${HFILES} ${INCDIR}/buffio.h ${INCDIR}/platform.h )
endif ()
set ( LIBHFILES
${SRCDIR}/access.h ${SRCDIR}/attrs.h ${SRCDIR}/attrdict.h ${SRCDIR}/charsets.h
${SRCDIR}/clean.h ${SRCDIR}/config.h ${SRCDIR}/entities.h

6
include/buffio.h Normal file
View File

@ -0,0 +1,6 @@
#ifdef __GNUC__
#warning "FIXME: Using compatibility tidy header (buffio.h) that will go away!"
#endif
#include "tidybuffio.h"

6
include/platform.h Normal file
View File

@ -0,0 +1,6 @@
#ifdef __GNUC__
#warning "FIXME: Using compatibility tidy header (platform.h) that will go away!"
#endif
#include "tidyplatform.h"