Xcode-Increment build number only during ARCHIVE?

Add the following script, as in the example listed in the first link that you posted, BUT do it twice. Once at the beginning of the build and once at the end: if [ $CONFIGURATION == Release ]; then echo “Bumping build number…” plist=${PROJECT_DIR}/${INFOPLIST_FILE} # increment the build number (ie 115 to 116) buildnum=$(/usr/libexec/PlistBuddy -c … Read more

How can I install the Python library ‘gevent’ on Mac OS X Lion

Don’t post the entire thing! That’s too much! 90% of the time, the first error is enough… gevent/libevent.h:9:19: error: event.h: No such file or directory This means that the library which provides the event.h header is not installed. The library is called libevent (website). In general, compilation errors like these are a flaw in the … Read more