AC_ARG_ENABLE([osxapp],
[AS_HELP_STRING([--enable-osxapp],[build a OSX app [default=no]])],
- [enable_OSXAPP=$withval],
+ [enable_OSXAPP=$enableval],
[enable_OSXAPP="no"])
AS_IF([test x"$enable_OSXAPP" = x"yes"], [
AC_PREFIX_DEFAULT([`pwd`/XBoard.app/Contents])
+ AC_DEFINE([OSXAPP], [1], [We are building an OSX APP, redefine some functions])],
with_GTK="yes"
enable_mimedb="no"
datarootdir='$(prefix)/Resources'
#include "gettext.h"
#include "draw.h"
-#ifdef __APPLE__
+#ifdef OSXAPP
# include <gtkmacintegration/gtkosxapplication.h>
// prevent pathname of positional file argument provided by OS X being be mistaken for option name
// (price is that we won't recognize Windows option format anymore).
return gdk_pixbuf_new_from_file(buf, NULL);
}
-#ifdef __APPLE__
+#ifdef OSXAPP
static char clickedFile[MSG_SIZ];
static int suppress;
/* set up GTK */
gtk_init (&argc, &argv);
-#ifdef __APPLE__
+#ifdef OSXAPP
{ // prepare to catch OX OpenFile signal, which will tell us the clicked file
char *path = gtkosx_application_get_bundle_path();
#ifdef ENABLE_NLS
void
ManProc ()
{ // called from menu
-#ifdef __APPLE__
+#ifdef OSXAPP
char buf[MSG_SIZ];
snprintf(buf, MSG_SIZ, "%s ./man.command", appData.sysOpen);
system(buf);
GdkPixbuf *pm = *clockIcons[color];
if (mainwindowIcon != pm) {
mainwindowIcon = pm;
-#ifdef __APPLE__
+#ifdef OSXAPP
gtkosx_application_set_dock_icon_pixbuf(theApp, mainwindowIcon);
#else
gtk_window_set_icon(GTK_WINDOW(shellWidget), mainwindowIcon);