1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-26 09:46:09 +00:00
freebsd-ports/irc/solid-ircd/files/patch-configure
Oliver Lehmann aea3722c89 fix automated build
Noted by:	kris
Submitted by:	maintainer
PR:		95864
2006-04-16 11:54:05 +00:00

62 lines
1.3 KiB
Plaintext

--- configure.old Sat Apr 15 12:21:36 2006
+++ configure Sat Apr 15 12:21:50 2006
@@ -8941,58 +8941,3 @@
echo " Maximum Connections: $maxconnections"
echo " Install Directory: $prefix"
echo ""
-
-
-ok=0
-DEF=no
-echo "Would you like to create your SSL Certificate now?"
-while [ $ok -lt 1 ] ; do
- echo "[$DEF] "
- if read INPUT ; then : ; else echo "" ; exit 1 ; fi
- if [ ! "$INPUT" ] ; then
- INPUT=$DEF
- fi
- case $INPUT in
- n*|N*)
-
- ok=1
- ;;
- y*|Y*)
- cd doc/ssl
- ./makecert.sh newcert
- cd ..
- cd ..
- ok=1
- ;;
- *)
- echo "Please enter 'yes' or 'no'."
- ;;
- esac
-done
-echo ""
-
-ok=0
-DEF=no
-echo "Would you like to compile & install solid-ircd now?"
-while [ $ok -lt 1 ] ; do
- echo "[$DEF] "
- if read INPUT ; then : ; else echo "" ; exit 1 ; fi
- if [ ! "$INPUT" ] ; then
- INPUT=$DEF
- fi
- case $INPUT in
- n*|N*)
-
- ok=1
- ;;
- y*|Y*)
-
- make && make install
- ok=1
- ;;
- *)
- echo "Please enter 'yes' or 'no'."
- ;;
- esac
-done
-echo ""