Sun Mar 28 23:39:48 1999 Norbert Warmuth <nwarmuth@privat.circular.de>
* configure.in: Deleted duplicate VFS checks. GNOME_VFS_CHECKS now contains all VFS checks. * src/util.c (is_printable): Character 155 is non printable even when full eight bit output is enabled (on the linux console 155 is interpreted as "ESC ["). * vfs/vfs.h (vfs_translate_url): Fixed the macro which is used when compiling without vfs. * macros/gnome-vfs.m4: Add --with-vfs option. GNOME_VFS_LIBS still needs to be fixed but that's not a problem because there's no libvfs, yet.
Этот коммит содержится в:
родитель
8d44e8a322
Коммит
bfa7724f00
@ -1,3 +1,8 @@
|
||||
Sun Mar 28 23:46:01 1999 Norbert Warmuth <nwarmuth@privat.circular.de>
|
||||
|
||||
* configure.in: Deleted duplicate VFS checks. GNOME_VFS_CHECKS
|
||||
now contains all checks.
|
||||
|
||||
1999-03-26 Federico Mena Quintero <federico@nuclecu.unam.mx>
|
||||
|
||||
* configure.in (VERSION): bumped version number to 4.5.28.
|
||||
|
65
configure.in
65
configure.in
@ -340,6 +340,23 @@ if test $have_socket = yes; then
|
||||
fi
|
||||
AC_SUBST(NETFILES)
|
||||
|
||||
LIBVFS=""
|
||||
LVFS=""
|
||||
fastdepvfs=""
|
||||
vfs_type="normal"
|
||||
if test $use_vfs = yes
|
||||
then
|
||||
LIBVFS="libvfs-mc.a"
|
||||
LVFS="-lvfs-mc"
|
||||
fastdepvfs=fastdepvfs
|
||||
MCCPPFLAGS="$MCCPPFLAGS -I\$(vfsdir)"
|
||||
AC_MSG_RESULT(Using the VFS switch code)
|
||||
vfs_type="Midnight Commander Virtual File System"
|
||||
fi
|
||||
AC_SUBST(LIBVFS)
|
||||
AC_SUBST(LVFS)
|
||||
AC_SUBST(fastdepvfs)
|
||||
|
||||
screen_manager=unknown
|
||||
search_ncurses=false
|
||||
|
||||
@ -627,18 +644,6 @@ if test x$ac_cv_grep_stdin = xyes; then
|
||||
fi
|
||||
AC_MSG_RESULT($ac_cv_grep_stdin)
|
||||
|
||||
dnl
|
||||
dnl The termnet support
|
||||
dnl
|
||||
termnet=false
|
||||
AC_ARG_WITH(termnet,
|
||||
[--with-termnet If you want a termified net support],[
|
||||
if test x$withval = xyes; then
|
||||
AC_DEFINE(USE_TERMNET)
|
||||
termnet=true
|
||||
fi
|
||||
])
|
||||
|
||||
dnl
|
||||
dnl The subshell support
|
||||
dnl
|
||||
@ -881,42 +886,6 @@ AC_SUBST(LIBSLANG)
|
||||
AC_SUBST(LSLANG)
|
||||
AC_SUBST(fastdepslang)
|
||||
|
||||
TERMNET=""
|
||||
AC_DEFUN(AC_WITH_VFS, [
|
||||
AC_DEFINE(USE_VFS)
|
||||
if $use_net_code; then
|
||||
AC_DEFINE(USE_NETCODE)
|
||||
fi
|
||||
LIBVFS="libvfs-mc.a"
|
||||
LVFS="-lvfs-mc"
|
||||
fastdepvfs=fastdepvfs
|
||||
MCCPPFLAGS="$MCCPPFLAGS -I\$(vfsdir)"
|
||||
AC_MSG_RESULT(Using the VFS switch code)
|
||||
vfs_type="Midnight Commander Virtual File System"
|
||||
])
|
||||
AC_SUBST(TERMNET)
|
||||
|
||||
LIBVFS=""
|
||||
LVFS=""
|
||||
fastdepvfs=""
|
||||
vfs_type="normal"
|
||||
AC_ARG_WITH(vfs,
|
||||
[--with-vfs Compile with the VFS code],
|
||||
if test x$withval = xyes
|
||||
then
|
||||
AC_WITH_VFS
|
||||
else
|
||||
vfs_flags=""
|
||||
TERMNET=""
|
||||
mcserv=""
|
||||
fi,
|
||||
dnl Default: provide the VFS code
|
||||
AC_WITH_VFS
|
||||
)
|
||||
AC_SUBST(LIBVFS)
|
||||
AC_SUBST(LVFS)
|
||||
AC_SUBST(fastdepvfs)
|
||||
|
||||
AC_DEFUN(AC_WITH_EDIT, [
|
||||
AC_DEFINE(USE_INTERNAL_EDIT)
|
||||
LIBEDIT_A="libedit.a"
|
||||
|
@ -1,3 +1,9 @@
|
||||
Sun Mar 28 23:52:08 1999 Norbert Warmuth <nwarmuth@privat.circular.de>
|
||||
|
||||
* util.c (is_printable): Character 155 is non printable even when
|
||||
full eight bit output is enabled (on the linux console 155 is
|
||||
interpreted as "ESC [").
|
||||
|
||||
1999-03-26 Federico Mena Quintero <federico@nuclecu.unam.mx>
|
||||
|
||||
Patch courtesy of John Bley (jbb6@acpub.duke.edu):
|
||||
|
@ -110,7 +110,7 @@ int is_printable (int c)
|
||||
if (xterm_flag)
|
||||
return xterm_printable [c];
|
||||
else
|
||||
return (c > 31 && c != 127);
|
||||
return (c > 31 && c != 127 && c != 155);
|
||||
} else
|
||||
return ((c >31 && c < 127) || c >= 160);
|
||||
} else
|
||||
|
@ -1,3 +1,8 @@
|
||||
Sun Mar 28 23:50:47 1999 Norbert Warmuth <nwarmuth@privat.circular.de>
|
||||
|
||||
* vfs.h (vfs_translate_url): Fixed the macro which is used when
|
||||
compiling without vfs.
|
||||
|
||||
1999-03-22 David Martin <dmartina@mailexcite.com>
|
||||
|
||||
* ftpfs.c: Internationalize the messages that are displayed as
|
||||
|
@ -280,7 +280,7 @@ struct utimbuf {
|
||||
|
||||
# define mc_ctl(a,b,c) 0
|
||||
# define mc_setctl(a,b,c) 0
|
||||
# define vfs_translate_url g_strdup(s)
|
||||
# define vfs_translate_url(s) g_strdup(s)
|
||||
|
||||
# define mc_stat stat
|
||||
# define mc_mknod mknod
|
||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user