+2008-03-11 Guillem Jover <guillem@debian.org>
+
+ * lib/Makefile.am (libdpkg_a_SOURCES): Add 'dpkg-def.h'.
+ * lib/dpkg.h: Include 'dpkg-def.h'.
+ (CONSTANT, PRINTFFORMAT, NONRETURNING, UNUSED): Move defninitions
+ to ...
+ * lib/dpkg-def.h: ... here. New file.
+ * utils/start-stop-daemon.c: Include 'dpkg-def.h'.
+ (CONSTANT, PRINTFFORMAT, NONRETURNING, UNUSED): Remove defninitions.
+
2008-03-11 Ian Jackson <ian@davenant.greenend.org.uk>
* lib/dpkg.h (fgets_checked, fgets_must): New function declarations.
noinst_LIBRARIES = libdpkg.a
libdpkg_a_SOURCES = \
+ dpkg-def.h \
dpkg.h \
dpkg-db.h \
compat.c \
--- /dev/null
+/*
+ * libdpkg - Debian packaging suite library routines
+ * dpkg-def.h - C language support definitions
+ *
+ * Copyright (C) 1994,1995 Ian Jackson <ian@chiark.greenend.org.uk>
+ *
+ * This is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; either version 2,
+ * or (at your option) any later version.
+ *
+ * This is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public
+ * License along with dpkg; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ */
+
+#ifndef DPKG_DEF_H
+#define DPKG_DEF_H
+
+#include <config.h>
+
+#if HAVE_C_ATTRIBUTE
+# define CONSTANT __attribute__((constant))
+# define PRINTFFORMAT(si, tc) __attribute__((format(printf,si,tc)))
+# define NONRETURNING __attribute__((noreturn))
+# define UNUSED __attribute__((unused))
+#else
+# define CONSTANT
+# define PRINTFFORMAT(si, tc)
+# define NONRETURNING
+# define UNUSED
+#endif
+
+#endif
#include <myopt.h>
+#include <dpkg-def.h>
+
#ifdef HAVE_SYS_CDEFS_H
#include <sys/cdefs.h>
#endif
extern const char thisname[]; /* defined separately in each program */
extern const char printforhelp[];
-#if HAVE_C_ATTRIBUTE
-# define CONSTANT __attribute__((constant))
-# define PRINTFFORMAT(si, tc) __attribute__((format(printf,si,tc)))
-# define NONRETURNING __attribute__((noreturn))
-# define UNUSED __attribute__((unused))
-#else
-# define CONSTANT
-# define PRINTFFORMAT(si, tc)
-# define NONRETURNING
-# define UNUSED
-#endif
-
/*** from startup.c ***/
#define standard_startup(ejbuf, argc, argv, prog, loadcfg, cmdinfos) do {\
#include "config.h"
+#include <dpkg-def.h>
+
#if defined(linux) || (defined(__FreeBSD_kernel__) && defined(__GLIBC__))
# define OSLinux
#elif defined(__GNU__)
#include <error.h>
#endif
-#if HAVE_C_ATTRIBUTE
-# define CONSTANT __attribute__((constant))
-# define PRINTFFORMAT(si, tc) __attribute__((format(printf, si, tc)))
-# define NONRETURNING __attribute__((noreturn))
-# define UNUSED __attribute__((unused))
-#else
-# define CONSTANT
-# define PRINTFFORMAT(si, tc)
-# define NONRETURNING
-# define UNUSED
-#endif
-
static int testmode = 0;
static int quietmode = 0;
static int exitnodo = 1;