Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nx-libs
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
dimbor
nx-libs
Commits
b3496d0a
Commit
b3496d0a
authored
Feb 09, 2015
by
Marcelo Boveto Shima
Committed by
Mike Gabriel
Feb 09, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gcc43 fix (003_nxcompshad_gcc43.full.patch)
Use builtin includes to build with gcc43.
parent
3b4a9159
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
38 deletions
+4
-38
003_nxcompshad_gcc43.full.patch
debian/patches/003_nxcompshad_gcc43.full.patch
+0
-33
series
debian/patches/series
+0
-1
Logger.h
nxcompshad/Logger.h
+2
-2
Misc.h
nxcompshad/Misc.h
+2
-2
No files found.
debian/patches/003_nxcompshad_gcc43.full.patch
deleted
100644 → 0
View file @
3b4a9159
Description: gcc43 fix
Use builtin includes to build with gcc43.
.
Originally contributed by Marcelo Boveto Shima <marceloshima@gmail.com>.
Forwarded: pending...
Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de>
Last-Update: 2011-12-31
--- a/nxcompshad/Logger.h
+++ b/nxcompshad/Logger.h
@@ -18,8 +18,8 @@
#ifndef Logger_H
#define Logger_H
-#include <errno.h>
-#include <stdarg.h>
+#include <cerrno>
+#include <cstdarg>
//
// Error handling macros.
--- a/nxcompshad/Misc.h
+++ b/nxcompshad/Misc.h
@@ -20,8 +20,8 @@
#include <iostream>
-#include <errno.h>
-#include <string.h>
+#include <cerrno>
+#include <cstring>
using namespace std;
debian/patches/series
View file @
b3496d0a
003_nxcompshad_gcc43.full.patch
004_nx-X11_fix-nxcompshad-build.full.patch
005_nxcomp_gcc43.full+lite.patch
006_nxcomp_libpng15.full+lite.patch
...
...
nxcompshad/Logger.h
View file @
b3496d0a
...
...
@@ -18,8 +18,8 @@
#ifndef Logger_H
#define Logger_H
#include <
errno.h
>
#include <
stdarg.h
>
#include <
cerrno
>
#include <
cstdarg
>
//
// Error handling macros.
...
...
nxcompshad/Misc.h
View file @
b3496d0a
...
...
@@ -20,8 +20,8 @@
#include <iostream>
#include <
errno.h
>
#include <
string.h
>
#include <
cerrno
>
#include <
cstring
>
using
namespace
std
;
...
...
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