Staging
v0.8.1
https://github.com/python/cpython
Raw File
Tip revision: 5c1b22b093f6adf6113b0063a543988e2e28c005 authored by cvs2svn on 10 January 2002, 16:25:57 UTC
This commit was manufactured by cvs2svn to create tag 'r212c1'.
Tip revision: 5c1b22b
Carbon.r
/*
 *  Permit this Carbon application to launch on OS X
 *
 *  by Josef W. Wankerl
 *  04/11/00
 */
#define USE_CARB_RESOURCE
#ifdef USE_CARB_RESOURCE
/*----------------------------carb € Carbon on OS X launch information --------------------------*/
type 'carb' {
};


resource 'carb'(0) {
};
#else

#include "macbuildno.h"

#include "patchlevel.h"

type 'plst'
{
    string;
};

resource 'plst' (0)
{
    "CFBundleName = \"MacPython\";\n"  /* short name for Mac OS X */
    "CFBundleShortVersionString = \""PY_VERSION"\";\n"
    "CFBundleGetInfoString = \"MacPython "PY_VERSION".\";\n"
};
#endif
back to top