diff options
author | Jeremy Lea <reg@FreeBSD.org> | 2000-10-05 06:57:56 +0000 |
---|---|---|
committer | Jeremy Lea <reg@FreeBSD.org> | 2000-10-05 06:57:56 +0000 |
commit | bebd89314e57ff34ea47724c5605a0f32c425dcf (patch) | |
tree | d991da3f3e4ccc0cc8f9eab35d1891ca59b0fd9a /x11-wm/scwm/files/patch-aj | |
parent | Implment WANT_GTK. (diff) |
Implement WANT_IMLIB and USE_IMLIB.
Notes
Notes:
svn path=/head/; revision=33427
Diffstat (limited to 'x11-wm/scwm/files/patch-aj')
-rw-r--r-- | x11-wm/scwm/files/patch-aj | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/x11-wm/scwm/files/patch-aj b/x11-wm/scwm/files/patch-aj new file mode 100644 index 000000000000..8961d82566ab --- /dev/null +++ b/x11-wm/scwm/files/patch-aj @@ -0,0 +1,20 @@ +--- src/scwm-snarf.h.orig Wed Sep 13 01:01:45 2000 ++++ src/scwm-snarf.h Wed Sep 13 01:02:12 2000 +@@ -61,7 +61,7 @@ + + #ifdef HAVE_SCM_MAKE_HOOK + #define SCWM_HOOK(var, name, args, docstring) \ +-%%% do { var = scm_make_named_hook(name,args); } while (0) ++%%% do { var = scm_create_hook(name,args); } while (0) + #else + #define SCWM_HOOK(var, name, args, docstring) \ + %%% do { var = scm_sysintern(name, SCM_EOL); } while (0) +@@ -76,7 +76,7 @@ + + #if HAVE_SCM_MAKE_HOOK + #define SCWM_GLOBAL_HOOK(var, name, args, docstring) \ +-%%% do { var = scm_make_named_hook(name,args); } while (0) ++%%% do { var = scm_create_hook(name,args); } while (0) + #else + #define SCWM_GLOBAL_HOOK(var, name, args, docstring) \ + %%% do { var = scm_sysintern(name, SCM_EOL); } while (0) |