mirror of
https://github.com/fwbuilder/fwbuilder
synced 2026-03-22 03:07:20 +01:00
patch by Vadim Jukov <persgray@gmail.com> OpenBSD port maintainer
This commit is contained in:
parent
3646375e76
commit
6c61862e0e
@ -61,6 +61,7 @@
|
||||
#undef HAVE_PTY_H
|
||||
#undef HAVE_LIBUTIL_H
|
||||
#undef HAVE_UTIL_H
|
||||
#undef HAVE_UNISTD_H
|
||||
|
||||
#ifdef HAVE_GETOPT_H
|
||||
# define HAVE_DECL_GETOPT HAVE_GETOPT_H
|
||||
|
||||
@ -3,6 +3,9 @@
|
||||
* FWCmdAddObject.cpp (FWCmdAddObject::redo): fixed #1468 Open new
|
||||
object in the editor after it has been created.
|
||||
|
||||
* applied patch by Vadim Jukov <persgray@gmail.com>, maintainer of
|
||||
OpenBSD port. Patch fixes compile issues on OpenBSD
|
||||
|
||||
2010-05-22 yalovoy <yalovoy@gmail.com>
|
||||
|
||||
* fixes #1463 Always show branch rule set name with action "Branch"
|
||||
|
||||
@ -19,6 +19,9 @@
|
||||
#include <string>
|
||||
|
||||
#include <sys/types.h>
|
||||
#ifdef HAVE_UNISTD_H
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
|
||||
#include <QDebug>
|
||||
#include <QString>
|
||||
|
||||
@ -26,8 +26,6 @@
|
||||
#ifndef __FWBSETTINGS_H_
|
||||
#define __FWBSETTINGS_H_
|
||||
|
||||
#include "fwbuilder/FWObject.h"
|
||||
|
||||
|
||||
#include <qsettings.h>
|
||||
#include <qrect.h>
|
||||
@ -38,6 +36,8 @@
|
||||
|
||||
#define SETTINGS_PATH_PREFIX "/4.0"
|
||||
|
||||
#include <fwbuilder/FWObject.h>
|
||||
|
||||
class QWidget;
|
||||
|
||||
/*
|
||||
|
||||
@ -39,7 +39,6 @@
|
||||
#include <termios.h>
|
||||
#include <time.h>
|
||||
#include <sys/select.h>
|
||||
#include <utmpx.h>
|
||||
|
||||
#ifdef HAVE_SIGNAL_H
|
||||
#include <signal.h>
|
||||
|
||||
@ -14,10 +14,17 @@
|
||||
* o The terms of NetCitadel End User License Agreement
|
||||
*/
|
||||
|
||||
#include "../../../config.h"
|
||||
#include "../../../build_num"
|
||||
|
||||
#include <iostream>
|
||||
#include <fstream>
|
||||
#include <sys/stat.h>
|
||||
|
||||
#ifdef HAVE_UNISTD_H
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
|
||||
#ifdef _WIN32
|
||||
#include <windows.h>
|
||||
#include <direct.h>
|
||||
@ -35,9 +42,6 @@
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#include "../../../config.h"
|
||||
#include "../../../build_num"
|
||||
|
||||
#include "fwbuilder/FWException.h"
|
||||
|
||||
#include "fwtransfer/TransferDevice.h"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user