Changeset 81001c0
- Timestamp:
- May 25, 2008, 12:28:38 AM (17 years ago)
- Branches:
- master, barnowl_perlaim, debian, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
- Children:
- 6b28e33
- Parents:
- 32da267
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
functions.c
r81655f8 r81001c0 1467 1467 strcat(buff, "because we feel our owls should live closer to our ponies.\n"); 1468 1468 strcat(buff, "\n"); 1469 strcat(buff, "Copyright (c) 2006-2008 The BarnOwl Developers. All rights reserved.\n"); 1470 strcat(buff, "Copyright (c) 2004 James Kretchmar. All rights reserved.\n"); 1469 1471 strcat(buff, "Copyright 2002 Massachusetts Institute of Technology\n"); 1470 1472 strcat(buff, "\n"); 1471 strcat(buff, "Permission to use, copy, modify, and distribute this\n"); 1472 strcat(buff, "software and its documentation for any purpose and without\n"); 1473 strcat(buff, "fee is hereby granted, provided that the above copyright\n"); 1474 strcat(buff, "notice and this permission notice appear in all copies\n"); 1475 strcat(buff, "and in supporting documentation. No representation is\n"); 1476 strcat(buff, "made about the suitability of this software for any\n"); 1477 strcat(buff, "purpose. It is provided \"as is\" without express\n"); 1478 strcat(buff, "or implied warranty.\n"); 1473 strcat(buff, "This program is free software. You can redistribute it and/or\n"); 1474 strcat(buff, "modify under the terms of the Sleepycat License. Use the \n"); 1475 strcat(buff, "':show license' command to display the full license\n"); 1479 1476 owl_function_popless_text(buff); 1480 1477 } -
owl.c
rdb0ac7e r81001c0 1 /* Copyright (c) 2004 James Kretchmar. All rights reserved. 1 /* Copyright (c) 2006-2008 The BarnOwl Developers. All rights reserved. 2 * Copyright (c) 2004 James Kretchmar. All rights reserved. 2 3 * 3 * Redistribution and use in source and binary forms, with or without 4 * modification, are permitted provided that the following conditions are 5 * met: 6 * 7 * * Redistributions of source code must retain the above copyright 8 * notice, this list of conditions and the following disclaimer. 9 * 10 * * Redistributions in binary form must reproduce the above copyright 11 * notice, this list of conditions and the following disclaimer in 12 * the documentation and/or other materials provided with the 13 * distribution. 14 * 15 * * Redistributions in any form must be accompanied by information on 16 * how to obtain complete source code for the Owl software and any 17 * accompanying software that uses the Owl software. The source code 18 * must either be included in the distribution or be available for no 19 * more than the cost of distribution plus a nominal fee, and must be 20 * freely redistributable under reasonable conditions. For an 21 * executable file, complete source code means the source code for 22 * all modules it contains. It does not include source code for 23 * modules or files that typically accompany the major components of 24 * the operating system on which the executable file runs. 25 * 26 * 27 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 28 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 29 * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR 30 * NON-INFRINGEMENT, ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE 31 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 32 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 33 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR 34 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 35 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE 36 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN 37 * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 4 * This program is free software. You can redistribute it and/or 5 * modify under the terms of the Sleepycat License. See the COPYING 6 * file included with the distribution for more information. 38 7 */ 39 8 -
owl.h
r50dd3a0 r81001c0 1 /* Copyright (c) 2004 James Kretchmar. All rights reserved. 1 /* Copyright (c) 2006-2008 The BarnOwl Developers. All rights reserved. 2 * Copyright (c) 2004 James Kretchmar. All rights reserved. 2 3 * 3 * Redistribution and use in source and binary forms, with or without 4 * modification, are permitted provided that the following conditions are 5 * met: 6 * 7 * * Redistributions of source code must retain the above copyright 8 * notice, this list of conditions and the following disclaimer. 9 * 10 * * Redistributions in binary form must reproduce the above copyright 11 * notice, this list of conditions and the following disclaimer in 12 * the documentation and/or other materials provided with the 13 * distribution. 14 * 15 * * Redistributions in any form must be accompanied by information on 16 * how to obtain complete source code for the Owl software and any 17 * accompanying software that uses the Owl software. The source code 18 * must either be included in the distribution or be available for no 19 * more than the cost of distribution plus a nominal fee, and must be 20 * freely redistributable under reasonable conditions. For an 21 * executable file, complete source code means the source code for 22 * all modules it contains. It does not include source code for 23 * modules or files that typically accompany the major components of 24 * the operating system on which the executable file runs. 25 * 26 * 27 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 28 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 29 * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR 30 * NON-INFRINGEMENT, ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE 31 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 32 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 33 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR 34 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 35 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE 36 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN 37 * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 4 * This program is free software. You can redistribute it and/or 5 * modify under the terms of the Sleepycat License. See the COPYING 6 * file included with the distribution for more information. 38 7 */ 39 8 … … 86 55 #endif 87 56 88 #ifndef OWL_VERSION_STRING89 57 #define OWL_VERSION_STRING "r" BARNOWL_STRINGIFY(OWL_SVN_REVNO) 90 #endif91 58 92 59
Note: See TracChangeset
for help on using the changeset viewer.