summaryrefslogtreecommitdiff
blob: c747592b7baa301defcea05c72827370cd26ddf8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
--- work/Heartbeat-3-0-STABLE-3.0.4/configure.in	2010-12-09 21:09:47.000000000 +0100
+++ work2/Heartbeat-3-0-STABLE-3.0.4/configure.in	2010-12-28 17:37:45.080773140 +0100
@@ -243,9 +243,9 @@
 mandir=`var "$mandir" "$exec_prefix/man"`
 dnl docdir is available in autoconf 2.60+, for older versions preseed
 dnl with the same value that 2.60+ uses
-docdir=`var "$docdir" "${datadir}/doc/${PACKAGE_NAME}"`
-libdir=`var "$libdir" "$exec_prefix/lib"`
-libexecdir=`var "$libexecdir" "$exec_prefix/libexec"`
+dnl docdir=`var "$docdir" "${datadir}/doc/${PACKAGE_NAME}"`
+dnl libdir=`var "$libdir" "$exec_prefix/lib"`
+dnl libexecdir=`var "$libexecdir" "$exec_prefix/libexec"`
 noarchlibdir=`var "$noarchlibdir" "$prefix/lib"`
 
 
@@ -284,59 +284,11 @@
   LIBC=`${LDD} ${tmpOutfile} | grep libc | sed -e 's%.*=> *%%' -e 's% .*$%%'`
   LibCdir=`dirname $LIBC`
   dirlist=`echo $LibCdir | tr '/' ' '`
-  LibDirSuffix=unknown
-  for dir in $dirlist
-  do
-    case $dir in
-      *lib*)	LibDirSuffix=$dir; break;;
-      *);;
-    esac
-  done
-  case $LibDirSuffix in
-    unknown)	LibDirSuffix=`basename $LibCdir`;;
-  esac
   OutFileType=`file $tmpOutfile`
   rm -f $tmpCfile $tmpOutfile
 else
   AC_MSG_ERROR([Cannot Compile trivial C program])
 fi
-#
-#	The code above doesn't work right everywhere
-#		(like Fedora and OpenBSD) 
-#
-case ${LibDirSuffix} in
-	*lib*)	: Cool;;
-	*)	: Sigh...
-		case $OutFileType in
-		  *64-bit*)	
-		  	case $host_os in
-			  openbsd*)	LibDirSuffix=lib;;
-		  	  *)		LibDirSuffix=lib64;;
-			esac;;
-		  *32-bit*)	LibDirSuffix=lib;;
-		  *)		LibDirSuffix=lib;;
-		esac;;
-esac
-#
-#	This may not yet be quite right for PPC where the default
-#	is to produce 32-bit binaries, even though the OS is 64-bit
-#	or for that matter for system Z, But, it's a lot better than
-#	it used to be.
-#
-AC_MSG_RESULT($LibDirSuffix)
-
-case $libdir in
-  */*${LibDirSuffix})	: Cool ;;
-  *)			: Uh Oh... 
-	libdir=`dirname $libdir`/$LibDirSuffix
-	AC_MSG_WARN([Overriding libdir to: $libdir]);;
-esac
-case $libexecdir in
-  */$LibDirSuffix)	: Cool ;;
-  *)			: Uh Oh... 
-	libexecdir=`dirname $libexecdir`/$LibDirSuffix
-	AC_MSG_WARN([Overriding libexecdir to: $libexecdir]);;
-esac
 
 for j in exec_prefix bindir sbindir datadir sysconfdir localstatedir \
 	includedir oldincludedir mandir docdir stdocdir libdir noarchlibdir
@@ -386,7 +338,6 @@
 fi
 
 AC_CHECK_HEADERS(heartbeat/glue_config.h)
-GLUE_HEADER=none
 if test "$ac_cv_header_heartbeat_glue_config_h" = "yes";  then
    GLUE_HEADER=heartbeat/glue_config.h
 else
@@ -453,15 +404,6 @@
 
 dnl	We use this in the RPM specfile...
 AC_SUBST(ac_configure_args)
-cleaned_configure_args=""
-for j in ${ac_configure_args}
-do
-  case $j in
-    *--libdir=*|*--libexecdir=*)	;;
-    *)		cleaned_configure_args="$cleaned_configure_args $j";;
-  esac
-done
-AC_SUBST(cleaned_configure_args)
 
 dnl *************************************************************************
 PATH="$PATH:/sbin:/usr/sbin:/usr/local/sbin:/usr/local/bin"
--- work/Heartbeat-3-0-STABLE-3.0.5/configure.in	2011-12-28 11:51:05.601673071 +0100
+++ work2/Heartbeat-3-0-STABLE-3.0.5/configure.in	2011-12-28 11:54:34.223094385 +0100
@@ -2002,7 +2002,7 @@
 fi
 
 if test "$GCC" = yes; then
-  CFLAGS="$CFLAGS -ggdb3"
+  CFLAGS="$CFLAGS"
   if
     cc_supports_flag -funsigned-char
   then