Update of /cvsroot/gqclient/gq
In directory usw-pr-cvs1:/tmp/cvs-serv17320
Modified Files:
configure.in
Log Message:
* Added the --with-localedir option
* Kerberos compilation fixes (hopefully this works for most people)
Index: configure.in
===================================================================
RCS file: /cvsroot/gqclient/gq/configure.in,v
retrieving revision 1.32
retrieving revision 1.33
diff -C2 -d -r1.32 -r1.33
*** configure.in 18 Jun 2002 22:21:27 -0000 1.32
--- configure.in 27 Jun 2002 08:12:05 -0000 1.33
***************
*** 118,122 ****
[ --with-kerberos-prefix=PFX Prefix where Kerberos is installed],
[
! LIBS="-L$with_kerberos_prefix/lib -lkrb -ldes $LIBS"
AC_DEFINE(HAVE_KERBEROS)
HAVE_KERBEROS=1
--- 118,122 ----
[ --with-kerberos-prefix=PFX Prefix where Kerberos is installed],
[
! LIBS="-L$with_kerberos_prefix/lib -lkrb5 -ldes425 $LIBS"
AC_DEFINE(HAVE_KERBEROS)
HAVE_KERBEROS=1
***************
*** 312,316 ****
--- 312,326 ----
localedir="${datadir}/locale"
+ AC_ARG_WITH(with-localedir,
+ [ --with-localedir=DIR Where locale data should be stored (or can be found)
+ Please see the README file for more details about this.])
+
+ if test "x$with_localedir" != "x"
+ then
+ localedir=$with_localedir
+ fi
+
CFLAGS="$CFLAGS -DLOCALEDIR=\\\"$localedir\\\""
+
AC_OUTPUT([
|