-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Patch 0001: Add Eclipse project files to the .gitignore
Some of us use Eclipse as a code editor and would prefer not to see
the project files in 'git status'

Patch 0002: Fix contrib build macros to display warnings
There was an inconsistency with how the warnings were specified and
how they were consumed by the macros. The result was that warnings were
hidden.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.14 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/

iEYEARECAAYFAlIWHWgACgkQeiVVYja6o6M3SwCfXSKUgaT0H5huoWYAUWM+lkDn
680An2FoKu5kxFD5PoL8nnOMU5IcSMhE
=T734
-----END PGP SIGNATURE-----
>From 5e74a3dc5a7df801ce39ae6f92be8b7d138681ad Mon Sep 17 00:00:00 2001
From: Stephen Gallagher <[email protected]>
Date: Thu, 15 Aug 2013 18:48:13 -0400
Subject: [PATCH 1/7] gitignore: Add Eclipse project files to ignore list

---
 .gitignore | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/.gitignore b/.gitignore
index f5b393add203d01c8428ac4192cc2a478bcb8a6e..de6c573d1949156bfe4b2143f22416c41b092ad7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -16,6 +16,9 @@ Makefile.in.in
 *.l[oa]
 *.py[oc]
 *.pydevproject
+*.project
+*.cproject
+*.settings
 .deps
 .libs
 *.html
-- 
1.8.3.1

>From fa7c7a841f2bca4fea8a1634560ed51266c52cc2 Mon Sep 17 00:00:00 2001
From: Stephen Gallagher <[email protected]>
Date: Thu, 22 Aug 2013 09:47:43 -0400
Subject: [PATCH 2/7] BUILD: Fix contrib build macros to display warnings

There was an inconsistency with how the warnings were specified and
how they were consumed by the macros. The result was that warnings were
hidden.
---
 contrib/fedora/bashrc_sssd | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/contrib/fedora/bashrc_sssd b/contrib/fedora/bashrc_sssd
index 2b5ba15a7b752da3d52f3b47dff1ada960b1cdb8..d0e238f34086921d57c578b177cce7869fba1ba3 100644
--- a/contrib/fedora/bashrc_sssd
+++ b/contrib/fedora/bashrc_sssd
@@ -62,11 +62,11 @@ alias reconfig='autoreconf -if \
 
 # Set the list of warnings that you want to detect (and in the case of remake
 # and chmake want to treat as errors)
-WARNINGS='-Wall \
-          -Wextra \
-          -Wno-unused-parameter \
-          -Wno-sign-compare \
-          -Wformat-security'
+SSS_WARNINGS='-Wall \
+              -Wextra \
+              -Wno-unused-parameter \
+              -Wno-sign-compare \
+              -Wformat-security'
 
 # Build (or finish building) all objects and then run the build-tests against
 # them. This builds with optimizations turned off and GDB debugging symbols.
@@ -81,7 +81,7 @@ alias remake='make clean > /dev/null && chmake'
 # Clean the build directory and rebuild all objects, hiding most of the build
 # output except for warnings and errors. This builds with standard CFLAGS.
 alias warn='make clean >/dev/null \
-              && make CFLAGS+="$WARNINGS" -j$PROCESSORS tests > /dev/null'
+              && make CFLAGS+="$SSS_WARNINGS" -j$PROCESSORS tests > /dev/null'
 
 # Install the built sources to the current system, cleaning up the LDB modules
 # and making sure that the NSS and PAM modules have the right SELinux context.
-- 
1.8.3.1

Attachment: 0001-gitignore-Add-Eclipse-project-files-to-ignore-list.patch.sig
Description: PGP signature

Attachment: 0002-BUILD-Fix-contrib-build-macros-to-display-warnings.patch.sig
Description: PGP signature

_______________________________________________
sssd-devel mailing list
[email protected]
https://lists.fedorahosted.org/mailman/listinfo/sssd-devel

Reply via email to