Changeset 2eb5c5d in freewrt for package


Ignore:
Timestamp:
Jun 29, 2007, 4:20:51 PM (18 years ago)
Author:
Thorsten Glaser <tg@…>
Children:
cc10e52
Parents:
bbb9d5f
Message:

add RCS IDs

git-svn-id: svn://www.freewrt.org/trunk/freewrt@3021 afb5a338-a214-0410-bd46-81f09a774fd1

Location:
package/fwwif/src
Files:
17 edited

Legend:

Unmodified
Added
Removed
  • package/fwwif/src/Makefile

    rbbb9d5f r2eb5c5d  
     1# $Id$
     2#-
     3# This file is part of the FreeWRT Webinterface, which is copyrighted
     4# material, please see the LICENCE file in the fwwif source directory
     5# for details.
     6
    17XARCH=          mipsel
    28CDIAGFLAGS?=    -Wall -Wextra -std=gnu99
     
    2935IMAGES=         logo.svg favicon.ico
    3036
     37fwwif.o header.o footer.o commit.o: common.h
    3138chpw.o c_chpw.o: c_chpw.h common.h
    32 md5.o md5hl.o: md5.h common.h
    33 md5crypt.o pwd_gensalt.o c_chpw.o: md5crypt.h md5.h common.h
     39md5.o md5hl.o md5crypt.o: md5.h common.h
     40md5crypt.o pwd_gensalt.o c_chpw.o: md5crypt.h common.h
    3441
    3542md5hl.c: helper.c
     
    4148fwwif.so: ${OBJS}
    4249        $(CXX) -o $@ -Wl,--start-group $(LDFLAGS) $^ -Wl,--end-group
    43         ${STRIP} -R .comment $@
     50        ${STRIP} $@                     # retain keywords
     51#       ${STRIP} -R .comment $@         # strip off keywords
    4452
    4553.SUFFIXES: .ecpp .gif .jpg .css .js .cpp
  • package/fwwif/src/c_chpw.c

    rbbb9d5f r2eb5c5d  
    3232#include "c_chpw.h"
    3333#include "md5crypt.h"
     34
     35__RCSID("$Id$");
    3436
    3537int
  • package/fwwif/src/c_chpw.h

    rbbb9d5f r2eb5c5d  
     1/* $Id$ */
     2
    13__BEGIN_DECLS
    24int c_chpw(const char *, const char *);
  • package/fwwif/src/chpw.ecpp

    rbbb9d5f r2eb5c5d  
    2525 #>
    2626<%pre>
     27#include "common.h"
    2728#include "c_chpw.h"
     29
     30__RCSID("$Id$");
    2831</%pre>
    2932<%args>
  • package/fwwif/src/commit.ecpp

    rbbb9d5f r2eb5c5d  
    2525 #>
    2626<%pre>
     27#include "common.h"
    2728#include <stdlib.h>
    28 extern "C" uint32_t arc4random(void);
     29__RCSID("$Id$");
    2930</%pre>
    3031<%args>
  • package/fwwif/src/common.h

    rbbb9d5f r2eb5c5d  
     1/* $Id$ */
     2
    13/*-
    24 * Copyright (c) 2007
     
    2729
    2830#include <sys/types.h>
     31#include <stdint.h>
    2932
    3033#ifndef __BEGIN_DECLS
     
    5861#endif
    5962
     63__BEGIN_DECLS
     64uint32_t arc4random(void);
     65__END_DECLS
     66
    6067#endif
  • package/fwwif/src/footer.ecpp

    rbbb9d5f r2eb5c5d  
    2424 # of said person's immediate fault when using the work as intended.
    2525 #>
     26<%pre>
     27#include "common.h"
     28__RCSID("$Id$");
     29</%pre>
    2630<%args>
    2731int show_validator = 1;
  • package/fwwif/src/fwwif.ecpp

    rbbb9d5f r2eb5c5d  
    2424 # of said person's immediate fault when using the work as intended.
    2525 #>
     26<%pre>
     27#include "common.h"
     28__RCSID("$Id$");
     29</%pre>
    2630<& header title="main page">
    2731<h1>Welcome!</h1>
  • package/fwwif/src/fwws.css

    rbbb9d5f r2eb5c5d  
    11/*-
    22 * The FreeWRT Webinterface
     3 * $Id$
    34 *-
    45 * Copyright © 2007
  • package/fwwif/src/header.ecpp

    rbbb9d5f r2eb5c5d  
     1<%pre>
     2#include "common.h"
     3__RCSID("$Id$");
     4</%pre>
    15<%cpp>
    26 /* even this is broken; tntnet outputs an initial \n before this */
  • package/fwwif/src/helper.c

    rbbb9d5f r2eb5c5d  
    1111 */
    1212
     13#include "common.h"
    1314#include <sys/param.h>
    1415#include <sys/stat.h>
     
    2425
    2526__RCSID("$MirOS: src/lib/libc/hash/helper.c,v 1.5 2007/05/07 15:21:18 tg Exp $ helper for HASH hash");
     27__RCSID("$Id$");
    2628
    2729/* ARGSUSED */
  • package/fwwif/src/md5.c

    rbbb9d5f r2eb5c5d  
    1818 */
    1919
    20 #include <sys/types.h>
     20#include "common.h"
    2121#include <string.h>
    2222#include "md5.h"
     23
     24__RCSID("$Id$");
    2325
    2426#define PUT_64BIT_LE(cp, value) do {                                    \
  • package/fwwif/src/md5.h

    rbbb9d5f r2eb5c5d  
     1/**     $Id$ */
    12/**     $MirOS: src/include/md5.h,v 1.2 2005/03/06 19:13:40 tg Exp $ */
    23/*      $OpenBSD: md5.h,v 1.16 2004/06/22 01:57:30 jfb Exp $    */
  • package/fwwif/src/md5crypt.c

    rbbb9d5f r2eb5c5d  
    1313 */
    1414
     15#include "common.h"
    1516#include <unistd.h>
    1617#include <stdio.h>
     
    1819#include "md5crypt.h"
    1920#include <string.h>
     21#include "md5.h"
     22
     23__RCSID("$Id$");
    2024
    2125static unsigned char itoa64[] =         /* 0 ... 63 => ascii - 64 */
  • package/fwwif/src/md5crypt.h

    rbbb9d5f r2eb5c5d  
     1/* $Id$ */
     2
    13#ifndef MD5CRYPT_H
    24#define MD5CRYPT_H
    3 
    4 #include "md5.h"
    55
    66__BEGIN_DECLS
  • package/fwwif/src/mime.types

    rbbb9d5f r2eb5c5d  
     1# $Id$
    12# $MirOS: src/usr.sbin/httpd/conf/mime.types,v 1.3 2006/09/20 23:45:04 tg Exp $
    23#
  • package/fwwif/src/pwd_gensalt.c

    rbbb9d5f r2eb5c5d  
    3737#include "md5crypt.h"
    3838
     39__RCSID("$Id$");
     40
    3941int
    4042pwd_gensalt(char *salt, int saltlen)
Note: See TracChangeset for help on using the changeset viewer.