Displaying 6 results from an estimated 6 matches for "oldprefix".
2001 Jan 18
1
New configuration scripts for Cygwin
...!/bin/sh
#
# ssh-host-config, Copyright 2000, Red Hat Inc.
#
# This file is part of the Cygwin port of OpenSSH.
# Subdirectory where the new package is being installed
PREFIX=/usr
# Directory where the config files are stored
SYSCONFDIR=/etc
# Subdirectory where an old package might be installed
OLDPREFIX=/usr/local
OLDSYSCONFDIR=${OLDPREFIX}/etc
progname=$0
auto_answer=""
request()
{
if [ "${auto_answer}" = "yes" ]
then
return 0
elif [ "${auto_answer}" = "no" ]
then
return 1
fi
answer=""
while [ "X${answer}&qu...
2000 Oct 28
11
Another shapshot
I have just uploaded another snapshot to:
http://www.mindrot.org/misc/openssh/openssh-SNAP-20001028.tar.gz
Please test this one extra hard, it is likely to become 2.3.0p1 early
next week.
Regards,
Damien Miller
--
| ``We've all heard that a million monkeys banging on | Damien Miller -
| a million typewriters will eventually reproduce the | <djm at mindrot.org>
| works of
2003 Nov 05
0
[PATCH] contrip/cygwin: Reworking the installation support
...ght 2000, Red Hat Inc.
+# ssh-host-config, Copyright 2000, 2001, 2002, 2003 Red Hat Inc.
#
# This file is part of the Cygwin port of OpenSSH.
@@ -9,10 +9,7 @@ PREFIX=/usr
# Directory where the config files are stored
SYSCONFDIR=/etc
-
-# Subdirectory where an old package might be installed
-OLDPREFIX=/usr/local
-OLDSYSCONFDIR=${OLDPREFIX}/etc
+LOCALSTATEDIR=/var
progname=$0
auto_answer=""
@@ -27,9 +24,11 @@ request()
{
if [ "${auto_answer}" = "yes" ]
then
+ echo "$1 (yes/no) yes"
return 0
elif [ "${auto_answer}" = "no&...
2002 Jul 03
1
[PATCH]: Change Cygwin contrib files to better support PrivSep
...separation
+if [ -f /var/empty ]
+then
+ echo "Creating /var/empty failed\!"
+else
+ mkdir -p /var/empty
+ # On NT change ownership of that dir to user "system"
+ if [ $_nt -gt 0 ]
+ then
+ chown system.system /var/empty
+ fi
+fi
+
# Check for an old installation in ${OLDPREFIX} unless ${OLDPREFIX} isn't
# the same as ${PREFIX}
@@ -219,9 +260,10 @@ if [ ! -f "${SYSCONFDIR}/ssh_config" ]
then
echo "Generating ${SYSCONFDIR}/ssh_config file"
cat > ${SYSCONFDIR}/ssh_config << EOF
-# This is ssh client systemwide configuration file....
2019 Jun 18
2
Running distributed thinLTO without thin archives.
Thanks!
Question about the final link step:
Do I provide all the object files to the link step, i.e. something like:
clang++ -o thinlto main-native.o lib/lib-native.o src/lib-native.o
Do I need to provide --start-lib markers on that final link step as well?
Tanoy
On Tue, Jun 18, 2019 at 10:37 AM Teresa Johnson <tejohnson at google.com>
wrote:
> Hi Tanoy,
>
> You can't use
2001 Mar 07
4
[PATCH]: contrib/cygwin/ssh-host-config
...================================================================
RCS file: /cvs/openssh_cvs/contrib/cygwin/ssh-host-config,v
retrieving revision 1.1
diff -u -p -r1.1 ssh-host-config
--- ssh-host-config 2001/01/19 05:37:32 1.1
+++ ssh-host-config 2001/03/07 10:13:04
@@ -16,6 +16,7 @@ OLDSYSCONFDIR=${OLDPREFIX}/etc
progname=$0
auto_answer=""
+port_number=22
request()
{
@@ -67,6 +68,11 @@ do
auto_answer=no
;;
+ -p | --port )
+ port_number=$1
+ shift
+ ;;
+
*)
echo "usage: ${progname} [OPTION]..."
echo
@@ -76,6 +82,7 @@ do
echo " -...