- Added Linux support for the CMakeLists. This meant downgrading them for

CMake 2.4, since the distros don't seem to consider 2.6 stable yet.
  As a bonus, GTK+ is no longer a required dependency; now it's optional.
- Made dehsupp ignore CR characters, so it doesn't spew warnings on Linux.



SVN r1092 (trunk)
This commit is contained in:
Randy Heit 2008-07-25 01:37:44 +00:00
commit de5d4715c2
24 changed files with 106 additions and 248 deletions

View file

@ -1,5 +1,4 @@
cmake_minimum_required( VERSION 2.4 )
include( CheckIncludeFiles )
include( CheckFunctionExists )
include( CheckTypeSize )
@ -9,11 +8,6 @@ set( PACKAGE_VERSION 0.12.3 )
set( PACKAGE_STRING "re2c 0.12.3" )
set( PACKAGE_BUGREPORT "re2c-general@lists.sourceforge.net" )
set( PACKAGE ${PACKAGE_NAME} )
set( VERSION ${PACKAGE_VERSION} )
CHECK_INCLUDE_FILES( unistd.h HAVE_UNISTD_H )
CHECK_FUNCTION_EXISTS( strdup HAVE_STRDUP )
CHECK_FUNCTION_EXISTS( strndup HAVE_STRNDUP )