summaryrefslogtreecommitdiff
path: root/.gitignore
diff options
context:
space:
mode:
authorDavid Zero <zero@cpp.edu>2016-12-02 04:37:23 -0800
committerDavid Zero <zero@cpp.edu>2017-01-04 13:44:39 -0800
commitf3469070fe899e8e4fd88665386a55bad9f77cd8 (patch)
treec24743d266d3a8593792ef3e8661006cb283368a /.gitignore
parent535b8238fd191710e1e8864f302fba5a02f52b1d (diff)
Portability fixes
- CFLAG gnu99 was changed to c99. - CXXFLAG c++98 was changed to c++11. - CFLAG -pedantic-errors was added so that non-ISO C now throws errors. - _XOPEN_SOURCE feature test macro added and set to 600 to expose SUSv3 and c99 definitions in modules that required them. - Fixed tests (and bootstrap daemon logging) that were failing due to the altered build flags. - Avoid string suffix misinterpretation; explicit narrowing conversion. - Misc. additions to .gitignore to make sure build artifacts don't wind up in version control.
Diffstat (limited to '.gitignore')
-rw-r--r--.gitignore8
1 files changed, 6 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore
index 2a82d308..14dcced7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -21,6 +21,9 @@ install_manifest.txt
21tags 21tags
22Makefile.in 22Makefile.in
23CMakeLists.txt.user 23CMakeLists.txt.user
24DartConfiguration.tcl
25CTestTestfile.cmake
26*.pc
24 27
25# Testing 28# Testing
26testing/data 29testing/data
@@ -40,6 +43,9 @@ testing/data
40*.app 43*.app
41*.la 44*.la
42 45
46# Libraries
47*.so
48
43# Misc (?) 49# Misc (?)
44m4/* 50m4/*
45configure 51configure
@@ -51,8 +57,6 @@ config.log
51config.status 57config.status
52stamp-h1 58stamp-h1
53autom4te.cache 59autom4te.cache
54libtoxcore.pc
55libtoxav.pc
56libtool 60libtool
57.deps 61.deps
58.libs 62.libs