diff options
Diffstat (limited to 'irc/solid-ircd/files/patch-configure')
-rw-r--r-- | irc/solid-ircd/files/patch-configure | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/irc/solid-ircd/files/patch-configure b/irc/solid-ircd/files/patch-configure new file mode 100644 index 000000000000..0f73ecfb31a0 --- /dev/null +++ b/irc/solid-ircd/files/patch-configure @@ -0,0 +1,61 @@ +--- 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 "" |