File dictd-1.10.11.patch of Package dictd
--- Makefile.in
+++ Makefile.in
@@ -35,6 +35,7 @@
prefix= @prefix@
subdirs= @allsubdirs@ # doc -- use rfc2229 instead
exec_prefix= @exec_prefix@
-man1_prefix= @mandir@/man1
-man8_prefix= @mandir@/man8
+mandir= @mandir@
+man1_prefix= $(mandir)/man1
+man8_prefix= $(mandir)/man8
bindir= @bindir@
libdir= @libdir@
libexecdir= @libexecdir@
--- libmaa/configure.in
+++ libmaa/configure.in
@@ -69,11 +69,7 @@
AC_ARG_WITH(cflags,
[ --with-cflags=FLAGS use FLAGS for CFLAGS],
-[
-if test "x${withval}" = xyes; then
- CFLAGS="$withval"
-fi
-])
+CFLAGS="$withval")
AC_ARG_WITH(prof,
[ --with-prof with prof profiling],
--- libmaa/doc/extract.pl
+++ libmaa/doc/extract.pl
@@ -1,4 +1,4 @@
-#!/usr/local/bin/perl
+#!/usr/bin/perl
# This file is -*- perl -*- source.
# Created: Wed Jan 4 13:04:37 1995 by faith@cs.unc.edu
# Revised: Mon Dec 9 15:22:26 1996 by faith@cs.unc.edu
--- md5.h
+++ md5.h
@@ -1,11 +1,8 @@
#ifndef MD5_H
#define MD5_H
-#ifdef __alpha
-typedef unsigned int uint32;
-#else
-typedef unsigned long uint32;
-#endif
+#include <stdint.h>
+typedef uint32_t uint32;
struct MD5Context {
uint32 buf[4];