]> git.pld-linux.org Git - packages/3dwm.git/blob - 3dwm-autocrap.patch
- ough.. recent stuff
[packages/3dwm.git] / 3dwm-autocrap.patch
1 diff -ur 3dwm-0.3.1/config/macros/utils.m4 3dwm-0.3.1-/config/macros/utils.m4
2 --- 3dwm-0.3.1/config/macros/utils.m4   Mon May 28 14:47:24 2001
3 +++ 3dwm-0.3.1-/config/macros/utils.m4  Mon Feb  3 16:42:23 2003
4 @@ -889,5 +889,5 @@
5  fi
6  ])dnl
7  
8 -divert
9 +divert(0)
10  
11 diff -ur 3dwm-0.3.1/config/macros/mdl_have_opengl.m4 3dwm-0.3.1-/config/macros/mdl_have_opengl.m4
12 --- 3dwm-0.3.1/config/macros/mdl_have_opengl.m4 Mon Aug 20 15:48:53 2001
13 +++ 3dwm-0.3.1-/config/macros/mdl_have_opengl.m4        Mon Feb  3 16:53:35 2003
14 @@ -73,10 +73,10 @@
15    AC_CACHE_CHECK([for OpenGL], mdl_cv_have_OpenGL,
16    [
17  dnl Check for Mesa first, unless we were asked not to.
18 -    AC_HELP_STRING([--with-Mesa],
19 -                   [Prefer the Mesa library over a vendors native OpenGL library (default=yes)],
20 -                   with_Mesa_help_string)
21 -    AC_ARG_ENABLE(Mesa, $with_Mesa_help_string, use_Mesa=$enableval, use_Mesa=yes)
22 +    AC_ARG_ENABLE(Mesa, 
23 +       AC_HELP_STRING([--with-Mesa],
24 +                   [Prefer the Mesa library over a vendors native OpenGL library (default=yes)])
25 +    [use_Mesa=$enableval], [use_Mesa=yes])
26  
27      if test x"$use_Mesa" = xyes; then
28         GL_search_list="MesaGL   GL"
29 diff -ur 3dwm-0.3.2/aclocal.m4 3dwm-0.3.2--/aclocal.m4
30 --- 3dwm-0.3.2/aclocal.m4       Mon Feb  3 21:30:17 2003
31 +++ 3dwm-0.3.2--/aclocal.m4     Mon Feb  3 21:29:33 2003
32 @@ -967,7 +967,7 @@
33                                 fi
34                         fi
35                         msg=enabled
36 -                       AC_DEFINE(DEBUG)
37 +                       AC_DEFINE(DEBUG, 1, [debugging])
38                 else
39                         msg=disabled
40                 fi
41 @@ -1432,7 +1432,7 @@
42  CFLAGS=`echo "$CFLAGS" | sed -e 's/-O3//g'`
43  CFLAGS="$CFLAGS -O0 -pg"
44  LDFLAGS="$LDFLAGS -pg"
45 -AC_DEFINE(profile)
46 +AC_DEFINE(profile, 1, [profiling])
47  msg="enabled"
48  ],[
49  msg="disabled"
50 diff -ur 3dwm-0.3.2/config/macros/compiler.m4 3dwm-0.3.2--/config/macros/compiler.m4
51 --- 3dwm-0.3.2/config/macros/compiler.m4        Mon May 28 14:47:24 2001
52 +++ 3dwm-0.3.2--/config/macros/compiler.m4      Mon Feb  3 21:28:54 2003
53 @@ -99,7 +99,7 @@
54                                 fi
55                         fi
56                         msg=enabled
57 -                       AC_DEFINE(DEBUG)
58 +                       AC_DEFINE(DEBUG, 1, [debugging])
59                 else
60                         msg=disabled
61                 fi
62 diff -ur 3dwm-0.3.2/config/macros/utils.m4 3dwm-0.3.2--/config/macros/utils.m4
63 --- 3dwm-0.3.2/config/macros/utils.m4   Mon Feb  3 21:30:17 2003
64 +++ 3dwm-0.3.2--/config/macros/utils.m4 Mon Feb  3 21:29:14 2003
65 @@ -381,7 +381,7 @@
66  CFLAGS=`echo "$CFLAGS" | sed -e 's/-O3//g'`
67  CFLAGS="$CFLAGS -O0 -pg"
68  LDFLAGS="$LDFLAGS -pg"
69 -AC_DEFINE(profile)
70 +AC_DEFINE(profile, 1, [profiling])
71  msg="enabled"
72  ],[
73  msg="disabled"
74 diff -ur 3dwm-0.3.2/configure.in 3dwm-0.3.2--/configure.in
75 --- 3dwm-0.3.2/configure.in     Mon Feb  3 21:30:17 2003
76 +++ 3dwm-0.3.2--/configure.in   Mon Feb  3 21:28:04 2003
77 @@ -37,9 +37,9 @@
78  AM_INIT_AUTOMAKE($PACKAGE, $VERSION)
79  
80  dnl Export defines
81 -AC_DEFINE_UNQUOTED(MAJOR_VERSION)
82 -AC_DEFINE_UNQUOTED(MINOR_VERSION)
83 -AC_DEFINE_UNQUOTED(PATCH_LEVEL)
84 +AC_DEFINE_UNQUOTED(MAJOR_VERSION, $MAJOR_VERSION, [major version])
85 +AC_DEFINE_UNQUOTED(MINOR_VERSION, $MINOR_VERSION, [minor version])
86 +AC_DEFINE_UNQUOTED(PATCH_LEVEL, $PATCH_LEVEL, [patch level])
87  
88  dnl AC_HEADLINE(dnl
89  dnl    3Dwm, The Three-Dimensional User Environment, dnl
This page took 0.058007 seconds and 4 git commands to generate.