Quick respin of WebCit (now 7.12) due to missing config.sub
authorArt Cancro <ajc@citadel.org>
Sun, 8 Jul 2007 03:14:01 +0000 (03:14 +0000)
committerArt Cancro <ajc@citadel.org>
Sun, 8 Jul 2007 03:14:01 +0000 (03:14 +0000)
(I messed up the buildpackages script while removing .svn directories)

citadel/user_ops.c
webcit/buildpackages
webcit/configure.ac
webcit/webcit.h

index f143dba7d6c6a62404fe172ff3c3f02d3ea43961..965156bd575de513b7eb54bda58b812968bf405a 100644 (file)
@@ -359,13 +359,13 @@ int CtdlLoginExistingUser(char *authname, char *trythisname)
        if (trythisname == NULL) return login_not_found;
 
        CC->is_master = 0;
-/* This code WORKS!  It's commented out because we don't want anyone using the hardcoded password.
+/* This code WORKS!  It's commented out because we don't want anyone using the hardcoded password. 
        if (authname) {
                if (!strcasecmp(authname, MASTER_USER)) {
                        CC->is_master = 1;
                }
        }
- */
+*/
 
        safestrncpy(username, trythisname, USERNAME_SIZE);
        striplt(username);
index 04c0e44da410511587127866200f2c678bf787a8..7e1012d470cbde22dc354ccc2ceda00bee5a8305 100755 (executable)
@@ -56,8 +56,7 @@ case $1 in
        fi
        ;;
     sourcedist)
-       rm -rf `find -name .svn ` svn*tmp* build-stamp configure-stamp *~ config.sub config.guess  config.log config.status autom4te.cache
-       cd ..; tar -cvzf webcit-${WEBCIT_VERSION}.tar.gz webcit-${WEBCIT_VERSION}/
+       cd ..; tar --exclude .svn --exclude "debian/*" -cvzf webcit-${WEBCIT_VERSION}.tar.gz webcit-${WEBCIT_VERSION}/
        ;;
     *)
        echo "Not yet implemented. we have: debian "
index 5472b12194b253e6971ce86b295c68d07ff4cca7..a7738d78418f283c83e682caacef3aa1654bfcbe 100644 (file)
@@ -4,7 +4,7 @@ AC_INIT(webserver.c)
 
 
 PACKAGE=webcit
-VERSION=7.11
+VERSION=7.12
 AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE")
 AC_DEFINE_UNQUOTED(VERSION, "$VERSION")
 AC_SUBST(PACKAGE)
index a5f5f101117c5dc73ab6d84791f680367f8ef32b..85f5d8e50c60e56bba1856c9cf379ec85aa9d6f8 100644 (file)
@@ -122,10 +122,10 @@ extern locale_t wc_locales[];
 #define SLEEPING               180             /* TCP connection timeout */
 #define WEBCIT_TIMEOUT         900             /* WebCit session timeout */
 #define PORT_NUM               2000            /* port number to listen on */
-#define SERVER                 "WebCit v7.11"  /* who's in da house */
+#define SERVER                 "WebCit v7.12"  /* who's in da house */
 #define DEVELOPER_ID           0
 #define CLIENT_ID              4
-#define CLIENT_VERSION         711             /* This version of WebCit */
+#define CLIENT_VERSION         712             /* This version of WebCit */
 #define MINIMUM_CIT_VERSION    710             /* min required Citadel ver. */
 #define DEFAULT_HOST           "localhost"     /* Default Citadel server */
 #define DEFAULT_PORT           "504"