mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-03 10:04:32 +03:00
1999-03-20 Nuno Ferreira <nmrf@rnl.ist.utl.pt>
* configure.in: Create slang directory, it is needed when builddir != srcdir. Use -f when calling rm, the file does not exist on first compile. No need to copy VERSION from $srcdir, it's already generated in $buildir.
This commit is contained in:
parent
9207af342d
commit
d97c87e5c8
@ -1,3 +1,12 @@
|
|||||||
|
1999-03-20 Nuno Ferreira <nmrf@rnl.ist.utl.pt>
|
||||||
|
|
||||||
|
* configure.in: Create slang directory, it is needed when
|
||||||
|
builddir != srcdir.
|
||||||
|
Use -f when calling rm, the file does not exist on
|
||||||
|
first compile.
|
||||||
|
No need to copy VERSION from $srcdir, it's already generated in
|
||||||
|
$buildir.
|
||||||
|
|
||||||
Fri Mar 19 06:32:36 1999 David Martin <dmartina@usa.net>
|
Fri Mar 19 06:32:36 1999 David Martin <dmartina@usa.net>
|
||||||
|
|
||||||
* edit/edit_key_translator.c: Added missing translation tags.
|
* edit/edit_key_translator.c: Added missing translation tags.
|
||||||
|
@ -820,7 +820,7 @@ AC_DEFUN(AC_WITH_SLANG,
|
|||||||
LSLANG="-lslang"
|
LSLANG="-lslang"
|
||||||
screen_manager="SLang (system-installed library)"
|
screen_manager="SLang (system-installed library)"
|
||||||
AC_MSG_RESULT(Using system installed SLang library)
|
AC_MSG_RESULT(Using system installed SLang library)
|
||||||
rm slang/slang.h
|
rm -f slang/slang.h
|
||||||
ac_save_LIBS="$LIBS"
|
ac_save_LIBS="$LIBS"
|
||||||
LIBS="$LIBS $LSLANG"
|
LIBS="$LIBS $LSLANG"
|
||||||
AC_TRY_RUN(
|
AC_TRY_RUN(
|
||||||
@ -844,7 +844,8 @@ AC_DEFUN(AC_WITH_SLANG,
|
|||||||
LSLANG="-lmcslang"
|
LSLANG="-lmcslang"
|
||||||
CPPFLAGS="$CPPFLAGS -I../slang"
|
CPPFLAGS="$CPPFLAGS -I../slang"
|
||||||
fastdepslang=fastdepslang
|
fastdepslang=fastdepslang
|
||||||
rm slang/slang.h
|
mkdir -p slang
|
||||||
|
rm -f slang/slang.h
|
||||||
ln -s ../$srcdir/slang/slang-mc.h slang/slang.h
|
ln -s ../$srcdir/slang/slang-mc.h slang/slang.h
|
||||||
fi
|
fi
|
||||||
if $slang_check_lib
|
if $slang_check_lib
|
||||||
@ -1262,7 +1263,6 @@ intl/Makefile po/Makefile.in
|
|||||||
|
|
||||||
if test x$srcdir != x; then
|
if test x$srcdir != x; then
|
||||||
if test $srcdir != .; then
|
if test $srcdir != .; then
|
||||||
cp $srcdir/VERSION VERSION
|
|
||||||
mkdir nt
|
mkdir nt
|
||||||
mkdir os2
|
mkdir os2
|
||||||
cp $srcdir/pc/Makefile nt/Makefile
|
cp $srcdir/pc/Makefile nt/Makefile
|
||||||
|
Loading…
Reference in New Issue
Block a user