Fixed qucsconv build using MXE

This commit is contained in:
Vadim Kuznetsov 2023-06-07 09:42:54 +03:00
parent b918b3ed49
commit 6bde1134d7
3 changed files with 14 additions and 7 deletions

View File

@ -8,6 +8,8 @@ CONFIGURE_FILE (
)
add_compile_definitions(HAVE_CONFIG_H)
set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
#
# Need Flex
#

View File

@ -8,16 +8,16 @@
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
*
* You should have received a copy of the GNU General Public License
* along with this package; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
* Boston, MA 02110-1301, USA.
* Boston, MA 02110-1301, USA.
*
* $Id$
*
@ -26,6 +26,8 @@
#ifndef __CHECK_VCD_H__
#define __CHECK_VCD_H__
#include <sys/cdefs.h>
/* Externalize variables used by the scanner and parser. */
extern int vcd_lineno;
extern FILE * vcd_in;
@ -123,7 +125,7 @@ struct vcd_change {
// A full set of VCD value changes.
struct vcd_changeset {
double t; // time stamp
struct vcd_change * changes; // list of VCD changes
struct vcd_change * changes; // list of VCD changes
#ifndef VCD_FAST
int done; // flag for the checker
#endif

View File

@ -7,16 +7,16 @@
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
*
* You should have received a copy of the GNU General Public License
* along with this package; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
* Boston, MA 02110-1301, USA.
* Boston, MA 02110-1301, USA.
*
* $Id$
*
@ -27,7 +27,10 @@
#define LOG_ERROR 0
#define LOG_STATUS 1
#include <stdio.h>
#include <sys/cdefs.h>
__BEGIN_DECLS
void logprint (int, const char *, ...);