Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
doxverilog
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
doxverilog
Commits
ffa8abdc
Commit
ffa8abdc
authored
11 years ago
by
Dimitri van Heesch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 704971 - Can't build with MinGW
parent
fe44a7f4
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
13 additions
and
7 deletions
+13
-7
PLATFORMS
PLATFORMS
+1
-0
doxywizard.cpp
addon/doxywizard/doxywizard.cpp
+1
-1
configure
configure
+3
-0
install.doc
doc/install.doc
+3
-2
qcstring.h
qtools/qcstring.h
+1
-1
qfileinfo_win32.cpp
qtools/qfileinfo_win32.cpp
+2
-1
doxygen.pro.in
src/doxygen.pro.in
+1
-1
objcache.cpp
src/objcache.cpp
+1
-1
No files found.
PLATFORMS
View file @
ffa8abdc
...
...
@@ -29,3 +29,4 @@ sunos-g++
ultrix-g++
unixware-g++
win32-g++
win32-mingw
This diff is collapsed.
Click to expand it.
addon/doxywizard/doxywizard.cpp
View file @
ffa8abdc
...
...
@@ -525,7 +525,7 @@ void MainWindow::showHtmlOutput()
// TODO: the following doesn't seem to work with IE
#ifdef WIN32
//QString indexUrl(QString::fromAscii("file:///"));
ShellExecute
(
NULL
,
L"open"
,
fi
.
absoluteFilePath
().
utf16
(),
NULL
,
NULL
,
SW_SHOWNORMAL
);
ShellExecute
(
NULL
,
L"open"
,
(
LPCWSTR
)
fi
.
absoluteFilePath
().
utf16
(),
NULL
,
NULL
,
SW_SHOWNORMAL
);
#else
QString
indexUrl
(
QString
::
fromAscii
(
"file://"
));
indexUrl
+=
fi
.
absoluteFilePath
();
...
...
This diff is collapsed.
Click to expand it.
configure
View file @
ffa8abdc
...
...
@@ -266,6 +266,9 @@ if test -z "$f_platform"; then
Cygwin:
*
|
CYGWIN
*
)
f_platform
=
win32-g++
;;
MINGW32_NT
*
)
f_platform
=
win32-mingw
;;
*
MiNT:
*
)
f_platform
=
m68k-atari-mint-g++
;;
...
...
This diff is collapsed.
Click to expand it.
doc/install.doc
View file @
ffa8abdc
...
...
@@ -29,9 +29,10 @@ If you downloaded the source distribution, you need at least the
following to build the executable:
<ul>
<li>The <a href="ftp://prep.ai.mit.edu/pub/gnu/">GNU</a> tools
\c flex, \c bison and <code>GNU make</code>, and \c strip
\c flex, \c bison
, \c libiconv
and <code>GNU make</code>, and \c strip
\addindex flex
\addindex bison
\addindex libiconv
\addindex make
\addindex strip
<li>In order to generate a \c Makefile for your platform, you need
...
...
@@ -48,7 +49,7 @@ tools should be installed.
<li>Qt Software's GUI toolkit
<a href="http://qt-project.org/">Qt</A>
\addindex Qt
version 4.3 or higher.
version 4.3 or higher
(but currently, Qt 5.x is not supported)
.
This is needed to build the GUI front-end doxywizard.
<li>A \f$\mbox{\LaTeX}\f$ distribution: for instance
<a href="http://www.tug.org/interest.html#free">TeX Live</a>
...
...
This diff is collapsed.
Click to expand it.
qtools/qcstring.h
View file @
ffa8abdc
...
...
@@ -46,7 +46,7 @@
#include <stdlib.h>
#include <string.h>
#if !defined(_OS_WIN32_)
#if !defined(_OS_WIN32_)
|| defined(__MINGW32__)
#include <stdint.h>
#endif
...
...
This diff is collapsed.
Click to expand it.
qtools/qfileinfo_win32.cpp
View file @
ffa8abdc
...
...
@@ -266,7 +266,8 @@ void QFileInfo::doStat() const
}
#else
QString
file
=
fn
;
reslashify
(
QDir
::
cleanDirPath
(
file
));
file
=
QDir
::
cleanDirPath
(
file
);
reslashify
(
file
);
#ifdef QT_LARGEFILE_SUPPORT
if
(
_wstati64
(
(
wchar_t
*
)
file
.
ucs2
(),
b
)
==
-
1
)
{
#else
...
...
This diff is collapsed.
Click to expand it.
src/doxygen.pro.in
View file @
ffa8abdc
...
...
@@ -20,7 +20,7 @@ HEADERS = doxygen.h
SOURCES = main.cpp
unix:LIBS += -L../lib -ldoxygen -ldoxycfg -lqtools -lmd5 -lpthread %%SQLITE3_LIBS%% %%LIBCLANG_LIBS%%
win32:INCLUDEPATH += .
win32-mingw:LIBS += -L../lib -ldoxygen -ldoxycfg -lqtools -lmd5 -lpthread %%SQLITE3_LIBS%% %%LIBCLANG_LIBS%%
win32-mingw:LIBS += -L../lib -ldoxygen -ldoxycfg -lqtools -lmd5 -lpthread
-llibiconv -lole32
%%SQLITE3_LIBS%% %%LIBCLANG_LIBS%%
win32-msvc:LIBS += qtools.lib md5.lib doxygen.lib doxycfg.lib shell32.lib iconv.lib
win32-msvc:TMAKE_LFLAGS += /LIBPATH:..\lib
win32-borland:LIBS += qtools.lib md5.lib doxygen.lib doxycfg.lib shell32.lib iconv.lib
...
...
This diff is collapsed.
Click to expand it.
src/objcache.cpp
View file @
ffa8abdc
...
...
@@ -19,7 +19,7 @@
#include <assert.h>
#include <qglobal.h>
#include "objcache.h"
#if !defined(_OS_WIN32_)
#if !defined(_OS_WIN32_)
|| defined(__MINGW32__)
#include <stdint.h>
#endif
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment