Staging
v0.8.1
https://github.com/python/cpython
Raw File
Tip revision: 427f6ca969cbc0cb506af69e38da34f25da858a8 authored by Anthony Baxter on 01 November 2006, 07:07:27 UTC
update patchlevel.h correctly, this time
Tip revision: 427f6ca
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