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
3384aba3
Commit
3384aba3
authored
Feb 09, 2015
by
Orion Poplawski
Committed by
Mike Gabriel
Feb 09, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Honour compiler/linker option flags.
026_nxcompext_honour-optflags.full.patch 026_nxcomp_honour-optflags.full+lite.patch 026_nxcompshad_honour-optflags.full.patch
parent
78efa8bf
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
8 additions
and
76 deletions
+8
-76
026_nxcomp_honour-optflags.full+lite.patch
debian/patches/026_nxcomp_honour-optflags.full+lite.patch
+0
-31
026_nxcompext_honour-optflags.full.patch
debian/patches/026_nxcompext_honour-optflags.full.patch
+0
-17
026_nxcompshad_honour-optflags.full.patch
debian/patches/026_nxcompshad_honour-optflags.full.patch
+0
-17
series
debian/patches/series
+0
-3
configure.in
nxcomp/configure.in
+2
-2
configure.in
nxcompext/configure.in
+2
-2
configure.in
nxcompshad/configure.in
+2
-2
configure.in
nxproxy/configure.in
+2
-2
No files found.
debian/patches/026_nxcomp_honour-optflags.full+lite.patch
deleted
100644 → 0
View file @
78efa8bf
Description: Honour compiler/linker option flags
Forwarded: pending
Author: Orion Poplawski <orion@cora.nwra.com>
diff -up a/nxcomp/configure.in b/nxcomp/configure.in
--- a/nxcomp/configure.in 2012-11-10 06:40:55.000000000 -0700
+++ b/nxcomp/configure.in 2012-12-11 13:13:19.390229196 -0700
@@ -7,8 +7,8 @@ AC_PREREQ(2.13)
dnl Set our default compilation flags.
-CXXFLAGS="-O3 -fno-rtti -fno-exceptions"
-CFLAGS="-O3"
+CXXFLAGS="$CXXFLAGS -O3 -fno-rtti -fno-exceptions"
+CFLAGS="$CFLAGS -O3"
dnl Reset default linking directives.
diff -up a/nxproxy/configure.in b/nxproxy/configure.in
--- a/nxproxy/configure.in 2012-11-10 06:40:55.000000000 -0700
+++ b/nxproxy/configure.in 2012-12-11 13:16:19.955301045 -0700
@@ -7,8 +7,8 @@ AC_PREREQ(2.13)
dnl Reset default compilation flags.
-CXXFLAGS="-O3"
-CPPFLAGS="-O3"
+CXXFLAGS="$CXXFLAGS -O3"
+CPPFLAGS="$CPPFLAGS -O3"
dnl Prefer headers and libraries from nx-X11 if present.
debian/patches/026_nxcompext_honour-optflags.full.patch
deleted
100644 → 0
View file @
78efa8bf
Description: Honour compiler/linker option flags
Forwarded: pending
Author: Orion Poplawski <orion@cora.nwra.com>
diff -up a/nxcompext/configure.in b/nxcompext/configure.in
--- a/nxcompext/configure.in 2012-11-10 06:40:55.000000000 -0700
+++ b/nxcompext/configure.in 2012-12-11 13:15:26.712576302 -0700
@@ -7,8 +7,8 @@ AC_PREREQ(2.13)
dnl Reset default compilation flags.
-CXXFLAGS="-O3"
-CFLAGS="-O3"
+CXXFLAGS="$CXXFLAGS -O3"
+CFLAGS="$CFLAGS -O3"
dnl Reset default linking directives.
debian/patches/026_nxcompshad_honour-optflags.full.patch
deleted
100644 → 0
View file @
78efa8bf
Description: Honour compiler/linker option flags
Forwarded: pending
Author: Orion Poplawski <orion@cora.nwra.com>
diff -up a/nxcompshad/configure.in b/nxcompshad/configure.in
--- a/nxcompshad/configure.in 2012-11-10 06:40:56.000000000 -0700
+++ b/nxcompshad/configure.in 2012-12-11 13:13:25.915196300 -0700
@@ -7,8 +7,8 @@ AC_PREREQ(2.13)
dnl Reset default compilation flags.
-CXXFLAGS="-O3"
-CPPFLAGS="-O3"
+CXXFLAGS="$CXXFLAGS -O3"
+CPPFLAGS="$CPPFLAGS -O3"
dnl Reset default linking directives.
debian/patches/series
View file @
3384aba3
026_nxcompext_honour-optflags.full.patch
026_nxcomp_honour-optflags.full+lite.patch
026_nxcompshad_honour-optflags.full.patch
027_nxcomp_abstract-X11-socket.full+lite.patch
028_nx-X11_abstract-kernel-sockets.full.patch
029_nxcomp_ppc64.full+lite.patch
...
...
nxcomp/configure.in
View file @
3384aba3
...
...
@@ -7,8 +7,8 @@ AC_PREREQ(2.13)
dnl Set our default compilation flags.
CXXFLAGS="-O3 -fno-rtti -fno-exceptions"
CFLAGS="-O3"
CXXFLAGS="
$CXXFLAGS
-O3 -fno-rtti -fno-exceptions"
CFLAGS="
$CFLAGS
-O3"
dnl Reset default linking directives.
...
...
nxcompext/configure.in
View file @
3384aba3
...
...
@@ -7,8 +7,8 @@ AC_PREREQ(2.13)
dnl Reset default compilation flags.
CXXFLAGS="-O3"
CFLAGS="-O3"
CXXFLAGS="
$CXXFLAGS
-O3"
CFLAGS="
$CFLAGS
-O3"
dnl Reset default linking directives.
...
...
nxcompshad/configure.in
View file @
3384aba3
...
...
@@ -7,8 +7,8 @@ AC_PREREQ(2.13)
dnl Reset default compilation flags.
CXXFLAGS="-O3"
CPPFLAGS="-O3"
CXXFLAGS="
$CXXFLAGS
-O3"
CPPFLAGS="
$CPPFLAGS
-O3"
dnl Reset default linking directives.
...
...
nxproxy/configure.in
View file @
3384aba3
...
...
@@ -7,8 +7,8 @@ AC_PREREQ(2.13)
dnl Reset default compilation flags.
CXXFLAGS="-O3"
CPPFLAGS="-O3"
CXXFLAGS="
$CXXFLAGS
-O3"
CPPFLAGS="
$CPPFLAGS
-O3"
dnl Prefer headers and libraries from nx-X11 if present.
...
...
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