|
From: Andre R. <and...@us...> - 2006-02-10 21:21:29
|
Update of /cvsroot/frontierkernel/Frontier/build_GNU/tools In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14244/tools Added Files: .cvsignore appcopyright.c appversion.c Log Message: Fixed breakage in Makefile related to my recent changes in Common/headers/versions.h. The Info.plist file in the application package should now be generated correctly again. --- NEW FILE: .cvsignore --- *.o --- NEW FILE: appversion.c --- /* $Id: appversion.c,v 1.1 2006/02/10 21:21:16 andreradke Exp $ */ /****************************************************************************** UserLand Frontier(tm) -- High performance Web content management, object database, system-level and Internet scripting environment, including source code editing and debugging. Copyright (C) 1992-2004 UserLand Software, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ******************************************************************************/ /* 2006-02-06 aradke: just a fancy way to extract app version string */ #include <stdio.h> #include "versions.h" int main () { printf(APP_VERSION_STRING); return 0; } /*main*/ --- NEW FILE: appcopyright.c --- /* $Id: appcopyright.c,v 1.1 2006/02/10 21:21:16 andreradke Exp $ */ /****************************************************************************** UserLand Frontier(tm) -- High performance Web content management, object database, system-level and Internet scripting environment, including source code editing and debugging. Copyright (C) 1992-2004 UserLand Software, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ******************************************************************************/ /* 2006-02-06 aradke: just a fancy way to extract copyright year string */ #include <stdio.h> #include "versions.h" int main () { printf(APP_COPYRIGHT); return 0; } /*main*/ |