mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
Fixed qucsconv build using MXE
This commit is contained in:
parent
b918b3ed49
commit
6bde1134d7
@ -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
|
||||
#
|
||||
|
@ -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
|
||||
|
@ -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 *, ...);
|
||||
|
Loading…
x
Reference in New Issue
Block a user