diff options
author | Achim Gottinger <achim@gentoo.org> | 2001-02-22 13:12:02 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2001-02-22 13:12:02 +0000 |
commit | 51758e4d71ad108978962693b8860412a7fab4a3 (patch) | |
tree | 1796d60bf41e8a1072f7b5bf96fe82b530a8a370 /media-libs/aalib/files | |
parent | *** empty log message *** (diff) | |
download | gentoo-2-51758e4d71ad108978962693b8860412a7fab4a3.tar.gz gentoo-2-51758e4d71ad108978962693b8860412a7fab4a3.tar.bz2 gentoo-2-51758e4d71ad108978962693b8860412a7fab4a3.zip |
This patch adds the possibility to turn off gpm-support
Diffstat (limited to 'media-libs/aalib/files')
-rw-r--r-- | media-libs/aalib/files/configure-gpm.diff | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/media-libs/aalib/files/configure-gpm.diff b/media-libs/aalib/files/configure-gpm.diff new file mode 100644 index 000000000000..59abb3d7274d --- /dev/null +++ b/media-libs/aalib/files/configure-gpm.diff @@ -0,0 +1,26 @@ +--- configure.in.orig Thu Feb 22 15:04:29 2001 ++++ configure.in Thu Feb 22 15:04:35 2001 +@@ -101,16 +101,21 @@ + fi + ]) + AC_ARG_WITH(gpm-mouse, +- [ --with-gpm-mouse=base-dir Specifies the base gpm directory], ++ [ --with-gpm-mouse=base-dir/no Specifies the base gpm directory], + if test x$withval = xyes + then +- AC_MSG_WARN(Usage is: --with-gpm-mouse=base-dir) ++ AC_MSG_WARN(Usage is: --with-gpm-mouse=base-dir/no ) + else ++ if test x$withval = xno ++ then ++ gpm_mousedriver_test=no ++ else + LIBS="$LIBS -L$withval/lib -lgpm" + AC_DEFINE(GPM_MOUSEDRIVER) + gpm_mousedriver=true + CFLAGS="$CFLAGS -I$withval/include" + AC_MSG_RESULT(defining use_gpm) ++ fi + fi + ) + |