[systemd-commits] 2 commits - configure.ac fixme Makefile.am

Lennart Poettering lennart at kemper.freedesktop.org
Thu Jun 17 14:41:28 PDT 2010


 Makefile.am  |    5 +++++
 configure.ac |   11 ++++++-----
 fixme        |    8 ++++++--
 3 files changed, 17 insertions(+), 7 deletions(-)

New commits:
commit be1a67d9d63bfdd4a5f8ba9cfc804030f10f5833
Author: Lennart Poettering <lennart at poettering.net>
Date:   Thu Jun 17 23:41:21 2010 +0200

    build-sys: pass -fno-strict-aliasing by default

diff --git a/configure.ac b/configure.ac
index f44b493..5671df4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -48,14 +48,12 @@ AC_PROG_GCC_TRADITIONAL
 AC_USE_SYSTEM_EXTENSIONS
 
 CC_CHECK_CFLAGS_APPEND([ \
+        -pipe \
         -Wall \
         -W \
         -Wextra \
-        -pipe \
-        -Wno-long-long \
         -Winline \
         -Wvla \
-        -Wno-overlength-strings \
         -Wundef \
         -Wformat=2 \
         -Wlogical-op \
@@ -78,12 +76,15 @@ CC_CHECK_CFLAGS_APPEND([ \
         -Wcast-align \
         -Wstrict-aliasing=2 \
         -Wwrite-strings \
+        -Wno-long-long \
+        -Wno-overlength-strings \
         -Wno-unused-parameter \
-        -ffast-math \
+        -Wno-missing-field-initializers \
         -Wp,-D_FORTIFY_SOURCE=2 \
+        -ffast-math \
         -fno-common \
         -fdiagnostics-show-option \
-        -Wno-missing-field-initializers])
+        -fno-strict-aliasing])
 
 AC_SEARCH_LIBS([clock_gettime], [rt], [], [AC_MSG_ERROR([*** POSIX RT library not found])])
 AC_SEARCH_LIBS([cap_init], [cap], [], [AC_MSG_ERROR([*** POSIX caps library not found])])
diff --git a/fixme b/fixme
index 6ae447d..7aca3ee 100644
--- a/fixme
+++ b/fixme
@@ -69,6 +69,12 @@
 
 * convenience library
 
+* install must understand templates
+
+* shutdown must be able to do wall
+
+* upstart/initctl fallback in systemctl
+
 Regularly:
 
 * look for close() vs. close_nointr() vs. close_nointr_nofail()
commit 240a3a85bd627b43123f880cfa5a14497b39c6f0
Author: Lennart Poettering <lennart at poettering.net>
Date:   Thu Jun 17 23:33:21 2010 +0200

    doc: install sd-daemon.[ch] as docs

diff --git a/Makefile.am b/Makefile.am
index d5ada98..ca2381d 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -195,6 +195,11 @@ dist_systemunit_DATA += \
 	units/arch/reboot.service
 endif
 
+dist_doc_DATA = \
+	README \
+	src/sd-daemon.h \
+	src/sd-daemon.c
+
 # This is needed because automake is buggy in how it generates the
 # rules for C programs, but not Vala programs.  We therefore can't
 # list the .h files as dependencies if we want make dist to work.
diff --git a/fixme b/fixme
index 1f42b7b..6ae447d 100644
--- a/fixme
+++ b/fixme
@@ -67,8 +67,6 @@
 
 * systemd-sysvinit as package
 
-* docdir für sd-daemon.[ch]
-
 * convenience library
 
 Regularly:


More information about the systemd-commits mailing list