Hello community,

here is the log from the commit of package pidentd for openSUSE:Factory checked 
in at 2012-05-25 16:18:11
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/pidentd (Old)
 and      /work/SRC/openSUSE:Factory/.pidentd.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "pidentd", Maintainer is "[email protected]"

Changes:
--------
--- /work/SRC/openSUSE:Factory/pidentd/pidentd.changes  2012-04-23 
16:12:27.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.pidentd.new/pidentd.changes     2012-05-25 
16:18:22.000000000 +0200
@@ -1,0 +2,10 @@
+Tue May 22 23:09:52 UTC 2012 - [email protected]
+
+- Make build with current tools
+* Fix autoheader errors by adding descriptions to AC_DEFINE
+  calls
+* Copy config.* manually since suse_update_config is not doing
+  it anymore and autoreconf does not take care of it because
+  pidentd doesn't use automake.
+
+-------------------------------------------------------------------

New:
----
  pidentd-3.1a25-autoheader.diff

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ pidentd.spec ++++++
--- /var/tmp/diff_new_pack.1syQYx/_old  2012-05-25 16:18:24.000000000 +0200
+++ /var/tmp/diff_new_pack.1syQYx/_new  2012-05-25 16:18:24.000000000 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package pidentd
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,15 +16,14 @@
 #
 
 
-
 Name:           pidentd
-License:        GPL-2.0+
-Group:          Productivity/Networking/System
 PreReq:         %insserv_prereq %fillup_prereq
 Provides:       nkitb:/usr/sbin/in.identd
 Version:        3.1a25
 Release:        0
 Summary:        An Implementation of the RFC1413 Identification Server
+License:        GPL-2.0+
+Group:          Productivity/Networking/System
 Url:            http://sf.www.lysator.liu.se/~pen/pidentd/
 Source:         %{name}-%{version}.tar.bz2
 Source1:        %{name}-SuSE.tar.bz2
@@ -38,6 +37,7 @@
 Patch6:         %{name}-%{version}-warnings-fix.diff
 Patch7:         %{name}-%{version}-send.diff
 Patch8:         %{name}-%{version}-ipv6.diff
+Patch9:         %{name}-%{version}-autoheader.diff
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  libtool
 Requires:       inet-daemon
@@ -66,9 +66,12 @@
 %patch6
 %patch7
 %patch8
+%patch9 -p1
 
 %build
-%{suse_update_config -f aux/ plib/aux/}
+# files are not copied by autoreconf since package doesn't use automake
+cp -v /usr/share/automake-*/config.* aux/
+cp -v /usr/share/automake-*/config.* plib/aux/
 aclocal --force
 autoreconf --force --install
 (cd plib

++++++ pidentd-3.1a25-autoheader.diff ++++++
Index: pidentd-3.1a25/configure.in
===================================================================
--- pidentd-3.1a25.orig/configure.in
+++ pidentd-3.1a25/configure.in
@@ -4,13 +4,13 @@ dnl Try to locate a usable type definiti
 AC_DEFUN(AC_CHECK_TYPE2, [
 AC_CHECK_TYPE($2, $4)
 if test $ac_cv_type_$2 = yes; then
-       AC_DEFINE($1, $2)
+       AC_DEFINE($1, $2,[Define to '$4' if <sys/types.h> does not define.])
 else
        AC_CHECK_TYPE($3, $4)
        if test $ac_cv_type_$3 = yes; then
-               AC_DEFINE($1, $3)
+               AC_DEFINE($1, $3,[Define to '$4' if <sys/types.h> does not 
define.])
        else
-               AC_DEFINE($1, $4)
+               AC_DEFINE($1, $4,[Define to '$4' if <sys/types.h> does not 
define.])
        fi
 fi
 ])
@@ -22,13 +22,13 @@ dnl extracted from autoconf 2.12 acspeci
 
 AC_DEFUN(AC_STRUCT_NLIST,
 [AC_CHECK_HEADER(nlist.h,
-[AC_DEFINE(NLIST_STRUCT)
+[AC_DEFINE(NLIST_STRUCT, 1, [Define if you have <nlist.h>.])
 AC_CACHE_CHECK([for n_un in struct nlist], ac_cv_struct_nlist_n_un,
 [AC_TRY_COMPILE([#include <nlist.h>],
 [struct nlist n; n.n_un.n_name = 0;],
 ac_cv_struct_nlist_n_un=yes, ac_cv_struct_nlist_n_un=no)])
 if test $ac_cv_struct_nlist_n_un = yes; then
-  AC_DEFINE(NLIST_NAME_UNION)
+  AC_DEFINE(NLIST_NAME_UNION, 1, [Define if your struct nlist has an n_un 
member.])
 fi
 ])
 ])
@@ -160,15 +160,15 @@ case "$host" in
                ;;
        *-irix4*)
                host_os=irix4
-               AC_DEFINE(_PATH_UNIX,"/unix")
+               AC_DEFINE(_PATH_UNIX,"/unix",[PATH_UNIX])
                ;;
        *-irix5* | *-irix6*)
                host_os=irix5
-               AC_DEFINE(_PATH_UNIX,"/unix")
+               AC_DEFINE(_PATH_UNIX,"/unix",[PATH_UNIX])
                ;;
        *-hpux7*)
                host_os=bsd42
-               AC_DEFINE(_PATH_UNIX, "/hp-ux")
+               AC_DEFINE(_PATH_UNIX, "/hp-ux",[PATH_UNIX])
                 if test "$ac_cv_prog_gcc" = "no"; then
                         DEFS="$DEFS -DHPUX7"
                        CFLAGS="$CFLAGS -Ae"
@@ -176,14 +176,14 @@ case "$host" in
                 ;;
        *-hpux8* | *-hpux9*)
                host_os=bsd42
-               AC_DEFINE(_PATH_UNIX, "/hp-ux")
+               AC_DEFINE(_PATH_UNIX, "/hp-ux",[PATH_UNIX])
                 if test "$ac_cv_prog_gcc" = "no"; then
                         CFLAGS="$CFLAGS -Ae"
                 fi
                 ;;
        *-hpux10*)
                host_os=bsd42
-               AC_DEFINE(_PATH_UNIX,"/stand/vmunix")
+               AC_DEFINE(_PATH_UNIX,"/stand/vmunix",[PATH_UNIX])
                if test "$ac_cv_prog_gcc" = "no"; then
                        CFLAGS="$CFLAGS -Ae"
                fi
@@ -194,7 +194,7 @@ case "$host" in
                ;;
        *-nextstep3*)
                host_os=next_mach
-               AC_DEFINE(_PATH_UNIX, "/mach")
+               AC_DEFINE(_PATH_UNIX, "/mach",[PATH_UNIX])
                ;;
        *-ultrix4*)
                host_os=bsd42
@@ -264,17 +264,17 @@ AC_CHECK_FUNCS(strerror sigaction)
 AC_CHECK_FUNCS(ftruncate flock)
 
 if test "$need_libkvm" = "yes"; then
-       AC_DEFINE(NEED_LIBKVM, 1)
+       AC_DEFINE(NEED_LIBKVM, 1,[Define if you must have some type of kvm_*() 
implementation.])
 
        AC_CHECK_FUNCS(nlist)
        if test "$ac_cv_func_nlist" = "no"; then
                AC_CHECK_LIB(elf, nlist)
                if test "$ac_cv_lib_elf_nlist" = "yes"; then
-                       AC_DEFINE(HAVE_NLIST, 1)
+                       AC_DEFINE(HAVE_NLIST, 1,[Define if you have the nlist 
function.])
                else
                        AC_CHECK_LIB(mld, nlist)
                        if test "$ac_cv_lib_mld_nlist" = "yes"; then
-                               AC_DEFINE(HAVE_NLIST, 1)
+                               AC_DEFINE(HAVE_NLIST, 1,[Define if you have the 
nlist function.])
                        fi
                fi
        fi
@@ -283,7 +283,7 @@ if test "$need_libkvm" = "yes"; then
        if test "$ac_cv_func_kvm_open" = "no"; then
                AC_CHECK_LIB(kvm, kvm_open)
                if test "$ac_cv_lib_kvm_kvm_open" = "yes"; then
-                       AC_DEFINE(HAVE_KVM_OPEN, 1)
+                       AC_DEFINE(HAVE_KVM_OPEN, 1,[Define if you have the 
kvm_open function.])
                fi
        fi
 fi
@@ -297,8 +297,8 @@ if test "$with_des" = "" || test "$with_
                dnl check in SSLeay -lcrypto
                AC_CHECK_LIB(crypto, RAND_bytes)
                if test "$ac_cv_lib_crypto_RAND_bytes" = "yes"; then
-                       AC_DEFINE(HAVE_RAND_BYTES, 1)
-                       AC_DEFINE(HAVE_LIBDES, 1)
+                       AC_DEFINE(HAVE_RAND_BYTES, 1,[Define if -lcrypto has 
RAND_bytes.])
+                       AC_DEFINE(HAVE_LIBDES, 1,[Define if you have the des 
library (-ldes).])
                        AC_CHECK_HEADERS(rand.h)
                        CRYPTO_PROGRAMS="idecrypt ikeygen"
                        CRYPTO_OBJS="pdes.o"
-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to